Chamilo is a learning management system focused on ease of use and accessibility
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.
chamilo-lms/main/inc/lib/zombie/zombie_report.class.php

323 lines
9.3 KiB

<?php
/**
* Description of zombie_report
*
* @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 ZombieReport implements Countable
{
/**
* @return ZombieReport
*/
static function create($additional_parameters = array())
{
return new self($additional_parameters);
}
protected $additional_parameters = array();
function __construct($additional_parameters = array())
{
$this->additional_parameters = $additional_parameters;
}
function get_additional_parameters()
{
return $this->additional_parameters;
}
function get_parameters()
{
$result = array(
'name' => 'zombie_report_parameters',
'method' => 'GET',
'attributes' => array('class' => 'well form-horizontal form-search'),
'items' => array(
array(
'name' => 'ceiling',
'label' => get_lang('LastAccess'),
'type' => 'datepickerdate',
'default' => $this->get_ceiling(),
'rules' => array(
// array(
// 'type' => 'required',
// 'message' => get_lang('Required')
// ),
array(
'type' => 'date',
'message' => get_lang('Date')
)
)
),
array(
'name' => 'active_only',
'label' => get_lang('ActiveOnly'),
'type' => 'checkbox',
'default' => $this->get_active_only()
),
array(
'name' => 'submit_button',
'type' => 'style_submit_button',
'value' => get_lang('Search'),
'attributes' => array('class' => 'search')
)
)
);
$additional_parameters = $this->get_additional_parameters();
foreach ($additional_parameters as $key => $value) {
$result['items'][] = array(
'type' => 'hidden',
'name' => $key,
'value' => $value
);
}
return $result;
}
protected $parameters_form = null;
/**
*
* @return FormValidator
*/
function get_parameters_form()
{
$parameters = $this->get_parameters();
if (empty($parameters)) {
return null;
}
if (empty($this->parameters_form)) {
$this->parameters_form = FormValidator::create($parameters);
}
return $this->parameters_form;
}
function display_parameters($return = false)
{
$form = $this->get_parameters_form();
if (empty($form)) {
return '';
}
$result = $form->return_form();
if ($return) {
return $result;
} else {
echo $result;
}
}
function is_valid()
{
$form = $this->get_parameters_form();
if (empty($form)) {
return true;
}
return $form->isSubmitted() == false || $form->validate();
}
function get_ceiling()
{
$result = Request::get('ceiling');
$result = $result ? $result : ZombieManager::last_year();
$result = is_array($result) && count($result) == 1 ? reset($result) : $result;
$result = is_array($result) ? mktime(0, 0, 0, $result['F'], $result['d'], $result['Y']) : $result;
$result = is_numeric($result) ? (int) $result : $result;
$result = is_string($result) ? strtotime($result) : $result;
return $result;
}
function get_active_only()
{
$result = Request::get('active_only', false);
$result = $result === 'true' ? true : $result;
$result = $result === 'false' ? false : $result;
$result = (bool) $result;
return $result;
}
function get_action()
{
/**
* todo check token
*/
$check = Security::check_token('post');
Security::clear_token();
if (!$check) {
return 'display';
}
return Request::post('action', 'display');
}
function perform_action()
{
$ids = Request::post('id');
if (empty($ids)) {
return $ids;
}
$action = $this->get_action();
$f = array($this, 'action_' . $action);
if (is_callable($f)) {
return call_user_func($f, $ids);
}
return false;
}
function action_deactivate($ids)
{
return UserManager::deactivate_users($ids);
}
function action_activate($ids)
{
return UserManager::activate_users($ids);
}
function action_delete($ids)
{
return UserManager::delete_users($ids);
}
function count()
{
if (!$this->is_valid()) {
return 0;
}
$ceiling = $this->get_ceiling();
$active_only = $this->get_active_only();
$items = ZombieManager::list_zombies($ceiling, $active_only);
return count($items);
}
function get_data($from, $count, $column, $direction)
{
if (!$this->is_valid()) {
return array();
}
$ceiling = $this->get_ceiling();
$active_only = $this->get_active_only();
$items = ZombieManager::list_zombies($ceiling, $active_only)->limit($count, $from)->orderby($column, $direction);
$result = array();
foreach ($items as $item) {
$row = array();
$row[] = $item['user_id'];
$row[] = $item['code'];
$row[] = $item['firstname'];
$row[] = $item['lastname'];
$row[] = $item['username'];
$row[] = $item['email'];
$row[] = $item['status'];
$row[] = $item['auth_source'];
$row[] = api_format_date($item['registration_date'], DATE_FORMAT_SHORT);
$row[] = api_format_date($item['login_date'], DATE_FORMAT_SHORT);
$row[] = $item['active'];
$result[] = $row;
}
return $result;
}
function display_data($return = false)
{
$count = array($this, 'count');
$data = array($this, 'get_data');
$parameters = array();
$parameters['sec_token'] = Security::get_token();
$parameters['ceiling'] = $this->get_ceiling();
$parameters['active_only'] = $this->get_active_only() ? 'true' : 'false';
$additional_parameters = $this->get_additional_parameters();
$parameters = array_merge($additional_parameters, $parameters);
$table = new SortableTable('users', $count, $data, 1, 50);
$table->set_additional_parameters($parameters);
$col = 0;
$table->set_header($col++, '', false);
$table->set_header($col++, get_lang('Code'));
$table->set_header($col++, get_lang('FirstName'));
$table->set_header($col++, get_lang('LastName'));
$table->set_header($col++, get_lang('LoginName'));
$table->set_header($col++, get_lang('Email'));
$table->set_header($col++, get_lang('Profile'));
$table->set_header($col++, get_lang('AuthenticationSource'));
$table->set_header($col++, get_lang('RegisteredDate'));
$table->set_header($col++, get_lang('LastAccess'), false);
$table->set_header($col++, get_lang('Active'), false);
$table->set_column_filter(5, array($this, 'format_email'));
$table->set_column_filter(6, array($this, 'format_status'));
$table->set_column_filter(10, array($this, 'format_active'));
$table->set_form_actions(array(
'activate' => get_lang('Activate'),
'deactivate' => get_lang('Deactivate'),
'delete' => get_lang('Delete')
));
if ($return) {
return $table->return_table();
} else {
echo $table->return_table();
}
}
/**
* Table formatter for the active column.
*
* @param string $active
* @return string
*/
function format_active($active)
{
$active = ($active == '1');
if ($active) {
$image = 'accept';
$text = get_lang('Yes');
} else {
$image = 'error';
$text = get_lang('No');
}
$result = Display::return_icon($image . '.png', $text);
return $result;
}
function format_status($status)
{
$statusname = api_get_status_langvars();
return $statusname[$status];
}
function format_email($email)
{
return Display :: encrypted_mailto_link($email, $email);
}
function display($return = false)
{
$result = $this->display_parameters($return);
if ($this->perform_action()) {
if ($return) {
$result .= Display::return_confirmation_message(get_lang('Done'));
} else {
Display::display_confirmation_message(get_lang('Done'));
}
}
$result .= $this->display_data($return);
if ($return) {
return $result;
}
}
}