2015-12-14 03:22:16 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Repositories;
|
|
|
|
|
2016-01-15 04:13:26 +00:00
|
|
|
use DB;
|
2015-12-14 03:22:16 +00:00
|
|
|
use Hash;
|
2016-01-15 04:13:26 +00:00
|
|
|
use Validator;
|
2015-12-14 03:22:16 +00:00
|
|
|
|
2016-01-15 04:13:26 +00:00
|
|
|
use Pterodactyl\Models;
|
2015-12-14 03:22:16 +00:00
|
|
|
use Pterodactyl\Services\UuidService;
|
|
|
|
|
2016-01-13 04:43:33 +00:00
|
|
|
use Pterodactyl\Exceptions\DisplayValidationException;
|
2016-01-15 04:13:26 +00:00
|
|
|
use Pterodactyl\Exceptions\DisplayException;
|
2016-01-13 04:43:33 +00:00
|
|
|
|
2015-12-14 03:22:16 +00:00
|
|
|
class UserRepository
|
|
|
|
{
|
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a user on the panel. Returns the created user's ID.
|
2015-12-15 20:08:41 +00:00
|
|
|
*
|
2015-12-14 03:22:16 +00:00
|
|
|
* @param string $email
|
|
|
|
* @param string $password An unhashed version of the user's password.
|
2016-01-02 20:08:33 +00:00
|
|
|
* @return bool|integer
|
2015-12-14 03:22:16 +00:00
|
|
|
*/
|
2016-01-13 04:43:33 +00:00
|
|
|
public function create($email, $password, $admin = false)
|
2015-12-14 03:22:16 +00:00
|
|
|
{
|
2016-01-13 04:43:33 +00:00
|
|
|
$validator = Validator::make([
|
|
|
|
'email' => $email,
|
|
|
|
'password' => $password,
|
2016-01-15 04:13:26 +00:00
|
|
|
'root_admin' => $admin
|
2016-01-13 04:43:33 +00:00
|
|
|
], [
|
|
|
|
'email' => 'required|email|unique:users,email',
|
|
|
|
'password' => 'required|regex:((?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,})',
|
2016-01-15 04:13:26 +00:00
|
|
|
'root_admin' => 'required|boolean'
|
2016-01-13 04:43:33 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
// Run validator, throw catchable and displayable exception if it fails.
|
|
|
|
// Exception includes a JSON result of failed validation rules.
|
|
|
|
if ($validator->fails()) {
|
|
|
|
throw new DisplayValidationException($validator->errors());
|
|
|
|
}
|
|
|
|
|
2016-01-15 04:13:26 +00:00
|
|
|
$user = new Models\User;
|
2015-12-14 03:22:16 +00:00
|
|
|
$uuid = new UuidService;
|
|
|
|
|
2015-12-15 20:08:41 +00:00
|
|
|
$user->uuid = $uuid->generate('users', 'uuid');
|
2015-12-14 03:22:16 +00:00
|
|
|
$user->email = $email;
|
|
|
|
$user->password = Hash::make($password);
|
2016-01-15 04:48:58 +00:00
|
|
|
$user->language = 'en';
|
2016-01-13 04:43:33 +00:00
|
|
|
$user->root_admin = ($admin) ? 1 : 0;
|
2015-12-14 03:22:16 +00:00
|
|
|
|
2016-01-13 04:43:33 +00:00
|
|
|
try {
|
|
|
|
$user->save();
|
|
|
|
return $user->id;
|
|
|
|
} catch (\Exception $ex) {
|
|
|
|
throw $e;
|
|
|
|
}
|
2015-12-14 03:22:16 +00:00
|
|
|
}
|
|
|
|
|
2016-01-02 05:25:41 +00:00
|
|
|
/**
|
2016-01-02 20:08:33 +00:00
|
|
|
* Updates a user on the panel.
|
2016-01-02 05:25:41 +00:00
|
|
|
*
|
2016-01-02 20:08:33 +00:00
|
|
|
* @param integer $id
|
2016-01-15 04:13:26 +00:00
|
|
|
* @param array $data An array of columns and their associated values to update for the user.
|
2016-01-02 05:25:41 +00:00
|
|
|
* @return boolean
|
|
|
|
*/
|
2016-01-15 04:13:26 +00:00
|
|
|
public function update($id, array $data)
|
2016-01-02 05:25:41 +00:00
|
|
|
{
|
2016-01-15 04:13:26 +00:00
|
|
|
$validator = Validator::make($data, [
|
|
|
|
'email' => 'email|unique:users,email,' . $id,
|
|
|
|
'password' => 'regex:((?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,})',
|
|
|
|
'root_admin' => 'boolean',
|
|
|
|
'language' => 'string|min:1|max:5',
|
|
|
|
'use_totp' => 'boolean',
|
|
|
|
'totp_secret' => 'size:16'
|
|
|
|
]);
|
|
|
|
|
2016-01-15 05:08:50 +00:00
|
|
|
// Run validator, throw catchable and displayable exception if it fails.
|
|
|
|
// Exception includes a JSON result of failed validation rules.
|
|
|
|
if ($validator->fails()) {
|
|
|
|
throw new DisplayValidationException($validator->errors());
|
|
|
|
}
|
|
|
|
|
2016-01-15 04:13:26 +00:00
|
|
|
if(array_key_exists('password', $data)) {
|
|
|
|
$user['password'] = Hash::make($data['password']);
|
2016-01-02 20:08:33 +00:00
|
|
|
}
|
2016-01-02 05:25:41 +00:00
|
|
|
|
2016-01-15 05:08:50 +00:00
|
|
|
return Models\User::findOrFail($id)->update($data);
|
2016-01-02 05:25:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-01-02 20:08:33 +00:00
|
|
|
* Deletes a user on the panel, returns the number of records deleted.
|
2016-01-02 05:25:41 +00:00
|
|
|
*
|
2016-01-02 20:08:33 +00:00
|
|
|
* @param integer $id
|
|
|
|
* @return integer
|
2016-01-02 05:25:41 +00:00
|
|
|
*/
|
|
|
|
public function delete($id)
|
|
|
|
{
|
2016-01-15 04:13:26 +00:00
|
|
|
if(Models\Server::where('owner', $id)->count() > 0) {
|
|
|
|
throw new DisplayException('Cannot delete a user with active servers attached to thier account.');
|
|
|
|
}
|
|
|
|
|
|
|
|
DB::beginTransaction();
|
|
|
|
|
|
|
|
Models\Permission::where('user_id', $id)->delete();
|
|
|
|
Models\Subuser::where('user_id', $id)->delete();
|
|
|
|
Models\User::destroy($id);
|
|
|
|
|
|
|
|
try {
|
|
|
|
DB::commit();
|
|
|
|
return true;
|
|
|
|
} catch (\Exception $ex) {
|
|
|
|
throw $ex;
|
|
|
|
}
|
2016-01-02 05:25:41 +00:00
|
|
|
}
|
|
|
|
|
2015-12-14 03:22:16 +00:00
|
|
|
}
|