Базовая версия сервера API с авторизацией по протоколу OAuth2

This commit is contained in:
Andrey Pokidov
2020-02-27 13:11:52 +07:00
commit 2b167b585f
98 changed files with 9984 additions and 0 deletions

70
app/User.php Normal file
View File

@@ -0,0 +1,70 @@
<?php
namespace App;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Laravel\Passport\HasApiTokens;
class User extends Authenticatable
{
use Notifiable, HasApiTokens;
const TABLE_NAME = 'users';
const DATABASE_SCHEME = 'e_traffic';
protected $connection = self::DATABASE_SCHEME;
/**
* The field contains the name of the tables with users
*
* @var string
*/
protected $table = self::TABLE_NAME;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name', 'email', 'password',
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
/**
* The attributes that should be cast to native types.
*
* @var array
*/
protected $casts = [
'email_verified_at' => 'datetime',
];
/**
* @param int $id
* @return User or NULL
*/
public static function getById($id)
{
return self::query()->where('id', '=', intval($id))->first();
}
/**
* @param string $username
* @return User or NULL
*/
public static function getByUsername($username)
{
return self::query()->where('name', '=', trim($username))->first();
}
}