dolibarr/htdocs/comm/mailing/class/mailing.class.php

471 lines
12 KiB
PHP
Raw Normal View History

2005-01-05 16:26:05 +01:00
<?php
/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2012-03-31 15:42:33 +02:00
* Copyright (C) 2005-2012 Laurent Destailleur <eldy@users.sourceforge.net>
2012-12-30 15:13:49 +01:00
* Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.com>
2005-01-05 16:26:05 +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
2005-01-05 16:26:05 +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-03 02:45:22 +02:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2005-01-05 16:26:05 +01:00
*/
/**
2010-06-05 17:32:18 +02:00
* \file htdocs/comm/mailing/class/mailing.class.php
2008-12-04 18:37:28 +01:00
* \ingroup mailing
2012-03-31 15:42:33 +02:00
* \brief File of class to manage emailings module
2008-11-10 15:20:02 +01:00
*/
2005-01-05 16:26:05 +01:00
require_once DOL_DOCUMENT_ROOT .'/core/class/commonobject.class.php';
2008-12-04 18:37:28 +01:00
2005-01-05 16:26:05 +01:00
/**
2012-03-31 15:42:33 +02:00
* Class to manage emailings module
2008-11-10 15:20:02 +01:00
*/
2008-12-04 18:37:28 +01:00
class Mailing extends CommonObject
2005-01-05 16:26:05 +01:00
{
2011-09-20 19:19:46 +02:00
public $element='mailing';
public $table_element='mailing';
2009-02-18 22:48:07 +01:00
var $id;
2008-11-10 15:20:02 +01:00
var $statut;
var $titre;
var $sujet;
var $body;
var $nbemail;
var $bgcolor;
var $bgimage;
2005-01-05 16:26:05 +01:00
2008-11-10 15:20:02 +01:00
var $email_from;
var $email_replyto;
var $email_errorsto;
2005-01-05 16:26:05 +01:00
2010-04-17 11:47:25 +02:00
var $joined_file1;
var $joined_file2;
var $joined_file3;
var $joined_file4;
2008-11-10 15:20:02 +01:00
var $user_creat;
var $user_valid;
var $date_creat;
var $date_valid;
var $extraparams=array();
2008-11-10 15:20:02 +01:00
/**
2012-02-16 18:39:22 +01:00
* Constructor
*
* @param DoliDb $db Database handler
2008-11-10 15:20:02 +01:00
*/
function __construct($db)
2005-01-05 16:26:05 +01:00
{
2012-02-16 18:39:22 +01:00
$this->db = $db;
2008-11-10 15:20:02 +01:00
// List of language codes for status
$this->statuts[0] = 'MailingStatusDraft';
$this->statuts[1] = 'MailingStatusValidated';
$this->statuts[2] = 'MailingStatusSentPartialy';
$this->statuts[3] = 'MailingStatusSentCompletely';
2005-01-05 16:26:05 +01:00
}
2008-11-10 15:20:02 +01:00
/**
2012-03-18 19:23:01 +01:00
* Create an EMailing
*
* @param User $user Object of user making creation
* @return int -1 if error, Id of created object if OK
2008-11-10 15:20:02 +01:00
*/
function create($user)
2005-01-05 16:26:05 +01:00
{
global $conf, $langs;
2008-11-10 15:20:02 +01:00
$this->db->begin();
$this->titre=trim($this->titre);
$this->email_from=trim($this->email_from);
if (! $this->email_from)
{
$this->error = $langs->trans("ErrorMailFromRequired");
return -1;
}
2012-05-09 17:14:46 +02:00
2012-04-30 15:01:25 +02:00
$now=dol_now();
2008-11-10 15:20:02 +01:00
2010-05-17 14:43:36 +02:00
$sql = "INSERT INTO ".MAIN_DB_PREFIX."mailing";
$sql .= " (date_creat, fk_user_creat, entity)";
2012-04-30 15:01:25 +02:00
$sql .= " VALUES (".$this->db->idate($now).", ".$user->id.", ".$conf->entity.")";
2008-11-10 15:20:02 +01:00
if (! $this->titre)
{
$this->titre = $langs->trans("NoTitle");
}
dol_syslog("Mailing::Create sql=".$sql);
2008-11-10 15:20:02 +01:00
$result=$this->db->query($sql);
if ($result)
{
2010-05-17 14:43:36 +02:00
$this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."mailing");
2008-11-10 15:20:02 +01:00
2009-07-03 11:50:34 +02:00
if ($this->update($user) > 0)
2008-11-10 15:20:02 +01:00
{
$this->db->commit();
}
else
{
2012-06-15 11:20:09 +02:00
$this->error=$this->db->lasterror();
dol_syslog("Mailing::Create ".$this->error, LOG_ERR);
2008-11-10 15:20:02 +01:00
$this->db->rollback();
return -1;
}
return $this->id;
}
else
{
$this->error=$this->db->lasterror();
dol_syslog("Mailing::Create ".$this->error, LOG_ERR);
2008-11-10 15:20:02 +01:00
$this->db->rollback();
return -1;
}
2005-01-05 16:26:05 +01:00
}
2008-11-10 15:20:02 +01:00
/**
2012-03-18 19:23:01 +01:00
* Update emailing record
*
* @param User $user Object of user making change
* @return int < 0 if KO, > 0 if OK
2008-11-10 15:20:02 +01:00
*/
2009-05-25 00:01:19 +02:00
function update($user)
2005-01-05 16:26:05 +01:00
{
2008-11-10 15:20:02 +01:00
$sql = "UPDATE ".MAIN_DB_PREFIX."mailing ";
$sql .= " SET titre = '".$this->db->escape($this->titre)."'";
$sql .= ", sujet = '".$this->db->escape($this->sujet)."'";
$sql .= ", body = '".$this->db->escape($this->body)."'";
$sql .= ", email_from = '".$this->email_from."'";
2009-05-25 00:01:19 +02:00
$sql .= ", email_replyto = '".$this->email_replyto."'";
$sql .= ", email_errorsto = '".$this->email_errorsto."'";
$sql .= ", bgcolor = '".($this->bgcolor?$this->bgcolor:null)."'";
$sql .= ", bgimage = '".($this->bgimage?$this->bgimage:null)."'";
2008-11-10 15:20:02 +01:00
$sql .= " WHERE rowid = ".$this->id;
dol_syslog("Mailing::Update sql=".$sql);
2008-11-10 15:20:02 +01:00
$result=$this->db->query($sql);
if ($result)
{
return 1;
}
else
{
$this->error=$this->db->lasterror();
dol_syslog("Mailing::Update ".$this->error, LOG_ERR);
2008-11-10 15:20:02 +01:00
return -1;
}
2005-01-05 16:26:05 +01:00
}
2008-11-10 15:20:02 +01:00
/**
2012-03-18 19:23:01 +01:00
* Get object from database
*
* @param int $rowid Id of emailing
* @return int <0 if KO, >0 if OK
2008-11-10 15:20:02 +01:00
*/
function fetch($rowid)
2005-01-05 16:26:05 +01:00
{
2013-02-22 15:02:06 +01:00
global $conf;
$sql = "SELECT m.rowid, m.titre, m.sujet, m.body, m.bgcolor, m.bgimage";
$sql.= ", m.email_from, m.email_replyto, m.email_errorsto";
$sql.= ", m.statut, m.nbemail";
$sql.= ", m.fk_user_creat, m.fk_user_valid";
$sql.= ", m.date_creat";
$sql.= ", m.date_valid";
$sql.= ", m.date_envoi";
$sql.= ", m.extraparams";
$sql.= " FROM ".MAIN_DB_PREFIX."mailing as m";
$sql.= " WHERE m.rowid = ".$rowid;
2008-11-10 15:20:02 +01:00
2012-05-09 17:14:46 +02:00
dol_syslog(get_class($this)."::fetch sql=".$sql);
$result=$this->db->query($sql);
if ($result)
{
if ($this->db->num_rows($result))
{
$obj = $this->db->fetch_object($result);
2008-11-10 15:20:02 +01:00
$this->id = $obj->rowid;
$this->ref = $obj->rowid;
$this->statut = $obj->statut;
$this->nbemail = $obj->nbemail;
$this->titre = $obj->titre;
2013-02-22 15:02:06 +01:00
$this->sujet = $obj->sujet;
if (!empty($conf->global->FCKEDITOR_ENABLE_MAILING) && dol_textishtml(dol_html_entity_decode($obj->body, ENT_COMPAT | ENT_HTML401))) {
$this->body = dol_html_entity_decode($obj->body, ENT_COMPAT | ENT_HTML401);
}else {
$this->body = $obj->body;
}
$this->bgcolor = $obj->bgcolor;
$this->bgimage = $obj->bgimage;
$this->email_from = $obj->email_from;
$this->email_replyto = $obj->email_replyto;
$this->email_errorsto = $obj->email_errorsto;
$this->user_creat = $obj->fk_user_creat;
$this->user_valid = $obj->fk_user_valid;
$this->date_creat = $this->db->jdate($obj->date_creat);
$this->date_valid = $this->db->jdate($obj->date_valid);
$this->date_envoi = $this->db->jdate($obj->date_envoi);
$this->extraparams = (array) json_decode($obj->extraparams, true);
2008-11-10 15:20:02 +01:00
return 1;
}
else
{
2012-05-09 17:14:46 +02:00
dol_syslog(get_class($this)."::fetch Erreur -1");
return -1;
}
}
else
{
2012-05-09 17:14:46 +02:00
dol_syslog(get_class($this)."::fetch Erreur -2");
return -2;
}
2005-01-05 16:26:05 +01:00
}
2008-11-10 15:20:02 +01:00
/**
2012-03-18 19:23:01 +01:00
* Load an object from its id and create a new one in database
*
* @param int $fromid Id of object to clone
2012-03-31 15:42:33 +02:00
* @param int $option1 1=Copy content, 0=Forget content
* @param int $option2 Not used
2012-03-18 19:23:01 +01:00
* @return int New id of clone
2008-11-10 15:20:02 +01:00
*/
function createFromClone($fromid,$option1,$option2)
{
global $user,$langs;
2008-11-10 15:20:02 +01:00
$error=0;
2008-11-10 15:20:02 +01:00
$object=new Mailing($this->db);
2005-01-05 16:26:05 +01:00
2008-11-10 15:20:02 +01:00
$this->db->begin();
2005-01-05 16:26:05 +01:00
2008-11-10 15:20:02 +01:00
// Load source object
$object->fetch($fromid);
$object->id=0;
$object->statut=0;
// Clear fields
2012-03-31 15:42:33 +02:00
$object->titre=$langs->trans("CopyOf").' '.$object->titre.' '.dol_print_date(dol_now());
2008-11-10 15:20:02 +01:00
// If no option copy content
if (empty($option1))
{
// Clear values
$object->nbemail = 0;
$object->sujet = '';
$object->body = '';
$object->bgcolor = '';
$object->bgimage = '';
2008-11-10 15:20:02 +01:00
$object->email_from = '';
$object->email_replyto = '';
$object->email_errorsto = '';
2008-11-10 15:20:02 +01:00
$object->user_creat = $user->id;
$object->user_valid = '';
2008-11-10 15:20:02 +01:00
$object->date_creat = '';
$object->date_valid = '';
$object->date_envoi = '';
2008-11-10 15:20:02 +01:00
}
// Create clone
$result=$object->create($user);
// Other options
if ($result < 0)
2008-11-10 15:20:02 +01:00
{
$this->error=$object->error;
$error++;
}
2008-11-10 15:20:02 +01:00
if (! $error)
{
2008-11-10 15:20:02 +01:00
}
2008-11-10 15:20:02 +01:00
// End
if (! $error)
{
$this->db->commit();
return $object->id;
}
else
{
$this->db->rollback();
return -1;
}
2005-01-05 16:26:05 +01:00
}
2008-11-10 15:20:02 +01:00
/**
2012-03-18 19:23:01 +01:00
* Validate emailing
*
* @param User $user Objet user qui valide
* @return int <0 if KO, >0 if OK
2008-11-10 15:20:02 +01:00
*/
function valid($user)
2005-01-05 16:26:05 +01:00
{
2012-03-23 18:19:50 +01:00
$now=dol_now();
2012-03-31 15:42:33 +02:00
2008-11-10 15:20:02 +01:00
$sql = "UPDATE ".MAIN_DB_PREFIX."mailing ";
2012-03-23 18:19:50 +01:00
$sql .= " SET statut = 1, date_valid = ".$this->db->idate($now).", fk_user_valid=".$user->id;
2009-02-18 22:48:07 +01:00
$sql .= " WHERE rowid = ".$this->id;
2008-11-10 15:20:02 +01:00
2009-02-18 22:48:07 +01:00
dol_syslog("Mailing::valid sql=".$sql, LOG_DEBUG);
if ($this->db->query($sql))
2008-11-10 15:20:02 +01:00
{
2009-02-18 22:48:07 +01:00
return 1;
2008-11-10 15:20:02 +01:00
}
else
{
2009-02-18 22:48:07 +01:00
$this->error=$this->db->lasterror();
dol_syslog("Mailing::Valid ".$this->error, LOG_ERR);
2009-02-18 22:48:07 +01:00
return -1;
2008-11-10 15:20:02 +01:00
}
2005-01-05 16:26:05 +01:00
}
2008-11-10 15:20:02 +01:00
2009-02-18 22:48:07 +01:00
2008-11-10 15:20:02 +01:00
/**
2012-03-18 19:23:01 +01:00
* Delete emailing
*
* @param int $rowid id du mailing a supprimer
* @return int 1 en cas de succes
2008-11-10 15:20:02 +01:00
*/
function delete($rowid)
2005-01-05 16:26:05 +01:00
{
2008-11-10 15:20:02 +01:00
$sql = "DELETE FROM ".MAIN_DB_PREFIX."mailing";
2009-02-18 22:48:07 +01:00
$sql.= " WHERE rowid = ".$rowid;
2008-11-10 15:20:02 +01:00
2009-02-18 22:48:07 +01:00
dol_syslog("Mailing::delete sql=".$sql, LOG_DEBUG);
$resql=$this->db->query($sql);
if ($resql)
{
return 1;
}
else
{
$this->error=$this->db->lasterror();
dol_syslog("Mailing::Valid ".$this->error, LOG_ERR);
2009-02-18 22:48:07 +01:00
return -1;
}
}
/**
2012-03-18 19:23:01 +01:00
* Change status of each recipient
*
* @param User $user Objet user qui valide
* @return int <0 if KO, >0 if OK
2009-02-18 22:48:07 +01:00
*/
function reset_targets_status($user)
{
$sql = "UPDATE ".MAIN_DB_PREFIX."mailing_cibles";
$sql.= " SET statut = 0";
$sql.= " WHERE fk_mailing = ".$this->id;
dol_syslog("Mailing::reset_targets_status sql=".$sql, LOG_DEBUG);
$resql=$this->db->query($sql);
if ($resql)
{
return 1;
}
else
{
$this->error=$this->db->lasterror();
dol_syslog("Mailing::Valid ".$this->error, LOG_ERR);
return -1;
}
2005-01-05 16:26:05 +01:00
}
2008-11-10 15:20:02 +01:00
/**
2012-03-18 19:23:01 +01:00
* Retourne le libelle du statut d'un mailing (brouillon, validee, ...
*
* @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long
* @return string Label
*/
function getLibStatut($mode=0)
{
return $this->LibStatut($this->statut,$mode);
}
/**
2012-03-18 19:23:01 +01:00
* Renvoi le libelle d'un statut donne
*
* @param int $statut Id statut
* @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto
* @return string Label
*/
function LibStatut($statut,$mode=0)
{
global $langs;
$langs->load('mails');
if ($mode == 0)
{
return $langs->trans($this->statuts[$statut]);
}
if ($mode == 1)
{
return $langs->trans($this->statuts[$statut]);
}
if ($mode == 2)
{
if ($statut == 0) return img_picto($langs->trans($this->statuts[$statut]),'statut0').' '.$langs->trans($this->statuts[$statut]);
if ($statut == 1) return img_picto($langs->trans($this->statuts[$statut]),'statut1').' '.$langs->trans($this->statuts[$statut]);
if ($statut == 2) return img_picto($langs->trans($this->statuts[$statut]),'statut3').' '.$langs->trans($this->statuts[$statut]);
if ($statut == 3) return img_picto($langs->trans($this->statuts[$statut]),'statut6').' '.$langs->trans($this->statuts[$statut]);
}
if ($mode == 3)
{
if ($statut == 0) return img_picto($langs->trans($this->statuts[$statut]),'statut0');
if ($statut == 1) return img_picto($langs->trans($this->statuts[$statut]),'statut1');
if ($statut == 2) return img_picto($langs->trans($this->statuts[$statut]),'statut3');
if ($statut == 3) return img_picto($langs->trans($this->statuts[$statut]),'statut6');
}
if ($mode == 4)
{
if ($statut == 0) return img_picto($langs->trans($this->statuts[$statut]),'statut0').' '.$langs->trans($this->statuts[$statut]);
if ($statut == 1) return img_picto($langs->trans($this->statuts[$statut]),'statut1').' '.$langs->trans($this->statuts[$statut]);
if ($statut == 2) return img_picto($langs->trans($this->statuts[$statut]),'statut3').' '.$langs->trans($this->statuts[$statut]);
if ($statut == 3) return img_picto($langs->trans($this->statuts[$statut]),'statut6').' '.$langs->trans($this->statuts[$statut]);
}
if ($mode == 5)
{
if ($statut == 0) return $langs->trans($this->statuts[$statut]).' '.img_picto($langs->trans($this->statuts[$statut]),'statut0');
if ($statut == 1) return $langs->trans($this->statuts[$statut]).' '.img_picto($langs->trans($this->statuts[$statut]),'statut1');
if ($statut == 2) return $langs->trans($this->statuts[$statut]).' '.img_picto($langs->trans($this->statuts[$statut]),'statut3');
if ($statut == 3) return $langs->trans($this->statuts[$statut]).' '.img_picto($langs->trans($this->statuts[$statut]),'statut6');
}
}
2008-11-10 15:20:02 +01:00
2005-01-05 16:26:05 +01:00
}
?>