2015-12-14 03:22:16 +00:00
|
|
|
<?php
|
2016-01-20 00:10:39 +00:00
|
|
|
/**
|
2016-01-20 21:05:16 +00:00
|
|
|
* Pterodactyl - Panel
|
2017-01-24 22:57:08 +00:00
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>
|
2016-12-07 22:46:38 +00:00
|
|
|
* Some Modifications (c) 2015 Dylan Seidt <dylan.seidt@gmail.com>.
|
2016-01-20 00:10:39 +00:00
|
|
|
*
|
2016-01-20 20:56:40 +00:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2016-01-20 00:10:39 +00:00
|
|
|
*
|
2016-01-20 20:56:40 +00:00
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
* copies or substantial portions of the Software.
|
2016-01-20 00:10:39 +00:00
|
|
|
*
|
2016-01-20 20:56:40 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
2016-01-20 00:10:39 +00:00
|
|
|
*/
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2015-12-14 03:22:16 +00:00
|
|
|
namespace Pterodactyl\Repositories;
|
|
|
|
|
2016-01-15 04:13:26 +00:00
|
|
|
use DB;
|
2016-12-07 22:46:38 +00:00
|
|
|
use Auth;
|
2015-12-14 03:22:16 +00:00
|
|
|
use Hash;
|
2016-09-05 16:00:56 +00:00
|
|
|
use Carbon;
|
2017-01-12 20:40:24 +00:00
|
|
|
use Settings;
|
2016-12-07 22:46:38 +00:00
|
|
|
use Validator;
|
2016-01-15 04:13:26 +00:00
|
|
|
use Pterodactyl\Models;
|
2015-12-14 03:22:16 +00:00
|
|
|
use Pterodactyl\Services\UuidService;
|
2016-12-07 22:46:38 +00:00
|
|
|
use Pterodactyl\Exceptions\DisplayException;
|
2016-09-05 16:00:56 +00:00
|
|
|
use Pterodactyl\Notifications\AccountCreated;
|
2016-01-13 04:43:33 +00:00
|
|
|
use Pterodactyl\Exceptions\DisplayValidationException;
|
|
|
|
|
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
|
|
|
*
|
2016-09-05 20:21:36 +00:00
|
|
|
* @param string $email
|
|
|
|
* @param string|null $password An unhashed version of the user's password.
|
2016-10-07 02:36:59 +00:00
|
|
|
* @param bool $admin Boolean value if user should be an admin or not.
|
|
|
|
* @param int $token A custom user ID.
|
2016-12-07 22:46:38 +00:00
|
|
|
* @return bool|int
|
2015-12-14 03:22:16 +00:00
|
|
|
*/
|
2017-01-12 20:40:24 +00:00
|
|
|
public function create(array $data)
|
2015-12-14 03:22:16 +00:00
|
|
|
{
|
2017-01-12 20:40:24 +00:00
|
|
|
$validator = Validator::make($data, [
|
2016-01-13 04:43:33 +00:00
|
|
|
'email' => 'required|email|unique:users,email',
|
2017-01-12 20:40:24 +00:00
|
|
|
'username' => 'required|string|between:1,255|unique:users,username|' . Models\User::USERNAME_RULES,
|
|
|
|
'name_first' => 'required|string|between:1,255',
|
|
|
|
'name_last' => 'required|string|between:1,255',
|
|
|
|
'password' => 'sometimes|nullable|' . Models\User::PASSWORD_RULES,
|
2016-10-07 02:36:59 +00:00
|
|
|
'root_admin' => 'required|boolean',
|
2017-01-12 20:40:24 +00:00
|
|
|
'custom_id' => 'sometimes|nullable|unique:users,id',
|
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-19 00:57:10 +00:00
|
|
|
DB::beginTransaction();
|
|
|
|
|
2016-01-13 04:43:33 +00:00
|
|
|
try {
|
2016-02-27 15:30:59 +00:00
|
|
|
$user = new Models\User;
|
|
|
|
$uuid = new UuidService;
|
|
|
|
|
2016-10-07 02:36:59 +00:00
|
|
|
// Support for API Services
|
2017-01-12 20:40:24 +00:00
|
|
|
if (isset($data['custom_id']) && ! is_null($data['custom_id'])) {
|
2016-10-07 02:36:59 +00:00
|
|
|
$user->id = $token;
|
|
|
|
}
|
|
|
|
|
2017-01-12 20:40:24 +00:00
|
|
|
// UUIDs are not mass-fillable.
|
2016-02-27 15:30:59 +00:00
|
|
|
$user->uuid = $uuid->generate('users', 'uuid');
|
|
|
|
|
2017-01-12 20:40:24 +00:00
|
|
|
$user->fill([
|
|
|
|
'email' => $data['email'],
|
|
|
|
'username' => $data['username'],
|
|
|
|
'name_first' => $data['name_first'],
|
|
|
|
'name_last' => $data['name_last'],
|
2017-01-22 13:47:09 +00:00
|
|
|
'password' => Hash::make((empty($data['password'])) ? str_random(30) : $data['password']),
|
2017-01-12 20:40:24 +00:00
|
|
|
'root_admin' => $data['root_admin'],
|
|
|
|
'language' => Settings::get('default_language', 'en'),
|
2016-09-05 16:00:56 +00:00
|
|
|
]);
|
2017-01-12 20:40:24 +00:00
|
|
|
$user->save();
|
2016-09-05 16:00:56 +00:00
|
|
|
|
2017-01-12 20:40:24 +00:00
|
|
|
// Setup a Password Reset to use when they set a password.
|
|
|
|
// Only used if no password is provided.
|
|
|
|
if (empty($data['password'])) {
|
|
|
|
$token = str_random(32);
|
|
|
|
DB::table('password_resets')->insert([
|
|
|
|
'email' => $user->email,
|
|
|
|
'token' => $token,
|
|
|
|
'created_at' => Carbon::now()->toDateTimeString(),
|
|
|
|
]);
|
|
|
|
}
|
2016-09-05 16:00:56 +00:00
|
|
|
|
2016-01-19 00:57:10 +00:00
|
|
|
DB::commit();
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2017-02-09 22:43:54 +00:00
|
|
|
return $user;
|
2016-01-13 04:43:33 +00:00
|
|
|
} catch (\Exception $ex) {
|
2016-01-19 00:57:10 +00:00
|
|
|
DB::rollBack();
|
2016-09-05 16:00:56 +00:00
|
|
|
throw $ex;
|
2016-01-13 04:43:33 +00:00
|
|
|
}
|
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-12-07 22:46:38 +00:00
|
|
|
* @param int $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-12-07 22:46:38 +00:00
|
|
|
* @return bool
|
2016-01-02 05:25:41 +00:00
|
|
|
*/
|
2016-01-15 04:13:26 +00:00
|
|
|
public function update($id, array $data)
|
2016-01-02 05:25:41 +00:00
|
|
|
{
|
2016-02-21 06:15:37 +00:00
|
|
|
$user = Models\User::findOrFail($id);
|
|
|
|
|
2016-01-15 04:13:26 +00:00
|
|
|
$validator = Validator::make($data, [
|
2016-02-21 06:15:37 +00:00
|
|
|
'email' => 'sometimes|required|email|unique:users,email,' . $id,
|
2017-01-12 20:40:24 +00:00
|
|
|
'username' => 'sometimes|required|string|between:1,255|unique:users,username,' . $user->id . '|' . Models\User::USERNAME_RULES,
|
|
|
|
'name_first' => 'sometimes|required|string|between:1,255',
|
|
|
|
'name_last' => 'sometimes|required|string|between:1,255',
|
|
|
|
'password' => 'sometimes|nullable|' . Models\User::PASSWORD_RULES,
|
2016-02-21 06:15:37 +00:00
|
|
|
'root_admin' => 'sometimes|required|boolean',
|
|
|
|
'language' => 'sometimes|required|string|min:1|max:5',
|
|
|
|
'use_totp' => 'sometimes|required|boolean',
|
2016-12-07 22:46:38 +00:00
|
|
|
'totp_secret' => 'sometimes|required|size:16',
|
2016-01-15 04:13:26 +00:00
|
|
|
]);
|
|
|
|
|
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());
|
|
|
|
}
|
|
|
|
|
2017-01-12 20:40:24 +00:00
|
|
|
// The password and root_admin fields are not mass assignable.
|
|
|
|
if (! empty($data['password'])) {
|
2016-02-04 16:11:38 +00:00
|
|
|
$data['password'] = Hash::make($data['password']);
|
2017-01-12 20:40:24 +00:00
|
|
|
} else {
|
|
|
|
unset($data['password']);
|
2016-01-02 20:08:33 +00:00
|
|
|
}
|
2016-01-02 05:25:41 +00:00
|
|
|
|
2016-02-21 06:15:37 +00:00
|
|
|
$user->fill($data);
|
2016-12-12 19:30:57 +00:00
|
|
|
|
|
|
|
return $user->save();
|
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-12-07 22:46:38 +00:00
|
|
|
* @param int $id
|
|
|
|
* @return int
|
2016-01-02 05:25:41 +00:00
|
|
|
*/
|
|
|
|
public function delete($id)
|
|
|
|
{
|
2016-12-07 22:46:38 +00:00
|
|
|
if (Models\Server::where('owner', $id)->count() > 0) {
|
2016-01-15 04:13:26 +00:00
|
|
|
throw new DisplayException('Cannot delete a user with active servers attached to thier account.');
|
|
|
|
}
|
|
|
|
|
2016-10-15 00:22:23 +00:00
|
|
|
// @TODO: this should probably be checked outside of this method because we won't always have Auth::user()
|
2016-12-07 22:46:38 +00:00
|
|
|
if (! is_null(Auth::user()) && Auth::user()->id === $id) {
|
|
|
|
throw new DisplayException('Cannot delete your own account.');
|
2016-10-03 01:27:25 +00:00
|
|
|
}
|
|
|
|
|
2016-01-15 04:13:26 +00:00
|
|
|
DB::beginTransaction();
|
|
|
|
|
|
|
|
try {
|
2016-02-21 06:15:37 +00:00
|
|
|
Models\Permission::where('user_id', $id)->delete();
|
|
|
|
Models\Subuser::where('user_id', $id)->delete();
|
|
|
|
Models\User::destroy($id);
|
|
|
|
|
2016-01-15 04:13:26 +00:00
|
|
|
DB::commit();
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2016-01-15 04:13:26 +00:00
|
|
|
return true;
|
|
|
|
} catch (\Exception $ex) {
|
2016-02-21 06:15:37 +00:00
|
|
|
DB::rollBack();
|
2016-01-15 04:13:26 +00:00
|
|
|
throw $ex;
|
|
|
|
}
|
2016-01-02 05:25:41 +00:00
|
|
|
}
|
2015-12-14 03:22:16 +00:00
|
|
|
}
|