This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
redir/application/classes/controller/redir.php
2012-08-20 06:11:12 +10:00

38 lines
981 B
PHP

<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* Redirection Engine
*
* @package lnApp
* @subpackage Page/Home
* @category Controllers
* @author Deon George
* @copyright (c) 2010 Deon George
* @license http://dev.leenooks.net/license.html
*/
class Controller_Redir extends Controller {
protected $auth_required = FALSE;
public function action_index() {
// Try and find the path
$ro = ORM::factory('redir',array('servername'=>$_SERVER['SERVER_NAME'],'path'=>$this->request->param('id')));
if (! $ro->loaded()) {
$ro = ORM::factory('redir',array('servername'=>$_SERVER['SERVER_NAME'],'path'=>NULL));
if (! $ro->loaded())
$ro = ORM::factory('redir',0);
}
$ro->count++;
$ro->date_last_refer = time();
$ro->save();
if (! is_null($ro->redirect) AND trim($ro->redirect))
$this->request->redirect($ro->redirect);
else
$this->response->body(file_get_contents(Kohana::config('config.defaultfile')));
}
}
?>