71acb351dd53803c24d3d6006caaa71f12281abc
[mailer.git] / inc / classes / main / response / class_ImageResponse.php
1 <?php
2 /**
3  * A class for an image response on an HTTP request
4  *
5  * @author              Roland Haeder <webmaster@ship-simu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, this is free software
8  * @license             GNU GPL 3.0 or any newer version
9  * @link                http://www.ship-simu.org
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program. If not, see <http://www.gnu.org/licenses/>.
23  *
24  * The extended headers are taken from phpMyAdmin setup tool, written by
25  * Michal Cihar <michal@cihar.com>, licensed under GNU GPL 2.0.
26  */
27 class ImageResponse extends BaseFrameworkSystem implements Responseable {
28         /**
29          * Response status
30          */
31         private $responseStatus = "200 OK";
32
33         /**
34          * Array with all headers
35          */
36         private $responseHeaders = array();
37
38         /**
39          * Cookies we shall sent out
40          */
41         private $cookies = array();
42
43         /**
44          * Body of the response
45          */
46         private $responseBody = "";
47
48         /**
49          * Fatal resolved messages from filters and so on
50          */
51         private $fatalMessages = array();
52
53         /**
54          * Instance of the image
55          */
56         private $imageInstance = null;
57
58         /**
59          * Protected constructor
60          *
61          * @return      void
62          */
63         protected function __construct () {
64                 // Call parent constructor
65                 parent::__construct(__CLASS__);
66
67                 // Clean up a little
68                 $this->removeNumberFormaters();
69                 $this->removeSystemArray();
70         }
71
72         /**
73          * Creates an object of this class
74          *
75          * @param       $appInstance            An instance of a manageable application
76          * @return      $responseInstance       A prepared instance of this class
77          */
78         public final static function createImageResponse (ManageableApplication $appInstance) {
79                 // Get a new instance
80                 $responseInstance = new ImageResponse();
81
82                 // Set the application instance
83                 $responseInstance->setApplicationInstance($appInstance);
84
85                 // Initialize the template engine here
86                 $responseInstance->initTemplateEngine($appInstance);
87
88                 // Return the prepared instance
89                 return $responseInstance;
90         }
91
92         /**
93          * Setter for status
94          *
95          * @param       $status         New response status
96          * @return      void
97          */
98         public final function setResponseStatus ($status) {
99                 $this->responseStatus = (string) $status;
100         }
101
102         /**
103          * Add header element
104          *
105          * @param       $name   Name of header element
106          * @param       $value  Value of header element
107          * @return      void
108          */
109         public final function addHeader ($name, $value) {
110                 $this->responseHeaders[$name] = $value;
111         }
112
113         /**
114          * Reset the header array
115          *
116          * @return      void
117          */
118         public final function resetResponseHeaders () {
119                 $this->responseHeaders = array();
120         }
121
122         /**
123          * "Writes" data to the response body
124          *
125          * @param       $output         Output we shall sent in the HTTP response
126          * @return      void
127          */
128         public function writeToBody ($output) {
129                 $this->responseBody .= $output;
130         }
131
132         /**
133          * Sets the response body to something new
134          *
135          * @param       $output         Output we shall sent in the HTTP response
136          * @return      void
137          */
138         public function setResponseBody ($output) {
139                 $this->responseBody = $output;
140         }
141
142         /**
143          * Flushs the cached HTTP response to the outer world
144          *
145          * @param       $force  Wether we shall force the output or abort if headers are
146          *                                      already sent with an exception
147          * @return      void
148          * @todo        Add support for fatal messages in image response
149          * @throws      ResponseHeadersAlreadySentException             Thrown if headers are
150          *                                                                                                      already sent
151          */
152         public function flushBuffer ($force=false) {
153                 if ((headers_sent()) && (!$force)) {
154                         // Headers are already sent!
155                         throw new ResponseHeadersAlreadySentException($this, self::EXCEPTION_HEADERS_ALREADY_SENT);
156                 } elseif (!headers_sent()) {
157                         // Send headers out
158                         header("HTTP/1.1 {$this->responseStatus}");
159
160                         // Used later
161                         $now = gmdate('D, d M Y H:i:s') . ' GMT';
162
163                         // General header for no caching
164                         $this->addHeader('Expired', $now); // rfc2616 - Section 14.21
165                         $this->addHeader('Last-Modified', $now);
166                         $this->addHeader('Cache-Control', 'no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
167                         $this->addHeader('Pragma', 'no-cache'); // HTTP/1.0
168                         $this->addHeader('Content-type', 'image/'.$this->imageInstance->getImageType());
169
170                         // Define the charset to be used
171                         //$this->addHeader('Content-Type:', sprintf("text/html; charset=%s", $this->getConfigInstance()->readConfig('header_charset')));
172
173                         foreach ($this->responseHeaders as $name=>$value) {
174                                 header("{$name}: {$value}");
175                         } // END - foreach
176
177                         // Send cookies out?
178                         if (count($this->cookies) > 0) {
179                                 // Send all cookies
180                                 $cookieString = implode(" ", $this->cookies);
181                                 header("Set-Cookie: {$cookieString}");
182
183                                 // Remove them all
184                                 $this->cookies = array();
185                         } // END - if
186                 }
187
188                 // Are there some error messages?
189                 if (count($this->fatalMessages) == 0) {
190                         // Get image content from cache
191                         $imageContent = $this->imageInstance->getContent();
192                         die($imageContent);
193                 } else {
194                         // Display all error messages
195                         $this->partialStub("Fatal messages are currently unsupported in image response.");
196                 }
197
198                 // Clear response header and body
199                 $this->setResponseBody("");
200                 $this->resetResponseHeaders();
201         }
202
203         /**
204          * Initializes the template engine instance
205          *
206          * @param       $appInstance    An instance of a manageable application
207          * @return      void
208          */
209         public final function initTemplateEngine (ManageableApplication $appInstance) {
210                 // Get config instance
211                 $cfg = $this->getConfigInstance();
212
213                 // Set new template engine
214                 $cfg->setConfigEntry('template_class'         , $cfg->readConfig('image_template_class'));
215                 $cfg->setConfigEntry('raw_template_extension' , ".img");
216                 $cfg->setConfigEntry('code_template_extension', ".itp");
217                 $cfg->setConfigEntry('tpl_base_path'          , "templates/images/");
218                 $cfg->setConfigEntry('code_template_type'     , "image");
219
220                 // Get a prepared instance
221                 $this->setTemplateInstance($this->prepareTemplateInstance($appInstance));
222         }
223
224         /**
225          * Adds a fatal message id to the response. The added messages can then be
226          * processed and outputed to the world
227          *
228          * @param       $messageId      The message id we shall add
229          * @return      void
230          */
231         public final function addFatalMessage ($messageId) {
232                 // Adds the resolved message id to the fatal message list
233                 $this->fatalMessages[] = $this->getApplicationInstance()->getLanguageInstance()->getMessage($messageId);
234         }
235
236         /**
237          * Adds a cookie to the response
238          *
239          * @param       $cookieName             Cookie's name
240          * @param       $cookieValue    Value to store in the cookie
241          * @param       $encrypted              Do some extra encryption on the value
242          * @param       $expires                Timestamp of expiration (default: configured)
243          * @return      void
244          * @throws      ResponseHeadersAlreadySentException             If headers are already sent
245          * @todo        Encryption of cookie data not yet supported.
246          * @todo        Why are these parameters conflicting?
247          * @todo        If the return statement is removed and setcookie() commented out,
248          * @todo        this will send only one cookie out, the first one.
249          */
250         public function addCookie ($cookieName, $cookieValue, $encrypted = false, $expires = null) {
251                 // Are headers already sent?
252                 if (headers_sent()) {
253                         // Throw an exception here
254                         throw new ResponseHeadersAlreadySentException($this, self::EXCEPTION_HEADERS_ALREADY_SENT);
255                 } // END - if
256
257                 // Shall we encrypt the cookie?
258                 if ($encrypted === true) {
259                 } // END - if
260
261                 // For slow browsers set the cookie array element first
262                 $_COOKIE[$cookieName] = $cookieValue;
263
264                 // Get all config entries
265                 if (is_null($expires)) {
266                         $expires = (time() + $this->getConfigInstance()->readConfig('cookie_expire'));
267                 } // END - if
268
269                 $path = $this->getConfigInstance()->readConfig('cookie_path');
270                 $domain = $this->getConfigInstance()->readConfig('cookie_domain');
271
272                 setcookie($cookieName, $cookieValue, $expires);
273                 //, $path, $domain, (isset($_SERVER['HTTPS']))
274                 return;
275
276                 // Now construct the full header
277                 $cookieString = $cookieName . "=" . $cookieValue . "; ";
278                 $cookieString .= "expires=" . date("D, d-F-Y H:i:s", $expires) . " GMT";
279                 // $cookieString .= "; path=".$path."; domain=".$domain;
280
281                 // Set the cookie as a header
282                 $this->cookies[$cookieName] = $cookieString;
283         }
284
285         /**
286          * Redirect to a configured URL. The URL can be absolute or relative. In
287          * case of relative URL it will be extended automatically.
288          *
289          * @param       $configEntry    The configuration entry which holds our URL
290          * @return      void
291          * @throws      ResponseHeadersAlreadySentException             If headers are already sent
292          */
293         public function redirectToConfiguredUrl ($configEntry) {
294                 // Is the header not yet sent?
295                 if (headers_sent()) {
296                         // Throw an exception here
297                         throw new ResponseHeadersAlreadySentException($this, self::EXCEPTION_HEADERS_ALREADY_SENT);
298                 } // END - if
299
300                 // Get the url from config
301                 $url = $this->getConfigInstance()->readConfig($configEntry);
302
303                 // Do we have a "http" in front of the URL?
304                 if (substr(strtolower($url), 0, 4) != "http") {
305                         // Is there a / in front of the relative URL?
306                         if (substr($url, 0, 1) == "/") $url = substr($url, 1);
307
308                         // No, then extend it with our base URL
309                         $url = $this->getConfigInstance()->readConfig('base_url') . "/" . $url;
310                 } // END - if
311
312                 // Add redirect header
313                 $this->addHeader("Location", $url);
314
315                 // Set correct response status
316                 $this->setResponseStatus("301 Moved Permanently");
317
318                 // Clear the body
319                 $this->setResponseBody("");
320
321                 // Flush the result
322                 $this->flushBuffer();
323
324                 // All done here...
325                 exit();
326         }
327
328         /**
329          * Expires the given cookie if it is set
330          *
331          * @param       $cookieName             Cookie to expire
332          * @return      void
333          */
334         public function expireCookie ($cookieName) {
335                 // Is the cookie there?
336                 if (isset($_COOKIE[$cookieName])) {
337                         // Then expire it with 20 minutes past
338                         $this->addCookie($cookieName, "", false, (time() - 1200));
339
340                         // Remove it from array
341                         unset($_COOKIE[$cookieName]);
342                 } // END - if
343         }
344
345         /**
346          * Refreshs a given cookie. This will make the cookie live longer
347          *
348          * @param       $cookieName             Cookie to refresh
349          * @return      void
350          */
351         public function refreshCookie ($cookieName) {
352                 // Only update existing cookies
353                 if (isset($_COOKIE[$cookieName])) {
354                         // Update the cookie
355                         $this->addCookie($cookieName, $_COOKIE[$cookieName], false);
356                 } // END - if
357         }
358
359         /**
360          * Setter for image instanxe
361          *
362          * @param       $imageInstance  An instance of an image
363          * @return      void
364          */
365         public final function setImageInstance (BaseImage $imageInstance) {
366                 $this->imageInstance = $imageInstance;
367         }
368
369         /**
370          * Getter for default command
371          *
372          * @return      $defaultCommand         Default command for this response
373          */
374         public function getDefaultCommand () {
375                 $defaultCommand = $this->getConfigInstance()->readConfig('default_image_command');
376                 return $defaultCommand;
377         }
378 }
379
380 // [EOF]
381 ?>