2016-10-28 00:05:29 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Pterodactyl - Panel
|
2017-01-24 22:57:08 +00:00
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
2016-10-28 00:05:29 +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:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* 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-12-07 22:46:38 +00:00
|
|
|
|
2017-01-25 00:15:03 +00:00
|
|
|
namespace Pterodactyl\Observers;
|
2016-10-28 00:05:29 +00:00
|
|
|
|
2017-02-18 00:35:26 +00:00
|
|
|
use DB;
|
2017-04-28 04:07:38 +00:00
|
|
|
use Hash;
|
|
|
|
use Carbon;
|
2017-01-25 00:15:03 +00:00
|
|
|
use Pterodactyl\Events;
|
|
|
|
use Pterodactyl\Models\User;
|
2017-02-18 00:23:27 +00:00
|
|
|
use Pterodactyl\Notifications\AccountCreated;
|
2017-06-11 03:28:44 +00:00
|
|
|
use Pterodactyl\Services\UuidService;
|
2016-10-28 00:05:29 +00:00
|
|
|
|
2017-01-25 00:15:03 +00:00
|
|
|
class UserObserver
|
2016-10-28 00:05:29 +00:00
|
|
|
{
|
2017-06-11 03:28:44 +00:00
|
|
|
protected $uuid;
|
|
|
|
|
|
|
|
public function __construct(UuidService $uuid)
|
|
|
|
{
|
|
|
|
$this->uuid = $uuid;
|
|
|
|
}
|
|
|
|
|
2017-01-25 00:15:03 +00:00
|
|
|
/**
|
|
|
|
* Listen to the User creating event.
|
|
|
|
*
|
2017-03-19 23:36:50 +00:00
|
|
|
* @param \Pterodactyl\Models\User $user
|
2017-01-25 00:15:03 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function creating(User $user)
|
|
|
|
{
|
2017-06-11 03:28:44 +00:00
|
|
|
$user->uuid = $this->uuid->generate();
|
|
|
|
|
2017-01-25 00:15:03 +00:00
|
|
|
event(new Events\User\Creating($user));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Listen to the User created event.
|
|
|
|
*
|
2017-03-19 23:36:50 +00:00
|
|
|
* @param \Pterodactyl\Models\User $user
|
2017-01-25 00:15:03 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function created(User $user)
|
|
|
|
{
|
2017-06-11 03:28:44 +00:00
|
|
|
dd($user);
|
2017-04-28 04:07:38 +00:00
|
|
|
if ($user->password === 'unset') {
|
|
|
|
$token = hash_hmac('sha256', str_random(40), config('app.key'));
|
|
|
|
DB::table('password_resets')->insert([
|
|
|
|
'email' => $user->email,
|
|
|
|
'token' => Hash::make($token),
|
|
|
|
'created_at' => Carbon::now()->toDateTimeString(),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$user->notify(new AccountCreated([
|
2017-02-17 23:48:57 +00:00
|
|
|
'name' => $user->name_first,
|
|
|
|
'username' => $user->username,
|
2017-04-28 04:07:38 +00:00
|
|
|
'token' => (isset($token)) ? $token : null,
|
|
|
|
]));
|
2017-06-11 03:28:44 +00:00
|
|
|
|
|
|
|
event(new Events\User\Created($user));
|
2017-01-25 00:15:03 +00:00
|
|
|
}
|
2016-10-28 00:05:29 +00:00
|
|
|
|
|
|
|
/**
|
2017-01-25 00:15:03 +00:00
|
|
|
* Listen to the User deleting event.
|
2016-10-28 00:05:29 +00:00
|
|
|
*
|
2017-03-19 23:36:50 +00:00
|
|
|
* @param \Pterodactyl\Models\User $user
|
2016-10-28 00:05:29 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2017-01-25 00:15:03 +00:00
|
|
|
public function deleting(User $user)
|
2016-10-28 00:05:29 +00:00
|
|
|
{
|
2017-01-25 00:15:03 +00:00
|
|
|
event(new Events\User\Deleting($user));
|
2016-10-28 00:05:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-01-25 00:15:03 +00:00
|
|
|
* Listen to the User deleted event.
|
2016-10-28 00:05:29 +00:00
|
|
|
*
|
2017-03-19 23:36:50 +00:00
|
|
|
* @param \Pterodactyl\Models\User $user
|
2016-10-28 00:05:29 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2017-01-25 00:15:03 +00:00
|
|
|
public function deleted(User $user)
|
2016-10-28 00:05:29 +00:00
|
|
|
{
|
2017-01-25 00:15:03 +00:00
|
|
|
event(new Events\User\Deleted($user));
|
2016-10-28 00:05:29 +00:00
|
|
|
}
|
|
|
|
}
|