2018-04-16 00:52:22 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Observers;
|
|
|
|
|
|
|
|
use App\{Profile, User};
|
2018-05-22 23:58:14 +00:00
|
|
|
use App\Jobs\AvatarPipeline\CreateAvatar;
|
2018-04-16 00:52:22 +00:00
|
|
|
|
|
|
|
class UserObserver
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Listen to the User created event.
|
|
|
|
*
|
|
|
|
* @param \App\User $user
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function saved(User $user)
|
|
|
|
{
|
2018-05-22 23:58:14 +00:00
|
|
|
if(empty($user->profile)) {
|
2018-04-16 00:52:22 +00:00
|
|
|
$profile = new Profile;
|
|
|
|
$profile->user_id = $user->id;
|
|
|
|
$profile->username = $user->username;
|
2018-05-22 23:58:14 +00:00
|
|
|
$profile->name = $user->name;
|
|
|
|
$pkiConfig = [
|
|
|
|
"digest_alg" => "sha512",
|
|
|
|
"private_key_bits" => 2048,
|
|
|
|
"private_key_type" => OPENSSL_KEYTYPE_RSA,
|
|
|
|
];
|
|
|
|
$pki = openssl_pkey_new($pkiConfig);
|
|
|
|
openssl_pkey_export($pki, $pki_private);
|
|
|
|
$pki_public = openssl_pkey_get_details($pki);
|
|
|
|
$pki_public = $pki_public['key'];
|
|
|
|
|
|
|
|
$profile->private_key = $pki_private;
|
|
|
|
$profile->public_key = $pki_public;
|
2018-04-16 00:52:22 +00:00
|
|
|
$profile->save();
|
2018-05-22 23:58:14 +00:00
|
|
|
|
2018-06-01 03:15:20 +00:00
|
|
|
CreateAvatar::dispatch($profile);
|
2018-04-16 00:52:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|