123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php namespace System\Session\Driver;
- class DB implements \System\Session\Driver {
- /**
- * Load a session by ID.
- *
- * @param string $id
- * @return array
- */
- public function load($id)
- {
- // -----------------------------------------------------
- // Find the session in the database.
- // -----------------------------------------------------
- $session = $this->query()->find($id);
- // -----------------------------------------------------
- // If the session was found, return it.
- // -----------------------------------------------------
- if ( ! is_null($session))
- {
- return array('id' => $session->id, 'last_activity' => $session->last_activity, 'data' => unserialize($session->data));
- }
- }
- /**
- * Save a session.
- *
- * @param array $session
- * @return void
- */
- public function save($session)
- {
- // -----------------------------------------------------
- // Delete the existing session row.
- // -----------------------------------------------------
- $this->delete($session['id']);
- // -----------------------------------------------------
- // Insert a new session row.
- // -----------------------------------------------------
- $this->query()->insert(array('id' => $session['id'], 'last_activity' => $session['last_activity'], 'data' => serialize($session['data'])));
- }
- /**
- * Delete a session by ID.
- *
- * @param string $id
- * @return void
- */
- public function delete($id)
- {
- $this->query()->where('id', '=', $id)->delete();
- }
- /**
- * Delete all expired sessions.
- *
- * @param int $expiration
- * @return void
- */
- public function sweep($expiration)
- {
- $this->query()->where('last_activity', '<', $expiration)->delete();
- }
- /**
- * Get a session database query.
- *
- * @return Query
- */
- private function query()
- {
- return \System\DB::table(\System\Config::get('session.table'));
- }
-
- }
|