Fixes account creation and password reset abilities.

This commit is contained in:
Dane Everitt 2017-04-28 00:07:38 -04:00
parent 3dc286b511
commit 1c37a8fe1a
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
4 changed files with 16 additions and 18 deletions

View file

@ -25,6 +25,8 @@
namespace Pterodactyl\Observers;
use DB;
use Hash;
use Carbon;
use Pterodactyl\Events;
use Pterodactyl\Models\User;
use Pterodactyl\Notifications\AccountCreated;
@ -52,12 +54,20 @@ class UserObserver
{
event(new Events\User\Created($user));
$token = DB::table('password_resets')->where('email', $user->email)->orderBy('created_at', 'desc')->first();
$user->notify((new AccountCreated([
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([
'name' => $user->name_first,
'username' => $user->username,
'token' => (! is_null($token)) ? $token->token : null,
])));
'token' => (isset($token)) ? $token : null,
]));
}
/**