dolibarr 21.0.0-alpha
mailing-read.php
Go to the documentation of this file.
1<?php
29if (!defined('NOLOGIN')) {
30 define('NOLOGIN', '1');
31}
32if (!defined('NOCSRFCHECK')) {
33 define('NOCSRFCHECK', '1');
34}
35if (!defined('NOBROWSERNOTIF')) {
36 define('NOBROWSERNOTIF', '1');
37}
38if (!defined('NOREQUIRETRAN')) {
39 define('NOREQUIRETRAN', '1');
40}
41if (!defined('NOTOKENRENEWAL')) {
42 define('NOTOKENRENEWAL', '1'); // Do not check anti POST attack test
43}
44if (!defined('NOREQUIREMENU')) {
45 define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu
46}
47if (!defined('NOIPCHECK')) {
48 define('NOIPCHECK', '1'); // Do not check IP defined into conf $dolibarr_main_restrict_ip
49}
50if (!defined('NOSESSION')) {
51 define('NOSESSION', '1');
52}
53
74function llxHeader($head = '', $title = '', $help_url = '', $target = '', $disablejs = 0, $disablehead = 0, $arrayofjs = '', $arrayofcss = '', $morequerystring = '', $morecssonbody = '', $replacemainareaby = '', $disablenofollow = 0, $disablenoindex = 0)
75{
76}
77
78
87function llxFooter($comment = '', $zone = 'private', $disabledoutputofmessages = 0)
88{
89}
90
91
92// Load Dolibarr environment
93require '../../main.inc.php';
94
95$mtid = GETPOST('mtid');
96$email = GETPOST('email');
97$tag = GETPOST('tag');
98$securitykey = GETPOST('securitykey');
99
100
101/*
102 * Actions
103 */
104
105dol_syslog("public/emailing/mailing-read.php : tag=".$tag." securitykey=".$securitykey, LOG_DEBUG);
106
107if ($securitykey != dol_hash(getDolGlobalString('MAILING_EMAIL_UNSUBSCRIBE_KEY')."-".$tag."-".$email."-".$mtid, 'md5')) {
108 print 'Bad security key value.';
109 exit;
110}
111
112if (!empty($tag) && $tag != 'undefined') {
113 dol_syslog("public/emailing/mailing-read.php : Update status of email target and thirdparty for tag ".$tag, LOG_DEBUG);
114
115 $sql = "SELECT mc.rowid, mc.email, mc.statut, mc.source_type, mc.source_id, m.entity";
116 $sql .= " FROM ".MAIN_DB_PREFIX."mailing_cibles as mc, ".MAIN_DB_PREFIX."mailing as m";
117 $sql .= " WHERE mc.fk_mailing = m.rowid AND mc.tag = '".$db->escape($tag)."'";
118
119 $resql = $db->query($sql);
120 if (!$resql) {
121 dol_print_error($db);
122 }
123
124 $obj = $db->fetch_object($resql);
125
126 if (empty($obj)) {
127 print 'Email target not valid. Operation canceled.';
128 exit;
129 }
130 if (empty($obj->email)) {
131 print 'Email target not valid. Operation canceled.';
132 exit;
133 }
134 if ($obj->statut == 2 || $obj->statut == 3) {
135 print 'Email target already set to read or unsubscribe. Operation canceled.';
136 exit;
137 }
138 // TODO Test that mtid and email match also with the one found from $tag
139 /*
140 if ($obj->email != $email)
141 {
142 print 'Email does not match tagnot found. No need to unsubscribe.';
143 exit;
144 }
145 */
146
147 // Update status of target
148 $statut = '2';
149 $sql = "UPDATE ".MAIN_DB_PREFIX."mailing_cibles SET statut=".((int) $statut)." WHERE rowid = ".((int) $obj->rowid);
150 $resql = $db->query($sql);
151 if (!$resql) {
152 dol_print_error($db);
153 }
154
155 // Update status communication of thirdparty prospect
156 if ($obj->source_id > 0 && $obj->source_type == 'thirdparty' && $obj->entity) {
157 $sql = "UPDATE ".MAIN_DB_PREFIX.'societe SET fk_stcomm = 3 WHERE fk_stcomm <> -1 AND entity = '.((int) $obj->entity).' AND rowid = '.((int) $obj->source_id);
158 $resql = $db->query($sql);
159 }
160
161 // Update status communication of contact prospect
162 if ($obj->source_id > 0 && $obj->source_type == 'contact' && $obj->entity) {
163 $sql = "UPDATE ".MAIN_DB_PREFIX.'societe SET fk_stcomm = 3 WHERE fk_stcomm <> -1 AND entity = '.((int) $obj->entity).' AND rowid IN (SELECT sc.fk_soc FROM '.MAIN_DB_PREFIX.'socpeople AS sc WHERE sc.rowid = '.((int) $obj->source_id).')';
164 $resql = $db->query($sql);
165 }
166}
167
168$db->close();
llxFooter()
Footer empty.
Definition document.php:107
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
if(!defined('NOLOGIN')) if(!defined( 'NOCSRFCHECK')) if(!defined('NOBROWSERNOTIF')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOIPCHECK')) if(!defined( 'NOSESSION')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Header empty.
dol_hash($chain, $type='0', $nosalt=0)
Returns a hash (non reversible encryption) of a string.