28 lines
874 B
PHP
28 lines
874 B
PHP
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
/**
|
|
* This class provides SSL management
|
|
*
|
|
* @package SSL
|
|
* @category Controllers
|
|
* @author Deon George
|
|
* @copyright (c) 2009-2014 Deon George
|
|
* @license http://dev.leenooks.net/license.html
|
|
*/
|
|
class Controller_Ssl extends Controller_TemplateDefault {
|
|
protected $auth_required = FALSE;
|
|
|
|
public function action_download() {
|
|
$so = ORM::factory('SSL_CA')->where('id','=',$this->request->param('id'))->or_where('name','=',$this->request->param('id'))->find();
|
|
|
|
if (! $so->loaded() OR ! $so->cert)
|
|
throw HTTP_Exception::factory(404,'SSL either doesnt exist');
|
|
|
|
$this->auto_render = FALSE;
|
|
$this->response->headers('Content-Type','plain/text');
|
|
$this->response->headers('Content-Disposition','attachment; filename="'.$so->name.'.crt"');
|
|
$this->response->body($so->cert);
|
|
}
|
|
}
|
|
?>
|