<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
keukenmagazijn / laravel-google-authentication example snippets
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('google_account_id')->unique()->nullable();
$table->string('name')->nullable();
$table->string('email')->unique();
$table->string('avatar')->nullable();
$table->string('password')->nullable();
$table->rememberToken();
$table->softDeletes();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('users');
}
}
class User extends Model {
use Keukenmagazijn\LaravelGoogleAuthentication\UsesGoogleIdentity;
}
{!! (new Keukenmagazijn\LaravelGoogleAuthentication\GoogleIdentityFacade())->renderAuthorizeButton() !!}
namespace App\Entities;
use Hash;
use Illuminate\Auth\Passwords\CanResetPassword;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
use Illuminate\Database\Eloquent\Relations\HasOne;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Keukenmagazijn\LaravelGoogleAuthentication\Traits\UsesGoogleIdentity;
class User extends Authenticatable
{
use Notifiable;
use SoftDeletes;
use CanResetPassword;
use UsesGoogleIdentity;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name', 'email', 'password', 'avatar', 'google_account_id'
];
/**
* 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 string $key
* @return bool
*/
public function hasRole(string $key): bool {
return $this->roles()->where('_key', $key)->exists();
}
/**
* @return BelongsToMany
*/
public function roles(): BelongsToMany {
return $this->belongsToMany(Role::class);
}
/**
* @return Role
*/
public function getHighestRole():? Role {
return $this->roles()->orderBy('powerlevel', 'desc')->first();
}
}
namespace App\Entities;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class GoogleOauthToken extends Model
{
protected $fillable = [
'user_id', 'access_token', 'refresh_token', 'id_token', 'expires_at'
];
/**
* @return BelongsTo
*/
public function user(): BelongsTo {
return $this->belongsTo(User::class);
}
}
namespace App\Entities;
class Role
{
/** @var array */
protected $fillable = [
'name', '_key', 'icon', 'powerlevel', 'active'
];
/**
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
*/
public function users () {
return $this->belongsToMany(User::class);
}
/**
* @return string
*/
public function getIcon(): string {
if (empty($this->icon)) return 'fa fa-question-circle-o';
return $this->icon;
}
}