Skip to content

Instantly share code, notes, and snippets.

@lukemorton
Created April 2, 2011 14:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukemorton/899531 to your computer and use it in GitHub Desktop.
Save lukemorton/899531 to your computer and use it in GitHub Desktop.
Creates a file in DOCROOT if found within the CFS.
<?php defined('SYSPATH') or die('No direct script access.');
/**
* Controller for Publicize. Currently only contains a redirect
* action.
*
* @package Publicize
* @category Helpers
* @author Luke Morton
* @copyright Luke Morton, 2011
* @license MIT
*/
class Controller_Publicize extends Controller {
/**
* Simple redirect action for use by Publicize.
*
* @return void
*/
public function action_redirect()
{
$this->request->redirect(
$this->request->param('uri')
);
}
}
<?php defined('SYSPATH') or die('No direct script access.');
// Set route if not in production
Publicize::set_route();
<?php defined('SYSPATH') or die('No direct script access.');
/**
* Publicize is a small helper class that provides routing
* functionality that enables modules to include files that are
* publically available via your htdocs, public, html, www,
* %%insert another public folder variation%%.
*
* When not in production mode going to the URL `css/screen.css`
* (a file that does not exist in your public directory), the
* Kohana Cascading File System will be searched for this path
* within a folder called `public`, if found it is copied to the
* public directory.
*
* In order to update the file you do need to delete it from
* your public directory.
*
* @package Publicize
* @category Helpers
* @author Luke Morton
* @copyright Luke Morton, 2011
* @license MIT
*/
class Publicize {
const PUBLIC_FOLDER = 'public';
/**
* Sets route if not in production.
*
* @return void
*/
public static function set_route()
{
if (Kohana::$environment !== Kohana::PRODUCTION)
{
Route::set('Publicize', array('Publicize', 'route_callback'));
}
}
/**
* Route callback, contains the copying functionality.
*
* @param string URI to search for
* @return array Params for Controler_Publicize::action_redirect()
* @return void If no file found
*/
public static function route_callback($uri)
{
if ($asset = Kohana::find_file(self::PUBLIC_FOLDER, $uri, FALSE))
{
$public_asset = DOCROOT.$uri;
if ( ! is_file($public_asset))
{
$public_asset_dir = dirname($public_asset);
if ( ! is_dir($public_asset_dir))
{
mkdir($public_asset_dir, NULL, TRUE);
}
touch($public_asset);
}
file_put_contents($public_asset, file_get_contents($asset));
return array(
'controller' => 'publicize',
'action' => 'redirect',
'uri' => $uri,
);
}
}
}
@lukemorton
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment