winter/modules/backend/models/AccessLog.php
Samuel Georges 805c0939ad Introduce two new dash widgets: welcome and active theme
System warnings have been moved to the system dash widget
Minor styling and language changes
2016-05-28 11:10:33 +10:00

63 lines
1.3 KiB
PHP

<?php namespace Backend\Models;
use Model;
use Request;
/**
* Model for logging access to the back-end
*
* @package october\backend
* @author Alexey Bobkov, Samuel Georges
*/
class AccessLog extends Model
{
/**
* @var string The database table used by the model.
*/
protected $table = 'backend_access_log';
/**
* @var array Relations
*/
public $belongsTo = [
'user' => ['Backend\Models\User']
];
/**
* Creates a log record
* @param Backend\Models\User $user Admin user
* @return self
*/
public static function add($user)
{
$record = new static;
$record->user = $user;
$record->ip_address = Request::getClientIp();
$record->save();
return $record;
}
/**
* Returns a recent entry, latest entry is not considered recent
* if the creation day is the same as today.
* @return self
*/
public static function getRecent($user)
{
$records = static::where('user_id', $user->id)
->orderBy('created_at', 'desc')
->limit(2)
->get()
;
if (!count($records)) {
return null;
}
$first = $records->first();
return !$first->created_at->isToday() ? $first : $records->pop();
}
}