gpt4 book ai didi

php - 在 Laravel 5 中使用数据库 session 存储时更改 last_activity 列的类型

转载 作者:行者123 更新时间:2023-11-29 12:09:05 28 4
gpt4 key购买 nike

我刚刚开始在 Laravel 5.5 中使用 database session 驱动程序以及 PostgreSQL,但遇到了一些不便。

我想将 last_activity 列保留为 timestamp with timezone,但 Laravel 想将一个整数写入其中,有时它也会尝试从中删除基于一个整数值。

我尝试在我的 Session 模型中执行以下操作:

public function setLastActivityAttribute($ts){
$this->attributes['last_activity'] = date('c', $ts);
}

这对于保存很有效,但是当 Laravel 尝试垃圾收集 session 时,它使用一个整数值,这会导致 PDOException:

SQLSTATE[22008]: Datetime field overflow: 7 ERROR: date/time field value out of range: "1506794381"
HINT: Perhaps you need a different "datestyle" setting. (SQL: delete from "sessions" where "last_activity" <= 1506794381)

有什么方法可以指定格式或拦截进程以保持 timestamptz 列类型?

最佳答案

我建议通过覆盖 DatabaseSessionHandler.phpgcexpired 方法来创建自定义 session 驱动程序驱动程序使用 timestamp with timezone 而不是整数。

gc 当前传递 time() - $lifetime 但您可以将其更改为 date('c', time() - $lifetime)。在 expired 中,您可以在 $session->last_activity 上调用 strtotime 以转换为与 getTimestamp().

<?php

namespace App\Extensions;
use Illuminate\Session\DatabaseSessionHandler;

class MyPostgresHandler extends DatabaseSessionHandler
{
public function gc($lifetime) {
$sessions = $this->getQuery()->where('last_activity', '<=', date('c', time() - $lifetime))->get();
foreach ($sessions as $session) {
$this->destroy($session->id);
}
}

protected function expired($session)
{
return isset($session->last_activity) &&
strtotime($session->last_activity) < Carbon::now()->subMinutes($this->minutes)->getTimestamp();
}
}

然后你就可以通过扩展ServiceProvider来注册你的新驱动了

<?php

namespace App\Providers;

use App\Extensions\MyPostgresHandler;
use Illuminate\Support\Facades\Session;
use Illuminate\Support\ServiceProvider;

class SessionServiceProvider extends ServiceProvider
{
/**
* Perform post-registration booting of services.
*
* @return void
*/
public function boot()
{
Session::extend('my-db-driver', function ($app) {
return new MyPostgresHandler;
});
}

/**
* Register bindings in the container.
*
* @return void
*/
public function register()
{
//
}
}

现在你可以在 config/session.php 中使用 my-db-driver

有关详细信息,请参阅 https://laravel.com/docs/5.5/session#implementing-the-driver

来自 OP 的更新

FuzzyTree's answer 之上添加,需要添加的代码比文档所说的多,所以我想发布剩余的过程。因为我们正在扩展内置类,所以它与框架的其他部分有一些联系,但值得庆幸的是,有一些方法可以利用它们。最终的 SessionServiceProvider 看起来像这样:

namespace App\Providers;

use App\Extensions\MyPostgresHandler;
use Illuminate\Database\Connectors\PostgresConnector;
use Illuminate\Database\PostgresConnection;
use Illuminate\Support\Facades\Session;
use Illuminate\Support\ServiceProvider;
use Illuminate\Database\Connection;

class SessionServiceProvider extends ServiceProvider {
public function boot(){
Session::extend('postgres', function ($app){
return new MyPostgresHandler;
});
Connection::resolverFor('postgres', function ($connection, $database, $prefix, $config) {
return new PostgresConnection($connection, $database, $prefix, $config);
});
$this->app->bind('db.connector.postgres', function(){
return new PostgresConnector;
});
}
}

我已将我的驱动程序命名为 postgres 并且该驱动程序的类与原始答案中的类相同。由于缺少参数,我的 IDE 在 return new MyPostgresHandler; 行上显示错误,但看起来代码无论如何都能正常工作。

这些解析器对于 Laravel 的其余部分接受我们的新驱动程序是必需的,因为内置类只将 pgsql 名称映射到适当的类,并且因为我们已经制作了一个驱动程序不同的名称,否则将视为无效。

最后,服务提供者必须在 config/app.php 中注册:

'providers' => [
// ...

/*
* Application Service Providers...
*/
App\Providers\AppServiceProvider::class,
App\Providers\AuthServiceProvider::class,
App\Providers\EventServiceProvider::class,
App\Providers\RouteServiceProvider::class,

App\Providers\SessionServiceProvider::class, // <--
],

关于php - 在 Laravel 5 中使用数据库 session 存储时更改 last_activity 列的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46506627/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com