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             $cid = explode('#', $href);
192             if(isset($cid[1])){
193                 $img->setAttribute('src', 'cid:' . $cid[1]);
194             }
195         }
196         
197         $unsubscribe = false;
198         
199         if(!empty($cfg)){
200             $unsubscribe = $cfg ['server_baseurl'] . '/Crm/Unsubscribe/' . $this->id . '/{person.id}';
201         }
202        
203         foreach ($xpath->query('//a[@href]') as $a) { 
204             
205             $href = $a->getAttribute('href');
206             
207             if(preg_match('/#unsubscribe/', $href) && !empty($unsubscribe)){
208                 $a->setAttribute('href', $unsubscribe);
209                 continue;
210             }
211             
212             if(!preg_match('/^http(.*)/', $href)){
213                 continue;
214             }
215             if (!$replace_links) {
216                 continue;
217             }
218             $link = DB_DataObject::factory('crm_mailing_list_link');
219             $link->setFrom(array(
220                 'url' => $href
221             ));
222             
223             if(!$link->find(true)){
224                 $link->insert();
225             }
226             
227             if(!$link->id){
228                 continue;
229             }
230             
231             $l = $cfg ['server_baseurl'] . '/Crm/Link/' .$this->id . '/' . $link->id . '/{person.id}.html';
232             
233             $a->setAttribute('href', $l);
234             
235         }
236         
237         if(!empty($unsubscribe)){
238             $element = $doc->createElement('img');
239         
240             $element->setAttribute('src', $cfg ['server_baseurl']  . '/Crm/Open/' . $this->id . '/{person.id}.html');
241             $element->setAttribute('width', '1');
242             $element->setAttribute('height', '1');
243
244             $html = $doc->getElementsByTagName('html');
245             $html->item(0)->appendChild($element);
246             
247             $this->plaintext = str_replace("{unsubscribe_link}", $unsubscribe, $this->plaintext);
248         }
249         
250         
251         $this->bodytext = $doc->saveHTML();
252         
253         libxml_use_internal_errors (false);
254         
255         $this->bodytext = str_replace('%7B', '{', $this->bodytext ); // kludge as template is not interpretated as html.
256         $this->bodytext = str_replace('%7D', '}', $this->bodytext ); // kludge as template is not interpretated as html.
257          
258         return;
259     }
260     
261     function send($obj, $force = true, $send = true)
262     {   
263         $contents = (array)$obj;
264         
265         if(empty($this->id)){
266             $this->get('name', $contents['template']);
267         }
268         
269         if(empty($this->id)){
270             return PEAR::raiseError("template [{$contents['template']}]has not been set");
271         }
272         if(empty($contents['subject'])){
273            $contents['subject'] = $this->subject; 
274         }
275         
276         $ui = posix_getpwuid(posix_geteuid());
277         
278         $cachePath = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '.txt';
279         
280         if($force || !$this->isGenerated($cachePath)){
281             $this->cachedMailWithOutImages($force, empty($contents['replace_links']) ? false : $contents['replace_links']);
282         }
283          
284         require_once 'Pman/Core/Mailer.php';
285         
286         $templateDir = session_save_path() . '/email-cache-' . $ui['name'] ;
287         
288         $r = new Pman_Core_Mailer(array(
289             'template'=> $this->tableName() . '-' . $this->id,
290             'templateDir' => $templateDir,
291             'page' => $this,
292             'contents' => $contents
293         ));
294         
295         $imageCache = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '-images.txt';
296         
297         if(file_exists($imageCache) && filesize($imageCache)){
298             $images = json_decode(file_get_contents($imageCache), true);
299             $r->images = $images;
300         }
301         
302         $ret = $r->toData();
303         
304         if(!$send){
305             return $ret;
306         }
307         
308         return $r->send($ret);
309     }
310     
311     function cachedMailWithOutImages($force = false, $replace_links = true)
312     {  
313         
314         $ui = posix_getpwuid(posix_geteuid());
315         
316         $cachePath = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '.txt';
317           
318         if ($this->isGenerated($cachePath)) {
319             return;
320         }
321         
322         if (!file_exists(dirname($cachePath))) {
323             mkdir(dirname($cachePath), 0700, true);
324         }
325         
326         $random_hash = md5(date('r', time()));
327         
328         $this->cachedImages();
329         
330         $fh = fopen($cachePath, 'w');
331
332         fwrite($fh, implode("\n", array(
333             "From: {if:t.messageFrom}{t.messageFrom:h}{else:}{t.messageFrom():h}{end:}",
334             "To: {if:t.person}{t.person.getEmailFrom():h}{else:}{foreach:rcpts,v}{v:h},{end:}{end:}",
335             "{if:t.replyTo}Reply-To: {t.replyTo:h}{end:}",
336             "Subject: {t.subject} ",
337             "X-Message-ID: {t.id} "
338         ))."\n");
339         
340         
341 // note the extra space to finish the last line..
342         fwrite($fh, " " . "
343 Content-Type: multipart/alternative; boundary=alt-{$random_hash}
344
345 --alt-{$random_hash}
346 Content-Type: text/plain; charset=utf-8; format=flowed
347 Content-Transfer-Encoding: 7bit
348
349 {$this->plaintext}
350
351 ");
352         fclose($fh);
353         
354         // cache body
355         
356         $this->processRelacements($replace_links);
357         
358         $cachePath = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '.body.html';
359         
360         if (!file_exists(dirname($cachePath))) {
361             mkdir(dirname($cachePath), 0700, true);
362         }
363         print_r($this->bodytext);exit;
364         file_put_contents($cachePath, $this->bodytext);
365         
366     }
367     
368     function cachedImages()
369     {
370         $ui = posix_getpwuid(posix_geteuid());
371         
372         $imageCache = session_save_path() . '/email-cache-' . $ui['name'] . '/mail/' . $this->tableName() . '-' . $this->id . '-images.txt';
373         
374         $ids = $this->attachmentIds();
375         
376          
377         $fh = fopen($imageCache, 'w');
378         
379         $i = DB_DataObject::factory('Images');
380         $i->onid = $this->id;
381         $i->ontable = $this->tableName();
382         $i->whereAddIn('id', $ids, 'int');
383         $i->find();
384         
385         $images = array();
386         
387         require_once 'File/MimeType.php';
388         $y = new File_MimeType();
389         
390         while ($i->fetch()){
391             if (!file_exists($i->getStoreName()) || !filesize($i->getStoreName())) {
392                 continue;
393             }
394             
395             $images["attachment-$i->id"] = array(
396                 'file' => $i->getStoreName(),
397                 'mimetype' => $i->mimetype,
398                 'ext' => $y->toExt($i->mimetype),
399                 'contentid' => "attachment-$i->id"
400             );
401         }
402             
403         file_put_contents($imageCache, json_encode($images));
404         
405     }
406     
407     function isGenerated($cachePath)
408     {
409         if (!file_exists($cachePath) || !filesize($cachePath)) {
410             return false;
411         }
412         
413         
414         $ctime = filemtime($cachePath);
415         $mtime = array();
416         $mtime[] = $this->updated_dt;
417         $i = DB_DataObject::factory('Images');
418         $i->onid = $this->id;
419         $i->ontable = $this->tableName();
420         $i->selectAdd();
421         $i->selectAdd('max(created) as created');
422         $i->find(true);
423         $mtime[] = $i->created;
424         if($ctime >= strtotime(max($mtime))){
425             return true;
426         }
427         
428         return false;
429     }
430     
431     function messageFrom()
432     {
433         return '"' . addslashes($this->from_name) . '" <' . $this->from_email. '>'  ;
434     }
435     
436     function formatDate($dt, $format = 'd/M/Y')
437     {
438         return date($format, strtotime($dt));
439     } 
440     
441     
442     
443 }