handle empty companies
[Pman.Core] / DataObjects / Core_email.php
1 <?php
2 /**
3  * Table Definition for core_email
4  */
5 class_exists('DB_DataObject') ? '' : require_once 'DB/DataObject.php';
6
7 class Pman_Core_DataObjects_Core_email extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11   
12     public $__table = 'core_email';    // table name
13     public $id;                              // int(11)  not_null primary_key auto_increment
14     public $name;                            // 
15     public $subject;                         // blob(65535)  blob
16     public $bodytext;                        // blob(65535)  blob
17     public $plaintext;
18     public $updated_dt;                      //datetime not_null
19     public $from_email;
20     public $from_name;
21     public $owner_id;
22     public $is_system;
23     public $active;
24     public $bcc_group_id;
25     public $test_class;
26     
27  
28
29     /* the code above is auto generated do not remove the tag below */
30     ###END_AUTOCODE
31     
32     function applyFilters($q, $au, $roo)
33     {
34         $tn = $this->tableName();
35         
36         if(!empty($q['search']['nameortitle'])){
37             $this->whereAdd("
38                 $tn.name LIKE '%{$this->escape($q['search']['nameortitle'])}%'
39                 OR
40                 $tn.subject LIKE '%{$this->escape($q['search']['nameortitle'])}%'
41             ");
42         }
43         $cgm = DB_DataObject::Factory('core_group_member')->tableName();;
44       
45         $this->selectAdd("
46             (
47                 SELECT 
48                     count(id) 
49                 FROM 
50                     {$cgm}
51                 WHERE 
52                     to_group_id = {$cgm}.group_id
53             )  AS group_member_count,
54             
55             (
56                 SELECT 
57                     count(id) 
58                 FROM 
59                     {$cgm}
60                 WHERE 
61                     bcc_group_id = {$cgm}.group_id
62             )  AS bcc_group_member_count
63         ");
64         
65         if (!empty($_REQUEST['_hide_system_emails'])) {
66             $this->whereAddIn("!{$this->tableName()}.name", array('EVENT_ERRORS_REPORT'), 'string');
67         }
68         
69     }
70     
71     function beforeDelete($dependants_array, $roo)
72     {   
73         $i = DB_DataObject::factory('Images');
74         $i->onid = $this->id;
75         $i->ontable = $this->tableName();
76         $i->find();
77         while ($i->fetch()){
78             $i->beforeDelete();
79             $i->delete();
80         }
81     }
82     
83     function beforeUpdate($old, $request,$roo)
84     {   
85         if (!empty($request['_make_copy'])) {
86             $this->makeCopy($roo);
87             
88         }
89         
90         if ($this->to_group_id != -1) {
91                    
92             $c = DB_DataObject::factory('core_group_member');            
93             $c->group_id = $this->to_group_id;
94                         
95             if (!$c->count() && empty($request['_ignore_group_count'])) {
96                 $roo->jerr('Failed to create email template - No member found in recieptent group',array('errcode'=> 100));
97             }
98         }
99     }
100     
101     function makeCopy($roo)
102     {
103         $c = DB_DataObject::Factory($this->tableName());
104         $c->setFrom($this);
105         $c->name = "COPY of " . $this->name;
106         $c->updated_dt = $this->sqlValue('NOW()');
107         
108         $id = $c->insert();
109         $c = DB_DataObject::Factory($this->tableName());
110         $c->get($id);
111         
112         
113         // copy images.
114         
115         $i = DB_DataObject::factory('Images');
116         $i->onid = $this->id;
117         $i->ontable = $this->tableName();
118         $i->find();
119         while ($i->fetch()){
120             
121             $new_image = DB_DataObject::factory('Images');
122             $new_image->onid = $c->id;
123             $new_image->ontable = $this->tableName();
124             $new_image->createFrom($i->getStoreName(), $i->filename);
125             
126             $map[$i->id] = $new_image->id;
127         }
128         
129         
130         libxml_use_internal_errors (true);
131         $doc = new DOMDocument('1.0', 'UTF-8');
132         $doc->loadHTML('<?xml encoding="UTF-8"><HTML><BODY>'.$this->bodytext.'</BODY></HTML>');
133         $doc->formatOutput = true;
134
135        //echo '<PRE>'; print_R($doc);
136         
137         
138         $xpath = new DOMXpath($doc);
139         foreach ($xpath->query('//img[@src]') as $img) {
140             $href = $img->getAttribute('src');
141             //var_dump($href);
142             $matches = array();
143             if (preg_match("/Images\/([0-9]+)\/([^#]+)\#image\-([0-9]+)$/", $href, $matches)) {
144                  
145                 $oid = $matches[1];
146                 
147                 if (!isset($map[$oid])) {
148                     //echo "skip no new id for $oid";
149                     continue;
150                 }
151                 $nid = $map[$oid];
152                 $nstr = "/Images/$nid/{$matches[2]}/#image-{$nid}";
153                 
154                 $img->setAttribute('src',  str_replace($matches[0], $nstr, $href ));
155                     
156                  
157             }
158         }
159         $cc = clone($c);
160         $c->bodytext = $doc->saveHTML();
161         $c->update($cc);
162         libxml_use_internal_errors (false);
163         
164         
165         $roo->jok("duplicated");
166     }
167     
168     function onInsert($q,$roo)
169     {   
170         $i = DB_DataObject::factory('Images');
171         $i->onid = 0;
172         $i->ontable = $this->tableName();
173         $i->find();
174         while ($i->fetch()){
175             $ii = clone ($i);
176             $i->onid = $this->id;
177             $i->update($ii);
178         }
179         
180         $this->cachedMailWithOutImages(true, (get_class($this) == 'Pman_Core_DataObjects_Core_email') ? false : true);
181 //        $this->cachedMailWithOutImages(true, false);
182        
183     }
184     
185     function onUpdate($old, $q,$roo)
186     {
187         $this->cachedMailWithOutImages(true, (get_class($this) == 'Pman_Core_DataObjects_Core_email') ? false : true);
188     }
189
190
191     function attachmentIds()
192     {
193         libxml_use_internal_errors (true);
194         $doc = new DOMDocument('1.0', 'UTF-8');
195         $doc->loadHTML('<?xml encoding="UTF-8">'.$this->bodytext);
196         
197         $xpath = new DOMXpath($doc);
198         $ret = array();
199         
200         foreach ($xpath->query('//img[@src]') as $img) { // process images!
201             $href = $img->getAttribute('src');
202             $cid = explode('#', $href);
203             if(!isset($cid[1])){
204                 continue;
205             }
206             $cid = explode('-', $cid[1]);
207             if (!isset($cid[1])||!is_numeric($cid[1])) {
208                 continue;
209             }
210             $ret[] = $cid[1];
211         }
212         
213         return $ret;
214     }
215     /**
216      * process replacements is run to generate a template - not the final content..
217      *
218      */
219     
220     function processRelacements($replace_links = true)
221     {   
222         $cfg = isset(HTML_FlexyFramework::get()->Pman_Crm) ? HTML_FlexyFramework::get()->Pman_Crm : false;
223         
224         libxml_use_internal_errors (true);
225         $doc = new DOMDocument('1.0', 'UTF-8');
226         $doc->loadHTML('<?xml encoding="UTF-8">'.$this->bodytext);
227         
228         $xpath = new DOMXpath($doc);
229         
230         foreach ($xpath->query('//img[@src]') as $img) { // process images!
231             $href = $img->getAttribute('src');
232             $hash = explode('#', $href);
233             // we name all our cid's as attachment-*
234             // however the src url may be #image-*
235             
236             
237             if(!isset($hash[1])){
238                 continue;
239             }
240             $cid = explode('-', $hash[1]);
241             if(!empty($cid[1])){
242                 $img->setAttribute('src', 'cid:attachment-' . $cid[1]);
243             }
244         }
245         
246         $unsubscribe = $this->unsubscribe_url();
247         
248         foreach ($xpath->query('//a[@href]') as $a) { 
249             
250             $href = $a->getAttribute('href');
251             
252             if(preg_match('/#unsubscribe/', $href) && !empty($unsubscribe)){
253                 $a->setAttribute('href', $unsubscribe);
254                 continue;
255             }
256             
257             if(!preg_match('/^http(.*)/', $href)){
258                 continue;
259             }
260             if (!$replace_links) {
261                 continue;
262             }
263             if (empty($cfg)) {
264                 continue;
265             }
266             // not available if server_baseurl not set... and crm module not used.
267             $link = DB_DataObject::factory('crm_mailing_list_link');
268             $link->setFrom(array(
269                 'url' => $href
270             ));
271             
272             if(!$link->find(true)){
273                 $link->insert();
274             }
275             
276             if(!$link->id){
277                 continue;
278             }
279             
280             $l = $cfg ['server_baseurl'] . '/Crm/Link/' .$this->id . '/' . $link->id . '/{person.id}.html';
281             
282             $a->setAttribute('href', $l);
283             
284         }
285         
286         if(!empty($unsubscribe) && !empty($cfg)){
287             $element = $doc->createElement('img');
288             $element->setAttribute('mailembed', 'no');
289             $element->setAttribute('src', $cfg ['server_baseurl']  . '/Crm/Open/' . $this->id . '/{person.id}.html');
290             $element->setAttribute('width', '1');
291             $element->setAttribute('height', '1');
292
293             $html = $doc->getElementsByTagName('html');
294             if ($html->length) {
295                 $html->item(0)->appendChild($element);
296             }
297             
298             $this->plaintext = str_replace("{unsubscribe_link}", $unsubscribe, $this->plaintext);
299         }
300         
301         
302         $this->bodytext = $doc->saveHTML();
303         
304         libxml_use_internal_errors (false);
305         
306         $this->bodytext = str_replace('%7B', '{', $this->bodytext ); // kludge as template is not interpretated as html.
307         $this->bodytext = str_replace('%7D', '}', $this->bodytext ); // kludge as template is not interpretated as html.
308          
309         return;
310     }
311     
312     function unsubscribe_url()
313     {
314         $unsubscribe = false;
315         
316         $cfg = isset(HTML_FlexyFramework::get()->Pman_Crm) ? HTML_FlexyFramework::get()->Pman_Crm : false;
317         
318         if(!empty($cfg)){
319             $unsubscribe = $cfg ['server_baseurl'] . '/Crm/Unsubscribe/' . $this->id . '/{person.id}';
320         }
321         
322         return $unsubscribe;
323     }
324     
325     /**
326      * convert email with contents into a core mailer object. - ready to send..
327      * @param Object|Array $obj Object (or array) to send @see Pman_Core_Mailer
328      *    + subject
329      *    + rcpts || person   << if person is set - then it goes to them...
330      *    + rcpts_group (string) << name of group - normally to send admin emails.. (if set, then bcc_group is ignored.)
331      *    + replace_links
332      *    + template
333      *    + mailer_opts
334      *    + person << who it actually goes to..
335      *    
336      * @param bool $force - force re-creation of cached version of email.
337      *
338      * @returns Pman_Core_Mailer||PEAR_Error
339      */
340     
341     function toMailer($obj,$force=false)
342     {
343         require_once 'PEAR.php';
344         
345         $p = new PEAR();
346         $contents = (array)$obj;
347         
348         if(empty($this->id) && !empty($contents['template'])){
349             $this->get('name', $contents['template']);
350         }
351              
352         
353         if(empty($this->active)){
354             return $p->raiseError("template [{$contents['template']}] is Disabled");
355         }
356         
357         
358         if(empty($this->id)){
359             return $p->raiseError("template [{$contents['template']}] has not been set");
360         }
361         
362         // fill in BCC
363         
364         if (!empty($this->bcc_group_id) && $this->bcc_group_id > 0 && empty($contents['bcc']) && empty($contents['rcpts_group'])) {
365             $admin_grp = DB_DAtaObject::Factory('core_group')->load($this->bcc_group_id);
366             
367             $admin = $admin_grp ?  $admin_grp->members('email') : false;
368             
369             if (empty($admin) && $admin_grp->name != 'Empty Group') { // allow 'empty group mname'
370                 return $p->raiseError("template [{$contents['template']}] - bcc group is empty");
371             }
372             
373             $contents['bcc'] = $admin ;
374         }
375         if (!empty($contents['rcpts_group'])) {
376             
377             $admin = DB_DAtaObject::Factory('core_group')->lookupMembers($contents['rcpts_group'],'email');
378             
379             if (empty($admin)) {
380                 return $p->raiseError("Trying to send to {$contents['rcpts_group']} - group is empty");
381             }
382             $contents['rcpts'] = $admin;
383         }
384         
385         //subject replacement
386         if(empty($contents['subject'])){
387            $contents['subject'] = $this->subject; 
388         }
389         
390         if (!empty($contents['subject_replace'])) {
391             
392             // do not use the mapping 
393             if (isset($contents['mapping'])) {
394                 foreach ($contents['mapping'] as $pattern => $replace) {
395                     $contents['subject'] = preg_replace($pattern,$replace,$contents['subject']);
396                 }
397             }
398             
399             foreach ($contents as $k => $v) {
400                 if (is_string($v)) {
401                     $contents['subject'] = str_replace('{'. $k . '}', $v, $contents['subject']);
402                 }
403             }
404         }
405         
406         if(!empty($contents['rcpts']) && is_array($contents['rcpts'])){
407             $contents['rcpts'] = implode(',', $contents['rcpts']);
408         }     
409         
410         $ui = posix_getpwuid(posix_geteuid());
411         
412         $cachePath = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '.txt';
413         
414         if($force || !$this->isGenerated($cachePath)){
415             $this->cachedMailWithOutImages($force, empty($contents['replace_links']) ? false : $contents['replace_links']);
416         }
417          
418         require_once 'Pman/Core/Mailer.php';
419         
420         $templateDir = session_save_path() . '/email-cache-' . $ui['name'] ;
421         
422         $cfg = array(
423             'template'=> $this->tableName() . '-' . $this->id,
424             'templateDir' => $templateDir,
425             'page' => $this,
426             'contents' => $contents,
427             'css_embed' => true, // we should always try and do this with emails...
428         );
429         
430         if (isset($contents['rcpts'])) {
431             $cfg['rcpts'] = $contents['rcpts'];
432         }
433         
434         if (isset($contents['attachments'])) {
435             $cfg['attachments'] = $contents['attachments'];
436         }
437         
438         if (isset($contents['mailer_opts']) && is_array($contents['mailer_opts'])) {
439             $cfg = array_merge($contents['mailer_opts'], $cfg);
440         }
441         
442         if(isset($contents['css_inline'])){
443             $cfg['css_inline'] = $contents['css_inline'];
444         }
445         
446         $r = new Pman_Core_Mailer($cfg);
447         
448         $imageCache = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '-images.txt';
449         
450         if(file_exists($imageCache) && filesize($imageCache)){
451             $images = json_decode(file_get_contents($imageCache), true);
452             $r->images = $images;
453         }
454         
455         return $r;
456     }
457     function toMailerData($obj,$force=false)
458     {   
459         $r = $this->toMailer($obj, $force);
460         if (is_a($r, 'PEAR_Error')) {
461             return $r;
462         }
463         return $r->toData();
464     }
465     
466     /**
467      *
468      * DEPRICATED !!! - DO NOT USE THIS !!!
469      *
470      * use: toMailerData() -- to return the email data..
471      * or
472      * $mailer = $core_email->toMailer($obj, false);
473      * $sent = is_a($mailer,'PEAR_Error') ? false : $mailer->send();
474
475      * toMailer($obj, false)->send()
476      *
477      * 
478      */
479     
480     function send($obj, $force = true, $send = true)
481     {   
482         if (!$send) {
483             return $this->toMailerData($obj,$force);
484         }
485         
486         $r = $this->toMailer($obj, $force);
487         
488         if (is_a($r, 'PEAR_Error')) {
489             return $r;
490         }
491         
492         return $r->send();
493     }
494     
495     function cachedMailWithOutImages($force = false, $replace_links = true)
496     {  
497         
498         $ui = posix_getpwuid(posix_geteuid());
499         
500         $cachePath = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '.txt';
501           
502         if (!$force && $this->isGenerated($cachePath)) {
503             return;
504         }
505         
506         if (!file_exists(dirname($cachePath))) {
507             mkdir(dirname($cachePath), 0700, true);
508         }
509         
510         $random_hash = md5(date('r', time()));
511         
512         $this->cachedImages();
513         
514         $fh = fopen($cachePath, 'w');
515
516         fwrite($fh, implode("\n", array(
517             "From: {if:t.messageFrom}{t.messageFrom:h}{else:}{t.messageFrom():h}{end:}",
518             "To: {if:t.person}{t.person.getEmailFrom():h}{else:}{rcpts:h}{end:}",
519             "Subject: {t.subject:h} ",
520             "X-Message-ID: {t.id} ",
521             "{if:t.replyTo}Reply-To: {t.replyTo:h}{end:}",
522             "{if:t.mailgunVariables}X-Mailgun-Variables: {t.mailgunVariables:h}{end:}"
523         ))."\n");
524         
525         
526 // note the extra space to finish the last line..
527         fwrite($fh, " " . "
528 Content-Type: multipart/alternative; boundary=alt-{$random_hash}
529
530 --alt-{$random_hash}
531 Content-Type: text/plain; charset=utf-8; format=flowed
532 Content-Transfer-Encoding: 7bit
533
534 {$this->plaintext}
535
536 ");
537         fclose($fh);
538         
539         // cache body
540         
541         $this->processRelacements($replace_links);
542         
543         $cachePath = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '.body.html';
544         
545         if (!file_exists(dirname($cachePath))) {
546             mkdir(dirname($cachePath), 0700, true);
547         }
548         
549         if (empty($this->use_file)) {
550             file_put_contents($cachePath, $this->bodytext);
551             return;
552         }
553         // use-file -- uses the original template...
554         $mailtext = file_get_contents($this->use_file);        
555          
556         require_once 'Mail/mimeDecode.php';
557         require_once 'Mail/RFC822.php';
558         
559         $decoder = new Mail_mimeDecode($mailtext);
560         $parts = $decoder->getSendArray();
561         file_put_contents($cachePath,$parts[2]);
562          
563     }
564     
565     function cachedImages()
566     {
567         $ui = posix_getpwuid(posix_geteuid());
568         
569         $imageCache = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '-images.txt';
570         
571         $ids = $this->attachmentIds();
572         
573          
574         $fh = fopen($imageCache, 'w');
575         
576         $i = DB_DataObject::factory('Images');
577         $i->onid = $this->id;
578         $i->ontable = $this->tableName();
579         $i->whereAddIn('id', $ids, 'int');
580         $i->find();
581         
582         $images = array();
583         
584         require_once 'File/MimeType.php';
585         $y = new File_MimeType();
586         
587         while ($i->fetch()){
588             if (!file_exists($i->getStoreName()) || !filesize($i->getStoreName())) {
589                 continue;
590             }
591             
592             $images["attachment-{$i->id}"] = array(
593                 'file' => $i->getStoreName(),
594                 'mimetype' => $i->mimetype,
595                 'ext' => $y->toExt($i->mimetype),
596                 'contentid' => "attachment-$i->id"
597             );
598         }
599             
600         file_put_contents($imageCache, json_encode($images));
601         
602     }
603     
604     function isGenerated($cachePath)
605     {
606         if (!file_exists($cachePath) || !filesize($cachePath)) {
607             return false;
608         }
609         
610         if (!empty($this->use_file)) {
611             $ctime = filemtime($cachePath);
612             $mtime = filemtime($this->use_file);
613             if($ctime >= $mtime){
614                 return true;
615             }
616             return false;
617             
618         }
619         
620         
621         
622         $ctime = filemtime($cachePath);
623         $mtime = array();
624         $mtime[] = $this->updated_dt;
625         $i = DB_DataObject::factory('Images');
626         $i->onid = $this->id;
627         $i->ontable = $this->tableName();
628         $i->selectAdd();
629         $i->selectAdd('max(created) as created');
630         $i->find(true);
631         $mtime[] = $i->created;
632         if($ctime >= strtotime(max($mtime))){
633             return true;
634         }
635         
636         return false;
637     }
638     
639     function messageFrom()
640     {
641         if (empty($this->from_name)) {
642             return trim($this->from_email);
643         }
644         return trim('"' . addslashes($this->from_name) . '" <' . $this->from_email. '>')  ;
645     }
646     
647     function formatDate($dt, $format = 'd/M/Y')
648     {
649         return date($format, strtotime($dt));
650     } 
651     
652     
653      // fixme - this is now in core/udatedatabase..
654     
655     function initMail($mail_template_dir,  $name, $master='')
656     {
657         $cm = DB_DataObject::factory('core_email');
658         if ($cm->get('name', $name)) {
659             return;
660         }
661         
662 //        $basedir = $this->bootLoader->rootDir . $mail_template_dir;
663         
664         $opts = array();
665         
666         $opts['file'] = $mail_template_dir. $name .'.html';
667         if (!empty($master)) {
668             $opts['master'] = $mail_template_dir . $master .'.html';
669         }
670         //print_r($opts);
671         require_once 'Pman/Core/Import/Core_email.php';
672         $x = new Pman_Core_Import_Core_email();
673         $x->get('', $opts);
674          
675     }
676     
677     
678     
679 }