silverstripe-staticpublisher/code/extensions/RsyncMultiHostPublisher.php

96 lines
3.4 KiB
PHP
Raw Normal View History

2012-09-21 17:47:26 +12:00
<?php
/**
2013-04-06 17:24:51 +13:00
* This static publisher can be used to deploy static content to multiple
2012-09-25 20:02:26 +12:00
* hosts, by generating the cache files locally and then rsyncing then to
2013-04-06 17:24:51 +13:00
* each destination box. This can be used to set up a load-balanced
2012-09-25 20:02:26 +12:00
* collection of static servers.
2012-09-21 17:47:26 +12:00
*
2012-09-25 20:02:26 +12:00
* @package staticpublisher
2012-09-21 17:47:26 +12:00
*/
2015-12-20 17:19:24 +13:00
class RsyncMultiHostPublisher extends FilesystemPublisher
{
2012-09-25 20:02:26 +12:00
2015-12-20 17:19:24 +13:00
/**
* @config
*
* Array of rsync targets to publish to. These can either be local
* file names, or scp-style targets, in the form "user@server:path"
*
* @var array
*/
private static $targets = array();
/**
* @config
*
* @var array
*/
private static $excluded_folders = array();
/**
* Set the targets to publish to.
*
* If target is an scp-style remote path, no password is accepted - we
* assume key-based authentication to be set up on the application server
* initiating the publication.
*
* @deprecated 3.2 Use the "RsyncMultiHostPublisher.targets" config setting instead
*
* @param $targets An array of targets to publish to.
*/
public static function set_targets($targets)
{
Deprecation::notice('3.2', 'Use the "RsyncMultiHostPublisher.targets" config setting instead');
2013-04-06 17:24:51 +13:00
2015-12-20 17:19:24 +13:00
Config::inst()->update('RsyncMultiHostPublisher', 'targets', $targets);
}
/**
* Specify folders to exclude from the rsync
* For example, you could exclude assets.
*
* @deprecated 3.2 Use the "RsyncMultiHostPublisher.excluded_folders" config setting instead
*/
public static function set_excluded_folders($folders)
{
Deprecation::notice('3.2', 'Use the "RsyncMultiHostPublisher.excluded_folders" config setting instead');
2013-04-06 17:24:51 +13:00
2015-12-20 17:19:24 +13:00
Config::inst()->update('RsyncMultiHostPublisher', 'excluded_folders', $folders);
}
2012-09-21 17:47:26 +12:00
2015-12-20 17:19:24 +13:00
public function publishPages($urls)
{
parent::publishPages($urls);
$base = Director::baseFolder();
$framework = FRAMEWORK_DIR;
2012-09-21 17:47:26 +12:00
2015-12-20 17:19:24 +13:00
// Get variable that can turn off the rsync component of publication
if (isset($_GET['norsync']) && $_GET['norsync']) {
return;
}
$extraArg = "";
$excludedFolders = Config::inst()->get('RsyncMultiHostPublisher', 'excluded_folders');
if ($excludedFolders) {
foreach ($excludedFolders as $folder) {
$extraArg .= " --exclude " . escapeshellarg($folder);
}
}
$targets = Config::inst()->get('RsyncMultiHostPublisher', 'targets');
foreach ((array)$targets as $target) {
// Transfer non-PHP content from everything to the target; that will ensure that we have all the JS/CSS/etc
$rsyncOutput = `cd $base; rsync -av -e ssh --exclude /.htaccess --exclude /web.config --exclude '*.php' --exclude '*.svn' --exclude '*.git' --exclude '*~' $extraArg --delete . $target`;
// Then transfer "safe" PHP from the cache/ directory
$rsyncOutput .= `cd $base; rsync -av -e ssh --exclude '*.svn' --exclude '*~' $extraArg --delete cache $target`;
// Transfer framework/static-main.php to the target
$rsyncOutput .= `cd $base; rsync -av -e ssh --delete $framework/static-main.php $target/$framework`;
if (Config::inst()->get('StaticPublisher', 'echo_progress')) {
echo $rsyncOutput;
}
}
}
2012-09-21 17:47:26 +12:00
}