23d231d2fa4e8f8cca19fc35a953e90c0cae43c4
[core.git] / inc / main / classes / response / image / class_ImageResponse.php
1 <?php
2 /**
3  * A class for an image response on an HTTP request
4  *
5  * @author              Roland Haeder <webmaster@shipsimu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
8  * @license             GNU GPL 3.0 or any newer version
9  * @link                http://www.shipsimu.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 BaseResponse implements Responseable {
28         /**
29          * Protected constructor
30          *
31          * @return      void
32          */
33         protected function __construct () {
34                 // Call parent constructor
35                 parent::__construct(__CLASS__);
36
37                 // Set response type
38                 $this->setResponseType('image');
39         }
40
41         /**
42          * Creates an object of this class
43          *
44          * @param       $applicationInstance    An instance of a manageable application
45          * @return      $responseInstance               A prepared instance of this class
46          */
47         public static final function createImageResponse (ManageableApplication $applicationInstance) {
48                 // Get a new instance
49                 $responseInstance = new ImageResponse();
50
51                 // Set the application instance
52                 $responseInstance->setApplicationInstance($applicationInstance);
53
54                 // Initialize the template engine here
55                 $responseInstance->initTemplateEngine($applicationInstance);
56
57                 // Init web output instance
58                 $responseInstance->initWebOutputInstance();
59
60                 // Return the prepared instance
61                 return $responseInstance;
62         }
63
64         /**
65          * Initializes the template engine instance
66          *
67          * @param       $applicationInstance    An instance of a manageable application
68          * @return      void
69          */
70         public final function initTemplateEngine (ManageableApplication $applicationInstance) {
71                 // Get config instance
72                 $cfg = $this->getConfigInstance();
73
74                 // Set new template engine
75                 $cfg->setConfigEntry('html_template_class'    , $cfg->getConfigEntry('image_template_class'));
76                 $cfg->setConfigEntry('raw_template_extension' , '.img');
77                 $cfg->setConfigEntry('code_template_extension', '.xml');
78                 $cfg->setConfigEntry('tpl_base_path'          , 'templates/images/');
79                 // @TODO Please fix this
80                 $cfg->setConfigEntry('code_template_type'     , 'image');
81
82                 // Get a prepared instance
83                 $this->setTemplateInstance($this->prepareTemplateInstance($applicationInstance));
84         }
85
86         /**
87          * Adds a cookie to the response
88          *
89          * @param       $cookieName             Cookie's name
90          * @param       $cookieValue    Value to store in the cookie
91          * @param       $encrypted              Do some extra encryption on the value
92          * @param       $expires                Timestamp of expiration (default: configured)
93          * @return      void
94          * @throws      ResponseHeadersAlreadySentException             If headers are already sent
95          * @todo        Encryption of cookie data not yet supported.
96          * @todo        Why are these parameters conflicting?
97          * @todo        If the return statement is removed and setcookie() commented out,
98          * @todo        this will send only one cookie out, the first one.
99          */
100         public function addCookie ($cookieName, $cookieValue, $encrypted = FALSE, $expires = NULL) {
101                 // Are headers already sent?
102                 if (headers_sent()) {
103                         // Throw an exception here
104                         throw new ResponseHeadersAlreadySentException($this, self::EXCEPTION_HEADERS_ALREADY_SENT);
105                 } // END - if
106
107                 // Shall we encrypt the cookie?
108                 if ($encrypted === TRUE) {
109                         // Unsupported at the moment
110                         $this->partialStub('Encryption is unsupported at the moment.');
111                 } // END - if
112
113                 // For slow browsers set the cookie array element first
114                 $_COOKIE[$cookieName] = $cookieValue;
115
116                 // Get all config entries
117                 if (is_null($expires)) {
118                         $expires = (time() + $this->getConfigInstance()->getConfigEntry('cookie_expire'));
119                 } // END - if
120
121                 $path = $this->getConfigInstance()->getConfigEntry('cookie_path');
122                 $domain = $this->getConfigInstance()->getConfigEntry('cookie_domain');
123
124                 setcookie($cookieName, $cookieValue, $expires);
125                 //, $path, $domain, (isset($_SERVER['HTTPS']))
126                 return;
127
128                 // Now construct the full header
129                 $cookieString = $cookieName . '=' . $cookieValue . '; ';
130                 $cookieString .= 'expires=' . date('D, d-F-Y H:i:s', $expires) . ' GMT';
131                 // TODO Why is this not always working? $cookieString .= '; path=' . $path . '; domain=' . $domain;
132
133                 // Set the cookie as a header
134                 $this->cookies[$cookieName] = $cookieString;
135         }
136
137         /**
138          * Redirect to a configured URL. The URL can be absolute or relative. In
139          * case of relative URL it will be extended automatically.
140          *
141          * @param       $configEntry    The configuration entry which holds our URL
142          * @return      void
143          * @throws      ResponseHeadersAlreadySentException             If headers are already sent
144          */
145         public function redirectToConfiguredUrl ($configEntry) {
146                 // Is the header not yet sent?
147                 if (headers_sent()) {
148                         // Throw an exception here
149                         throw new ResponseHeadersAlreadySentException($this, self::EXCEPTION_HEADERS_ALREADY_SENT);
150                 } // END - if
151
152                 // Assign application data
153                 $this->getTemplateInstance()->assignApplicationData($this->getApplicationInstance());
154
155                 // Get the url from config
156                 $url = $this->getConfigInstance()->getConfigEntry($configEntry . '_url');
157
158                 // Compile the URL
159                 $url = $this->getTemplateInstance()->compileRawCode($url);
160
161                 // Do we have a 'http' in front of the URL?
162                 if (substr(strtolower($url), 0, 4) != 'http') {
163                         // Is there a / in front of the relative URL?
164                         if (substr($url, 0, 1) == '/') $url = substr($url, 1);
165
166                         // No, then extend it with our base URL
167                         $url = $this->getConfigInstance()->getConfigEntry('base_url') . '/' . $url;
168                 } // END - if
169
170                 // Add redirect header
171                 $this->addHeader('Location', str_replace('&amp;', '&', $url));
172
173                 // Set correct response status
174                 $this->setResponseStatus('301 Moved Permanently');
175
176                 // Clear the body
177                 $this->setResponseBody('');
178
179                 // Flush the result
180                 $this->flushBuffer();
181
182                 // All done here...
183                 exit();
184         }
185
186         /**
187          * Flushs the cached HTTP response to the outer world
188          *
189          * @param       $force  Whether we shall force the output or abort if headers are
190          *                                      already sent with an exception
191          * @return      void
192          */
193         public function flushBuffer ($force = FALSE) {
194                 // Finish the image
195                 $this->getImageInstance()->finishImage();
196
197                 // Get image content
198                 $content = $this->getImageInstance()->getContent();
199
200                 // Set it as response body
201                 $this->setResponseBody($content);
202
203                 // Set content type
204                 $this->addHeader('Content-type', 'image/' . $this->getImageInstance()->getImageType());
205
206                 // Call parent method
207                 parent::flushBuffer($force);
208         }
209
210         /**
211          * Expires the given cookie if it is set
212          *
213          * @param       $cookieName             Cookie to expire
214          * @return      void
215          */
216         public function expireCookie ($cookieName) {
217                 // Is the cookie there?
218                 if (isset($_COOKIE[$cookieName])) {
219                         // Then expire it with 20 minutes past
220                         $this->addCookie($cookieName, '', FALSE, (time() - 1200));
221
222                         // Remove it from array
223                         unset($_COOKIE[$cookieName]);
224                 } // END - if
225         }
226
227         /**
228          * Refreshs a given cookie. This will make the cookie live longer
229          *
230          * @param       $cookieName             Cookie to refresh
231          * @return      void
232          */
233         public function refreshCookie ($cookieName) {
234                 // Only update existing cookies
235                 if (isset($_COOKIE[$cookieName])) {
236                         // Update the cookie
237                         $this->addCookie($cookieName, $_COOKIE[$cookieName], FALSE);
238                 } // END - if
239         }
240 }
241
242 // [EOF]
243 ?>