DataObjects/Core_email.php
[Pman.Core] / DataObjects / Core_email.php
1 <?php
2 /**
3  * Table Definition for core_email
4  */
5 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
24     /* the code above is auto generated do not remove the tag below */
25     ###END_AUTOCODE
26     
27     function applyFilters($q, $au, $roo)
28     {
29         $tn = $this->tableName();
30         
31         if(!empty($q['search']['nameortitle'])){
32             $this->whereAdd("
33                 $tn.name LIKE '%{$this->escape($q['search']['nameortitle'])}%'
34                 OR
35                 $tn.subject LIKE '%{$this->escape($q['search']['nameortitle'])}%'
36             ");
37         }
38     }
39     
40     function beforeDelete($dependants_array, $roo)
41     {   
42         $i = DB_DataObject::factory('Images');
43         $i->onid = $this->id;
44         $i->ontable = $this->tableName();
45         $i->find();
46         while ($i->fetch()){
47             $i->beforeDelete();
48             $i->delete();
49         }
50     }
51     
52     function beforeUpdate($old, $request,$roo)
53     {   
54         if (!empty($request['_make_copy'])) {
55             $this->makeCopy($roo);
56             
57         }
58     }
59     
60     function makeCopy($roo)
61     {
62         $c = DB_DataObject::Factory($this->tableName());
63         $c->setFrom($this);
64         $c->name = "COPY of " . $this->name;
65         $c->updated_dt = $this->sqlValue('NOW()');
66         
67         $id = $c->insert();
68         $c = DB_DataObject::Factory($this->tableName());
69         $c->get($id);
70         
71         
72         // copy images.
73         
74         $i = DB_DataObject::factory('Images');
75         $i->onid = $this->id;
76         $i->ontable = $this->tableName();
77         $i->find();
78         while ($i->fetch()){
79             
80             $new_image = DB_DataObject::factory('Images');
81             $new_image->onid = $c->id;
82             $new_image->ontable = $this->tableName();
83             $new_image->createFrom($i->getStoreName(), $i->filename);
84             
85             $map[$i->id] = $new_image->id;
86         }
87         
88         
89         libxml_use_internal_errors (true);
90         $doc = new DOMDocument('1.0', 'UTF-8');
91         $doc->loadHTML('<?xml encoding="UTF-8"><HTML><BODY>'.$this->bodytext.'</BODY></HTML>');
92         $doc->formatOutput = true;
93
94        //echo '<PRE>'; print_R($doc);
95         
96         
97         $xpath = new DOMXpath($doc);
98         foreach ($xpath->query('//img[@src]') as $img) {
99             $href = $img->getAttribute('src');
100             //var_dump($href);
101             $matches = array();
102             if (preg_match("/Images\/([0-9]+)\/([^#]+)\#image\-([0-9]+)$/", $href, $matches)) {
103                  
104                 $oid = $matches[1];
105                 
106                 if (!isset($map[$oid])) {
107                     //echo "skip no new id for $oid";
108                     continue;
109                 }
110                 $nid = $map[$oid];
111                 $nstr = "/Images/$nid/{$matches[2]}/#image-{$nid}";
112                 
113                 $img->setAttribute('src',  str_replace($matches[0], $nstr, $href ));
114                     
115                  
116             }
117         }
118         $cc = clone($c);
119         $c->bodytext = $doc->saveHTML();
120         $c->update($cc);
121         libxml_use_internal_errors (false);
122         
123         
124         $roo->jok("duplicated");
125     }
126     
127     function onInsert($q,$roo)
128     {   
129         $i = DB_DataObject::factory('Images');
130         $i->onid = 0;
131         $i->ontable = $this->tableName();
132         $i->find();
133         while ($i->fetch()){
134             $ii = clone ($i);
135             $i->onid = $this->id;
136             $i->update($ii);
137         }
138         
139         $this->cachedMailWithOutImages(true, (get_class($this) == 'Pman_Core_DataObjects_Core_email') ? false : true);
140 //        $this->cachedMailWithOutImages(true, false);
141        
142     }
143     
144     function onUpdate($old, $q,$roo)
145     {
146         $this->cachedMailWithOutImages(true, (get_class($this) == 'Pman_Core_DataObjects_Core_email') ? false : true);
147     }
148
149
150     function attachmentIds()
151     {
152         libxml_use_internal_errors (true);
153         $doc = new DOMDocument('1.0', 'UTF-8');
154         $doc->loadHTML('<?xml encoding="UTF-8">'.$this->bodytext);
155         
156         $xpath = new DOMXpath($doc);
157         $ret = array();
158         
159         foreach ($xpath->query('//img[@src]') as $img) { // process images!
160             $href = $img->getAttribute('src');
161             $cid = explode('#', $href);
162             if(!isset($cid[1])){
163                 continue;
164             }
165             $cid = explode('-', $cid[1]);
166             if (!isset($cid[1])||!is_numeric($cid[1])) {
167                 continue;
168             }
169             $ret[] = $cid[1];
170         }
171         
172         return $ret;
173     }
174     /**
175      * process replacements is run to generate a template - not the final content..
176      *
177      */
178     
179     function processRelacements($replace_links = true)
180     {   
181         $cfg = isset(HTML_FlexyFramework::get()->Pman_Crm) ? HTML_FlexyFramework::get()->Pman_Crm : false;
182         
183         libxml_use_internal_errors (true);
184         $doc = new DOMDocument('1.0', 'UTF-8');
185         $doc->loadHTML('<?xml encoding="UTF-8">'.$this->bodytext);
186         
187         $xpath = new DOMXpath($doc);
188         
189         foreach ($xpath->query('//img[@src]') as $img) { // process images!
190             $href = $img->getAttribute('src');
191             $hash = explode('#', $href);
192             // we name all our cid's as attachment-*
193             // however the src url may be #image-*
194             
195             
196             if(!isset($hash[1])){
197                 continue;
198             }
199             $cid = explode('-', $hash[1]);
200             if(!empty($cid[1])){
201                 $img->setAttribute('src', 'cid:attachment-' . $cid[1]);
202             }
203         }
204         
205         $unsubscribe = $this->unsubscribe_url();
206         
207         foreach ($xpath->query('//a[@href]') as $a) { 
208             
209             $href = $a->getAttribute('href');
210             
211             if(preg_match('/#unsubscribe/', $href) && !empty($unsubscribe)){
212                 $a->setAttribute('href', $unsubscribe);
213                 continue;
214             }
215             
216             if(!preg_match('/^http(.*)/', $href)){
217                 continue;
218             }
219             if (!$replace_links) {
220                 continue;
221             }
222             $link = DB_DataObject::factory('crm_mailing_list_link');
223             $link->setFrom(array(
224                 'url' => $href
225             ));
226             
227             if(!$link->find(true)){
228                 $link->insert();
229             }
230             
231             if(!$link->id){
232                 continue;
233             }
234             
235             $l = $cfg ['server_baseurl'] . '/Crm/Link/' .$this->id . '/' . $link->id . '/{person.id}.html';
236             
237             $a->setAttribute('href', $l);
238             
239         }
240         
241         if(!empty($unsubscribe)){
242             $element = $doc->createElement('img');
243         
244             $element->setAttribute('src', $cfg ['server_baseurl']  . '/Crm/Open/' . $this->id . '/{person.id}.html');
245             $element->setAttribute('width', '1');
246             $element->setAttribute('height', '1');
247
248             $html = $doc->getElementsByTagName('html');
249             if ($html->length) {
250                 $html->item(0)->appendChild($element);
251             }
252             
253             $this->plaintext = str_replace("{unsubscribe_link}", $unsubscribe, $this->plaintext);
254         }
255         
256         
257         $this->bodytext = $doc->saveHTML();
258         
259         libxml_use_internal_errors (false);
260         
261         $this->bodytext = str_replace('%7B', '{', $this->bodytext ); // kludge as template is not interpretated as html.
262         $this->bodytext = str_replace('%7D', '}', $this->bodytext ); // kludge as template is not interpretated as html.
263          
264         return;
265     }
266     
267     function unsubscribe_url()
268     {
269         $unsubscribe = false;
270         
271         $cfg = isset(HTML_FlexyFramework::get()->Pman_Crm) ? HTML_FlexyFramework::get()->Pman_Crm : false;
272         
273         if(!empty($cfg)){
274             $unsubscribe = $cfg ['server_baseurl'] . '/Crm/Unsubscribe/' . $this->id . '/{person.id}';
275         }
276         
277         return $unsubscribe;
278     }
279     
280     /**
281      * convert email with contents into a core mailer object. - ready to send..
282      * @param Object|Array $obj Object (or array) to send @see Pman_Core_Mailer
283      *    + subject
284      *    + rcpts
285      *    + replace_links
286      *    + template
287      *    + mailer_opts
288      * @param bool $force - force re-creation of cached version of email.
289      */
290     
291     function toMailer($obj,$force=false)
292     {
293         
294         $contents = (array)$obj;
295
296         if(empty($this->id) && !empty($contents['template'])){
297             $this->get('name', $contents['template']);
298         }
299         
300         if(empty($this->id)){
301             $p = new PEAR();
302             return $p->raiseError("template [{$contents['template']}] has not been set");
303         }
304         
305         if(empty($contents['subject'])){
306            $contents['subject'] = $this->subject; 
307         }
308         
309         if(!empty($contents['rcpts']) && is_array($contents['rcpts'])){
310             $contents['rcpts'] = implode(',', $contents['rcpts']);
311         }
312         
313         $ui = posix_getpwuid(posix_geteuid());
314         
315         $cachePath = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '.txt';
316         
317         if($force || !$this->isGenerated($cachePath)){
318             $this->cachedMailWithOutImages($force, empty($contents['replace_links']) ? false : $contents['replace_links']);
319         }
320          
321         require_once 'Pman/Core/Mailer.php';
322         
323         $templateDir = session_save_path() . '/email-cache-' . $ui['name'] ;
324         //print_r($this);
325         
326         
327         $cfg = array(
328             'template'=> $this->tableName() . '-' . $this->id,
329             'templateDir' => $templateDir,
330             'page' => $this,
331             'contents' => $contents,
332             'css_embed' => true, // we should always try and do this with emails...
333         );
334         if (isset($contents['rcpts'])) {
335             $cfg['rcpts'] = $contents['rcpts'];
336         }
337         if (isset($contents['mailer_opts']) && is_array($contents['mailer_opts'])) {
338             $cfg = array_merge($contents['mailer_opts'], $cfg);
339         }
340         
341         
342         $r = new Pman_Core_Mailer($cfg);
343         
344         $imageCache = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '-images.txt';
345         
346         if(file_exists($imageCache) && filesize($imageCache)){
347             $images = json_decode(file_get_contents($imageCache), true);
348             $r->images = $images;
349         }
350         
351         return $r;
352     }
353         
354         $ret = $r->toData();
355         
356         if(!$send){
357             return $ret;
358         }
359         
360         return $r->send();
361         
362         
363     }
364     
365     
366     /**
367      *
368      * Usage:
369      * $this->rcpts = array('sales@roojs.com');
370      * // or 
371      * $this->rcpts = "Tester <sales@roojs.com>";
372      *
373      * 
374      * // then send it..
375      * $x = DB_DataObject::factory('core_enum');
376      * $x->get('name', 'NAME OF TEMPLATE');
377      * $x->send(array(
378      *      'rcpts' => "Tester <sales@roojs.com>",
379      *      'page' => $this
380      *      'mailer_opts' => array( <<< additional options, like urlmap..)
381      *       'link' => 'http://......'
382        );
383      * // on the template use {link:h} to render the link
384      *
385      *
386      */
387     function send($obj, $force = true, $send = true)
388     {   
389         $contents = (array)$obj;
390
391         if(empty($this->id)){
392             $this->get('name', $contents['template']);
393         }
394         
395         if(empty($this->id)){
396             $p = new PEAR();
397             return $p->raiseError("template [{$contents['template']}] has not been set");
398         }
399         if(empty($contents['subject'])){
400            $contents['subject'] = $this->subject; 
401         }
402         
403         if(!empty($contents['rcpts']) && is_array($contents['rcpts'])){
404             $contents['rcpts'] = implode(',', $contents['rcpts']);
405         }
406         
407         $ui = posix_getpwuid(posix_geteuid());
408         
409         $cachePath = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '.txt';
410         
411         if($force || !$this->isGenerated($cachePath)){
412             $this->cachedMailWithOutImages($force, empty($contents['replace_links']) ? false : $contents['replace_links']);
413         }
414          
415         require_once 'Pman/Core/Mailer.php';
416         
417         $templateDir = session_save_path() . '/email-cache-' . $ui['name'] ;
418         //print_r($this);
419         
420         
421         $cfg = array(
422             'template'=> $this->tableName() . '-' . $this->id,
423             'templateDir' => $templateDir,
424             'page' => $this,
425             'contents' => $contents,
426             'css_embed' => true, // we should always try and do this with emails...
427         );
428         if (isset($contents['rcpts'])) {
429             $cfg['rcpts'] = $contents['rcpts'];
430         }
431         if (isset($contents['mailer_opts']) && is_array($contents['mailer_opts'])) {
432             $cfg = array_merge($contents['mailer_opts'], $cfg);
433         }
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         $ret = $r->toData();
446         
447         if(!$send){
448             return $ret;
449         }
450         
451         return $r->send();
452     }
453     
454     function cachedMailWithOutImages($force = false, $replace_links = true)
455     {  
456         
457         $ui = posix_getpwuid(posix_geteuid());
458         
459         $cachePath = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '.txt';
460           
461         if (!$force && $this->isGenerated($cachePath)) {
462             return;
463         }
464         
465         if (!file_exists(dirname($cachePath))) {
466             mkdir(dirname($cachePath), 0700, true);
467         }
468         
469         $random_hash = md5(date('r', time()));
470         
471         $this->cachedImages();
472         
473         $fh = fopen($cachePath, 'w');
474
475         fwrite($fh, implode("\n", array(
476             "From: {if:t.messageFrom}{t.messageFrom:h}{else:}{t.messageFrom():h}{end:}",
477             "To: {if:t.person}{t.person.getEmailFrom():h}{else:}{rcpts:h}{end:}",
478             "Subject: {t.subject} ",
479             "X-Message-ID: {t.id} ",
480             "{if:t.replyTo}Reply-To: {t.replyTo:h}{end:}",
481             "{if:t.mailgunVariables}X-Mailgun-Variables: {t.mailgunVariables:h}{end:}"
482         ))."\n");
483         
484         
485 // note the extra space to finish the last line..
486         fwrite($fh, " " . "
487 Content-Type: multipart/alternative; boundary=alt-{$random_hash}
488
489 --alt-{$random_hash}
490 Content-Type: text/plain; charset=utf-8; format=flowed
491 Content-Transfer-Encoding: 7bit
492
493 {$this->plaintext}
494
495 ");
496         fclose($fh);
497         
498         // cache body
499         
500         $this->processRelacements($replace_links);
501         
502         $cachePath = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '.body.html';
503         
504         if (!file_exists(dirname($cachePath))) {
505             mkdir(dirname($cachePath), 0700, true);
506         }
507         
508         file_put_contents($cachePath, $this->bodytext);
509         
510     }
511     
512     function cachedImages()
513     {
514         $ui = posix_getpwuid(posix_geteuid());
515         
516         $imageCache = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '-images.txt';
517         
518         $ids = $this->attachmentIds();
519         
520          
521         $fh = fopen($imageCache, 'w');
522         
523         $i = DB_DataObject::factory('Images');
524         $i->onid = $this->id;
525         $i->ontable = $this->tableName();
526         $i->whereAddIn('id', $ids, 'int');
527         $i->find();
528         
529         $images = array();
530         
531         require_once 'File/MimeType.php';
532         $y = new File_MimeType();
533         
534         while ($i->fetch()){
535             if (!file_exists($i->getStoreName()) || !filesize($i->getStoreName())) {
536                 continue;
537             }
538             
539             $images["attachment-$i->id"] = array(
540                 'file' => $i->getStoreName(),
541                 'mimetype' => $i->mimetype,
542                 'ext' => $y->toExt($i->mimetype),
543                 'contentid' => "attachment-$i->id"
544             );
545         }
546             
547         file_put_contents($imageCache, json_encode($images));
548         
549     }
550     
551     function isGenerated($cachePath)
552     {
553         if (!file_exists($cachePath) || !filesize($cachePath)) {
554             return false;
555         }
556         
557         
558         $ctime = filemtime($cachePath);
559         $mtime = array();
560         $mtime[] = $this->updated_dt;
561         $i = DB_DataObject::factory('Images');
562         $i->onid = $this->id;
563         $i->ontable = $this->tableName();
564         $i->selectAdd();
565         $i->selectAdd('max(created) as created');
566         $i->find(true);
567         $mtime[] = $i->created;
568         if($ctime >= strtotime(max($mtime))){
569             return true;
570         }
571         
572         return false;
573     }
574     
575     function messageFrom()
576     {
577         if (empty($this->from_name)) {
578             return trim($this->from_email);
579         }
580         return trim('"' . addslashes($this->from_name) . '" <' . $this->from_email. '>')  ;
581     }
582     
583     function formatDate($dt, $format = 'd/M/Y')
584     {
585         return date($format, strtotime($dt));
586     } 
587     
588     
589     
590 }