123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309 |
- <?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
- {
- protected $additional_parameters = [];
- protected $parameters_form = null;
- public function __construct($additional_parameters = [])
- {
- $this->additional_parameters = $additional_parameters;
- }
- /**
- * @return ZombieReport
- */
- public static function create($additional_parameters = [])
- {
- return new self($additional_parameters);
- }
- public function get_additional_parameters()
- {
- return $this->additional_parameters;
- }
- public function get_parameters()
- {
- $result = [
- 'items' => [
- [
- 'name' => 'ceiling',
- 'label' => get_lang('Latest access'),
- 'type' => 'date_picker',
- 'default' => $this->get_ceiling('Y-m-d'),
- 'rules' => [
- [
- 'type' => 'date',
- 'message' => get_lang('Date'),
- ],
- ],
- ],
- [
- 'name' => 'active_only',
- 'label' => get_lang('active only'),
- 'type' => 'checkbox',
- 'default' => $this->get_active_only(),
- ],
- [
- 'name' => 'submit_button',
- 'type' => 'button',
- 'value' => get_lang('Search'),
- 'attributes' => ['class' => 'search'],
- ],
- ],
- ];
- return $result;
- }
- /**
- * @return FormValidator
- */
- public function get_parameters_form()
- {
- $form = new FormValidator(
- 'zombie_report_parameters',
- 'get',
- null,
- null,
- ['class' => 'well form-horizontal form-search']
- );
- $form->addDatePicker('ceiling', get_lang('Latest access'));
- $form->addCheckBox('active_only', get_lang('active only'));
- $form->addButtonSearch(get_lang('Search'));
- $params = [
- 'active_only' => $this->get_active_only(),
- 'ceiling' => $this->get_ceiling('Y-m-d'),
- ];
- $form->setDefaults($params);
- $additional = $this->get_additional_parameters();
- foreach ($additional as $key => $value) {
- $value = Security::remove_XSS($value);
- $form->addHidden($key, $value);
- }
- return $form;
- }
- public function display_parameters($return = false)
- {
- $form = $this->get_parameters_form();
- $result = $form->returnForm();
- if ($return) {
- return $result;
- } else {
- echo $result;
- }
- }
- public function is_valid()
- {
- $form = $this->get_parameters_form();
- return $form->isSubmitted() == false || $form->validate();
- }
- public function get_ceiling($format = null)
- {
- $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;
- if ($format) {
- $result = date($format, $result);
- }
- return $result;
- }
- public 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;
- }
- public function get_action()
- {
- /**
- * todo check token.
- */
- $check = Security::check_token('post');
- Security::clear_token();
- if (!$check) {
- return 'display';
- }
- return Request::post('action', 'display');
- }
- public function perform_action()
- {
- $ids = Request::post('id');
- if (empty($ids)) {
- return $ids;
- }
- $action = $this->get_action();
- switch ($action) {
- case 'activate':
- return UserManager::activate_users($ids);
- break;
- case 'deactivate':
- return UserManager::deactivate_users($ids);
- break;
- case 'delete':
- return UserManager::delete_users($ids);
- }
- return false;
- }
- public function count()
- {
- $ceiling = $this->get_ceiling();
- $active_only = $this->get_active_only();
- $items = ZombieManager::listZombies($ceiling, $active_only, null, null);
- return count($items);
- }
- public function get_data($from, $count, $column, $direction)
- {
- $ceiling = $this->get_ceiling();
- $active_only = $this->get_active_only();
- $items = ZombieManager::listZombies($ceiling, $active_only, $from, $count, $column, $direction);
- $result = [];
- foreach ($items as $item) {
- $row = [];
- $row[] = $item['user_id'];
- $row[] = $item['official_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;
- }
- public function display_data($return = false)
- {
- $count = [$this, 'count'];
- $data = [$this, 'get_data'];
- $parameters = [];
- $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('zombie_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('First name'));
- $table->set_header($col++, get_lang('Last name'));
- $table->set_header($col++, get_lang('Login'));
- $table->set_header($col++, get_lang('e-mail'));
- $table->set_header($col++, get_lang('Profile'));
- $table->set_header($col++, get_lang('Authentication source'));
- $table->set_header($col++, get_lang('Registered date'));
- $table->set_header($col++, get_lang('Latest access'), false);
- $table->set_header($col, get_lang('active'), false);
- $table->set_column_filter(5, [$this, 'format_email']);
- $table->set_column_filter(6, [$this, 'format_status']);
- $table->set_column_filter(10, [$this, 'format_active']);
- $table->set_form_actions([
- '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
- */
- public 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;
- }
- public function format_status($status)
- {
- $statusname = api_get_status_langvars();
- return $statusname[$status];
- }
- public function format_email($email)
- {
- return Display::encrypted_mailto_link($email, $email);
- }
- public function display($return = false)
- {
- $result = $this->display_parameters($return);
- $valid = $this->perform_action();
- if ($valid) {
- echo Display::return_message(get_lang('Update successful'), 'confirmation');
- }
- $result .= $this->display_data($return);
- if ($return) {
- return $result;
- }
- }
- }
|