イントロダクションIntroduction
HTTP駆動のアプリケーションはステートレスですから、リクエスト間に渡り情報を保存するセッションが提供されています。Laravelは美しく統一されたAPIを使える様々なバックエンドのセッションを用意しています。人気のあるMemcachedやRedis、データベースも始めからサポートしています。Since HTTP driven applications are stateless, sessions provide a way to store information about the user across requests. Laravel ships with a variety of session back-ends available for use through a clean, unified API. Support for popular back-ends such as Memcached[http://memcached.org], Redis[http://redis.io], and databases is included out of the box.
設定Configuration
セッションの設定はconfig/session.php
にあります。このファイルのオプションには詳しくコメントがついていますので確認して下さい。ほとんどのアプリケーションでうまく動作できるように、Laravelはfile
セッションドライバーをデフォルトとして設定しています。実働環境のアプリケーションではセッションの動作をより早くするために、memcached
やredis
ドライバーの使用を考慮しましょう。The session configuration file is stored at config/session.php
. Be sure to review the well documented options available to you in this file. By default, Laravel is configured to use the file
session driver, which will work well for many applications. In production applications, you may consider using the memcached
or redis
drivers for even faster session performance.
セッションドライバー(driver
)はリクエスト毎のセッションデータをどこに保存するかを決めます。Laravelには最初から素晴らしいドライバーが用意されています。The session driver
defines where session data will be stored for each request. Laravel ships with several great drivers out of the box:
注意: セッションデータが持続しないように、arrayドライバーは通常テストの実行で使用されます。Note: The array driver is typically used for running tests[/docs/{{version}}/testing] to prevent session data from persisting.
ドライバーの事前要件Driver Prerequisites
データベースDatabase
database
セッションドライバーを使う場合、セッションアイテムを含むテーブルを準備する必要があります。以下にこのテーブル宣言のサンプル「スキーマ」を示します。When using the database
session driver, you will need to setup a table to contain the session items. Below is an example Schema
declaration for the table:
Schema::create('sessions', function ($table) {
$table->string('id')->unique();
$table->text('payload');
$table->integer('last_activity');
});
session:table
Artisanコマンドを使えば、このマイグレーションが生成できます!You may use the session:table
Artisan command to generate this migration for you!
php artisan session:table
composer dump-autoload
php artisan migrate
RedisRedis
ReidsセッションをLaravelで使用する前に、Composerでpredis/predis
パッケージ(~1.0)をインストールする必要があります。Before using Redis sessions with Laravel, you will need to install the predis/predis
package (~1.0) via Composer.
その他セッションでの考慮点Other Session Considerations
Laravelフレームワークはflash
セッションキーを内部で使用しているため、この名前でアイテムをセッションに追加してはいけません。The Laravel framework uses the flash
session key internally, so you should not add an item to the session by that name.
セッションに保存する全データを暗号化したい場合、encrypt
設定オプションをtrue
に指定してください。If you need all stored session data to be encrypted, set the encrypt
configuration option to true
.
基本的な使用法Basic Usage
セッションへのアクセスAccessing The Session
最初にセッションへアクセスしてみましょう。コントローラーメソッドでタイプヒントを指定し、HTTPリクエストを経由してセッションをインスタンスへアクセスできます。コントローラーメソッドの依存はLaravelのサービスコンテナにより注入されることを覚えておきましょう。First, let's access the session. We can access the session instance via the HTTP request, which can be type-hinted on a controller method. Remember, controller method dependencies are injected via the Laravel service container[/docs/{{version}}/container]:
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
class UserController extends Controller
{
/**
* 指定ユーザーのプロフィールを表示
*
* @param Request $request
* @param int $id
* @return Response
*/
public function showProfile(Request $request, $id)
{
$value = $request->session()->get('key');
//
}
}
セッションから値を取得するときに、get
メソッドの第2引数としてデフォルト値を渡せます。このデフォルト値は指定したキーがセッションに存在していない場合に返されます。デフォルト値として「クロージャー」をget
メソッドへ渡す場合、その「クロージャー」の実行結果が返されます。When you retrieve a value from the session, you may also pass a default value as the second argument to the get
method. This default value will be returned if the specified key does not exist in the session. If you pass a Closure
as the default value to the get
method, the Closure
will be executed and its result returned:
$value = $request->session()->get('key', 'default');
$value = $request->session()->get('key', function() {
return 'default';
});
セッションから全データを取得したい場合は、all
メソッドを使用してください。If you would like to retrieve all data from the session, you may use the all
method:
$data = $request->session()->all();
セッションから取得したり、保存したりするためにグローバルのsession
ヘルパ関数を使用することができます。You may also use the global session
PHP function to retrieve and store data in the session:
Route::get('home', function () {
// セッションからデータを一つ取得…
$value = session('key');
// セッションへデータ一つを保存…
session(['key' => 'value']);
});
セッション中のアイテム存在を確認Determining If An Item Exists In The Session
has
メソッドでセッションにアイテムが存在するかを調べられます。このメソッドは存在している場合にtrue
を返します。The has
method may be used to check if an item exists in the session. This method will return true
if the item exists:
if ($request->session()->has('users')) {
//
}
セッションへのデータ保存Storing Data In The Session
セッションインスタンスへアクセスしたら、データを操作するために数々のメソッドを呼び出せます。たとえば新しいデータをセッションへ保存するにはput
を使います。Once you have access to the session instance, you may call a variety of functions to interact with the underlying data. For example, the put
method stores a new piece of data in the session:
$request->session()->put('key', 'value');
配列セッション値の追加Pushing To Array Session Values
push
メソッドは新しい値を配列のセッション値へ追加します。たとえばuser.teams
キーにチーム名の配列が含まれているなら、新しい値を次のように追加できます。The push
method may be used to push a new value onto a session value that is an array. For example, if the user.teams
key contains an array of team names, you may push a new value onto the array like so:
$request->session()->push('user.teams', 'developers');
取得後アイテムを削除Retrieving And Deleting An Item
pull
メソッドでセッションからアイテムを取得後、削除できます。The pull
method will retrieve and delete an item from the session:
$value = $request->session()->pull('key', 'default');
セッションからアイテムを削除Deleting Items From The Session
forget
メソッドでセッションからデータを削除できます。セッションから全データを削除したければ、flush
メソッドが使用できます。The forget
method will remove a piece of data from the session. If you would like to remove all data from the session, you may use the flush
method:
$request->session()->forget('key');
$request->session()->flush();
セッションIDの再生成Regenerating The Session ID
セッションIDを再生成する必要がある場合、regenerate
メソッドを使ってください。If you need to regenerate the session ID, you may use the regenerate
method:
$request->session()->regenerate();
フラッシュデータFlash Data
次のリクエスト間だけセッションにアイテムを保存したいことは良くあります。flash
メソッドを使ってください。flash
メソッドは直後のHTTPリクエストの間だけセッションにデータを保存します。それ以降は削除されます。フラッシュデータは主にステータスメッセージなど継続しない情報に便利です。Sometimes you may wish to store items in the session only for the next request. You may do so using the flash
method. Data stored in the session using this method will only be available during the subsequent HTTP request, and then will be deleted. Flash data is primarily useful for short-lived status messages:
$request->session()->flash('status', 'タスクは成功しました!');
フラッシュデータをさらにその先のリクエストまで持続させたい場合は、reflash
メソッドを使い全フラッシュデータをその先のリクエストまで持続させられます。特定のフラッシュデータのみ持続させたい場合は、keep
メソッドを使います。If you need to keep your flash data around for even more requests, you may use the reflash
method, which will keep all of the flash data around for an additional request. If you only need to keep specific flash data around, you may use the keep
method:
$request->session()->reflash();
$request->session()->keep(['username', 'email']);
カスタムセッションドライバーの追加Adding Custom Session Drivers
Laravelのセッションのバックエンドにドライバーを追加したい場合、Session
ファサードのextend
メソッドを使用します。サービスプロバイダーのboot
メソッドからextend
メソッドを呼び出してください。To add additional drivers to Laravel's session back-end, you may use the extend
method on the Session
facade[/docs/{{version}}/facades]. You can call the extend
method from the boot
method of a service provider[/docs/{{version}}/providers]:
<?php
namespace App\Providers;
use Session;
use App\Extensions\MongoSessionStore;
use Illuminate\Support\ServiceProvider;
class SessionServiceProvider extends ServiceProvider
{
/**
* サービスの初期処理登録後に実行
*
* @return void
*/
public function boot()
{
Session::extend('mongo', function($app) {
// SessionHandlerInterfaceの実装を返す…
return new MongoSessionStore;
});
}
/**
* コンテナに結合を登録
*
* @return void
*/
public function register()
{
//
}
}
カスタムセッションドライバーはSessionHandlerInterface
を実装している点に注意してください。このインターフェイスは実装が必要なシンプルなメソッドで構成されています。MongoDBのスタブ実装は次のようになるでしょう。Note that your custom session driver should implement the SessionHandlerInterface
. This interface contains just a few simple methods we need to implement. A stubbed MongoDB implementation looks something like this:
<?php
namespace App\Extensions;
class MongoHandler implements SessionHandlerInterface
{
public function open($savePath, $sessionName) {}
public function close() {}
public function read($sessionId) {}
public function write($sessionId, $data) {}
public function destroy($sessionId) {}
public function gc($lifetime) {}
}
キャッシュの「保存インターフェイス」として、これらのメソッドは理解しづらいでしょうから簡単に各メソッドを説明します。Since these methods are not as readily understandable as the cache StoreInterface
, let's quickly cover what each of the methods do:
セッションドライバーを登録したら、config/session.php
設定ファイルでmongo
ドライバーが使用できます。Once the session driver has been registered, you may use the mongo
driver in your config/session.php
configuration file.