dolibarr/htdocs/core/class/events.class.php

287 lines
8.3 KiB
PHP
Raw Normal View History

2008-02-28 17:27:18 +01:00
<?php
2010-04-12 02:27:14 +02:00
/* Copyright (C) 2007-2010 Laurent Destailleur <eldy@users.sourceforge.net>
2012-12-30 15:13:49 +01:00
* Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.com>
2008-02-28 17:27:18 +01:00
*
* 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
2008-02-28 17:27:18 +01:00
* (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
2011-08-01 01:45:11 +02:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2008-02-28 17:27:18 +01:00
*/
/**
2010-06-08 01:52:43 +02:00
* \file htdocs/core/class/events.class.php
2008-11-09 13:33:13 +01:00
* \ingroup core
2011-06-19 16:35:16 +02:00
* \brief File of class to manage security events.
2008-11-09 13:33:13 +01:00
* \author Laurent Destailleur
*/
2008-02-28 17:27:18 +01:00
// Put here all includes required by your class file
//require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
//require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
//require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
2008-02-28 17:27:18 +01:00
/**
* Events class
* Initialy built by build_class_from_table on 2008-02-28 17:25
2009-10-20 14:45:52 +02:00
*/
2008-02-28 17:27:18 +01:00
class Events // extends CommonObject
{
2011-09-20 19:19:46 +02:00
public $element='events'; //!< Id that identify managed objects
public $table_element='events'; //!< Name of table without prefix where object is stored
2009-01-21 15:09:42 +01:00
2009-10-20 14:45:52 +02:00
var $id;
var $db;
2009-01-21 15:09:42 +01:00
2008-02-28 17:27:18 +01:00
var $tms;
2008-02-28 21:37:04 +01:00
var $type;
var $entity;
2008-02-28 17:27:18 +01:00
var $dateevent;
var $description;
// List of all events supported by triggers
var $eventstolog=array(
array('id'=>'USER_LOGIN', 'test'=>1),
array('id'=>'USER_LOGIN_FAILED', 'test'=>1),
array('id'=>'USER_LOGOUT', 'test'=>1),
array('id'=>'USER_CREATE', 'test'=>1),
array('id'=>'USER_MODIFY', 'test'=>1),
array('id'=>'USER_NEW_PASSWORD', 'test'=>1),
array('id'=>'USER_ENABLEDISABLE', 'test'=>1),
array('id'=>'USER_DELETE', 'test'=>1),
array('id'=>'GROUP_CREATE', 'test'=>1),
array('id'=>'GROUP_MODIFY', 'test'=>1),
array('id'=>'GROUP_DELETE', 'test'=>1),
/* array('id'=>'ACTION_CREATE', 'test'=>$conf->societe->enabled),
array('id'=>'COMPANY_CREATE', 'test'=>$conf->societe->enabled),
array('id'=>'CONTRACT_VALIDATE', 'test'=>$conf->contrat->enabled),
array('id'=>'PROPAL_VALIDATE', 'test'=>$conf->propal->enabled),
array('id'=>'PROPAL_CLOSE_SIGNED', 'test'=>$conf->propal->enabled),
array('id'=>'PROPAL_CLOSE_REFUSED', 'test'=>$conf->propal->enabled),
array('id'=>'PROPAL_SENTBYMAIL', 'test'=>$conf->propal->enabled),
array('id'=>'ORDER_VALIDATE', 'test'=>$conf->commande->enabled),
array('id'=>'ORDER_SENTBYMAIL', 'test'=>$conf->commande->enabled),
array('id'=>'BILL_VALIDATE', 'test'=>$conf->facture->enabled),
array('id'=>'BILL_PAYED', 'test'=>$conf->facture->enabled),
array('id'=>'BILL_CANCEL', 'test'=>$conf->facture->enabled),
array('id'=>'BILL_SENTBYMAIL', 'test'=>$conf->facture->enabled),
array('id'=>'PAYMENT_CUSTOMER_CREATE','test'=>$conf->facture->enabled),
array('id'=>'PAYMENT_SUPPLIER_CREATE','test'=>$conf->fournisseur->enabled),
array('id'=>'MEMBER_CREATE', 'test'=>$conf->adherent->enabled),
array('id'=>'MEMBER_VALIDATE', 'test'=>$conf->adherent->enabled),
array('id'=>'MEMBER_SUBSCRIPTION', 'test'=>$conf->adherent->enabled),
array('id'=>'MEMBER_MODIFY', 'test'=>$conf->adherent->enabled),
array('id'=>'MEMBER_RESILIATE', 'test'=>$conf->adherent->enabled),
array('id'=>'MEMBER_DELETE', 'test'=>$conf->adherent->enabled),
*/
);
2008-02-28 17:27:18 +01:00
2009-01-21 15:09:42 +01:00
2009-10-20 14:45:52 +02:00
/**
2011-09-11 20:35:38 +02:00
* Constructor
*
* @param DoliDB $db Database handler
2009-10-20 14:45:52 +02:00
*/
function __construct($db)
2009-10-20 14:45:52 +02:00
{
$this->db = $db;
2009-10-20 14:45:52 +02:00
return 1;
}
/**
2011-09-11 20:35:38 +02:00
* Create in database
*
2011-09-11 20:35:38 +02:00
* @param User $user User that create
* @return int <0 if KO, >0 if OK
2009-10-20 14:45:52 +02:00
*/
function create($user)
{
global $conf, $langs;
// Clean parameters
$this->description=trim($this->description);
// Check parameters
if (! $this->description) { $this->error='ErrorBadValueForParameter'; return -1; }
// Insert request
$sql = "INSERT INTO ".MAIN_DB_PREFIX."events(";
$sql.= "type,";
$sql.= "entity,";
$sql.= "ip,";
$sql.= "user_agent,";
$sql.= "dateevent,";
$sql.= "fk_user,";
$sql.= "description";
$sql.= ") VALUES (";
$sql.= " '".$this->type."',";
$sql.= " ".$conf->entity.",";
$sql.= " '".$_SERVER['REMOTE_ADDR']."',";
2010-04-12 02:27:14 +02:00
$sql.= " ".($_SERVER['HTTP_USER_AGENT']?"'".dol_trunc($_SERVER['HTTP_USER_AGENT'],250)."'":'NULL').",";
2009-10-20 14:45:52 +02:00
$sql.= " ".$this->db->idate($this->dateevent).",";
$sql.= " ".($user->id?"'".$user->id."'":'NULL').",";
$sql.= " '".$this->db->escape($this->description)."'";
2009-10-20 14:45:52 +02:00
$sql.= ")";
dol_syslog(get_class($this)."::create sql=".$sql, LOG_DEBUG);
2009-10-20 14:45:52 +02:00
$resql=$this->db->query($sql);
if ($resql)
{
$this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."events");
return $this->id;
}
else
{
$this->error="Error ".$this->db->lasterror();
dol_syslog(get_class($this)."::create ".$this->error, LOG_ERR);
2009-10-20 14:45:52 +02:00
return -1;
}
}
/**
* Update database
*
* @param User $user User that modify
* @param int $notrigger 0=no, 1=yes (no update trigger)
* @return int <0 if KO, >0 if OK
2009-10-20 14:45:52 +02:00
*/
function update($user=0, $notrigger=0)
{
global $conf, $langs;
// Clean parameters
$this->id=trim($this->id);
$this->type=trim($this->type);
$this->description=trim($this->description);
// Check parameters
// Put here code to add control on parameters values
// Update request
$sql = "UPDATE ".MAIN_DB_PREFIX."events SET";
$sql.= " type='".$this->type."',";
$sql.= " dateevent=".$this->db->idate($this->dateevent).",";
$sql.= " description='".$this->db->escape($this->description)."'";
2009-10-20 14:45:52 +02:00
$sql.= " WHERE rowid=".$this->id;
dol_syslog(get_class($this)."::update sql=".$sql, LOG_DEBUG);
2009-10-20 14:45:52 +02:00
$resql = $this->db->query($sql);
if (! $resql)
{
$this->error="Error ".$this->db->lasterror();
dol_syslog(get_class($this)."::update ".$this->error, LOG_ERR);
2009-10-20 14:45:52 +02:00
return -1;
}
return 1;
}
/**
* Load object in memory from database
*
* @param int $id Id object
* @param User $user User that load
* @return int <0 if KO, >0 if OK
2009-10-20 14:45:52 +02:00
*/
function fetch($id, $user=0)
{
global $langs;
$sql = "SELECT";
$sql.= " t.rowid,";
2010-01-13 19:51:19 +01:00
$sql.= " t.tms,";
2009-10-20 14:45:52 +02:00
$sql.= " t.type,";
$sql.= " t.entity,";
2010-01-13 19:51:19 +01:00
$sql.= " t.dateevent,";
2009-10-20 14:45:52 +02:00
$sql.= " t.description,";
$sql.= " t.ip,";
$sql.= " t.user_agent";
$sql.= " FROM ".MAIN_DB_PREFIX."events as t";
$sql.= " WHERE t.rowid = ".$id;
dol_syslog(get_class($this)."::fetch sql=".$sql, LOG_DEBUG);
2009-10-20 14:45:52 +02:00
$resql=$this->db->query($sql);
if ($resql)
{
if ($this->db->num_rows($resql))
{
$obj = $this->db->fetch_object($resql);
$this->id = $obj->rowid;
2010-01-13 19:51:19 +01:00
$this->tms = $this->db->jdate($obj->tms);
2009-10-20 14:45:52 +02:00
$this->type = $obj->type;
$this->entity = $obj->entity;
2010-01-13 19:51:19 +01:00
$this->dateevent = $this->db->jdate($obj->dateevent);
2009-10-20 14:45:52 +02:00
$this->description = $obj->description;
$this->ip = $obj->ip;
$this->user_agent = $obj->user_agent;
}
$this->db->free($resql);
return 1;
}
else
{
$this->error="Error ".$this->db->lasterror();
dol_syslog(get_class($this)."::fetch ".$this->error, LOG_ERR);
2009-10-20 14:45:52 +02:00
return -1;
}
}
/**
* Delete object in database
*
* @param User $user User that delete
* @return int <0 if KO, >0 if OK
2009-10-20 14:45:52 +02:00
*/
2008-02-28 17:27:18 +01:00
function delete($user)
{
global $conf, $langs;
2009-01-21 15:09:42 +01:00
2008-02-28 17:27:18 +01:00
$sql = "DELETE FROM ".MAIN_DB_PREFIX."events";
$sql.= " WHERE rowid=".$this->id;
2009-01-21 15:09:42 +01:00
dol_syslog(get_class($this)."::delete sql=".$sql);
2008-02-28 17:27:18 +01:00
$resql = $this->db->query($sql);
if (! $resql)
{
$this->error="Error ".$this->db->lasterror();
dol_syslog(get_class($this)."::delete ".$this->error, LOG_ERR);
2008-02-28 17:27:18 +01:00
return -1;
}
2009-01-21 15:09:42 +01:00
2008-02-28 17:27:18 +01:00
return 1;
}
2009-01-21 15:09:42 +01:00
2008-02-28 17:27:18 +01:00
/**
2011-09-20 19:19:46 +02:00
* Initialise an instance with random values.
* Used to build previews or test instances.
* id must be 0 if object instance is a specimen.
*
* @return void
2008-02-28 17:27:18 +01:00
*/
function initAsSpecimen()
{
$this->id=0;
2009-01-21 15:09:42 +01:00
2008-02-28 21:37:04 +01:00
$this->tms=time();
$this->type='';
$this->dateevent=time();
$this->description='This is a specimen event';
2008-02-28 17:27:18 +01:00
}
}
?>