56 lines
1.3 KiB
PHP
56 lines
1.3 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Auth\Authenticatable;
|
||
|
use Laravel\Lumen\Auth\Authorizable;
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
|
||
|
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
|
||
|
|
||
|
class RefreshToken extends Model
|
||
|
{
|
||
|
/**
|
||
|
* The attributes that are mass assignable.
|
||
|
*
|
||
|
* @var array
|
||
|
*/
|
||
|
protected $fillable = [
|
||
|
'status', 'user_id', 'app_id', 'token'
|
||
|
];
|
||
|
|
||
|
/**
|
||
|
* The attributes excluded from the model's JSON form.
|
||
|
*
|
||
|
* @var array
|
||
|
*/
|
||
|
protected $hidden = [
|
||
|
'',
|
||
|
];
|
||
|
|
||
|
static function createToken(AppAccess $access) {
|
||
|
$characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
||
|
$randstring = '';
|
||
|
for ($i = 0; $i < 20; $i++) {
|
||
|
$randstring .= $characters[rand(0, strlen($characters)-1)];
|
||
|
}
|
||
|
|
||
|
$token = hash("sha512", $access->id.time().$randstring);
|
||
|
|
||
|
$accessToken = new AccessToken();
|
||
|
$accessToken->access_id = $access->id;
|
||
|
$accessToken->token = $token;
|
||
|
|
||
|
$accessToken->saveOrFail();
|
||
|
|
||
|
return $accessToken;
|
||
|
}
|
||
|
|
||
|
public function getUser() {
|
||
|
return User::query()->where("id", "=", $this->user_id)->first();
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
}
|