2012-02-29 15:49:37 +01:00
|
|
|
<?php
|
2016-09-07 07:10:55 +02:00
|
|
|
|
2020-11-03 05:48:30 +01:00
|
|
|
use DNADesign\Elemental\Models\ElementContent;
|
|
|
|
use SilverStripe\Assets\File;
|
2016-09-07 07:10:55 +02:00
|
|
|
use SilverStripe\Dev\BuildTask;
|
2017-11-28 23:45:42 +01:00
|
|
|
use SilverStripe\Core\ClassInfo;
|
2020-11-03 05:48:30 +01:00
|
|
|
use SilverStripe\ElementalBannerBlock\Block\BannerBlock;
|
|
|
|
use SilverStripe\ElementalFileBlock\Block\FileBlock;
|
2021-05-03 03:30:25 +02:00
|
|
|
use SilverStripe\CMS\Model\SiteTree;
|
|
|
|
use DNADesign\Elemental\Extensions\ElementalPageExtension;
|
|
|
|
use DNADesign\Elemental\Models\BaseElement;
|
2017-11-28 23:45:42 +01:00
|
|
|
|
2012-02-29 15:49:37 +01:00
|
|
|
/**
|
|
|
|
* Creates sample page structure, useful to test tree performance,
|
|
|
|
* UI behaviour on deeply nested pages etc.
|
2020-11-03 05:48:30 +01:00
|
|
|
*
|
2012-02-29 15:49:37 +01:00
|
|
|
* @todo Allow passing in counts
|
|
|
|
*/
|
2015-12-17 21:20:49 +01:00
|
|
|
class FTPageMakerTask extends BuildTask
|
|
|
|
{
|
2020-11-03 05:48:30 +01:00
|
|
|
|
2017-05-18 03:20:53 +02:00
|
|
|
/**
|
2017-07-04 23:58:48 +02:00
|
|
|
* Defaults create 2,000 pages
|
2017-05-18 03:20:53 +02:00
|
|
|
*/
|
|
|
|
protected $pageCountByDepth = [
|
|
|
|
5,
|
2017-07-04 23:58:48 +02:00
|
|
|
100,
|
|
|
|
1,
|
2017-05-18 03:20:53 +02:00
|
|
|
1,
|
2020-11-03 05:48:30 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array Range of blocks to add (in case elemental is installed).
|
|
|
|
* Will create between X and Y blocks randomly.
|
|
|
|
*/
|
|
|
|
protected $blockCountRange = [
|
|
|
|
1,
|
|
|
|
10
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
* @config
|
|
|
|
*/
|
|
|
|
private static $block_generators = [
|
|
|
|
'DNADesign\Elemental\Models\ElementContent' => [self::class, 'generateContentBlock'],
|
|
|
|
'SilverStripe\ElementalBannerBlock\Block\BannerBlock' => [self::class, 'generateBannerBlock'],
|
|
|
|
'SilverStripe\ElementalFileBlock\Block\FileBlock' => [self::class, 'generateFileBlock'],
|
2017-05-18 03:20:53 +02:00
|
|
|
];
|
2012-02-29 15:49:37 +01:00
|
|
|
|
2015-12-17 21:20:49 +01:00
|
|
|
public function run($request)
|
|
|
|
{
|
2020-11-03 05:48:30 +01:00
|
|
|
// Optionally add blocks
|
|
|
|
$withBlocks = (bool)$request->getVar('withBlocks');
|
|
|
|
if ($withBlocks && !class_exists('DNADesign\Elemental\Models\BaseElement')) {
|
|
|
|
throw new \LogicException('withBlocks requested, but BaseElement class not found');
|
|
|
|
}
|
|
|
|
|
2021-05-03 03:30:25 +02:00
|
|
|
// Allow pageCountByDepth to be passed as comma-separated value, e.g. pageCounts=5,100,1,1
|
|
|
|
$pageCounts = $request->getVar('pageCounts');
|
|
|
|
if ($pageCounts) {
|
2022-04-13 00:31:07 +02:00
|
|
|
$counts = explode(',', $pageCounts ?? '');
|
2021-05-03 03:30:25 +02:00
|
|
|
$this->pageCountByDepth = array_map(function ($int) {
|
2022-04-13 00:31:07 +02:00
|
|
|
return (int) trim($int ?? '');
|
|
|
|
}, $counts ?? []);
|
2021-05-03 03:30:25 +02:00
|
|
|
}
|
|
|
|
|
2020-11-03 05:48:30 +01:00
|
|
|
$this->generatePages(0, "", 0, $withBlocks);
|
2015-12-17 21:20:49 +01:00
|
|
|
}
|
2017-05-18 03:20:53 +02:00
|
|
|
|
2020-11-03 05:48:30 +01:00
|
|
|
protected function generatePages($depth = 0, $prefix = "", $parentID = 0, $withBlocks = false)
|
2015-12-17 21:20:49 +01:00
|
|
|
{
|
2022-04-13 00:31:07 +02:00
|
|
|
$maxDepth = count($this->pageCountByDepth ?? []);
|
2017-05-18 03:20:53 +02:00
|
|
|
$pageCount = $this->pageCountByDepth[$depth];
|
2017-11-28 23:45:42 +01:00
|
|
|
$testPageClasses = ClassInfo::implementorsOf('TestPageInterface');
|
2017-05-18 03:20:53 +02:00
|
|
|
|
|
|
|
for ($i=1; $i<=$pageCount; $i++) {
|
|
|
|
$fullPrefix = $prefix ? "{$prefix}-{$i}" : $i;
|
2022-04-13 00:31:07 +02:00
|
|
|
$randomIndex = array_rand($testPageClasses ?? []);
|
2017-11-28 23:45:42 +01:00
|
|
|
$pageClass = $testPageClasses[$randomIndex];
|
|
|
|
$page = new $pageClass();
|
2015-12-17 21:20:49 +01:00
|
|
|
$page->ParentID = $parentID;
|
2017-05-18 03:20:53 +02:00
|
|
|
$page->Title = "Test page {$fullPrefix}";
|
2015-12-17 21:20:49 +01:00
|
|
|
$page->write();
|
|
|
|
$page->publish('Stage', 'Live');
|
2012-02-29 15:49:37 +01:00
|
|
|
|
2017-11-28 23:45:42 +01:00
|
|
|
echo "Created '$page->Title' ($page->ClassName)\n";
|
2020-11-03 05:48:30 +01:00
|
|
|
|
|
|
|
if ($withBlocks) {
|
|
|
|
$this->generateBlocksForPage($page);
|
|
|
|
}
|
|
|
|
|
2017-05-18 03:20:53 +02:00
|
|
|
$pageID = $page->ID;
|
2020-11-03 05:48:30 +01:00
|
|
|
|
2017-05-18 03:20:53 +02:00
|
|
|
unset($page);
|
|
|
|
|
|
|
|
if ($depth < $maxDepth-1) {
|
2020-11-03 05:48:30 +01:00
|
|
|
$this->generatePages($depth+1, $fullPrefix, $pageID, $withBlocks);
|
2015-12-17 21:20:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-03 05:48:30 +01:00
|
|
|
|
|
|
|
protected function generateBlocksForPage(Page $page)
|
|
|
|
{
|
2022-04-13 00:31:07 +02:00
|
|
|
$classes = array_filter($this->config()->get('block_generators') ?? [], function ($callable, $class) {
|
|
|
|
return class_exists($class ?? '');
|
2020-11-03 05:48:30 +01:00
|
|
|
}, ARRAY_FILTER_USE_BOTH);
|
|
|
|
|
|
|
|
// Generate a random amount of blocks in the preferred range
|
|
|
|
$range = $this->blockCountRange;
|
|
|
|
foreach(range($range[0], array_rand(range($range[0], $range[1]))) as $i) {
|
2022-04-13 00:31:07 +02:00
|
|
|
$class = array_rand($classes ?? []);
|
2020-11-03 05:48:30 +01:00
|
|
|
$callable = $classes[$class];
|
2021-05-03 03:30:25 +02:00
|
|
|
$block = call_user_func($callable, $page);
|
2020-11-03 05:48:30 +01:00
|
|
|
|
|
|
|
// Add block to page
|
|
|
|
$page->ElementalArea()->Elements()->add($block);
|
|
|
|
|
|
|
|
// 50% chance of block being published
|
|
|
|
if (rand(0,1) === 0) {
|
|
|
|
$block->publishRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
echo sprintf(" Added '%s' block #%d to page #%d\n", $class, $block->ID, $page->ID);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-03 03:30:25 +02:00
|
|
|
/**
|
|
|
|
* @param SiteTree&ElementalPageExtension|null $page
|
|
|
|
* @return ElementContent
|
|
|
|
* @throws \SilverStripe\ORM\ValidationException
|
|
|
|
*/
|
|
|
|
public static function generateContentBlock(?SiteTree $page = null)
|
2020-11-03 05:48:30 +01:00
|
|
|
{
|
2021-05-03 03:30:25 +02:00
|
|
|
$count = $page ? $page->ElementalArea()->Elements()->count() : '';
|
|
|
|
$content = $page ? "Page {$page->Title}" : "Page";
|
2020-11-03 05:48:30 +01:00
|
|
|
$block = new ElementContent([
|
2021-05-03 03:30:25 +02:00
|
|
|
'Title' => sprintf('Block #%s (Content Block)', $count),
|
|
|
|
'ShowTitle' => rand(0,1) === 1,
|
|
|
|
'HTML' => sprintf('Content block for <bold>%s</bold>', $content),
|
2020-11-03 05:48:30 +01:00
|
|
|
]);
|
|
|
|
$block->write();
|
|
|
|
|
|
|
|
return $block;
|
|
|
|
}
|
|
|
|
|
2021-05-03 03:30:25 +02:00
|
|
|
/**
|
|
|
|
* @param SiteTree&ElementalPageExtension|null $page
|
|
|
|
* @return FileBlock
|
|
|
|
* @throws \SilverStripe\ORM\ValidationException
|
|
|
|
*/
|
|
|
|
public static function generateFileBlock(?SiteTree $page = null): FileBlock
|
2020-11-03 05:48:30 +01:00
|
|
|
{
|
2021-05-03 03:30:25 +02:00
|
|
|
$count = $page ? $page->ElementalArea()->Elements()->count() : '';
|
|
|
|
|
2020-11-03 05:48:30 +01:00
|
|
|
// Supports both images and files
|
|
|
|
$file = File::get()->shuffle()->First();
|
|
|
|
if (!$file) {
|
|
|
|
throw new \LogicException('No files found to associate with FileBlock');
|
|
|
|
}
|
|
|
|
|
2021-05-03 03:30:25 +02:00
|
|
|
$block = new FileBlock([
|
|
|
|
'Title' => sprintf('Block #%s (File Block)', $count),
|
|
|
|
'ShowTitle' => rand(0,1) === 1,
|
|
|
|
]);
|
2020-11-03 05:48:30 +01:00
|
|
|
$block->FileID = $file->ID;
|
|
|
|
$block->write();
|
|
|
|
|
|
|
|
return $block;
|
|
|
|
}
|
|
|
|
|
2021-05-03 03:30:25 +02:00
|
|
|
/**
|
|
|
|
* @param SiteTree&ElementalPageExtension|null $page
|
|
|
|
* @return BannerBlock
|
|
|
|
* @throws \SilverStripe\ORM\ValidationException
|
|
|
|
*/
|
|
|
|
public static function generateBannerBlock(?SiteTree $page = null): BannerBlock
|
2020-11-03 05:48:30 +01:00
|
|
|
{
|
2021-05-03 03:30:25 +02:00
|
|
|
$count = $page ? $page->ElementalArea()->Elements()->count() : '';
|
|
|
|
$content = $page ? "Page {$page->Title}" : "Page";
|
|
|
|
|
2020-11-03 05:48:30 +01:00
|
|
|
$block = new BannerBlock([
|
2021-05-03 03:30:25 +02:00
|
|
|
'Title' => sprintf('Block #%s (Banner Block)', $count),
|
|
|
|
'ShowTitle' => rand(0,1) === 1,
|
|
|
|
'Content' => sprintf('Banner block for <bold>%s</bold>', $content),
|
|
|
|
'CallToActionLink' => json_encode([
|
|
|
|
'PageID' => SiteTree::get()->shuffle()->first()->ID,
|
|
|
|
'Text' => sprintf('Link for page %s', $page->Title),
|
|
|
|
]),
|
2020-11-03 05:48:30 +01:00
|
|
|
]);
|
|
|
|
$block->write();
|
|
|
|
|
|
|
|
return $block;
|
|
|
|
}
|
|
|
|
|
2015-12-17 21:20:49 +01:00
|
|
|
}
|