DataObjects/core.sql
[Pman.Core] / Images.php
1 <?php
2 /**
3  * Deal with image delivery and HTML replacement of image links in body text.
4  *
5  * $str = Pman_Core_Images::replaceImg($str); // < use with HTML
6  *
7  * or
8  *
9  * Deliver image /file etc..
10  * 
11  * Use Cases:
12  * 
13  * args: ontable request
14  *      ontable (req) tablename.
15  *      filename
16  *      (other table args)
17  *      as (serve as a type) = eg. mimetype.
18  * 
19  * args: generic
20  *     as :(serve as a type) = eg. mimetype.
21  * 
22  * Images/{ID}/fullname.xxxx
23  * 
24  * (valid thumbs 200, 400)...?
25  * Images/Thumb/200/{ID}/fullname.xxxx
26  * Images/Download/{ID}/fullname.xxxx
27  *
28  *
29  *
30  * 
31  * Used to be in Base... now in core..
32  *
33  * 
34  * view permission should be required on the underlying object...
35  * 
36  */
37 require_once  'Pman.php';
38 class Pman_Core_Images extends Pman
39 {
40     function getAuth()
41     {
42         parent::getAuth(); // load company!
43         //return true;
44         $au = $this->getAuthUser();
45         //if (!$au) {
46         //    die("Access denied");
47        // }
48         $this->authUser = $au;
49         
50         return true;
51     }
52     var $thumb = false;
53     var $as_mimetype = false;
54     var $method = 'inline';
55     
56     function get($s) // determin what to serve!!!!
57     {
58         $this->as_mimetype = empty($_REQUEST['as']) ? '' : $_REQUEST['as'];
59         
60         $bits= explode('/', $s);
61         $id = 0;
62         // without id as first part...
63         if (!empty($bits[0]) && $bits[0] == 'Thumb') {
64             $this->thumb = true;
65             $this->as_mimetype = 'image/jpeg';
66             $this->size = empty($bits[1]) ? '0x0' : $bits[1];
67             $id = empty($bits[2]) ? 0 :   $bits[2];
68             
69         } else if (!empty($bits[0]) && $bits[0] == 'Download') {
70             $this->method = 'attachment';
71             $id = empty($bits[1]) ? 0 :   $bits[1];
72             
73         } else  if (!empty($bits[1]) && $bits[1] == 'Thumb') { // with id as first part.
74             $this->thumb = true;
75             $this->as_mimetype = 'image/jpeg';
76             $this->size = empty($bits[2]) ? '0x0' : $bits[2];
77             $id = empty($bits[3]) ? 0 :   $bits[3];
78             
79         } else {
80             $id = empty($bits[0]) ? 0 :  $bits[0];
81         }
82         
83         if (strpos($id,':') > 0) {  // id format  tablename:id:-imgtype
84             $onbits = explode(':', $id);
85             if ((count($onbits) < 2)   || empty($onbits[1]) || !is_numeric($onbits[1]) || !strlen($onbits[0])) {
86                 die("Bad url");
87             }
88             //DB_DataObject::debugLevel(1);
89             $img = DB_DataObject::factory('Images');
90             $img->ontable = $onbits[0];
91             $img->onid = $onbits[1];
92             if (empty($_REQUEST['anytype'])) {
93                 $img->whereAdd("mimetype like 'image/%'");
94             }
95             
96             if (isset($onbits[2])) {
97                 $img->imgtype = $onbits[2];
98             }
99             $img->limit(1);
100             if (!$img->find(true)) {
101                 header('Location: ' . $this->rootURL . '/Pman/templates/images/file-broken.png?reason=' .
102                 urlencode("no images for that item: " . htmlspecialchars($id)));
103             }
104             
105             $id = $img->id;
106             
107             
108         }
109         $id = (int) $id;
110         
111         // depreciated - should use ontable:onid:type here...
112         if (!empty($_REQUEST['ontable'])) {
113
114             //DB_DataObjecT::debugLevel(1);
115             $img = DB_DataObjecT::factory('Images');
116             $img->setFrom($_REQUEST);
117             // use imgtype now...
118            // if (!empty($_REQUEST['query']['filename'])){
119            //     $img->whereAdd("filename LIKE '". $img->escape($_REQUEST['query']['filename']).".%'");
120            // }
121             
122             
123             $img->limit(1);
124             if (!$img->find(true)) {
125                 header('Location: ' . $this->rootURL . '/Pman/templates/images/file-broken.png?reason='. 
126                     urlencode("No file exists"));
127             } 
128             $id = $img->id;
129             
130         }
131         
132         
133        
134         $img = DB_DataObjecT::factory('Images');
135         if (!$id || !$img->get($id)) {
136              
137             header('Location: ' . $this->rootURL . '/Pman/templates/images/file-broken.png?reason=' .
138                 urlencode("image has been removed or deleted."));
139         }
140         $this->serve($img);
141         exit;
142     }
143  
144     function serve($img)
145     {
146         require_once 'File/Convert.php';
147         if (!file_exists($img->getStoreName())) {
148             //print_r($img);exit;
149             header('Location: ' . $this->rootURL . '/Pman/templates/images/file-broken.png?reason=' .
150                 urlencode("Original file was missing : " . $img->getStoreName()));
151     
152         }
153         
154         $x = $img->toFileConvert();
155         if (empty($this->as_mimetype)) {
156             $this->as_mimetype  = $img->mimetype;
157         }
158         if (!$this->thumb) {
159             $x->convert( $this->as_mimetype);
160             $x->serve($this->method);
161             exit;
162         }
163         //echo "SKALING?  $this->size";
164         // acutally if we generated the image, then we do not need to validate the size..
165         $this->validateSize();
166         
167         $x->convert( $this->as_mimetype, $this->size);
168         $x->serve();
169         exit;
170         
171         
172         
173         
174     }
175     function validateSize()
176     {
177         
178         // DEFAULT allowed - override with $cfg['sizes'];
179         
180         $sizes = array(
181                 '100', 
182                 '100x100', 
183                 '150', 
184                 '150x150', 
185                 '200', 
186                 '200x0',
187                 '200x200',  
188                 '400x0',
189                 '300x100', // logo on login.
190                 '500'
191             );
192         
193         // this should be configurable...
194         $ff = HTML_FlexyFramework::get();
195         $cfg = isset($ff->Pman_Images) ? $ff->Pman_Images :
196                 (isset($ff->Pman_Core_Images) ? $ff->Pman_Core_Images : array());
197         
198         
199         
200         if (!empty($cfg['sizes'])) {
201             $sizes = array_merge($sizes , $cfg['sizes']);
202         }
203         
204         
205         if (!in_array($this->size, $sizes)) {
206             die("invalid scale - ".$this->size);
207         }
208     }
209     /**
210      * replace image urls
211      *
212      * The idea of this code was to replace urls for images when you have an admin
213      * and a distribution page. with different urls.
214      *
215      * it may be usefull later if things like embedded images in emails. but
216      * I think it's proably better not to use this.
217      *
218      * The key problem being how to determine if we are replacing 'our' images or some external one..
219      * 
220      *
221      */
222     
223     
224     static function replaceImageURLS($html)
225     {
226         
227         $ff = HTML_FlexyFramework::get();
228         if (!isset($ff->Pman_Images['public_baseURL'])) {
229             return $html;
230         }
231         //var_dump($ff->Pman_Images['public_baseURL']);
232         $baseURL = $ff->Pman_Images['public_baseURL'];
233         
234         preg_match_all('/<img\s+[^>]+>/i',$html, $result); 
235         //print_r($result);
236         $matches = array_unique($result[0]);
237         foreach($matches as $img) {
238             $imatch = array();
239             preg_match_all('/(width|height|src)="([^"]*)"/i',$img, $imatch);
240             // build a keymap
241             $attr =  array();
242             
243             foreach($imatch[1] as $i=>$key) {
244                 $attr[$key] = $imatch[2][$i];
245             }
246             if (!isset($attr['src']) || 0 !== strpos($attr['src'], $baseURL)) {
247                 continue;
248             }
249             $html = self::replaceImgUrl($html, $baseURL, $img, $attr,  'src' );
250         }
251         
252         $result = array();
253         preg_match_all('/<a\s+[^>]+>/i',$html, $result); 
254
255         $matches = array_unique($result[0]);
256         foreach($matches as $img) {
257             $imatch = array();
258             preg_match_all('/(href)="([^"]*)"/i',$img, $imatch);
259             // build a keymap
260             $attr =  array();
261             
262             foreach($imatch[1] as $i=>$key) {
263                 $attr[$key] = $imatch[2][$i];
264             }
265             if (!isset($attr['href']) || 0 !== strpos($attr['href'], $baseURL)) { 
266                 continue;
267             }
268             $html = self::replaceImgUrl($html, $baseURL, $img, $attr, 'href' );
269         }
270         
271         return $html;
272     }
273     static function replaceImgUrl($html, $baseURL, $tag, $attr, $attr_name) 
274     {
275         
276         //print_R($attr);
277         // see if it's an image url..
278         // Images/{ID}/fullname.xxxx
279         // Images/Thumb/200/{ID}/fullname.xxxx
280         // Images/Download/{ID}/fullname.xxxx
281         
282         $attr_url = $attr[$attr_name];
283         $umatch  = false;
284         if(!preg_match('#/(Images|Images/Thumb/[a-z0-9]+|Images/Download)/([0-9]+)/(.*)$#', $attr_url, $umatch))  {
285             continue;
286         }
287         $id = $umatch[2];
288         $img = DB_DataObject::factory('Images');
289         if (!$img->get($id)) {
290             return $html;
291         }
292         $type = explode('/', $umatch[1]);
293         $thumbsize = -1;
294          
295         if (count($type) > 2 && $type[1] == 'Thumb') {
296             $thumbsize = $type[2];
297             $provider = '/Images/Thumb';
298         } else {
299             $provider = '/'.$umatch[1];
300         }
301         
302         if (!empty($attr['width']) || !empty($attr['height']) )
303         {
304             // no support for %...
305             $thumbsize =
306                 (empty($attr['width']) ? '0' : $attr['width'] * 1) .
307                 'x' .
308                 (empty($attr['height']) ? '0' : $attr['height'] * 1);
309              $provider = '/Images/Thumb';
310             
311         }
312         
313         if ($thumbsize !== -1) {
314             // change in size..
315             // need to regenerate it..
316             
317             $type = array('Images', 'Thumb', $thumbsize);
318                 
319             $fc = $img->toFileConvert();
320             // make sure it's available..
321             $fc->convert($img->mimetype, $thumbsize);
322             
323             
324         } else {
325             $provider = $provider == 'Images/Thumb' ? 'Images' : $provider; 
326         }
327         
328         
329         // finally replace the original TAG with the new version..
330         
331         $new_tag = str_replace(
332             $attr_name. '="'. $attr_url . '"',
333             $attr_name .'="'. htmlspecialchars($img->URL($thumbsize, $provider, $baseURL)) . '"',
334             $tag
335         );
336         
337         
338         return str_replace($tag, $new_tag, $html);
339          
340     }
341     
342 }