fix #8131 - chinese translations
[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     /* the code above is auto generated do not remove the tag below */
28     ###END_AUTOCODE
29     
30     function applyFilters($q, $au, $roo)
31     {
32         $tn = $this->tableName();
33         
34         if(!empty($q['search']['nameortitle'])){
35             $this->whereAdd("
36                 $tn.name LIKE '%{$this->escape($q['search']['nameortitle'])}%'
37                 OR
38                 $tn.subject LIKE '%{$this->escape($q['search']['nameortitle'])}%'
39             ");
40         }
41         $cgm = DB_DataObject::Factory('core_group_member')->tableName();;
42       
43         $this->selectAdd("
44             (
45                 SELECT 
46                     count(id) 
47                 FROM 
48                     {$cgm}
49                 WHERE 
50                     to_group_id = {$cgm}.group_id
51             )  AS group_member_count,
52             
53             (
54                 SELECT 
55                     count(id) 
56                 FROM 
57                     {$cgm}
58                 WHERE 
59                     bcc_group_id = {$cgm}.group_id
60             )  AS bcc_group_member_count
61         ");
62
63         
64         if (!empty($_REQUEST['_hide_system_emails'])) {
65             $this->whereAddIn("!{$this->tableName()}.name", array('EVENT_ERRORS_REPORT'), 'string');
66         }
67         
68     }
69     
70     function beforeDelete($dependants_array, $roo)
71     {   
72         $i = DB_DataObject::factory('Images');
73         $i->onid = $this->id;
74         $i->ontable = $this->tableName();
75         $i->find();
76         while ($i->fetch()){
77             $i->beforeDelete(array(), $roo);
78             $i->delete();
79         }
80     }
81     
82     function beforeUpdate($old, $request,$roo)
83     {   
84         if (!empty($request['_make_copy'])) {
85             $this->makeCopy($roo);
86             
87         }
88         
89         if ($this->to_group_id != -1) {
90                    
91             $c = DB_DataObject::factory('core_group_member');            
92             $c->group_id = $this->to_group_id;
93                         
94             if (!$c->count() && empty($request['_ignore_group_count'])) {
95                 $roo->jerr('Failed to create email template - No member found in recieptent group',array('errcode'=> 100));
96             }
97         }
98     }
99     
100     function makeCopy($roo)
101     {
102         $c = DB_DataObject::Factory($this->tableName());
103         $c->setFrom($this);
104         $c->name = "COPY of " . $this->name;
105         $c->updated_dt = $this->sqlValue('NOW()');
106         
107         $id = $c->insert();
108         $c = DB_DataObject::Factory($this->tableName());
109         $c->get($id);
110         
111         
112         // copy images.
113         
114         $i = DB_DataObject::factory('Images');
115         $i->onid = $this->id;
116         $i->ontable = $this->tableName();
117         $i->find();
118         while ($i->fetch()){
119             
120             $new_image = DB_DataObject::factory('Images');
121             $new_image->onid = $c->id;
122             $new_image->ontable = $this->tableName();
123             $new_image->createFrom($i->getStoreName(), $i->filename);
124             
125             $map[$i->id] = $new_image->id;
126         }
127         
128         
129         libxml_use_internal_errors (true);
130         $doc = new DOMDocument('1.0', 'UTF-8');
131         $doc->loadHTML('<?xml encoding="UTF-8"><HTML><BODY>'.$this->bodytext.'</BODY></HTML>');
132         $doc->formatOutput = true;
133
134        //echo '<PRE>'; print_R($doc);
135         
136         
137         $xpath = new DOMXpath($doc);
138         foreach ($xpath->query('//img[@src]') as $img) {
139             $href = $img->getAttribute('src');
140             //var_dump($href);
141             $matches = array();
142             if (preg_match("/Images\/([0-9]+)\/([^#]+)\#image\-([0-9]+)$/", $href, $matches)) {
143                  
144                 $oid = $matches[1];
145                 
146                 if (!isset($map[$oid])) {
147                     //echo "skip no new id for $oid";
148                     continue;
149                 }
150                 $nid = $map[$oid];
151                 $nstr = "/Images/$nid/{$matches[2]}/#image-{$nid}";
152                 
153                 $img->setAttribute('src',  str_replace($matches[0], $nstr, $href ));
154                     
155                  
156             }
157         }
158         $cc = clone($c);
159         $c->bodytext = $doc->saveHTML();
160         $c->update($cc);
161         libxml_use_internal_errors (false);
162         
163         
164         $roo->jok("duplicated");
165     }
166     
167     function onInsert($q,$roo)
168     {   
169         $i = DB_DataObject::factory('Images');
170         $i->onid = 0;
171         $i->ontable = $this->tableName();
172         $i->find();
173         while ($i->fetch()){
174             $ii = clone ($i);
175             $i->onid = $this->id;
176             $i->update($ii);
177         }
178         
179         $this->cachedMailWithOutImages(true, (get_class($this) == 'Pman_Core_DataObjects_Core_email') ? false : true);
180 //        $this->cachedMailWithOutImages(true, false);
181        
182     }
183     
184     function onUpdate($old, $q,$roo)
185     {
186         $this->cachedMailWithOutImages(true, (get_class($this) == 'Pman_Core_DataObjects_Core_email') ? false : true);
187     }
188
189
190     function attachmentIds()
191     {
192         libxml_use_internal_errors (true);
193         $doc = new DOMDocument('1.0', 'UTF-8');
194         $doc->loadHTML('<?xml encoding="UTF-8">'.$this->bodytext);
195         
196         $xpath = new DOMXpath($doc);
197         $ret = array();
198         
199         foreach ($xpath->query('//img[@src]') as $img) { // process images!
200             $href = $img->getAttribute('src');
201             $cid = explode('#', $href);
202             if(!isset($cid[1])){
203                 continue;
204             }
205             $cid = explode('-', $cid[1]);
206             if (!isset($cid[1])||!is_numeric($cid[1])) {
207                 continue;
208             }
209             $ret[] = $cid[1];
210         }
211         
212         return $ret;
213     }
214     /**
215      * process replacements is run to generate a template - not the final content..
216      *
217      */
218     
219     function processRelacements($replace_links = true)
220     {   
221         $cfg = isset(HTML_FlexyFramework::get()->Pman_Crm) ? HTML_FlexyFramework::get()->Pman_Crm : false;
222         
223         libxml_use_internal_errors (true);
224         $doc = new DOMDocument('1.0', 'UTF-8');
225         $doc->loadHTML('<?xml encoding="UTF-8">'.$this->bodytext);
226         
227         $xpath = new DOMXpath($doc);
228         
229         foreach ($xpath->query('//img[@src]') as $img) { // process images!
230             $href = $img->getAttribute('src');
231             $hash = explode('#', $href);
232             // we name all our cid's as attachment-*
233             // however the src url may be #image-*
234             
235             
236             if(!isset($hash[1])){
237                 continue;
238             }
239             $cid = explode('-', $hash[1]);
240             if(!empty($cid[1])){
241                 $img->setAttribute('src', 'cid:attachment-' . $cid[1]);
242             }
243         }
244         
245         $unsubscribe = $this->unsubscribe_url();
246         
247         foreach ($xpath->query('//a[@href]') as $a) { 
248             
249             $href = $a->getAttribute('href');
250             
251             if(preg_match('/#unsubscribe/', $href) && !empty($unsubscribe)){
252                 $a->setAttribute('href', $unsubscribe);
253                 continue;
254             }
255             
256             if(!preg_match('/^http(.*)/', $href)){
257                 continue;
258             }
259             if (!$replace_links) {
260                 continue;
261             }
262             if (empty($cfg)) {
263                 continue;
264             }
265             // not available if server_baseurl not set... and crm module not used.
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) && !empty($cfg)){
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, empty($this->plaintext) ? '' : $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['bcc']) && empty($contents['rcpts_group'])) {
364             $admin_grp = DB_DAtaObject::Factory('core_group')->load($this->bcc_group_id);
365             
366             $admin = $admin_grp ?  $admin_grp->members('email') : false;
367             
368             if (empty($admin) && $admin_grp->name != 'Empty Group') { // allow 'empty group mname'
369                 return $p->raiseError("template [{$contents['template']}] - bcc group is empty");
370             }
371             
372             $contents['bcc'] = $admin ;
373         }
374         if (!empty($contents['rcpts_group'])) {
375             
376             $admin = DB_DAtaObject::Factory('core_group')->lookupMembers($contents['rcpts_group'],'email');
377             
378             if (empty($admin)) {
379                 return $p->raiseError("Trying to send to {$contents['rcpts_group']} - group is empty");
380             }
381             $contents['rcpts'] = $admin;
382         }
383         if (empty($contents['rcpts']) && $this->to_group_id > 0) {
384             $members = $this->to_group()->members();
385             $contents['rcpts'] = array();
386             foreach($this->to_group()->members() as $m) {
387                 $contents['rcpts'][] = $m->email;
388             }
389             //var_dump($contents['rcpts']);
390             
391         }
392         //subject replacement
393         if(empty($contents['subject'])){
394            $contents['subject'] = $this->subject; 
395         }
396         
397         if (!empty($contents['subject_replace'])) {
398             
399             // do not use the mapping 
400             if (isset($contents['mapping'])) {
401                 foreach ($contents['mapping'] as $pattern => $replace) {
402                     $contents['subject'] = preg_replace($pattern,$replace,$contents['subject']);
403                 }
404             }
405             
406             foreach ($contents as $k => $v) {
407                 if (is_string($v)) {
408                     $contents['subject'] = str_replace('{'. $k . '}', $v, $contents['subject']);
409                 }
410             }
411         }
412         
413         if(!empty($contents['rcpts']) && is_array($contents['rcpts'])){
414             $contents['rcpts'] = implode(',', $contents['rcpts']);
415         }     
416         
417         $ui = posix_getpwuid(posix_geteuid());
418         
419         $cachePath = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '.txt';
420         
421         if($force || !$this->isGenerated($cachePath)){
422             $this->cachedMailWithOutImages($force, empty($contents['replace_links']) ? false : $contents['replace_links']);
423         }
424          
425         require_once 'Pman/Core/Mailer.php';
426         
427         $templateDir = session_save_path() . '/email-cache-' . $ui['name'] ;
428         
429         $cfg = array(
430             'template'=> $this->tableName() . '-' . $this->id,
431             'templateDir' => $templateDir,
432             'page' => $this,
433             'contents' => $contents,
434             'css_embed' => true, // we should always try and do this with emails...
435         );
436         
437         if (isset($contents['rcpts'])) {
438             $cfg['rcpts'] = $contents['rcpts'];
439         }
440         
441         if (isset($contents['attachments'])) {
442             $cfg['attachments'] = $contents['attachments'];
443         }
444         
445         if (isset($contents['mailer_opts']) && is_array($contents['mailer_opts'])) {
446             $cfg = array_merge($contents['mailer_opts'], $cfg);
447         }
448         
449         if(isset($contents['css_inline'])){
450             $cfg['css_inline'] = $contents['css_inline'];
451         }
452         
453         $r = new Pman_Core_Mailer($cfg);
454         
455         $imageCache = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '-images.txt';
456         
457         if(file_exists($imageCache) && filesize($imageCache)){
458             $images = json_decode(file_get_contents($imageCache), true);
459             $r->images = $images;
460         }
461         
462         return $r;
463     }
464     function toMailerData($obj,$force=false)
465     {   
466         $r = $this->toMailer($obj, $force);
467         if (is_a($r, 'PEAR_Error')) {
468             return $r;
469         }
470         return $r->toData();
471     }
472     
473     /**
474      *
475      * DEPRICATED !!! - DO NOT USE THIS !!!
476      *
477      * use: toMailerData() -- to return the email data..
478      * or
479      * $mailer = $core_email->toMailer($obj, false);
480      * $sent = is_a($mailer,'PEAR_Error') ? false : $mailer->send();
481
482      * toMailer($obj, false)->send()
483      *
484      * 
485      */
486     
487     function send($obj, $force = true, $send = true)
488     {   
489         if (!$send) {
490             return $this->toMailerData($obj,$force);
491         }
492         
493         $r = $this->toMailer($obj, $force);
494         
495         if (is_a($r, 'PEAR_Error')) {
496             return $r;
497         }
498         
499         return $r->send();
500     }
501     
502     function cachedMailWithOutImages($force = false, $replace_links = true)
503     {  
504         
505         $ui = posix_getpwuid(posix_geteuid());
506         
507         $cachePath = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '.txt';
508           
509         if (!$force && $this->isGenerated($cachePath)) {
510             return;
511         }
512         
513         if (!file_exists(dirname($cachePath))) {
514             mkdir(dirname($cachePath), 0700, true);
515         }
516         
517         $random_hash = md5(date('r', time()));
518         
519         $this->cachedImages();
520         
521         $fh = fopen($cachePath, 'w');
522
523         fwrite($fh, implode("\n", array(
524             "From: {if:t.messageFrom}{t.messageFrom:h}{else:}{t.messageFrom():h}{end:}",
525             "To: {if:t.person}{t.person.getEmailFrom():h}{else:}{rcpts:h}{end:}",
526             "Subject: {t.subject:h} ",
527             "X-Message-ID: {t.id} ",
528             "{if:t.replyTo}Reply-To: {t.replyTo:h}{end:}",
529             "{if:t.mailgunVariables}X-Mailgun-Variables: {t.mailgunVariables:h}{end:}"
530         ))."\n");
531         
532         
533 // note the extra space to finish the last line..
534         fwrite($fh, " " . "
535 Content-Type: multipart/alternative; boundary=alt-{$random_hash}
536
537 --alt-{$random_hash}
538 Content-Type: text/plain; charset=utf-8; format=flowed
539 Content-Transfer-Encoding: 7bit
540
541 {$this->plaintext}
542
543 ");
544         fclose($fh);
545         
546         // cache body
547         
548         $this->processRelacements($replace_links);
549         
550         $cachePath = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '.body.html';
551         
552         if (!file_exists(dirname($cachePath))) {
553             mkdir(dirname($cachePath), 0700, true);
554         }
555         
556         if (empty($this->use_file)) {
557             file_put_contents($cachePath, $this->bodytext);
558             return;
559         }
560         // use-file -- uses the original template...
561         $mailtext = file_get_contents($this->use_file);        
562          
563         require_once 'Mail/mimeDecode.php';
564         require_once 'Mail/RFC822.php';
565         
566         $decoder = new Mail_mimeDecode($mailtext);
567         $parts = $decoder->getSendArray();
568         file_put_contents($cachePath,$parts[2]);
569          
570     }
571     
572     function cachedImages()
573     {
574         $ui = posix_getpwuid(posix_geteuid());
575         
576         $imageCache = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '-images.txt';
577         
578         $ids = $this->attachmentIds();
579         
580          
581         $fh = fopen($imageCache, 'w');
582         
583         $i = DB_DataObject::factory('Images');
584         $i->onid = $this->id;
585         $i->ontable = $this->tableName();
586         $i->whereAddIn('id', $ids, 'int');
587         $i->find();
588         
589         $images = array();
590         
591         require_once 'File/MimeType.php';
592         $y = new File_MimeType();
593         
594         while ($i->fetch()){
595             if (!file_exists($i->getStoreName()) || !filesize($i->getStoreName())) {
596                 continue;
597             }
598             
599             $images["attachment-{$i->id}"] = array(
600                 'file' => $i->getStoreName(),
601                 'mimetype' => $i->mimetype,
602                 'ext' => $y->toExt($i->mimetype),
603                 'contentid' => "attachment-$i->id"
604             );
605         }
606             
607         file_put_contents($imageCache, json_encode($images));
608         
609     }
610     
611     function isGenerated($cachePath)
612     {
613         if (!file_exists($cachePath) || !filesize($cachePath)) {
614             return false;
615         }
616         
617         if (!empty($this->use_file)) {
618             $ctime = filemtime($cachePath);
619             $mtime = filemtime($this->use_file);
620             if($ctime >= $mtime){
621                 return true;
622             }
623             return false;
624             
625         }
626         
627         
628         
629         $ctime = filemtime($cachePath);
630         $mtime = array();
631         $mtime[] = $this->updated_dt;
632         $i = DB_DataObject::factory('Images');
633         $i->onid = $this->id;
634         $i->ontable = $this->tableName();
635         $i->selectAdd();
636         $i->selectAdd('max(created) as created');
637         $i->find(true);
638         $mtime[] = $i->created;
639         if($ctime >= strtotime(max($mtime))){
640             return true;
641         }
642         
643         return false;
644     }
645     
646     function messageFrom()
647     {
648         if (empty($this->from_name)) {
649             return trim($this->from_email);
650         }
651         return trim('"' . addslashes($this->from_name) . '" <' . $this->from_email. '>')  ;
652     }
653     
654     function formatDate($dt, $format = 'd/M/Y')
655     {
656         return date($format, strtotime($dt));
657     } 
658     
659     
660      // fixme - this is now in core/udatedatabase..
661     
662     function initMail($mail_template_dir,  $name, $master='')
663     {
664         $cm = DB_DataObject::factory('core_email');
665         if ($cm->get('name', $name)) {
666             return;
667         }
668         
669 //        $basedir = $this->bootLoader->rootDir . $mail_template_dir;
670         
671         $opts = array();
672         
673         $opts['file'] = $mail_template_dir. $name .'.html';
674         if (!empty($master)) {
675             $opts['master'] = $mail_template_dir . $master .'.html';
676         }
677         //print_r($opts);
678         require_once 'Pman/Core/Import/Core_email.php';
679         $x = new Pman_Core_Import_Core_email();
680         $x->get('', $opts);
681          
682     }
683     
684     
685     function testData($person, $dt , $core_notify)
686     {
687          
688         // should return the formated email???
689         $pg = HTML_FlexyFramework::get()->page;
690         
691          
692         
693         
694         if(empty($this->test_class)){
695             $pg->jerr("[{$this->name}] does not has test class");
696         }
697         
698         require_once "{$this->test_class}.php";
699         
700         $cls = str_replace('/', '_', $this->test_class);
701         
702         $x = new $cls;
703         
704         $method = "test_{$this->name}";
705         
706         if(!method_exists($x, $method)){
707             $pg->jerr("{$method} does not exists in {$cls}");
708         }
709         
710         $content = $x->{$method}($this, $person);
711         $content['to'] = $person->getEmailFrom();
712
713         $content['bcc'] = array();
714         $data = $this->toMailerData($content);
715         return $data;
716         
717            
718     }
719     
720     function to_group()
721     {
722         $g = DB_DataObject::Factory('core_group');
723         $g->get($this->to_group_id);
724         return $g;
725     }
726 }