HummingBirdAnimeClient/app/base/BaseController.php

237 lines
4.4 KiB
PHP
Raw Normal View History

2015-05-22 12:36:26 -04:00
<?php
/**
* Base Controller
*/
2015-05-22 12:36:26 -04:00
use Aura\Web\WebFactory;
/**
* Base class for controllers, defines output methods
*/
2015-05-22 12:36:26 -04:00
class BaseController {
/**
* The global configuration object
* @var object $config
*/
protected $config;
2015-05-22 12:36:26 -04:00
/**
* Request object
* @var object $request
*/
protected $request;
/**
* Response object
* @var object $response
*/
protected $response;
/**
* Constructor
*/
public function __construct()
2015-05-22 12:36:26 -04:00
{
global $config;
$this->config = $config;
$web_factory = new WebFactory([
'_GET' => $_GET,
'_POST' => $_POST,
'_COOKIE' => $_COOKIE,
'_SERVER' => $_SERVER,
'_FILES' => $_FILES
]);
$this->request = $web_factory->newRequest();
$this->response = $web_factory->newResponse();
}
public function __destruct()
{
$this->output();
2015-05-22 12:36:26 -04:00
}
/**
* Get the string output of a partial template
2015-05-22 12:36:26 -04:00
*
* @param string $template
* @param array|object $data
* @return string
2015-05-22 12:36:26 -04:00
*/
public function load_partial($template, $data=[])
2015-05-22 12:36:26 -04:00
{
if (isset($this->base_data))
{
$data = array_merge($this->base_data, $data);
}
global $router, $defaultHandler;
2015-05-22 12:36:26 -04:00
$route = $router->get_route();
$data['route_path'] = ($route) ? $router->get_route()->path : "";
$defaultHandler->addDataTable('Template Data', $data);
2015-05-22 12:36:26 -04:00
$template_path = _dir(APP_DIR, 'views', "{$template}.php");
if ( ! is_file($template_path))
2015-05-22 12:36:26 -04:00
{
throw new Exception("Invalid template : {$path}");
die();
2015-05-22 12:36:26 -04:00
}
ob_start();
extract($data);
include _dir(APP_DIR, 'views', 'header.php');
include $template_path;
include _dir(APP_DIR, 'views', 'footer.php');
2015-05-22 12:36:26 -04:00
$buffer = ob_get_contents();
ob_end_clean();
return $buffer;
}
/**
* Output a template to HTML, using the provided data
*
* @param string $template
* @param array|object $data
* @return void
*/
public function outputHTML($template, $data=[])
{
$buffer = $this->load_partial($template, $data);
$this->response->content->setType('text/html');
$this->response->content->set($buffer);
2015-05-22 12:36:26 -04:00
}
/**
* Output json with the proper content type
*
* @param mixed $data
2015-05-22 12:36:26 -04:00
* @return void
*/
public function outputJSON($data)
{
if ( ! is_string($data))
{
$data = json_encode($data);
}
$this->response->content->setType('application/json');
$this->response->content->set($data);
2015-05-22 12:36:26 -04:00
}
/**
* Redirect to the selected page
*
* @param string $url
* @param int $code
* @return void
*/
public function redirect($url, $code, $type="anime")
{
$url = full_url($url, $type);
$codes = [
301 => 'Moved Permanently',
302 => 'Found',
303 => 'See Other'
];
header("HTTP/1.1 {$code} {$codes[$code]}");
header("Location: {$url}");
}
/**
* Add a message box to the page
*
* @param string $type
* @param string $message
* @return string
*/
public function show_message($type, $message)
{
return $this->load_partial('message', [
'stat_class' => $type,
'message' => $message
]);
}
2015-06-17 08:50:01 -04:00
/**
* Clear the api session
*
* @return void
*/
public function logout()
{
session_destroy();
$this->response->redirect->seeOther(full_url(''));
}
/**
* Show the login form
*
* @param string $status
* @return void
*/
public function login($status="")
{
$message = "";
if ($status != "")
{
$message = $this->show_message('error', $status);
}
$this->outputHTML('login', [
'title' => 'Api login',
'message' => $message
]);
}
/**
* Attempt to log in with the api
*
* @return void
*/
public function login_action()
{
if ($this->model->authenticate($this->config->hummingbird_username, $this->request->post->get('password')))
{
$this->response->redirect->afterPost(full_url('', $this->base_data['url_type']));
$this->output();
return;
}
$this->login("Invalid username or password.");
}
/**
* Send the appropriate response
*
* @return void
*/
private function output()
{
// send status
header($this->response->status->get(), true, $this->response->status->getCode());
// headers
foreach($this->response->headers->get() as $label => $value)
{
header("{$label}: {$value}");
}
// cookies
foreach($this->response->cookies->get() as $name => $cookie)
{
setcookie($name, $cookie['value'], $cookie['expire'], $cookie['path'], $cookie['domain'], $cookie['secure'], $cookie['httponly']);
}
// send the actual response
echo $this->response->content->get();
2015-06-17 08:50:01 -04:00
}
}
// End of BaseController.php