summaryrefslogtreecommitdiff
path: root/app/Model/LastLogin.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-05-28 19:48:22 -0400
committerFrederic Guillot <fred@kanboard.net>2016-05-28 19:48:22 -0400
commit14713b0ec7ed93ca45578da069ad4e19a7d8addf (patch)
tree79972d53f6091a1ddb17f64a6a05a5523f5d5168 /app/Model/LastLogin.php
parent936376ffe74c583d3cb819e98f53a85137fdf8bc (diff)
Rename all models
Diffstat (limited to 'app/Model/LastLogin.php')
-rw-r--r--app/Model/LastLogin.php92
1 files changed, 0 insertions, 92 deletions
diff --git a/app/Model/LastLogin.php b/app/Model/LastLogin.php
deleted file mode 100644
index 35c7afc9..00000000
--- a/app/Model/LastLogin.php
+++ /dev/null
@@ -1,92 +0,0 @@
-<?php
-
-namespace Kanboard\Model;
-
-use Kanboard\Core\Base;
-
-/**
- * LastLogin model
- *
- * @package model
- * @author Frederic Guillot
- */
-class LastLogin extends Base
-{
- /**
- * SQL table name
- *
- * @var string
- */
- const TABLE = 'last_logins';
-
- /**
- * Number of connections to keep for history
- *
- * @var integer
- */
- const NB_LOGINS = 10;
-
- /**
- * Create a new record
- *
- * @access public
- * @param string $auth_type Authentication method
- * @param integer $user_id User id
- * @param string $ip IP Address
- * @param string $user_agent User Agent
- * @return boolean
- */
- public function create($auth_type, $user_id, $ip, $user_agent)
- {
- $this->cleanup($user_id);
-
- return $this->db
- ->table(self::TABLE)
- ->insert(array(
- 'auth_type' => $auth_type,
- 'user_id' => $user_id,
- 'ip' => $ip,
- 'user_agent' => substr($user_agent, 0, 255),
- 'date_creation' => time(),
- ));
- }
-
- /**
- * Cleanup login history
- *
- * @access public
- * @param integer $user_id
- */
- public function cleanup($user_id)
- {
- $connections = $this->db
- ->table(self::TABLE)
- ->eq('user_id', $user_id)
- ->desc('id')
- ->findAllByColumn('id');
-
- if (count($connections) >= self::NB_LOGINS) {
- $this->db->table(self::TABLE)
- ->eq('user_id', $user_id)
- ->notin('id', array_slice($connections, 0, self::NB_LOGINS - 1))
- ->remove();
- }
- }
-
- /**
- * Get the last connections for a given user
- *
- * @access public
- * @param integer $user_id User id
- * @return array
- */
- public function getAll($user_id)
- {
- return $this->db
- ->table(self::TABLE)
- ->eq('user_id', $user_id)
- ->desc('id')
- ->columns('id', 'auth_type', 'ip', 'user_agent', 'date_creation')
- ->findAll();
- }
-}