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