3 * A generic request class
5 * @author Roland Haeder <webmaster@ship-simu.org>
7 * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team
8 * @license GNU GPL 3.0 or any newer version
9 * @link http://www.ship-simu.org
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.
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.
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/>.
24 * The extended headers are taken from phpMyAdmin setup tool, written by
25 * Michal Cihar <michal@cihar.com>, licensed under GNU GPL 2.0.
27 class BaseResponse extends BaseFrameworkSystem {
31 private $responseStatus = '200 OK';
34 * Array with all headers
36 private $responseHeaders = array();
39 * Cookies we shall sent out
41 private $cookies = array();
44 * Body of the response
46 private $responseBody = '';
49 * Instance of the template engine
51 private $templateInstance = NULL;
54 * Fatal resolved messages from filters and so on
56 private $fatalMessages = array();
59 * Protected constructor
61 * @param $className Name of the concrete response
64 protected function __construct ($className) {
65 // Call parent constructor
66 parent::__construct($className);
72 * @param $status New response status
75 public final function setResponseStatus ($status) {
76 $this->responseStatus = (string) $status;
82 * @param $name Name of header element
83 * @param $value Value of header element
86 public final function addHeader ($name, $value) {
87 $this->responseHeaders[$name] = $value;
91 * Reset the header array
95 public final function resetResponseHeaders () {
96 $this->responseHeaders = array();
100 * "Writes" data to the response body
102 * @param $output Output we shall sent in the HTTP response
105 public final function writeToBody ($output) {
106 $this->responseBody .= $output;
110 * Sets the response body to something new
112 * @param $output Output we shall sent in the HTTP response
115 public final function setResponseBody ($output) {
116 $this->responseBody = $output;
120 * Adds a fatal message id to the response. The added messages can then be
121 * processed and outputed to the world
123 * @param $messageId The message id we shall add
126 public final function addFatalMessage ($messageId) {
127 // Adds the resolved message id to the fatal message list
128 $this->fatalMessages[] = $this->getApplicationInstance()->getLanguageInstance()->getMessage($messageId);
132 * Adds a plain fatal message id to the response
134 * @param $message The plain message we shall add
137 public final function addFatalMessagePlain ($message) {
138 // Adds the resolved message id to the fatal message list
139 $this->fatalMessages[] = $message;
143 * Flushs the cached HTTP response to the outer world
145 * @param $force Whether we shall force the output or abort if headers are
146 * already sent with an exception
148 * @throws ResponseHeadersAlreadySentException Thrown if headers are
151 public function flushBuffer ($force = false) {
152 if ((headers_sent()) && ($force === false)) {
153 // Headers are already sent!
154 throw new ResponseHeadersAlreadySentException($this, self::EXCEPTION_HEADERS_ALREADY_SENT);
155 } elseif (!headers_sent()) {
157 header('HTTP/1.1 ' . $this->responseStatus);
160 $now = gmdate('D, d M Y H:i:s') . ' GMT';
162 // General header for no caching
163 $this->addHeader('Expired', $now); // RFC2616 - Section 14.21
164 $this->addHeader('Last-Modified', $now);
165 $this->addHeader('Cache-Control', 'no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
166 $this->addHeader('Pragma', 'no-cache'); // HTTP/1.0
168 // Define the charset to be used
169 //$this->addHeader('Content-type:', sprintf("text/html; charset=%s", $this->getConfigInstance()->getConfigEntry('header_charset')));
172 foreach ($this->responseHeaders as $name => $value) {
173 header($name . ': ' . $value);
174 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('name=' . $name . ',value=' . $value);
178 if (count($this->cookies) > 0) {
180 $cookieString = implode(' ', $this->cookies);
181 header('Set-Cookie: ' . $cookieString);
184 $this->cookies = array();
188 // Are there some error messages?
189 if (count($this->fatalMessages) == 0) {
190 // Flush the output to the world
191 $this->getWebOutputInstance()->output($this->responseBody);
193 // Display all error messages
194 $this->getApplicationInstance()->handleFatalMessages($this->fatalMessages);
196 // Send the error messages out to the world
197 $this->getWebOutputInstance()->output($this->responseBody);
200 // Clear response header and body
201 $this->setResponseBody('');
202 $this->resetResponseHeaders();