123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345 |
- <?php
- /* Copyright (C) 2004-2017 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
- * Copyright (C) 2015 Bahfir Abbes <bafbes@gmail.com>
- * Copyright (C) 2018 Frédéric France <frederic.france@netlogic.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/admin/tools/listevents.php
- * \ingroup core
- * \brief List of security events
- */
- require '../../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/events.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
- if (! $user->admin)
- accessforbidden();
- $action=GETPOST('action', 'alpha');
- $confirm=GETPOST('confirm','alpha');
- // Security check
- if ($user->societe_id > 0)
- {
- $action = '';
- $socid = $user->societe_id;
- }
- $langs->load("admin");
- $langs->load("companies");
- $langs->load("users");
- $langs->load("other");
- // Load variable for pagination
- $limit = GETPOST('limit','int')?GETPOST('limit','int'):$conf->liste_limit;
- $sortfield = GETPOST('sortfield','alpha');
- $sortorder = GETPOST('sortorder','alpha');
- $page = GETPOST('page','int');
- if (empty($page) || $page == -1) { $page = 0; } // If $page is not defined, or '' or -1
- $offset = $limit * $page;
- $pageprev = $page - 1;
- $pagenext = $page + 1;
- if (! $sortfield) $sortfield="dateevent";
- if (! $sortorder) $sortorder="DESC";
- $search_code = GETPOST("search_code");
- $search_ip = GETPOST("search_ip");
- $search_user = GETPOST("search_user");
- $search_desc = GETPOST("search_desc");
- $search_ua = GETPOST("search_ua");
- if (GETPOST("date_startmonth") == '' || GETPOST("date_startmonth") > 0) $date_start=dol_mktime(0,0,0,GETPOST("date_startmonth"),GETPOST("date_startday"),GETPOST("date_startyear"));
- else $date_start=-1;
- if (GETPOST("date_endmonth") == '' || GETPOST("date_endmonth") > 0) $date_end=dol_mktime(23,59,59,GETPOST("date_endmonth"),GETPOST("date_endday"),GETPOST("date_endyear"));
- else $date_end=-1;
- // checks:if date_start>date_end then date_end=date_start + 24 hours
- if ($date_start > 0 && $date_end > 0 && $date_start > $date_end) $date_end=$date_start+86400;
- $now = dol_now();
- $nowarray = dol_getdate($now);
- if (empty($date_start)) // We define date_start and date_end
- {
- $date_start=dol_get_first_day($nowarray['year'],$nowarray['mon'],false);
- }
- if (empty($date_end))
- {
- $date_end=dol_mktime(23,59,59,$nowarray['mon'],$nowarray['mday'],$nowarray['year']);
- }
- // Set $date_startmonth...
- $tmp = dol_getdate($date_start);
- $date_startday = $tmp['mday'];
- $date_startmonth = $tmp['mon'];
- $date_startyear = $tmp['year'];
- $tmp = dol_getdate($date_end);
- $date_endday = $tmp['mday'];
- $date_endmonth = $tmp['mon'];
- $date_endyear = $tmp['year'];
- /*
- * Actions
- */
- $now=dol_now();
- // Purge search criteria
- if (GETPOST('button_removefilter_x','alpha') || GETPOST('button_removefilter.x','alpha') || GETPOST('button_removefilter','alpha')) // All tests are required to be compatible with all browsers
- {
- $date_start=-1;
- $date_end=-1;
- $search_code='';
- $search_ip='';
- $search_user='';
- $search_desc='';
- $search_ua='';
- }
- // Purge audit events
- if ($action == 'confirm_purge' && $confirm == 'yes' && $user->admin)
- {
- $error=0;
- $db->begin();
- $securityevents=new Events($db);
- // Delete events
- $sql = "DELETE FROM ".MAIN_DB_PREFIX."events";
- $sql.= " WHERE entity = ".$conf->entity;
- dol_syslog("listevents purge", LOG_DEBUG);
- $resql = $db->query($sql);
- if (! $resql)
- {
- $error++;
- setEventMessages($db->lasterror(), null, 'errors');
- }
- // Add event purge
- $text=$langs->trans("SecurityEventsPurged");
- $securityevent=new Events($db);
- $securityevent->type='SECURITY_EVENTS_PURGE';
- $securityevent->dateevent=$now;
- $securityevent->description=$text;
- $result=$securityevent->create($user);
- if ($result > 0)
- {
- $db->commit();
- dol_syslog($text, LOG_WARNING);
- }
- else
- {
- $error++;
- dol_syslog($securityevent->error, LOG_ERR);
- $db->rollback();
- }
- }
- /*
- * View
- */
- llxHeader('',$langs->trans("Audit"));
- $form=new Form($db);
- $userstatic=new User($db);
- $usefilter=0;
- $sql = "SELECT e.rowid, e.type, e.ip, e.user_agent, e.dateevent,";
- $sql.= " e.fk_user, e.description,";
- $sql.= " u.login";
- $sql.= " FROM ".MAIN_DB_PREFIX."events as e";
- $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."user as u ON u.rowid = e.fk_user";
- $sql.= " WHERE e.entity IN (".getEntity('event').")";
- if ($date_start > 0) $sql.= " AND e.dateevent >= '".$db->idate($date_start)."'";
- if ($date_end > 0) $sql.= " AND e.dateevent <= '".$db->idate($date_end)."'";
- if ($search_code) { $usefilter++; $sql.=natural_search("e.type", $search_code, 0); }
- if ($search_ip) { $usefilter++; $sql.=natural_search("e.ip", $search_ip, 0); }
- if ($search_user) { $usefilter++; $sql.=natural_search("u.login", $search_user, 0); }
- if ($search_desc) { $usefilter++; $sql.=natural_search("e.description", $search_desc, 0); }
- if ($search_ua) { $usefilter++; $sql.=natural_search("e.user_agent", $search_ua, 0); }
- $sql.= $db->order($sortfield,$sortorder);
- // Count total nb of records
- $nbtotalofrecords = '';
- /*if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST))
- {
- $result = $db->query($sql);
- $nbtotalofrecords = $db->num_rows($result);
- if (($page * $limit) > $nbtotalofrecords) // if total resultset is smaller then paging size (filtering), goto and load page 0
- {
- $page = 0;
- $offset = 0;
- }
- }*/
- $sql.= $db->plimit($conf->liste_limit+1, $offset);
- //print $sql;
- $result = $db->query($sql);
- if ($result)
- {
- $num = $db->num_rows($result);
- $i = 0;
- $param='';
- if (! empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) $param.='&contextpage='.$contextpage;
- if ($limit > 0 && $limit != $conf->liste_limit) $param.='&limit='.$limit;
- if ($optioncss != '') $param.='&optioncss='.$optioncss;
- if ($search_code) $param.='&search_code='.urlencode($search_code);
- if ($search_ip) $param.='&search_ip='.urlencode($search_ip);
- if ($search_user) $param.='&search_user='.urlencode($search_user);
- if ($search_desc) $param.='&search_desc='.urlencode($search_desc);
- if ($search_ua) $param.='&search_ua='.urlencode($search_ua);
- if ($date_startmonth) $param.= "&date_startmonth=".urlencode($date_startmonth);
- if ($date_startday) $param.= "&date_startday=".urlencode($date_startday);
- if ($date_startyear) $param.= "&date_startyear=".urlencode($date_startyear);
- if ($date_endmonth) $param.= "&date_endmonth=".urlencode($date_endmonth);
- if ($date_endday) $param.= "&date_endday=".urlencode($date_endday);
- if ($date_endyear) $param.= "&date_endyear=".urlencode($date_endyear);
- $langs->load('withdrawals');
- if ($num)
- {
- $center='<a class="butActionDelete" href="'.$_SERVER["PHP_SELF"].'?action=purge">'.$langs->trans("Purge").'</a>';
- }
- print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">';
- print_barre_liste($langs->trans("ListOfSecurityEvents"), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $center, $num, $nbtotalofrecords, 'setup', 0, '', '', $limit);
- if ($action == 'purge')
- {
- $formquestion=array();
- print $form->formconfirm($_SERVER["PHP_SELF"].'?noparam=noparam', $langs->trans('PurgeAuditEvents'), $langs->trans('ConfirmPurgeAuditEvents'),'confirm_purge',$formquestion,'no',1);
- }
- print '<div class="div-table-responsive">';
- print '<table class="liste" width="100%">';
- // Lignes des champs de filtres
- print '<tr class="liste_titre">';
- print '<td class="liste_titre" width="15%">'.$form->selectDate($date_start,'date_start',0,0,0,'',1,0).$form->selectDate($date_end,'date_end',0,0,0,'',1,0).'</td>';
- print '<td align="left" class="liste_titre">';
- print '<input class="flat" type="text" size="10" name="search_code" value="'.$search_code.'">';
- print '</td>';
- // IP
- print '<td align="left" class="liste_titre">';
- print '<input class="flat" type="text" size="10" name="search_ip" value="'.$search_ip.'">';
- print '</td>';
- print '<td align="left" class="liste_titre">';
- print '<input class="flat" type="text" size="10" name="search_user" value="'.$search_user.'">';
- print '</td>';
- print '<td align="left" class="liste_titre">';
- //print '<input class="flat" type="text" size="10" name="search_desc" value="'.$search_desc.'">';
- print '</td>';
- print '<td align="right" class="liste_titre">';
- $searchpicto=$form->showFilterAndCheckAddButtons(0);
- print $searchpicto;
- print '</td>';
- print "</tr>\n";
- print '<tr class="liste_titre">';
- print_liste_field_titre("Date",$_SERVER["PHP_SELF"],"e.dateevent","",$param,'align="left"',$sortfield,$sortorder);
- print_liste_field_titre("Code",$_SERVER["PHP_SELF"],"e.type","",$param,'align="left"',$sortfield,$sortorder);
- print_liste_field_titre("IP",$_SERVER["PHP_SELF"],"e.ip","",$param,'align="left"',$sortfield,$sortorder);
- print_liste_field_titre("User",$_SERVER["PHP_SELF"],"u.login","",$param,'align="left"',$sortfield,$sortorder);
- print_liste_field_titre("Description",$_SERVER["PHP_SELF"],"e.description","",$param,'align="left"',$sortfield,$sortorder);
- print_liste_field_titre('');
- print "</tr>\n";
- while ($i < min($num, $limit))
- {
- $obj = $db->fetch_object($result);
- print '<tr class="oddeven">';
- // Date
- print '<td align="left" class="nowrap">'.dol_print_date($db->jdate($obj->dateevent),'%Y-%m-%d %H:%M:%S').'</td>';
- // Code
- print '<td>'.$obj->type.'</td>';
- // IP
- print '<td class="nowrap">';
- print dol_print_ip($obj->ip);
- print '</td>';
- // Login
- print '<td class="nowrap">';
- if ($obj->fk_user)
- {
- $userstatic->id=$obj->fk_user;
- $userstatic->login=$obj->login;
- print $userstatic->getLoginUrl(1);
- }
- else print ' ';
- print '</td>';
- // Description
- print '<td>';
- $text=$langs->trans($obj->description);
- if (preg_match('/\((.*)\)(.*)/i',$obj->description,$reg))
- {
- $val=explode(',',$reg[1]);
- $text=$langs->trans($val[0], isset($val[1])?$val[1]:'', isset($val[2])?$val[2]:'', isset($val[3])?$val[3]:'', isset($val[4])?$val[4]:'');
- if (! empty($reg[2])) $text.=$reg[2];
- }
- print $text;
- print '</td>';
- // More informations
- print '<td align="right">';
- $htmltext='<b>'.$langs->trans("UserAgent").'</b>: '.($obj->user_agent?$obj->user_agent:$langs->trans("Unknown"));
- print $form->textwithpicto('',$htmltext);
- print '</td>';
- print "</tr>\n";
- $i++;
- }
- if ($num == 0)
- {
- if ($usefilter) print '<tr><td colspan="6">'.$langs->trans("NoEventFoundWithCriteria").'</td></tr>';
- else print '<tr><td colspan="6">'.$langs->trans("NoEventOrNoAuditSetup").'</td></tr>';
- }
- print "</table>";
- print "</div>";
- print "</form>";
- $db->free($result);
- }
- else
- {
- dol_print_error($db);
- }
- // End of page
- llxFooter();
- $db->close();
|