request = $request; $this->response = $response; $this->logger = is_null($logger) ? Services::logger(true) : $logger; $this->logger->info('Controller "'.get_class($this).'" loaded.'); if ($this->forceHTTPS > 0) { $this->forceHTTPS($this->forceHTTPS); } $this->loadHelpers(); } //-------------------------------------------------------------------- /** * A convenience method to use when you need to ensure that a single * method is reached only via HTTPS. If it isn't, then a redirect * will happen back to this method and HSTS header will be sent * to have modern browsers transform requests automatically. * * @param int $duration The number of seconds this link should be * considered secure for. Only with HSTS header. * Default value is 1 year. */ public function forceHTTPS(int $duration = 31536000) { force_https($duration, $this->request, $this->response); } //-------------------------------------------------------------------- /** * Handles "auto-loading" helper files. */ protected function loadHelpers() { if (empty($this->helpers)) return; foreach ($this->helpers as $helper) { helper($helper); } } //-------------------------------------------------------------------- }