123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878 |
- <?php
- /* Copyright (C) 2003-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2004-2011 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2014 Juanjo Menent <jmenent@2byte.es>
- * Copyright (C) 2018 Philippe Grand <philippe.grand@atoo-net.com>
- * Copyright (C) 2021 Thibault FOUCART <support@ptibogxiv.net>
- *
- * 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 <https://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/core/class/notify.class.php
- * \ingroup notification
- * \brief File of class to manage notifications
- */
- require_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
- /**
- * Class to manage notifications
- */
- class Notify
- {
- /**
- * @var int ID
- */
- public $id;
- /**
- * @var DoliDB Database handler.
- */
- public $db;
- /**
- * @var string Error code (or message)
- */
- public $error = '';
- /**
- * @var string[] Error codes (or messages)
- */
- public $errors = array();
- public $author;
- public $ref;
- public $date;
- public $duree;
- public $note;
- /**
- * @var int Project ID
- */
- public $fk_project;
- // Les codes actions sont definis dans la table llx_notify_def
- // codes actions supported are
- // @todo defined also into interface_50_modNotification_Notification.class.php
- public $arrayofnotifsupported = array(
- 'BILL_VALIDATE',
- 'BILL_PAYED',
- 'ORDER_VALIDATE',
- 'PROPAL_VALIDATE',
- 'PROPAL_CLOSE_SIGNED',
- 'FICHINTER_VALIDATE',
- 'FICHINTER_ADD_CONTACT',
- 'ORDER_SUPPLIER_VALIDATE',
- 'ORDER_SUPPLIER_APPROVE',
- 'ORDER_SUPPLIER_REFUSE',
- 'SHIPPING_VALIDATE',
- 'EXPENSE_REPORT_VALIDATE',
- 'EXPENSE_REPORT_APPROVE',
- 'HOLIDAY_VALIDATE',
- 'HOLIDAY_APPROVE',
- 'ACTION_CREATE'
- );
- /**
- * Constructor
- *
- * @param DoliDB $db Database handler
- */
- public function __construct($db)
- {
- $this->db = $db;
- }
- /**
- * Return message that say how many notification (and to which email) will occurs on requested event.
- * This is to show confirmation messages before event is recorded.
- *
- * @param string $action Id of action in llx_c_action_trigger
- * @param int $socid Id of third party
- * @param Object $object Object the notification is about
- * @return string Message
- */
- public function confirmMessage($action, $socid, $object)
- {
- global $langs;
- $langs->load("mails");
- $listofnotiftodo = $this->getNotificationsArray($action, $socid, $object, 0);
- $texte = '';
- $nb = -1;
- if (is_array($listofnotiftodo)) {
- $nb = count($listofnotiftodo);
- }
- if ($nb < 0) {
- $texte = img_object($langs->trans("Notifications"), 'email').' '.$langs->trans("ErrorFailedToGetListOfNotificationsToSend");
- } elseif ($nb == 0) {
- $texte = img_object($langs->trans("Notifications"), 'email').' '.$langs->trans("NoNotificationsWillBeSent");
- } elseif ($nb == 1) {
- $texte = img_object($langs->trans("Notifications"), 'email').' '.$langs->trans("ANotificationsWillBeSent");
- } elseif ($nb >= 2) {
- $texte = img_object($langs->trans("Notifications"), 'email').' '.$langs->trans("SomeNotificationsWillBeSent", $nb);
- }
- if (is_array($listofnotiftodo)) {
- $i = 0;
- foreach ($listofnotiftodo as $val) {
- if ($i) {
- $texte .= ', ';
- } else {
- $texte .= ' (';
- }
- if ($val['isemailvalid']) {
- $texte .= $val['email'];
- } else {
- $texte .= $val['emaildesc'];
- }
- $i++;
- }
- if ($i) {
- $texte .= ')';
- }
- }
- return $texte;
- }
- /**
- * Return number of notifications activated for action code (and third party)
- *
- * @param string $notifcode Code of action in llx_c_action_trigger (new usage) or Id of action in llx_c_action_trigger (old usage)
- * @param int $socid Id of third party or 0 for all thirdparties or -1 for no thirdparties
- * @param Object $object Object the notification is about (need it to check threshold value of some notifications)
- * @param int $userid Id of user or 0 for all users or -1 for no users
- * @param array $scope Scope where to search
- * @return array|int <0 if KO, array of notifications to send if OK
- */
- public function getNotificationsArray($notifcode, $socid = 0, $object = null, $userid = 0, $scope = array('thirdparty', 'user', 'global'))
- {
- global $conf, $user;
- $error = 0;
- $resarray = array();
- $valueforthreshold = 0;
- if (is_object($object)) {
- $valueforthreshold = $object->total_ht;
- }
- $sqlnotifcode = '';
- if ($notifcode) {
- if (is_numeric($notifcode)) {
- $sqlnotifcode = " AND n.fk_action = ".((int) $notifcode); // Old usage
- } else {
- $sqlnotifcode = " AND a.code = '".$this->db->escape($notifcode)."'"; // New usage
- }
- }
- if (!$error) {
- if ($socid >= 0 && in_array('thirdparty', $scope)) {
- $sql = "SELECT a.code, c.email, c.rowid";
- $sql .= " FROM ".MAIN_DB_PREFIX."notify_def as n,";
- $sql .= " ".MAIN_DB_PREFIX."socpeople as c,";
- $sql .= " ".MAIN_DB_PREFIX."c_action_trigger as a,";
- $sql .= " ".MAIN_DB_PREFIX."societe as s";
- $sql .= " WHERE n.fk_contact = c.rowid";
- $sql .= " AND a.rowid = n.fk_action";
- $sql .= " AND n.fk_soc = s.rowid";
- $sql .= $sqlnotifcode;
- $sql .= " AND s.entity IN (".getEntity('societe').")";
- if ($socid > 0) {
- $sql .= " AND s.rowid = ".((int) $socid);
- }
- dol_syslog(__METHOD__." ".$notifcode.", ".$socid."", LOG_DEBUG);
- $resql = $this->db->query($sql);
- if ($resql) {
- $num = $this->db->num_rows($resql);
- $i = 0;
- while ($i < $num) {
- $obj = $this->db->fetch_object($resql);
- if ($obj) {
- $newval2 = trim($obj->email);
- $isvalid = isValidEmail($newval2);
- if (empty($resarray[$newval2])) {
- $resarray[$newval2] = array('type'=> 'tocontact', 'code'=>trim($obj->code), 'emaildesc'=>'Contact id '.$obj->rowid, 'email'=>$newval2, 'contactid'=>$obj->rowid, 'isemailvalid'=>$isvalid);
- }
- }
- $i++;
- }
- } else {
- $error++;
- $this->error = $this->db->lasterror();
- }
- }
- }
- if (!$error) {
- if ($userid >= 0 && in_array('user', $scope)) {
- $sql = "SELECT a.code, c.email, c.rowid";
- $sql .= " FROM ".MAIN_DB_PREFIX."notify_def as n,";
- $sql .= " ".MAIN_DB_PREFIX."user as c,";
- $sql .= " ".MAIN_DB_PREFIX."c_action_trigger as a";
- $sql .= " WHERE n.fk_user = c.rowid";
- $sql .= " AND a.rowid = n.fk_action";
- $sql .= $sqlnotifcode;
- $sql .= " AND c.entity IN (".getEntity('user').")";
- if ($userid > 0) {
- $sql .= " AND c.rowid = ".((int) $userid);
- }
- dol_syslog(__METHOD__." ".$notifcode.", ".$socid."", LOG_DEBUG);
- $resql = $this->db->query($sql);
- if ($resql) {
- $num = $this->db->num_rows($resql);
- $i = 0;
- while ($i < $num) {
- $obj = $this->db->fetch_object($resql);
- if ($obj) {
- $newval2 = trim($obj->email);
- $isvalid = isValidEmail($newval2);
- if (empty($resarray[$newval2])) {
- $resarray[$newval2] = array('type'=> 'touser', 'code'=>trim($obj->code), 'emaildesc'=>'User id '.$obj->rowid, 'email'=>$newval2, 'userid'=>$obj->rowid, 'isemailvalid'=>$isvalid);
- }
- }
- $i++;
- }
- } else {
- $error++;
- $this->error = $this->db->lasterror();
- }
- }
- }
- if (!$error) {
- if (in_array('global', $scope)) {
- // List of notifications enabled for fixed email
- foreach ($conf->global as $key => $val) {
- if ($notifcode) {
- if ($val == '' || !preg_match('/^NOTIFICATION_FIXEDEMAIL_'.$notifcode.'_THRESHOLD_HIGHER_(.*)$/', $key, $reg)) {
- continue;
- }
- } else {
- if ($val == '' || !preg_match('/^NOTIFICATION_FIXEDEMAIL_.*_THRESHOLD_HIGHER_(.*)$/', $key, $reg)) {
- continue;
- }
- }
- $threshold = (float) $reg[1];
- if ($valueforthreshold < $threshold) {
- continue;
- }
- $tmpemail = explode(',', $val);
- foreach ($tmpemail as $key2 => $val2) {
- $newval2 = trim($val2);
- if ($newval2 == '__SUPERVISOREMAIL__') {
- if ($user->fk_user > 0) {
- $tmpuser = new User($this->db);
- $tmpuser->fetch($user->fk_user);
- if ($tmpuser->email) {
- $newval2 = trim($tmpuser->email);
- } else {
- $newval2 = '';
- }
- } else {
- $newval2 = '';
- }
- }
- if ($newval2) {
- $isvalid = isValidEmail($newval2, 0);
- if (empty($resarray[$newval2])) {
- $resarray[$newval2] = array('type'=> 'tofixedemail', 'code'=>trim($key), 'emaildesc'=>trim($val2), 'email'=>$newval2, 'isemailvalid'=>$isvalid);
- }
- }
- }
- }
- }
- }
- if ($error) {
- return -1;
- }
- //var_dump($resarray);
- return $resarray;
- }
- /**
- * Check if notification are active for couple action/company.
- * If yes, send mail and save trace into llx_notify.
- *
- * @param string $notifcode Code of action in llx_c_action_trigger (new usage) or Id of action in llx_c_action_trigger (old usage)
- * @param Object $object Object the notification deals on
- * @param array $filename_list List of files to attach (full path of filename on file system)
- * @param array $mimetype_list List of MIME type of attached files
- * @param array $mimefilename_list List of attached file name in message
- * @return int <0 if KO, or number of changes if OK
- */
- public function send($notifcode, $object, $filename_list = array(), $mimetype_list = array(), $mimefilename_list = array())
- {
- global $user, $conf, $langs, $mysoc;
- global $hookmanager;
- global $dolibarr_main_url_root;
- global $action;
- if (!in_array($notifcode, $this->arrayofnotifsupported)) {
- return 0;
- }
- include_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
- if (!is_object($hookmanager)) {
- include_once DOL_DOCUMENT_ROOT.'/core/class/hookmanager.class.php';
- $hookmanager = new HookManager($this->db);
- }
- $hookmanager->initHooks(array('notification'));
- dol_syslog(get_class($this)."::send notifcode=".$notifcode.", object=".$object->id);
- $langs->load("other");
- // Define $urlwithroot
- $urlwithouturlroot = preg_replace('/'.preg_quote(DOL_URL_ROOT, '/').'$/i', '', trim($dolibarr_main_url_root));
- $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT; // This is to use external domain name found into config file
- //$urlwithroot=DOL_MAIN_URL_ROOT; // This is to use same domain name than current
- // Define some vars
- $application = 'Dolibarr';
- if (!empty($conf->global->MAIN_APPLICATION_TITLE)) {
- $application = $conf->global->MAIN_APPLICATION_TITLE;
- }
- $replyto = $conf->notification->email_from;
- $object_type = '';
- $link = '';
- $num = 0;
- $error = 0;
- $oldref = (empty($object->oldref) ? $object->ref : $object->oldref);
- $newref = (empty($object->newref) ? $object->ref : $object->newref);
- $sql = '';
- // Check notification per third party
- if (!empty($object->socid) && $object->socid > 0) {
- $sql .= "SELECT 'tocontactid' as type_target, c.email, c.rowid as cid, c.lastname, c.firstname, c.default_lang,";
- $sql .= " a.rowid as adid, a.label, a.code, n.rowid, n.type";
- $sql .= " FROM ".MAIN_DB_PREFIX."socpeople as c,";
- $sql .= " ".MAIN_DB_PREFIX."c_action_trigger as a,";
- $sql .= " ".MAIN_DB_PREFIX."notify_def as n,";
- $sql .= " ".MAIN_DB_PREFIX."societe as s";
- $sql .= " WHERE n.fk_contact = c.rowid AND a.rowid = n.fk_action";
- $sql .= " AND n.fk_soc = s.rowid";
- $sql .= " AND c.statut = 1";
- if (is_numeric($notifcode)) {
- $sql .= " AND n.fk_action = ".((int) $notifcode); // Old usage
- } else {
- $sql .= " AND a.code = '".$this->db->escape($notifcode)."'"; // New usage
- }
- $sql .= " AND s.rowid = ".((int) $object->socid);
- $sql .= "\nUNION\n";
- }
- // Check notification per user
- $sql .= "SELECT 'touserid' as type_target, c.email, c.rowid as cid, c.lastname, c.firstname, c.lang as default_lang,";
- $sql .= " a.rowid as adid, a.label, a.code, n.rowid, n.type";
- $sql .= " FROM ".MAIN_DB_PREFIX."user as c,";
- $sql .= " ".MAIN_DB_PREFIX."c_action_trigger as a,";
- $sql .= " ".MAIN_DB_PREFIX."notify_def as n";
- $sql .= " WHERE n.fk_user = c.rowid AND a.rowid = n.fk_action";
- $sql .= " AND c.statut = 1";
- if (is_numeric($notifcode)) {
- $sql .= " AND n.fk_action = ".$notifcode; // Old usage
- } else {
- $sql .= " AND a.code = '".$this->db->escape($notifcode)."'"; // New usage
- }
- $result = $this->db->query($sql);
- if ($result) {
- $num = $this->db->num_rows($result);
- $projtitle = '';
- if (!empty($object->fk_project)) {
- require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
- $proj = new Project($this->db);
- $proj->fetch($object->fk_project);
- $projtitle = '('.$proj->title.')';
- }
- if ($num > 0) {
- $i = 0;
- while ($i < $num && !$error) { // For each notification couple defined (third party/actioncode)
- $obj = $this->db->fetch_object($result);
- $sendto = dolGetFirstLastname($obj->firstname, $obj->lastname)." <".$obj->email.">";
- $notifcodedefid = $obj->adid;
- $trackid = '';
- if ($obj->type_target == 'tocontactid') {
- $trackid = 'con'.$obj->id;
- }
- if ($obj->type_target == 'touserid') {
- $trackid = 'use'.$obj->id;
- }
- if (dol_strlen($obj->email)) {
- // Set output language
- $outputlangs = $langs;
- if ($obj->default_lang && $obj->default_lang != $langs->defaultlang) {
- $outputlangs = new Translate('', $conf);
- $outputlangs->setDefaultLang($obj->default_lang);
- $outputlangs->loadLangs(array("main", "other"));
- }
- $subject = '['.$mysoc->name.'] '.$outputlangs->transnoentitiesnoconv("DolibarrNotification").($projtitle ? ' '.$projtitle : '');
- switch ($notifcode) {
- case 'BILL_VALIDATE':
- $link = '<a href="'.$urlwithroot.'/compta/facture/card.php?facid='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->facture->dir_output."/".get_exdir(0, 0, 0, 1, $object, 'invoice');
- $object_type = 'facture';
- $labeltouse = $conf->global->BILL_VALIDATE_TEMPLATE;
- $mesg = $outputlangs->transnoentitiesnoconv("EMailTextInvoiceValidated", $link);
- break;
- case 'BILL_PAYED':
- $link = '<a href="'.$urlwithroot.'/compta/facture/card.php?facid='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->facture->dir_output."/".get_exdir(0, 0, 0, 1, $object, 'invoice');
- $object_type = 'facture';
- $labeltouse = $conf->global->BILL_PAYED_TEMPLATE;
- $mesg = $outputlangs->transnoentitiesnoconv("EMailTextInvoicePayed", $link);
- break;
- case 'ORDER_VALIDATE':
- $link = '<a href="'.$urlwithroot.'/commande/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->commande->dir_output."/".get_exdir(0, 0, 0, 1, $object, 'commande');
- $object_type = 'order';
- $labeltouse = $conf->global->ORDER_VALIDATE_TEMPLATE;
- $mesg = $outputlangs->transnoentitiesnoconv("EMailTextOrderValidated", $link);
- break;
- case 'PROPAL_VALIDATE':
- $link = '<a href="'.$urlwithroot.'/comm/propal/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->propal->multidir_output[$object->entity]."/".get_exdir(0, 0, 0, 1, $object, 'propal');
- $object_type = 'propal';
- $labeltouse = $conf->global->PROPAL_VALIDATE_TEMPLATE;
- $mesg = $outputlangs->transnoentitiesnoconv("EMailTextProposalValidated", $link);
- break;
- case 'PROPAL_CLOSE_SIGNED':
- $link = '<a href="'.$urlwithroot.'/comm/propal/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->propal->multidir_output[$object->entity]."/".get_exdir(0, 0, 0, 1, $object, 'propal');
- $object_type = 'propal';
- $labeltouse = $conf->global->PROPAL_CLOSE_SIGNED_TEMPLATE;
- $mesg = $outputlangs->transnoentitiesnoconv("EMailTextProposalClosedSigned", $link);
- break;
- case 'FICHINTER_ADD_CONTACT':
- $link = '<a href="'.$urlwithroot.'/fichinter/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->ficheinter->dir_output;
- $object_type = 'ficheinter';
- $mesg = $outputlangs->transnoentitiesnoconv("EMailTextInterventionAddedContact", $link);
- break;
- case 'FICHINTER_VALIDATE':
- $link = '<a href="'.$urlwithroot.'/fichinter/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->ficheinter->dir_output;
- $object_type = 'ficheinter';
- $mesg = $outputlangs->transnoentitiesnoconv("EMailTextInterventionValidated", $link);
- break;
- case 'ORDER_SUPPLIER_VALIDATE':
- $link = '<a href="'.$urlwithroot.'/fourn/commande/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->fournisseur->commande->dir_output;
- $object_type = 'order_supplier';
- $mesg = $outputlangs->transnoentitiesnoconv("Hello").",\n\n";
- $mesg .= $outputlangs->transnoentitiesnoconv("EMailTextOrderValidatedBy", $link, $user->getFullName($outputlangs));
- $mesg .= "\n\n".$outputlangs->transnoentitiesnoconv("Sincerely").".\n\n";
- break;
- case 'ORDER_SUPPLIER_APPROVE':
- $link = '<a href="'.$urlwithroot.'/fourn/commande/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->fournisseur->commande->dir_output;
- $object_type = 'order_supplier';
- $mesg = $outputlangs->transnoentitiesnoconv("Hello").",\n\n";
- $mesg .= $outputlangs->transnoentitiesnoconv("EMailTextOrderApprovedBy", $link, $user->getFullName($outputlangs));
- $mesg .= "\n\n".$outputlangs->transnoentitiesnoconv("Sincerely").".\n\n";
- break;
- case 'ORDER_SUPPLIER_REFUSE':
- $link = '<a href="'.$urlwithroot.'/fourn/commande/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->fournisseur->commande->dir_output;
- $object_type = 'order_supplier';
- $mesg = $outputlangs->transnoentitiesnoconv("Hello").",\n\n";
- $mesg .= $outputlangs->transnoentitiesnoconv("EMailTextOrderRefusedBy", $link, $user->getFullName($outputlangs));
- $mesg .= "\n\n".$outputlangs->transnoentitiesnoconv("Sincerely").".\n\n";
- break;
- case 'SHIPPING_VALIDATE':
- $link = '<a href="'.$urlwithroot.'/expedition/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->expedition->dir_output."/sending/".get_exdir(0, 0, 0, 1, $object, 'shipment');
- $object_type = 'shipping';
- $labeltouse = $conf->global->SHIPPING_VALIDATE_TEMPLATE;
- $mesg = $outputlangs->transnoentitiesnoconv("EMailTextExpeditionValidated", $link);
- break;
- case 'EXPENSE_REPORT_VALIDATE':
- $link = '<a href="'.$urlwithroot.'/expensereport/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->expensereport->dir_output;
- $object_type = 'expensereport';
- $labeltouse = $conf->global->EXPENSE_REPORT_VALIDATE_TEMPLATE;
- $mesg = $outputlangs->transnoentitiesnoconv("EMailTextExpenseReportValidated", $link);
- break;
- case 'EXPENSE_REPORT_APPROVE':
- $link = '<a href="'.$urlwithroot.'/expensereport/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->expensereport->dir_output;
- $object_type = 'expensereport';
- $labeltouse = $conf->global->EXPENSE_REPORT_APPROVE_TEMPLATE;
- $mesg = $outputlangs->transnoentitiesnoconv("EMailTextExpenseReportApproved", $link);
- break;
- case 'HOLIDAY_VALIDATE':
- $link = '<a href="'.$urlwithroot.'/holiday/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->holiday->dir_output;
- $object_type = 'holiday';
- $labeltouse = $conf->global->HOLIDAY_VALIDATE_TEMPLATE;
- $mesg = $outputlangs->transnoentitiesnoconv("EMailTextHolidayValidated", $link);
- break;
- case 'HOLIDAY_APPROVE':
- $link = '<a href="'.$urlwithroot.'/holiday/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->holiday->dir_output;
- $object_type = 'holiday';
- $labeltouse = $conf->global->HOLIDAY_APPROVE_TEMPLATE;
- $mesg = $outputlangs->transnoentitiesnoconv("EMailTextHolidayApproved", $link);
- break;
- case 'ACTION_CREATE':
- $link = '<a href="'.$urlwithroot.'/comm/action/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->agenda->dir_output;
- $object_type = 'action';
- $labeltouse = $conf->global->ACTION_CREATE_TEMPLATE;
- $mesg = $outputlangs->transnoentitiesnoconv("EMailTextActionAdded", $link);
- break;
- }
- include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
- $formmail = new FormMail($this->db);
- $arraydefaultmessage = null;
- if (!empty($labeltouse)) $arraydefaultmessage = $formmail->getEMailTemplate($this->db, $object_type.'_send', $user, $outputlangs, 0, 1, $labeltouse);
- if (!empty($labeltouse) && is_object($arraydefaultmessage) && $arraydefaultmessage->id > 0) {
- $substitutionarray = getCommonSubstitutionArray($outputlangs, 0, null, $object);
- complete_substitutions_array($substitutionarray, $outputlangs, $object);
- $subject = make_substitutions($arraydefaultmessage->topic, $substitutionarray, $outputlangs);
- $message = make_substitutions($arraydefaultmessage->content, $substitutionarray, $outputlangs);
- } else {
- $message = $outputlangs->transnoentities("YouReceiveMailBecauseOfNotification", $application, $mysoc->name)."\n";
- $message .= $outputlangs->transnoentities("YouReceiveMailBecauseOfNotification2", $application, $mysoc->name)."\n";
- $message .= "\n";
- $message .= $mesg;
- }
- $ref = dol_sanitizeFileName($newref);
- $pdf_path = $dir_output."/".$ref.".pdf";
- if (!dol_is_file($pdf_path)) {
- // We can't add PDF as it is not generated yet.
- $filepdf = '';
- } else {
- $filepdf = $pdf_path;
- $filename_list[] = $filepdf;
- $mimetype_list[] = mime_content_type($filepdf);
- $mimefilename_list[] = $ref.".pdf";
- }
- $parameters = array('notifcode'=>$notifcode, 'sendto'=>$sendto, 'replyto'=>$replyto, 'file'=>$filename_list, 'mimefile'=>$mimetype_list, 'filename'=>$mimefilename_list);
- if (!isset($action)) {
- $action = '';
- }
- $reshook = $hookmanager->executeHooks('formatNotificationMessage', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
- if (empty($reshook)) {
- if (!empty($hookmanager->resArray['subject'])) {
- $subject .= $hookmanager->resArray['subject'];
- }
- if (!empty($hookmanager->resArray['message'])) {
- $message .= $hookmanager->resArray['message'];
- }
- }
- $mailfile = new CMailFile(
- $subject,
- $sendto,
- $replyto,
- $message,
- $filename_list,
- $mimetype_list,
- $mimefilename_list,
- '',
- '',
- 0,
- -1,
- '',
- '',
- $trackid,
- '',
- 'notification'
- );
- if ($mailfile->sendfile()) {
- if ($obj->type_target == 'touserid') {
- $sql = "INSERT INTO ".MAIN_DB_PREFIX."notify (daten, fk_action, fk_soc, fk_user, type, objet_type, type_target, objet_id, email)";
- $sql .= " VALUES ('".$this->db->idate(dol_now())."', ".$notifcodedefid.", ".($object->socid ? $object->socid : 'null').", ".$obj->cid.", '".$obj->type."', '".$object_type."', '".$obj->type_target."', ".$object->id.", '".$this->db->escape($obj->email)."')";
- } else {
- $sql = "INSERT INTO ".MAIN_DB_PREFIX."notify (daten, fk_action, fk_soc, fk_contact, type, objet_type, type_target, objet_id, email)";
- $sql .= " VALUES ('".$this->db->idate(dol_now())."', ".$notifcodedefid.", ".($object->socid ? $object->socid : 'null').", ".$obj->cid.", '".$obj->type."', '".$object_type."', '".$obj->type_target."', ".$object->id.", '".$this->db->escape($obj->email)."')";
- }
- if (!$this->db->query($sql)) {
- dol_print_error($this->db);
- }
- } else {
- $error++;
- $this->errors[] = $mailfile->error;
- }
- } else {
- dol_syslog("No notification sent for ".$sendto." because email is empty");
- }
- $i++;
- }
- } else {
- dol_syslog("No notification to thirdparty sent, nothing into notification setup for the thirdparty socid = ".(empty($object->socid) ? '' : $object->socid));
- }
- } else {
- $error++;
- $this->errors[] = $this->db->lasterror();
- dol_syslog("Failed to get list of notification to send ".$this->db->lasterror(), LOG_ERR);
- return -1;
- }
- // Check notification using fixed email
- if (!$error) {
- foreach ($conf->global as $key => $val) {
- $reg = array();
- if ($val == '' || !preg_match('/^NOTIFICATION_FIXEDEMAIL_'.$notifcode.'_THRESHOLD_HIGHER_(.*)$/', $key, $reg)) {
- continue;
- }
- $threshold = (float) $reg[1];
- if (!empty($object->total_ht) && $object->total_ht <= $threshold) {
- dol_syslog("A notification is requested for notifcode = ".$notifcode." but amount = ".$object->total_ht." so lower than threshold = ".$threshold.". We discard this notification");
- continue;
- }
- $param = 'NOTIFICATION_FIXEDEMAIL_'.$notifcode.'_THRESHOLD_HIGHER_'.$reg[1];
- $sendto = $conf->global->$param;
- $notifcodedefid = dol_getIdFromCode($this->db, $notifcode, 'c_action_trigger', 'code', 'rowid');
- if ($notifcodedefid <= 0) {
- dol_print_error($this->db, 'Failed to get id from code');
- }
- $trackid = '';
- $object_type = '';
- $link = '';
- $num++;
- $subject = '['.$mysoc->name.'] '.$langs->transnoentitiesnoconv("DolibarrNotification").($projtitle ? ' '.$projtitle : '');
- switch ($notifcode) {
- case 'BILL_VALIDATE':
- $link = '<a href="'.$urlwithroot.'/compta/facture/card.php?facid='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->facture->dir_output."/".get_exdir(0, 0, 0, 1, $object, 'invoice');
- $object_type = 'facture';
- $mesg = $langs->transnoentitiesnoconv("EMailTextInvoiceValidated", $link);
- break;
- case 'BILL_PAYED':
- $link = '<a href="'.$urlwithroot.'/compta/facture/card.php?facid='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->facture->dir_output."/".get_exdir(0, 0, 0, 1, $object, 'invoice');
- $object_type = 'facture';
- $mesg = $langs->transnoentitiesnoconv("EMailTextInvoicePayed", $link);
- break;
- case 'ORDER_VALIDATE':
- $link = '<a href="'.$urlwithroot.'/commande/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->commande->dir_output."/".get_exdir(0, 0, 0, 1, $object, 'commande');
- $object_type = 'order';
- $mesg = $langs->transnoentitiesnoconv("EMailTextOrderValidated", $link);
- break;
- case 'PROPAL_VALIDATE':
- $link = '<a href="'.$urlwithroot.'/comm/propal/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->propal->multidir_output[$object->entity]."/".get_exdir(0, 0, 0, 1, $object, 'propal');
- $object_type = 'propal';
- $mesg = $langs->transnoentitiesnoconv("EMailTextProposalValidated", $link);
- break;
- case 'PROPAL_CLOSE_SIGNED':
- $link = '<a href="'.$urlwithroot.'/comm/propal/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->propal->multidir_output[$object->entity]."/".get_exdir(0, 0, 0, 1, $object, 'propal');
- $object_type = 'propal';
- $mesg = $langs->transnoentitiesnoconv("EMailTextProposalClosedSigned", $link);
- break;
- case 'FICHINTER_ADD_CONTACT':
- $link = '<a href="'.$urlwithroot.'/fichinter/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->ficheinter->dir_output;
- $object_type = 'ficheinter';
- $mesg = $langs->transnoentitiesnoconv("EMailTextInterventionAddedContact", $link);
- break;
- case 'FICHINTER_VALIDATE':
- $link = '<a href="'.$urlwithroot.'/fichinter/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->facture->dir_output;
- $object_type = 'ficheinter';
- $mesg = $langs->transnoentitiesnoconv("EMailTextInterventionValidated", $link);
- break;
- case 'ORDER_SUPPLIER_VALIDATE':
- $link = '<a href="'.$urlwithroot.'/fourn/commande/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->fournisseur->commande->dir_output;
- $object_type = 'order_supplier';
- $mesg = $langs->transnoentitiesnoconv("Hello").",\n\n";
- $mesg .= $langs->transnoentitiesnoconv("EMailTextOrderValidatedBy", $link, $user->getFullName($langs));
- $mesg .= "\n\n".$langs->transnoentitiesnoconv("Sincerely").".\n\n";
- break;
- case 'ORDER_SUPPLIER_APPROVE':
- $link = '<a href="'.$urlwithroot.'/fourn/commande/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->fournisseur->commande->dir_output;
- $object_type = 'order_supplier';
- $mesg = $langs->transnoentitiesnoconv("Hello").",\n\n";
- $mesg .= $langs->transnoentitiesnoconv("EMailTextOrderApprovedBy", $link, $user->getFullName($langs));
- $mesg .= "\n\n".$langs->transnoentitiesnoconv("Sincerely").".\n\n";
- break;
- case 'ORDER_SUPPLIER_APPROVE2':
- $link = '<a href="'.$urlwithroot.'/fourn/commande/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->fournisseur->commande->dir_output;
- $object_type = 'order_supplier';
- $mesg = $langs->transnoentitiesnoconv("Hello").",\n\n";
- $mesg .= $langs->transnoentitiesnoconv("EMailTextOrderApprovedBy", $link, $user->getFullName($langs));
- $mesg .= "\n\n".$langs->transnoentitiesnoconv("Sincerely").".\n\n";
- break;
- case 'ORDER_SUPPLIER_REFUSE':
- $link = '<a href="'.$urlwithroot.'/fourn/commande/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->fournisseur->dir_output.'/commande/';
- $object_type = 'order_supplier';
- $mesg = $langs->transnoentitiesnoconv("Hello").",\n\n";
- $mesg .= $langs->transnoentitiesnoconv("EMailTextOrderRefusedBy", $link, $user->getFullName($langs));
- $mesg .= "\n\n".$langs->transnoentitiesnoconv("Sincerely").".\n\n";
- break;
- case 'SHIPPING_VALIDATE':
- $link = '<a href="'.$urlwithroot.'/expedition/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->expedition->dir_output."/sending/".get_exdir(0, 0, 0, 1, $object, 'shipment');
- $object_type = 'order_supplier';
- $mesg = $langs->transnoentitiesnoconv("EMailTextExpeditionValidated", $link);
- break;
- case 'EXPENSE_REPORT_VALIDATE':
- $link = '<a href="'.$urlwithroot.'/expensereport/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->expensereport->dir_output;
- $object_type = 'expensereport';
- $mesg = $langs->transnoentitiesnoconv("EMailTextExpenseReportValidated", $link);
- break;
- case 'EXPENSE_REPORT_APPROVE':
- $link = '<a href="'.$urlwithroot.'/expensereport/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->expensereport->dir_output;
- $object_type = 'expensereport';
- $mesg = $langs->transnoentitiesnoconv("EMailTextExpenseReportApproved", $link);
- break;
- case 'HOLIDAY_VALIDATE':
- $link = '<a href="'.$urlwithroot.'/holiday/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->holiday->dir_output;
- $object_type = 'holiday';
- $mesg = $langs->transnoentitiesnoconv("EMailTextHolidayValidated", $link);
- break;
- case 'HOLIDAY_APPROVE':
- $link = '<a href="'.$urlwithroot.'/holiday/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->holiday->dir_output;
- $object_type = 'holiday';
- $mesg = $langs->transnoentitiesnoconv("EMailTextHolidayApproved", $link);
- break;
- case 'ACTION_CREATE':
- $link = '<a href="'.$urlwithroot.'/comm/action/card.php?id='.$object->id.'&entity='.$object->entity.'">'.$newref.'</a>';
- $dir_output = $conf->agenda->dir_output;
- $object_type = 'action';
- $mesg = $langs->transnoentitiesnoconv("EMailTextActionAdded", $link);
- break;
- }
- $ref = dol_sanitizeFileName($newref);
- $pdf_path = $dir_output."/".$ref."/".$ref.".pdf";
- if (!dol_is_file($pdf_path)) {
- // We can't add PDF as it is not generated yet.
- $filepdf = '';
- } else {
- $filepdf = $pdf_path;
- $filename_list[] = $pdf_path;
- $mimetype_list[] = mime_content_type($filepdf);
- $mimefilename_list[] = $ref.".pdf";
- }
- $message .= $langs->transnoentities("YouReceiveMailBecauseOfNotification2", $application, $mysoc->name)."\n";
- $message .= "\n";
- $message .= $mesg;
- $message = nl2br($message);
- // Replace keyword __SUPERVISOREMAIL__
- if (preg_match('/__SUPERVISOREMAIL__/', $sendto)) {
- $newval = '';
- if ($user->fk_user > 0) {
- $supervisoruser = new User($this->db);
- $supervisoruser->fetch($user->fk_user);
- if ($supervisoruser->email) {
- $newval = trim(dolGetFirstLastname($supervisoruser->firstname, $supervisoruser->lastname).' <'.$supervisoruser->email.'>');
- }
- }
- dol_syslog("Replace the __SUPERVISOREMAIL__ key into recipient email string with ".$newval);
- $sendto = preg_replace('/__SUPERVISOREMAIL__/', $newval, $sendto);
- $sendto = preg_replace('/,\s*,/', ',', $sendto); // in some case you can have $sendto like "email, __SUPERVISOREMAIL__ , otheremail" then you have "email, , othermail" and it's not valid
- $sendto = preg_replace('/^[\s,]+/', '', $sendto); // Clean start of string
- $sendto = preg_replace('/[\s,]+$/', '', $sendto); // Clean end of string
- }
- if ($sendto) {
- $parameters = array('notifcode'=>$notifcode, 'sendto'=>$sendto, 'replyto'=>$replyto, 'file'=>$filename_list, 'mimefile'=>$mimetype_list, 'filename'=>$mimefilename_list);
- $reshook = $hookmanager->executeHooks('formatNotificationMessage', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
- if (empty($reshook)) {
- if (!empty($hookmanager->resArray['subject'])) {
- $subject .= $hookmanager->resArray['subject'];
- }
- if (!empty($hookmanager->resArray['message'])) {
- $message .= $hookmanager->resArray['message'];
- }
- }
- $mailfile = new CMailFile(
- $subject,
- $sendto,
- $replyto,
- $message,
- $filename_list,
- $mimetype_list,
- $mimefilename_list,
- '',
- '',
- 0,
- 1,
- '',
- $trackid,
- '',
- '',
- 'notification'
- );
- if ($mailfile->sendfile()) {
- $sql = "INSERT INTO ".MAIN_DB_PREFIX."notify (daten, fk_action, fk_soc, fk_contact, type, type_target, objet_type, objet_id, email)";
- $sql .= " VALUES ('".$this->db->idate(dol_now())."', ".$notifcodedefid.", ".($object->socid ? $object->socid : 'null').", null, 'email', 'tofixedemail', '".$object_type."', ".$object->id.", '".$this->db->escape($conf->global->$param)."')";
- if (!$this->db->query($sql)) {
- dol_print_error($this->db);
- }
- } else {
- $error++;
- $this->errors[] = $mailfile->error;
- }
- }
- }
- }
- if (!$error) {
- return $num;
- } else {
- return -1 * $error;
- }
- }
- }
|