Пример #1
0
 /**
  * Send HTTP response
  *
  * If this is a redirect response, send the response and stop the transport handler chain.
  *
  * @param KDispatcherResponseInterface $response
  * @return boolean
  */
 public function send(KDispatcherResponseInterface $response)
 {
     if ($response->isRedirect()) {
         $session = $response->getUser()->getSession();
         //Set the messages into the session
         $messages = $response->getMessages();
         if (count($messages)) {
             //Auto start the session if it's not active.
             if (!$session->isActive()) {
                 $session->start();
             }
             $session->getContainer('message')->add($messages);
         }
         //Set the redirect into the response
         $response->setContent(sprintf('<!DOCTYPE html>
                 <html>
                     <head>
                         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
                         <meta http-equiv="refresh" content="1;url=%1$s" />
                         <title>Redirecting to %1$s</title>
                     </head>
                     <body>
                         Redirecting to <a href="%1$s">%1$s</a>.
                     </body>
                 </html>', htmlspecialchars($response->headers->get('Location'), ENT_QUOTES, 'UTF-8')), 'text/html');
         return parent::send($response);
     }
 }
Пример #2
0
 /**
  * Send HTTP response
  *
  * @param KDispatcherResponseInterface $response
  * @return boolean
  */
 public function send(KDispatcherResponseInterface $response)
 {
     $request = $response->getRequest();
     if (!$response->isDownloadable() && $request->getFormat() == 'html') {
         //Render the page
         $this->getObject('com:koowa.controller.page', array('response' => $response))->layout($request->query->get('tmpl', 'cmd') == 'koowa' ? 'koowa' : 'joomla')->render();
         //Pass back to Joomla
         if ($request->isGet() && $request->query->get('tmpl', 'cmd') != 'koowa') {
             //Mimetype
             JFactory::getDocument()->setMimeEncoding($response->getContentType());
             //Remove Content-Type header to prevent duplicate header conflict (see #172)
             $response->headers->remove('Content-Type');
             //Headers
             $headers = explode("\r\n", trim((string) $response->headers));
             foreach ($headers as $header) {
                 $parts = explode(':', $header, 2);
                 if (count($parts) !== 2) {
                     // Empty values are not allowed per RFC2616 Sec 4.2
                     continue;
                 }
                 // JResponse doesn't play well with cookie headers for some reason
                 if ($parts[0] === 'Set-Cookie') {
                     continue;
                 }
                 JResponse::setHeader($parts[0], $parts[1]);
             }
             //Cookies
             foreach ($response->headers->getCookies() as $cookie) {
                 setcookie($cookie->name, $cookie->value, $cookie->expire, $cookie->path, $cookie->domain, $cookie->isSecure(), $cookie->isHttpOnly());
             }
             //Set messages for any request method
             $messages = $response->getMessages();
             foreach ($messages as $type => $group) {
                 if ($type === 'success') {
                     $type = 'message';
                 }
                 foreach ($group as $message) {
                     JFactory::getApplication()->enqueueMessage($message, $type);
                 }
             }
             //Content
             echo $response->getContent();
             return true;
         }
     }
     return parent::send($response);
 }