Support custom user id though API, closes #115

This commit is contained in:
Dane Everitt 2016-10-06 22:36:59 -04:00
parent c347a6756c
commit 9d10c2a757
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
3 changed files with 26 additions and 17 deletions

View file

@ -52,18 +52,22 @@ class UserRepository
*
* @param string $email
* @param string|null $password An unhashed version of the user's password.
* @param bool $admin Boolean value if user should be an admin or not.
* @param int $token A custom user ID.
* @return bool|integer
*/
public function create($email, $password = null, $admin = false)
public function create($email, $password = null, $admin = false, $token = null)
{
$validator = Validator::make([
'email' => $email,
'password' => $password,
'root_admin' => $admin
'root_admin' => $admin,
'custom_id' => $token,
], [
'email' => 'required|email|unique:users,email',
'password' => 'nullable|regex:((?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,})',
'root_admin' => 'required|boolean'
'root_admin' => 'required|boolean',
'custom_id' => 'nullable|unique:users,id',
]);
// Run validator, throw catchable and displayable exception if it fails.
@ -78,6 +82,11 @@ class UserRepository
$user = new Models\User;
$uuid = new UuidService;
// Support for API Services
if (!is_null($token)) {
$user->id = $token;
}
$user->uuid = $uuid->generate('users', 'uuid');
$user->email = $email;
$user->password = Hash::make((is_null($password)) ? str_random(30) : $password);