ImportMailMessage.php
[Pman.Core] / ImportMailMessage.php
1 <?php
2
3 // should be in import folder... need to know where this is used though...
4
5 require_once 'ConvertStyle.php';
6
7 class Pman_Core_ImportMailMessage extends Pman_Core_ConvertStyle 
8 {
9     function getAuth()
10     {
11         
12         if (HTML_FlexyFramework::get()->cli) {
13             return true;
14         }
15         
16         $this->authUser = $this->getAuthUser();
17         if (!$this->authUser) {
18             return false;
19         }
20
21         return true;        
22     }
23     
24     function get($v, $opts=array())
25     {
26         $this->post();
27         
28         return $this->jerr("not allowed");
29     }
30     
31     function post($v)
32     {   
33         if(isset($_REQUEST['_convertToPlain']))
34         {
35             require_once 'System.php';
36             $tmpdir  = System::mktemp("-d convertPlain");
37             $path = $tmpdir . '/' . time() . '.html';
38             
39             if(isset($_REQUEST['_check_unsubscribe'])){
40                 libxml_use_internal_errors (true);
41                 $doc = new DOMDocument('1.0', 'UTF-8');
42                 $doc->loadHTML($_REQUEST['bodytext']);
43                 $xpath = new DOMXpath($doc);
44                 foreach ($xpath->query('//a[@href]') as $a) { 
45                     $href = $a->getAttribute('href');
46                     
47                     if(!preg_match('/^#unsubscribe/', $href)){
48                         continue;
49                     }
50                     $a->parentNode->replaceChild($doc->createTextNode($a->nodeValue . ' {unsubscribe_link}'), $a);
51                 }
52                 
53                 $_REQUEST['bodytext'] = $doc->saveHTML();
54                 libxml_use_internal_errors (false);
55             }
56             
57             if(!file_exists($path)){
58                file_put_contents($path, $_REQUEST['bodytext']); 
59             }
60             require_once 'File/Convert.php';
61             $fc = new File_Convert($path, 'text/html');
62             
63             $plain = $fc->convert('text/plain');
64             $this->jok(file_get_contents($plain));
65         }
66         
67         // Import from URL
68         if(isset($_REQUEST['importUrl']))
69         {
70             $this->checkHeader($_REQUEST['importUrl']);
71             $data = $this->convertStyle($_REQUEST['importUrl'], '', true);
72          
73             $this->jok($data);
74             
75         }
76      
77         // Import from file
78         $htmlFile = DB_DataObject::factory('images');
79         $htmlFile->setFrom(array(
80                'onid' => 0,
81                'ontable' =>'crm_mailing_list_message'
82         ));
83         $htmlFile->onUpload(false);
84        
85         if($htmlFile->mimetype != 'text/html')
86         {
87             $this->jerr('accept html file only!');
88         }
89         if(!file_exists($htmlFile->getStoreName()))
90         {
91             $this->jerr('update failed!');
92         }
93         
94         $data = $this->convertStyle('', $htmlFile->getStoreName(), false);
95         
96         $htmlFile->delete();
97         
98         unlink($htmlFile->getStoreName()) or die('Unable to delete the file');
99         
100         $this->jok($data);
101     }
102     
103 }