我正在尝试在应用程序的每个请求上记录数据。如果用户保存特定模型的数据,我试图将原始数据保存在与revisions
表关联的activity_logs
表中。
我已尝试使用模型事件来捕获数据,如下所示:
class BaseModel extends Model
{
public static function boot()
{
parent::boot();
static::saving(function($model){
$revision = new Revision;
$revision->table_name = $model->getTable();
$revision->row_id = $model->id;
$revision->data = json_encode($model->getDirty());
$revision->save();
$log = ActivityLog::find(Session::pull('activity_log_id'));
$log->revision_id = $revision->id;
$log->save();
});
}
}
但是,似乎在实例化中间件之前触发了模型事件,因此尽管正在保存修订版,但它仍保存在先前的GET
请求中而不是新的PUT
请求中
编辑:更新以包含跟踪中间件代码:
public function handle($request, Closure $next)
{
// Handle the next response and check tracking cookie
if($request->hasCookie('session_tracking')) {
$cookie_id = Cookie::get('session_tracking');
$next_request = $next($request);
} else {
$cookie_id = Uuid::generate()->string;
$next_request = $next($request)->withCookie(cookie('session_tracking', $cookie_id));
}
// Get user agent data
$agent = new Agent();
$exception = $next_request->exception;
// Store associated log data
$path = $this->storePaths($request);
$browser = $this->storeBrowser($agent);
$os = $this->storeOS($agent);
$device = $this->storeDevice($agent);
$error = $this->storeError($exception);
// Store the collated log
$activitylog = $this->storeLog($path, $browser, $os, $device, $agent, $request, $cookie_id, $error);
Session::put('activity_log_id', $activitylog->id);
return $next_request;
}
答案 0 :(得分:2)
在创建新的活动日志记录之前,您正在运行控制器。
如果你移动
$next_request = $next($request);
在创建日志记录之后,将在执行模型保存方法之前创建新的日志记录。