mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
Updated and improved StaticExporter
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@42536 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
0c0bb09e24
commit
bc246bf484
@ -8,14 +8,15 @@
|
||||
class StaticExporter extends Controller {
|
||||
function init() {
|
||||
parent::init();
|
||||
if(!$this->can('AdminCMS')) {
|
||||
if(!Permission::check('ADMIN')) {
|
||||
$messageSet = array(
|
||||
'default' => _t('LeftAndMain.PERMDEFAULT'),
|
||||
'alreadyLoggedIn' => _t('LeftAndMain.PERMALREADY'),
|
||||
'logInAgain' => _t('LeftAndMain.PERMAGAIN'),
|
||||
'default' => "Enter your email address and password to access the CMS.",
|
||||
'alreadyLoggedIn' => "I'm sorry, but you can't access that part of the CMS. If you want to log in as someone else, do so below",
|
||||
'logInAgain' => "You have been logged out of the CMS. If you would like to log in again, enter a username and password below.",
|
||||
);
|
||||
|
||||
Security::permissionFailure($this, $messageSet);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
@ -25,16 +26,16 @@ class StaticExporter extends Controller {
|
||||
}
|
||||
|
||||
function index() {
|
||||
echo "<h1>"._t('StaticExporter.NAME','Static exporter')."</h1>";
|
||||
echo "<h1>Static exporter</h1>";
|
||||
echo $this->StaticExportForm()->forTemplate();
|
||||
}
|
||||
|
||||
function StaticExportForm() {
|
||||
return new Form($this, 'StaticExportForm', new FieldSet(
|
||||
new TextField('folder', _t('StaticExporter.FOLDEREXPORT','Folder to export to')),
|
||||
new TextField('baseurl', _t('StaticExporter.BASEURL','Base URL'))
|
||||
// new TextField('folder', 'Folder to export to'),
|
||||
new TextField('baseurl', 'Base URL')
|
||||
), new FieldSet(
|
||||
new FormAction('export', _t('StaticExporter.EXPORTTOTHAT','Export to that folder'))
|
||||
new FormAction('export', 'Export to that folder')
|
||||
));
|
||||
}
|
||||
|
||||
@ -46,19 +47,26 @@ class StaticExporter extends Controller {
|
||||
Director::setBaseURL($base);
|
||||
}
|
||||
|
||||
$folder = $_REQUEST['folder'];
|
||||
$folder = '/tmp/static-export/' . project();
|
||||
if(!project()) $folder .= 'site';
|
||||
if(!file_exists($folder)) mkdir($folder, 02775, true);
|
||||
|
||||
$f1 = Director::baseFolder() . '/assets';
|
||||
$f2 = Director::baseFolder() . '/' . project();
|
||||
`cd $folder; ln -s $f1; ln -s $f2`;
|
||||
|
||||
|
||||
$baseFolder = basename($folder);
|
||||
|
||||
if($folder && file_exists($folder)) {
|
||||
$pages = DataObject::get("SiteTree");
|
||||
foreach($pages as $page) {
|
||||
$subfolder = "$folder/$page->URLSegment";
|
||||
$contentfile = "$folder/$page->URLSegment/index.html";
|
||||
|
||||
echo "<li>$page->URLSegment/index.html";
|
||||
|
||||
// Make the folder
|
||||
if(!file_exists($subfolder)) {
|
||||
mkdir($subfolder);
|
||||
chmod($subfolder,02775);
|
||||
mkdir($subfolder, 02775);
|
||||
}
|
||||
|
||||
// Run the page
|
||||
@ -66,19 +74,28 @@ class StaticExporter extends Controller {
|
||||
$controllerClass = "{$page->class}_Controller";
|
||||
if(class_exists($controllerClass)) {
|
||||
$controller = new $controllerClass($page);
|
||||
|
||||
$response = $controller->run( array() );
|
||||
$pageContent = $response->getBody();
|
||||
$pageContent = $controller->run( array() );
|
||||
|
||||
// Write to file
|
||||
if($fh = fopen($contentfile, 'w')) {
|
||||
fwrite($fh, $pageContent);
|
||||
fwrite($fh, $pageContent->getBody());
|
||||
fclose($fh);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
copy("$folder/home/index.html", "$folder/index.html");
|
||||
|
||||
`cd /tmp/static-export; tar -czhf $baseFolder.tar.gz $baseFolder`;
|
||||
|
||||
$content = file_get_contents("/tmp/static-export/$baseFolder.tar.gz");
|
||||
Filesystem::removeFolder('/tmp/static-export');
|
||||
|
||||
HTTP::sendFileToBrowser($content, "$baseFolder.tar.gz");
|
||||
return null;
|
||||
|
||||
} else {
|
||||
echo _t('StaticExporter.ONETHATEXISTS',"Please specify a folder that exists");
|
||||
echo "Please specify a folder that exists";
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user