2008-08-12 04:59:27 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Usage: Object::add_extension("SiteTree", "FilesystemPublisher('../static-folder/')")
|
2009-02-04 21:18:12 +01:00
|
|
|
*
|
|
|
|
* @see http://doc.silverstripe.com/doku.php?id=staticpublisher
|
|
|
|
*
|
|
|
|
* @package cms
|
|
|
|
* @subpackage publishers
|
2008-08-12 04:59:27 +02:00
|
|
|
*/
|
|
|
|
class FilesystemPublisher extends StaticPublisher {
|
|
|
|
protected $destFolder;
|
|
|
|
protected $fileExtension;
|
|
|
|
|
2008-11-18 00:03:39 +01:00
|
|
|
protected static $static_base_url = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a different base URL for the static copy of the site.
|
|
|
|
* This can be useful if you are running the CMS on a different domain from the website.
|
|
|
|
*/
|
|
|
|
static function set_static_base_url($url) {
|
|
|
|
self::$static_base_url = $url;
|
|
|
|
}
|
|
|
|
|
2008-08-12 04:59:27 +02:00
|
|
|
/**
|
|
|
|
* @param $destFolder The folder to save the cached site into
|
|
|
|
* @param $fileExtension The file extension to use, for example, 'html'. If omitted, then each page will be placed
|
2008-12-15 02:31:01 +01:00
|
|
|
* in its own directory, with the filename 'index.html'. If you set the extension to PHP, then a simple PHP script will
|
|
|
|
* be generated that can do appropriate cache & redirect header negotation
|
2008-08-12 04:59:27 +02:00
|
|
|
*/
|
|
|
|
function __construct($destFolder, $fileExtension = null) {
|
|
|
|
if(substr($destFolder, -1) == '/') $destFolder = substr($destFolder, 0, -1);
|
|
|
|
$this->destFolder = $destFolder;
|
|
|
|
$this->fileExtension = $fileExtension;
|
|
|
|
}
|
|
|
|
|
2008-12-15 02:31:01 +01:00
|
|
|
function publishPages($urls) {
|
|
|
|
// This can be quite memory hungry and time-consuming
|
|
|
|
// @todo - Make a more memory efficient publisher
|
2008-08-15 08:31:36 +02:00
|
|
|
set_time_limit(0);
|
2008-08-18 00:26:00 +02:00
|
|
|
ini_set("memory_limit" , -1);
|
2008-08-15 08:31:36 +02:00
|
|
|
|
2008-08-12 04:59:27 +02:00
|
|
|
//$base = Director::absoluteURL($this->destFolder);
|
|
|
|
//$base = preg_replace('/\/[^\/]+\/\.\./','',$base) . '/';
|
2008-11-18 00:03:39 +01:00
|
|
|
|
|
|
|
if(self::$static_base_url) Director::setBaseURL(self::$static_base_url);
|
2008-08-12 04:59:27 +02:00
|
|
|
|
|
|
|
$files = array();
|
|
|
|
$i = 0;
|
|
|
|
$totalURLs = sizeof($urls);
|
|
|
|
foreach($urls as $url) {
|
|
|
|
$i++;
|
2008-12-15 02:31:01 +01:00
|
|
|
|
|
|
|
if($url && !is_string($url)) {
|
|
|
|
user_error("Bad url:" . var_export($url,true), E_USER_WARNING);
|
|
|
|
continue;
|
|
|
|
}
|
2008-08-12 04:59:27 +02:00
|
|
|
|
|
|
|
if(StaticPublisher::echo_progress()) {
|
|
|
|
echo " * Publishing page $i/$totalURLs: $url\n";
|
|
|
|
flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
Requirements::clear();
|
2008-12-15 02:31:01 +01:00
|
|
|
$response = Director::test(str_replace('+', ' ', $url));
|
2008-08-12 04:59:27 +02:00
|
|
|
Requirements::clear();
|
2008-12-15 02:31:01 +01:00
|
|
|
|
|
|
|
DataObject::flush_and_destroy_cache();
|
2008-12-15 02:45:20 +01:00
|
|
|
//DataObject::destroy_cached_get_calls(false);
|
|
|
|
//DataObject::cache_get_calls(false);
|
2008-12-15 02:31:01 +01:00
|
|
|
|
|
|
|
//echo 'Memory: ' . round(memory_get_usage()/100000)/10 . "\n";
|
2008-08-12 04:59:27 +02:00
|
|
|
/*
|
|
|
|
if(!is_object($response)) {
|
|
|
|
echo "String response for url '$url'\n";
|
|
|
|
print_r($response);
|
|
|
|
}*/
|
2008-12-15 02:31:01 +01:00
|
|
|
|
|
|
|
// Generate file content
|
|
|
|
// PHP file caching will generate a simple script from a template
|
|
|
|
if($this->fileExtension == 'php') {
|
|
|
|
if(is_object($response)) {
|
|
|
|
if($response->getStatusCode() == '301' || $response->getStatusCode() == '302') {
|
|
|
|
$content = $this->generatePHPCacheRedirection($response->getHeader('Location'));
|
|
|
|
} else {
|
|
|
|
$content = $this->generatePHPCacheFile($response->getBody(), HTTP::get_cache_age(), date('Y-m-d H:i:s'));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$content = $this->generatePHPCacheFile($response . '', HTTP::get_cache_age(), date('Y-m-d H:i:s'));
|
|
|
|
}
|
|
|
|
|
|
|
|
// HTML file caching generally just creates a simple file
|
|
|
|
} else {
|
|
|
|
if(is_object($response)) {
|
|
|
|
if($response->getStatusCode() == '301' || $response->getStatusCode() == '302') {
|
|
|
|
$absoluteURL = Director::absoluteURL($response->getHeader('Location'));
|
|
|
|
$content = "<meta http-equiv=\"refresh\" content=\"2; URL=$absoluteURL\">";
|
|
|
|
} else {
|
|
|
|
$content = $response->getBody();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$content = $response . '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-12 04:59:27 +02:00
|
|
|
|
|
|
|
if($this->fileExtension) $filename = $url ? "$url.$this->fileExtension" : "index.$this->fileExtension";
|
|
|
|
else $filename = $url ? "$url/index.html" : "index.html";
|
|
|
|
|
|
|
|
$files[$filename] = array(
|
|
|
|
'Content' => $content,
|
|
|
|
'Folder' => (dirname($filename) == '/') ? '' : (dirname($filename).'/'),
|
|
|
|
'Filename' => basename($filename),
|
|
|
|
);
|
|
|
|
|
|
|
|
// Add externals
|
|
|
|
/*
|
|
|
|
$externals = $this->externalReferencesFor($content);
|
|
|
|
if($externals) foreach($externals as $external) {
|
|
|
|
// Skip absolute URLs
|
|
|
|
if(preg_match('/^[a-zA-Z]+:\/\//', $external)) continue;
|
|
|
|
// Drop querystring parameters
|
|
|
|
$external = strtok($external, '?');
|
|
|
|
|
|
|
|
if(file_exists("../" . $external)) {
|
|
|
|
// Break into folder and filename
|
|
|
|
if(preg_match('/^(.*\/)([^\/]+)$/', $external, $matches)) {
|
|
|
|
$files[$external] = array(
|
|
|
|
"Copy" => "../$external",
|
|
|
|
"Folder" => $matches[1],
|
|
|
|
"Filename" => $matches[2],
|
|
|
|
);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
user_error("Can't parse external: $external", E_USER_WARNING);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$missingFiles[$external] = true;
|
|
|
|
}
|
|
|
|
}*/
|
|
|
|
}
|
2008-11-18 00:03:39 +01:00
|
|
|
|
|
|
|
if(self::$static_base_url) Director::setBaseURL(null);
|
2008-08-12 04:59:27 +02:00
|
|
|
|
|
|
|
$base = "../$this->destFolder";
|
|
|
|
foreach($files as $file) {
|
|
|
|
Filesystem::makeFolder("$base/$file[Folder]");
|
|
|
|
|
|
|
|
if(isset($file['Content'])) {
|
|
|
|
$fh = fopen("$base/$file[Folder]$file[Filename]", "w");
|
|
|
|
fwrite($fh, $file['Content']);
|
|
|
|
fclose($fh);
|
|
|
|
} else if(isset($file['Copy'])) {
|
|
|
|
copy($file['Copy'], "$base/$file[Folder]$file[Filename]");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-12-15 02:31:01 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate the templated content for a PHP script that can serve up the given piece of content with the given age and expiry
|
|
|
|
*/
|
|
|
|
protected function generatePHPCacheFile($content, $age, $lastModified) {
|
|
|
|
$template = file_get_contents('../cms/code/staticpublisher/CachedPHPPage.tmpl');
|
|
|
|
return str_replace(
|
|
|
|
array('**MAX_AGE**', '**LAST_MODIFIED**', '**CONTENT**'),
|
|
|
|
array((int)$age, $lastModified, $content),
|
|
|
|
$template);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Generate the templated content for a PHP script that can serve up a 301 redirect to the given destionation
|
|
|
|
*/
|
|
|
|
protected function generatePHPCacheRedirection($destination) {
|
|
|
|
$template = file_get_contents('../cms/code/staticpublisher/CachedPHPRedirection.tmpl');
|
|
|
|
return str_replace(
|
|
|
|
array('**DESTINATION**'),
|
|
|
|
array($destination),
|
|
|
|
$template);
|
|
|
|
}
|
2008-08-12 04:59:27 +02:00
|
|
|
}
|
2008-12-04 23:38:58 +01:00
|
|
|
|
2008-12-15 02:31:01 +01:00
|
|
|
?>
|