mirror of
https://github.com/silverstripe/silverstripe-subsites
synced 2024-10-22 09:05:55 +00:00
Compare commits
4 Commits
5896d1207f
...
23cb84ff00
Author | SHA1 | Date | |
---|---|---|---|
|
23cb84ff00 | ||
|
a8306658aa | ||
|
9c50c27b24 | ||
|
9be525a902 |
@ -14,7 +14,7 @@ use SilverStripe\Core\Config\Config;
|
||||
use SilverStripe\Core\Convert;
|
||||
use SilverStripe\Core\Extension;
|
||||
use SilverStripe\Forms\HiddenField;
|
||||
use SilverStripe\ORM\ArrayList;
|
||||
use SilverStripe\Model\List\ArrayList;
|
||||
use SilverStripe\ORM\DataObject;
|
||||
use SilverStripe\Security\Member;
|
||||
use SilverStripe\Security\Permission;
|
||||
@ -22,7 +22,7 @@ use SilverStripe\Security\Security;
|
||||
use SilverStripe\Subsites\Controller\SubsiteXHRController;
|
||||
use SilverStripe\Subsites\Model\Subsite;
|
||||
use SilverStripe\Subsites\State\SubsiteState;
|
||||
use SilverStripe\View\ArrayData;
|
||||
use SilverStripe\Model\ArrayData;
|
||||
use SilverStripe\View\Requirements;
|
||||
|
||||
/**
|
||||
|
@ -15,12 +15,12 @@ use SilverStripe\Forms\FieldList;
|
||||
use SilverStripe\Forms\FormAction;
|
||||
use SilverStripe\Forms\ToggleCompositeField;
|
||||
use SilverStripe\i18n\i18n;
|
||||
use SilverStripe\ORM\ArrayList;
|
||||
use SilverStripe\Model\List\ArrayList;
|
||||
use SilverStripe\Core\Extension;
|
||||
use SilverStripe\ORM\DataObject;
|
||||
use SilverStripe\ORM\DataQuery;
|
||||
use SilverStripe\ORM\ManyManyList;
|
||||
use SilverStripe\ORM\Map;
|
||||
use SilverStripe\Model\List\Map;
|
||||
use SilverStripe\ORM\Queries\SQLSelect;
|
||||
use SilverStripe\Security\Member;
|
||||
use SilverStripe\Security\Security;
|
||||
|
@ -18,12 +18,12 @@ use SilverStripe\Forms\HiddenField;
|
||||
use SilverStripe\Forms\ToggleCompositeField;
|
||||
use SilverStripe\i18n\Data\Intl\IntlLocales;
|
||||
use SilverStripe\i18n\i18n;
|
||||
use SilverStripe\ORM\ArrayLib;
|
||||
use SilverStripe\ORM\ArrayList;
|
||||
use SilverStripe\Core\ArrayLib;
|
||||
use SilverStripe\Model\List\ArrayList;
|
||||
use SilverStripe\ORM\DataList;
|
||||
use SilverStripe\ORM\DataObject;
|
||||
use SilverStripe\ORM\DB;
|
||||
use SilverStripe\ORM\SS_List;
|
||||
use SilverStripe\Model\List\SS_List;
|
||||
use SilverStripe\ORM\HasManyList;
|
||||
use SilverStripe\ORM\ManyManyList;
|
||||
use SilverStripe\Security\Group;
|
||||
@ -263,7 +263,7 @@ class Subsite extends DataObject
|
||||
|
||||
// ClassInfo::hasTable provides a cached table list
|
||||
if (!ClassInfo::hasTable($domainTableName)) {
|
||||
// Table hasn't been created yet. Might be a dev/build, skip.
|
||||
// Table hasn't been created yet. Might be bilding the db, skip.
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -798,7 +798,7 @@ class Subsite extends DataObject
|
||||
|
||||
/**
|
||||
*
|
||||
* @return \SilverStripe\ORM\ValidationResult
|
||||
* @return \SilverStripe\Core\Validation\ValidationResult
|
||||
*/
|
||||
public function validate()
|
||||
{
|
||||
|
@ -10,12 +10,12 @@ use SilverStripe\Core\Config\Config;
|
||||
use SilverStripe\Forms\DropdownField;
|
||||
use SilverStripe\Forms\FieldList;
|
||||
use SilverStripe\Forms\LiteralField;
|
||||
use SilverStripe\ORM\ArrayList;
|
||||
use SilverStripe\Model\List\ArrayList;
|
||||
use SilverStripe\ORM\DataObject;
|
||||
use SilverStripe\Subsites\Forms\SubsitesTreeDropdownField;
|
||||
use SilverStripe\Subsites\Model\Subsite;
|
||||
use SilverStripe\Subsites\State\SubsiteState;
|
||||
use SilverStripe\View\ArrayData;
|
||||
use SilverStripe\Model\ArrayData;
|
||||
|
||||
class SubsitesVirtualPage extends VirtualPage
|
||||
{
|
||||
|
@ -2,14 +2,17 @@
|
||||
|
||||
namespace SilverStripe\Subsites\Tasks;
|
||||
|
||||
use InvalidArgumentException;
|
||||
use Closure;
|
||||
use SilverStripe\CMS\Model\SiteTree;
|
||||
use SilverStripe\Dev\BuildTask;
|
||||
use SilverStripe\Dev\Deprecation;
|
||||
use SilverStripe\PolyExecution\PolyOutput;
|
||||
use SilverStripe\ORM\DataObject;
|
||||
use SilverStripe\Subsites\Model\Subsite;
|
||||
use SilverStripe\Subsites\Pages\SubsitesVirtualPage;
|
||||
use SilverStripe\Versioned\Versioned;
|
||||
use Symfony\Component\Console\Command\Command;
|
||||
use Symfony\Component\Console\Input\InputInterface;
|
||||
use Symfony\Component\Console\Input\InputOption;
|
||||
|
||||
/**
|
||||
* Handy alternative to copying pages when creating a subsite through the UI.
|
||||
@ -17,38 +20,43 @@ use SilverStripe\Versioned\Versioned;
|
||||
* Can be used to batch-add new pages after subsite creation, or simply to
|
||||
* process a large site outside of the UI.
|
||||
*
|
||||
* Example: sake dev/tasks/SubsiteCopyPagesTask from=<subsite-source> to=<subsite-target>
|
||||
* Example: sake tasks:SubsiteCopyPagesTask --from=<subsite-source> --to=<subsite-target>
|
||||
*
|
||||
* @package subsites
|
||||
*/
|
||||
class SubsiteCopyPagesTask extends BuildTask
|
||||
{
|
||||
protected $title = 'Copy pages to different subsite';
|
||||
protected $description = '';
|
||||
protected string $title = 'Copy pages to different subsite';
|
||||
|
||||
private static $segment = 'SubsiteCopyPagesTask';
|
||||
protected static string $description = 'Handy alternative to copying pages when creating a subsite through the UI';
|
||||
|
||||
public function run($request)
|
||||
protected static string $commandName = 'SubsiteCopyPagesTask';
|
||||
|
||||
protected function execute(InputInterface $input, PolyOutput $output): int
|
||||
{
|
||||
$subsiteFromId = $request->getVar('from');
|
||||
$subsiteFromId = $input->getOption('from');
|
||||
if (!is_numeric($subsiteFromId)) {
|
||||
throw new InvalidArgumentException('Missing "from" parameter');
|
||||
$output->writeln('<error>Missing "from" parameter</>');
|
||||
return Command::INVALID;
|
||||
}
|
||||
$subsiteFrom = DataObject::get_by_id(Subsite::class, $subsiteFromId);
|
||||
if (!$subsiteFrom) {
|
||||
throw new InvalidArgumentException('Subsite not found');
|
||||
$output->writeln('<error>Subsite not found</>');
|
||||
return Command::FAILURE;
|
||||
}
|
||||
|
||||
$subsiteToId = $request->getVar('to');
|
||||
$subsiteToId = $input->getOption('to');
|
||||
if (!is_numeric($subsiteToId)) {
|
||||
throw new InvalidArgumentException('Missing "to" parameter');
|
||||
$output->writeln('<error>Missing "to" parameter</>');
|
||||
return Command::INVALID;
|
||||
}
|
||||
$subsiteTo = DataObject::get_by_id(Subsite::class, $subsiteToId);
|
||||
if (!$subsiteTo) {
|
||||
throw new InvalidArgumentException('Subsite not found');
|
||||
$output->writeln('<error>Subsite not found</>');
|
||||
return Command::FAILURE;
|
||||
}
|
||||
|
||||
$useVirtualPages = (bool)$request->getVar('virtual');
|
||||
$useVirtualPages = $input->getOption('virtual');
|
||||
|
||||
Subsite::changeSubsite($subsiteFrom);
|
||||
|
||||
@ -78,22 +86,50 @@ class SubsiteCopyPagesTask extends BuildTask
|
||||
$childClone->copyVersionToStage('Stage', 'Live');
|
||||
array_push($stack, [$child->ID, $childClone->ID]);
|
||||
|
||||
Deprecation::withNoReplacement(function () use ($child) {
|
||||
$this->log(sprintf('Copied "%s" (#%d, %s)', $child->Title, $child->ID, $child->Link()));
|
||||
});
|
||||
$output->writeln(sprintf('Copied "%s" (#%d, %s)', $child->Title, $child->ID, $child->Link()));
|
||||
}
|
||||
}
|
||||
|
||||
unset($children);
|
||||
}
|
||||
|
||||
return Command::SUCCESS;
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated 3.4.0 Will be replaced with new $output parameter in the run() method
|
||||
*/
|
||||
public function log($msg)
|
||||
public function getOptions(): array
|
||||
{
|
||||
Deprecation::notice('3.4.0', 'Will be replaced with new $output parameter in the run() method');
|
||||
echo $msg . "\n";
|
||||
$subsiteSuggestionClosure = Closure::fromCallable([static::class, 'getSubsiteCompletion']);
|
||||
return [
|
||||
new InputOption(
|
||||
'from',
|
||||
null,
|
||||
InputOption::VALUE_REQUIRED,
|
||||
'ID of the subsite to copy from',
|
||||
suggestedValues: $subsiteSuggestionClosure
|
||||
),
|
||||
new InputOption(
|
||||
'to',
|
||||
null,
|
||||
InputOption::VALUE_REQUIRED,
|
||||
'ID of the subsite to copy to',
|
||||
suggestedValues: $subsiteSuggestionClosure
|
||||
),
|
||||
new InputOption(
|
||||
'virtual',
|
||||
null,
|
||||
InputOption::VALUE_NONE,
|
||||
'Create virtual pages instead of duplicating pages'
|
||||
),
|
||||
];
|
||||
}
|
||||
|
||||
public static function getSubsiteCompletion(): array
|
||||
{
|
||||
$subsites = Subsite::get()->map('ID', 'Title');
|
||||
$suggestions = [];
|
||||
foreach ($subsites as $id => $title) {
|
||||
$suggestions[] = "{$id}\t{$title}";
|
||||
}
|
||||
return $suggestions;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user