dolibarr/htdocs/core/class/comment.class.php

391 lines
9.4 KiB
PHP
Raw Normal View History

2017-10-04 12:07:17 +02:00
<?php
2019-03-16 20:10:22 +01:00
/* Copyright (C) 2019 Laurent Destailleur <eldy@users.sourceforge.net>
2018-08-28 08:33:02 +02: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
* (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
2019-09-23 21:55:30 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* or see https://www.gnu.org/
2018-08-28 08:33:02 +02:00
*/
/**
* Class to manage comment
*/
class Comment extends CommonObject
{
2018-08-23 18:17:09 +02:00
/**
* @var string ID to identify managed object
*/
public $element = 'comment';
2018-08-28 08:33:02 +02:00
2018-08-22 18:34:50 +02:00
/**
* @var string Name of table without prefix where object is stored
*/
public $table_element = 'comment';
2017-10-04 12:07:17 +02:00
2018-09-01 15:13:59 +02:00
/**
2020-12-05 23:57:31 +01:00
* @var int ID of parent key (it's not the name of a field)
2018-09-01 15:13:59 +02:00
*/
2020-12-05 23:53:55 +01:00
public $fk_element;
2018-09-01 15:13:59 +02:00
2020-12-05 23:53:55 +01:00
/**
* @var string element type
*/
2018-03-07 08:47:34 +01:00
public $element_type;
2018-08-31 19:26:08 +02:00
/**
* @var string description
*/
2018-03-07 08:47:34 +01:00
public $description;
2019-03-21 20:15:19 +01:00
2019-03-21 15:03:01 +01:00
/**
* Date modification record (tms)
*
* @var integer
*/
2018-03-07 08:47:34 +01:00
public $tms;
2019-03-21 15:03:01 +01:00
/**
* Date creation record (datec)
*
* @var integer
*/
public $datec;
2018-10-10 09:12:25 +02:00
/**
* @var int ID
*/
2018-03-07 08:47:34 +01:00
public $fk_user_author;
2019-10-30 15:45:04 +01:00
/**
* @var int ID
*/
2019-10-30 15:45:04 +01:00
public $fk_user_modif;
2018-08-31 18:27:16 +02:00
/**
* @var int Entity
*/
2018-03-07 08:47:34 +01:00
public $entity;
2020-12-05 23:57:31 +01:00
/**
* @var string import key
*/
2018-03-07 08:47:34 +01:00
public $import_key;
public $comments = array();
2020-12-05 23:57:31 +01:00
/**
* @var Comment Object oldcopy
*/
public $oldcopy;
/**
* Constructor
*
* @param DoliDB $db Database handler
*/
2019-02-25 22:27:04 +01:00
public function __construct($db)
{
$this->db = $db;
}
2017-10-04 12:07:17 +02:00
/**
* Create into database
*
* @param User $user User that create
* @param int $notrigger 0=launch triggers after, 1=disable triggers
* @return int <0 if KO, Id of created object if OK
*/
2019-02-25 22:27:04 +01:00
public function create($user, $notrigger = 0)
{
2019-10-30 15:45:04 +01:00
global $user;
$error = 0;
// Insert request
2019-10-30 15:45:04 +01:00
$sql = "INSERT INTO ".MAIN_DB_PREFIX.$this->table_element." (";
$sql .= "description";
$sql .= ", datec";
$sql .= ", fk_element";
$sql .= ", element_type";
$sql .= ", fk_user_author";
$sql .= ", fk_user_modif";
$sql .= ", entity";
$sql .= ", import_key";
$sql .= ") VALUES (";
$sql .= "'".$this->db->escape($this->description)."'";
$sql .= ", ".($this->datec != '' ? "'".$this->db->idate($this->datec)."'" : 'null');
$sql .= ", '".(isset($this->fk_element) ? $this->fk_element : "null")."'";
$sql .= ", '".$this->db->escape($this->element_type)."'";
$sql .= ", '".(isset($this->fk_user_author) ? $this->fk_user_author : "null")."'";
$sql .= ", ".$user->id."";
$sql .= ", ".(!empty($this->entity) ? $this->entity : '1');
$sql .= ", ".(!empty($this->import_key) ? "'".$this->db->escape($this->import_key)."'" : "null");
$sql .= ")";
//var_dump($this->db);
//echo $sql;
$this->db->begin();
dol_syslog(get_class($this)."::create", LOG_DEBUG);
$resql = $this->db->query($sql);
2020-12-05 23:57:31 +01:00
if (!$resql) {
$error++; $this->errors[] = "Error ".$this->db->lasterror();
}
2020-12-05 23:57:31 +01:00
if (!$error) {
2019-10-30 15:45:04 +01:00
$this->id = $this->db->last_insert_id(MAIN_DB_PREFIX.$this->table_element);
2020-12-05 23:57:31 +01:00
if (!$notrigger) {
// Call trigger
$result = $this->call_trigger('TASK_COMMENT_CREATE', $user);
2020-12-05 23:57:31 +01:00
if ($result < 0) {
$error++;
}
// End call triggers
}
}
// Commit or rollback
2020-12-05 23:57:31 +01:00
if ($error) {
foreach ($this->errors as $errmsg) {
dol_syslog(get_class($this)."::create ".$errmsg, LOG_ERR);
$this->error .= ($this->error ? ', '.$errmsg : $errmsg);
}
$this->db->rollback();
return -1 * $error;
2020-05-21 15:05:19 +02:00
} else {
$this->db->commit();
return $this->id;
}
}
/**
* Load object in memory from database
*
* @param int $id Id object
* @param int $ref ref object
* @return int <0 if KO, 0 if not found, >0 if OK
*/
2019-02-25 22:27:04 +01:00
public function fetch($id, $ref = '')
{
global $langs;
$sql = "SELECT";
$sql .= " c.rowid,";
$sql .= " c.description,";
$sql .= " c.datec,";
$sql .= " c.tms,";
$sql .= " c.fk_element,";
$sql .= " c.element_type,";
$sql .= " c.fk_user_author,";
$sql .= " c.fk_user_modif,";
$sql .= " c.entity,";
$sql .= " c.import_key";
$sql .= " FROM ".MAIN_DB_PREFIX.$this->table_element." as c";
$sql .= " WHERE c.rowid = ".((int) $id);
dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
$resql = $this->db->query($sql);
2020-12-05 23:57:31 +01:00
if ($resql) {
$num_rows = $this->db->num_rows($resql);
2020-12-05 23:57:31 +01:00
if ($num_rows) {
$obj = $this->db->fetch_object($resql);
$this->id = $obj->rowid;
$this->description = $obj->description;
$this->element_type = $obj->element_type;
$this->datec = $this->db->jdate($obj->datec);
$this->tms = $this->db->jdate($obj->tms);
$this->fk_user_author = $obj->fk_user_author;
$this->fk_user_modif = $obj->fk_user_modif;
$this->fk_element = $obj->fk_element;
$this->entity = $obj->entity;
$this->import_key = $obj->import_key;
}
$this->db->free($resql);
2020-12-05 23:57:31 +01:00
if ($num_rows) {
return 1;
} else {
return 0;
}
2020-05-21 15:05:19 +02:00
} else {
$this->error = "Error ".$this->db->lasterror();
return -1;
}
}
/**
* Update database
*
* @param User $user User that modify
* @param int $notrigger 0=launch triggers after, 1=disable triggers
* @return int <=0 if KO, >0 if OK
*/
2019-02-25 22:27:04 +01:00
public function update(User $user, $notrigger = 0)
{
2019-10-30 15:45:04 +01:00
global $user;
$error = 0;
// Clean parameters
2020-12-05 23:57:31 +01:00
if (isset($this->fk_element)) {
$this->fk_project = (int) trim($this->fk_element);
}
if (isset($this->description)) {
$this->description = trim($this->description);
}
// Update request
2019-10-30 15:45:04 +01:00
$sql = "UPDATE ".MAIN_DB_PREFIX.$this->table_element." SET";
$sql .= " description=".(isset($this->description) ? "'".$this->db->escape($this->description)."'" : "null").",";
$sql .= " datec=".($this->datec != '' ? "'".$this->db->idate($this->datec)."'" : 'null').",";
$sql .= " fk_element=".(isset($this->fk_element) ? $this->fk_element : "null").",";
$sql .= " element_type='".$this->db->escape($this->element_type)."',";
$sql .= " fk_user_modif=".$user->id.",";
$sql .= " entity=".(!empty($this->entity) ? $this->entity : '1').",";
$sql .= " import_key=".(!empty($this->import_key) ? "'".$this->db->escape($this->import_key)."'" : "null");
$sql .= " WHERE rowid=".$this->id;
$this->db->begin();
dol_syslog(get_class($this)."::update", LOG_DEBUG);
$resql = $this->db->query($sql);
2020-12-05 23:57:31 +01:00
if (!$resql) {
$error++; $this->errors[] = "Error ".$this->db->lasterror();
}
2020-12-05 23:57:31 +01:00
if (!$error) {
if (!$notrigger) {
// Call trigger
$result = $this->call_trigger('TASK_COMMENT_MODIFY', $user);
2020-12-05 23:57:31 +01:00
if ($result < 0) {
$error++;
}
// End call triggers
}
}
// Commit or rollback
2020-12-05 23:57:31 +01:00
if ($error) {
foreach ($this->errors as $errmsg) {
dol_syslog(get_class($this)."::update ".$errmsg, LOG_ERR);
$this->error .= ($this->error ? ', '.$errmsg : $errmsg);
}
$this->db->rollback();
return -1 * $error;
2020-05-21 15:05:19 +02:00
} else {
$this->db->commit();
return 1;
}
}
/**
* Delete task from database
*
* @param User $user User that delete
* @param int $notrigger 0=launch triggers after, 1=disable triggers
* @return int <0 if KO, >0 if OK
*/
2019-02-25 22:27:04 +01:00
public function delete($user, $notrigger = 0)
{
global $conf, $langs;
require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
$error = 0;
$this->db->begin();
2019-10-30 15:45:04 +01:00
$sql = "DELETE FROM ".MAIN_DB_PREFIX.$this->table_element;
$sql .= " WHERE rowid=".$this->id;
$resql = $this->db->query($sql);
2020-12-05 23:57:31 +01:00
if (!$resql) {
$error++; $this->errors[] = "Error ".$this->db->lasterror();
}
2020-12-05 23:57:31 +01:00
if (!$error) {
if (!$notrigger) {
// Call trigger
$result = $this->call_trigger('TASK_COMMENT_DELETE', $user);
2020-12-05 23:57:31 +01:00
if ($result < 0) {
$error++;
}
// End call triggers
}
}
// Commit or rollback
2020-12-05 23:57:31 +01:00
if ($error) {
foreach ($this->errors as $errmsg) {
dol_syslog(get_class($this)."::delete ".$errmsg, LOG_ERR);
$this->error .= ($this->error ? ', '.$errmsg : $errmsg);
}
$this->db->rollback();
return -1 * $error;
} else {
$this->db->commit();
return 1;
}
}
2017-10-04 12:07:17 +02:00
/**
* Load comments linked with current task
*
2017-10-04 19:48:11 +02:00
* @param string $element_type Element type
* @param int $fk_element Id of element
* @return array Comment array
*/
2018-03-07 08:47:34 +01:00
public function fetchAllFor($element_type, $fk_element)
{
global $db, $conf;
2018-03-07 08:47:34 +01:00
$this->comments = array();
if (!empty($element_type) && !empty($fk_element)) {
$sql = "SELECT";
$sql .= " c.rowid";
$sql .= " FROM ".MAIN_DB_PREFIX.$this->table_element." as c";
$sql .= " WHERE c.fk_element = ".$fk_element;
2020-09-19 23:30:29 +02:00
$sql .= " AND c.element_type = '".$this->db->escape($element_type)."'";
$sql .= " AND c.entity = ".$conf->entity;
$sql .= " ORDER BY c.tms DESC";
2017-10-04 12:07:17 +02:00
2018-03-07 08:47:34 +01:00
dol_syslog(get_class($this).'::'.__METHOD__, LOG_DEBUG);
2020-09-19 23:30:29 +02:00
$resql = $this->db->query($sql);
2020-12-05 23:57:31 +01:00
if ($resql) {
2020-09-19 23:30:29 +02:00
$num_rows = $this->db->num_rows($resql);
2020-12-05 23:57:31 +01:00
if ($num_rows > 0) {
while ($obj = $this->db->fetch_object($resql)) {
$comment = new self($db);
$comment->fetch($obj->rowid);
2018-03-07 08:47:34 +01:00
$this->comments[] = $comment;
}
}
2020-09-19 23:30:29 +02:00
$this->db->free($resql);
2018-03-07 08:47:34 +01:00
} else {
$this->errors[] = "Error ".$this->db->lasterror();
2018-03-07 08:47:34 +01:00
return -1;
}
}
2018-03-07 08:47:34 +01:00
return count($this->comments);
}
2018-08-13 17:26:32 +02:00
}