diff options
author | Florian Pritz <bluewind@xinu.at> | 2016-07-14 15:18:23 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2016-07-14 15:20:44 +0200 |
commit | 4a3e17f0c20356b0690bbb52285fe18d4c1a89ae (patch) | |
tree | 7ea41c1f95ded107a4856373fa360e8cca94873d /application/models/muser.php | |
parent | 3917a0cb9e284cc423b110901e165de6a0cfa5da (diff) |
muser: Add add_user function
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/models/muser.php')
-rw-r--r-- | application/models/muser.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/application/models/muser.php b/application/models/muser.php index 4ec821f4d..7a4b65e4b 100644 --- a/application/models/muser.php +++ b/application/models/muser.php @@ -159,6 +159,29 @@ class Muser extends CI_Model { return valid_email($email); } + public function add_user($username, $password, $email, $referrer) + { + if (!$this->valid_username($username)) { + throw new \exceptions\PublicApiException("user/invalid-username", "Invalid username (only up to 32 chars of a-z0-9 are allowed)"); + } else { + if ($this->muser->username_exists($username)) { + throw new \exceptions\PublicApiException("user/username-already-exists", "Username already exists"); + } + } + + if (!$this->valid_email($email)) { + throw new \exceptions\PublicApiException("user/invalid-email", "Invalid email"); + } + + $this->db->set(array( + 'username' => $username, + 'password' => $this->hash_password($password), + 'email' => $email, + 'referrer' => $referrer + )) + ->insert('users'); + } + function get_userid() { if (!$this->logged_in()) { |