You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
3.5 KiB
99 lines
3.5 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
/**
|
|
* ZombieQuery
|
|
*
|
|
* @copyright (c) 2012 University of Geneva
|
|
* @license GNU General Public License - http://www.gnu.org/copyleft/gpl.html
|
|
* @author Laurent Opprecht <laurent@opprecht.info>
|
|
*/
|
|
class ZombieManager
|
|
{
|
|
static function last_year()
|
|
{
|
|
$today = time();
|
|
$day = date('j', $today);
|
|
$month = date('n', $today);
|
|
$year = date('Y', $today) - 1;
|
|
return mktime(0, 0, 0, $month, $day, $year);
|
|
}
|
|
|
|
/**
|
|
* Returns users whose last login is prior from $ceiling
|
|
*
|
|
* @param int|string $ceiling last login date
|
|
* @param bool $active_only if true returns only active users. Otherwise returns all users.
|
|
* @return ResultSet
|
|
*/
|
|
static function listZombies($ceiling, $active_only = true, $count = 0, $from = 10, $column = 'user.firstname', $direction = 'desc')
|
|
{
|
|
$ceiling = is_numeric($ceiling) ? (int) $ceiling : strtotime($ceiling);
|
|
$ceiling = date('Y-m-d H:i:s', $ceiling);
|
|
|
|
$user_table = Database::get_main_table(TABLE_MAIN_USER);
|
|
$login_table = Database::get_main_table(TABLE_STATISTIC_TRACK_E_LOGIN);
|
|
|
|
$sql = 'SELECT
|
|
user.user_id,
|
|
user.firstname,
|
|
user.lastname,
|
|
user.username,
|
|
user.auth_source,
|
|
user.email,
|
|
user.status,
|
|
user.registration_date,
|
|
user.active,
|
|
access.login_date';
|
|
|
|
if (api_is_multiple_url_enabled()) {
|
|
$access_url_rel_user_table = Database :: get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER);
|
|
$current_url_id = api_get_current_access_url_id();
|
|
|
|
$sql .= " FROM $user_table as user, $login_table as access, $access_url_rel_user_table as url
|
|
WHERE
|
|
access.login_date = (SELECT MAX(a.login_date)
|
|
FROM $login_table as a
|
|
WHERE a.login_user_id = user.user_id
|
|
) AND
|
|
access.login_date <= '$ceiling' AND
|
|
user.user_id = access.login_user_id AND
|
|
url.user_id = user.user_id AND url.access_url_id=$current_url_id";
|
|
} else {
|
|
$sql .= " FROM $user_table as user, $login_table as access
|
|
WHERE
|
|
access.login_date = (SELECT MAX(a.login_date)
|
|
FROM $login_table as a
|
|
WHERE a.login_user_id = user.user_id
|
|
) AND
|
|
access.login_date <= '$ceiling' AND
|
|
user.user_id = access.login_user_id";
|
|
}
|
|
if ($active_only) {
|
|
$sql .= ' AND user.active = 1';
|
|
}
|
|
|
|
$count = intval($count);
|
|
$from = intval($from);
|
|
|
|
$sql .= " ORDER BY $column $direction";
|
|
$sql .= " LIMIT $count, $from ";
|
|
|
|
$result = Database::query($sql);
|
|
|
|
return Database::store_result($result, 'ASSOC');
|
|
}
|
|
|
|
/**
|
|
* @param $ceiling
|
|
*/
|
|
static function deactivate_zombies($ceiling)
|
|
{
|
|
$zombies = self::list_zombies($ceiling);
|
|
$ids = array();
|
|
foreach($zombies as $zombie) {
|
|
$ids[] = $zombie['user_id'];
|
|
}
|
|
UserManager::deactivate_users($ids);
|
|
}
|
|
}
|
|
|