-
-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ffa09c
commit abedb6a
Showing
16 changed files
with
2,067 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of the package bk2k/bootstrap-package. | ||
* | ||
* For the full copyright and license information, please read the | ||
* LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
namespace BK2K\BootstrapPackage\Command; | ||
|
||
use BK2K\BootstrapPackage\SiteCreator\Service\SiteCreatorService; | ||
use Symfony\Component\Console\Command\Command; | ||
use Symfony\Component\Console\Input\InputInterface; | ||
use Symfony\Component\Console\Output\OutputInterface; | ||
use TYPO3\CMS\Core\Core\Bootstrap; | ||
|
||
class CreateSiteCommand extends Command | ||
{ | ||
protected SiteCreatorService $siteCreatorService; | ||
|
||
public function __construct( | ||
SiteCreatorService $siteCreatorService, | ||
string $name = null | ||
) { | ||
$this->siteCreatorService = $siteCreatorService; | ||
parent::__construct($name); | ||
} | ||
|
||
protected function execute(InputInterface $input, OutputInterface $output): int | ||
{ | ||
Bootstrap::initializeBackendAuthentication(); | ||
Bootstrap::initializeLanguageObject(); | ||
|
||
$this->siteCreatorService->createSiteSetup(); | ||
|
||
return 0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
<?php | ||
declare(strict_types = 1); | ||
|
||
/* | ||
* This file is part of the package bk2k/bootstrap-package. | ||
* | ||
* For the full copyright and license information, please read the | ||
* LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
namespace BK2K\BootstrapPackage\SiteCreator\Dto; | ||
|
||
/** | ||
* AbstractEntity | ||
*/ | ||
abstract class AbstractEntity | ||
{ | ||
protected string $table; | ||
protected ?string $parentStorage = null; | ||
|
||
public string $id; | ||
public ?Page $parent = null; | ||
public array $parameterBag = []; | ||
|
||
public function __construct(string $id = null) | ||
{ | ||
if (!isset($this->table)) { | ||
throw new \RuntimeException('Extending Entity needs to set $table.', 1622491079); | ||
} | ||
$this->id = $id ?? uniqid('NEW_CONTENT'); | ||
} | ||
|
||
public function toDataHandler(): array | ||
{ | ||
if ($this->parent !== null) { | ||
$this->parameterBag['pid'] = $this->parent->id; | ||
if ($this->parentStorage !== null) { | ||
$key = array_search($this, $this->parent->{$this->parentStorage}, true); | ||
if ($key !== 0) { | ||
$this->parameterBag['pid'] = '-' . $this->parent->{$this->parentStorage}[((int) $key - 1)]->id; | ||
} | ||
} | ||
} else { | ||
$this->parameterBag['pid'] = 0; | ||
} | ||
|
||
$relations = $this->getDataHandlerRelations(); | ||
|
||
$data = []; | ||
$data[$this->table][$this->id] = $this->parameterBag; | ||
|
||
return array_merge_recursive($data, $relations); | ||
} | ||
|
||
protected function getDataHandlerRelations(): array | ||
{ | ||
$relations = []; | ||
|
||
foreach ($this->parameterBag as $parameter => $parameterValue) { | ||
if (!isset($GLOBALS['TCA'][$this->table]['columns'][$parameter])) { | ||
continue; | ||
} | ||
$fieldConfig = $GLOBALS['TCA'][$this->table]['columns'][$parameter]['config']; | ||
if ($fieldConfig['type'] === 'inline') { | ||
$foreignTable = $fieldConfig['foreign_table']; | ||
$foreignField = $fieldConfig['foreign_field']; | ||
$recordUids = []; | ||
foreach ($parameterValue as $record => $recordData) { | ||
$recordId = $recordData['id'] ?? uniqid('NEW_RECORD'); | ||
$recordUids[] = $recordId; | ||
unset($recordData['id']); | ||
if (!strpos($this->parameterBag['pid'], '-') === 0) { | ||
$recordData['pid'] = $this->parameterBag['pid']; | ||
} else { | ||
$recordData['pid'] = $this->parent->id; | ||
} | ||
$recordData[$foreignField] = $this->id; | ||
$relations[$foreignTable][$recordId] = $recordData; | ||
} | ||
$this->parameterBag[$parameter] = implode(',', $recordUids); | ||
} | ||
} | ||
|
||
return $relations; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
declare(strict_types = 1); | ||
|
||
/* | ||
* This file is part of the package bk2k/bootstrap-package. | ||
* | ||
* For the full copyright and license information, please read the | ||
* LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
namespace BK2K\BootstrapPackage\SiteCreator\Dto; | ||
|
||
/** | ||
* ContentBlock | ||
*/ | ||
class ContentBlock extends AbstractEntity | ||
{ | ||
protected string $table = 'tt_content'; | ||
protected ?string $parentStorage = 'contentBlocks'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
declare(strict_types = 1); | ||
|
||
/* | ||
* This file is part of the package bk2k/bootstrap-package. | ||
* | ||
* For the full copyright and license information, please read the | ||
* LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
namespace BK2K\BootstrapPackage\SiteCreator\Dto; | ||
|
||
/** | ||
* Page | ||
*/ | ||
class Page extends AbstractEntity | ||
{ | ||
protected string $table = 'pages'; | ||
protected ?string $parentStorage = 'pages'; | ||
|
||
public array $pages = []; | ||
public array $templates = []; | ||
public array $contentBlocks = []; | ||
|
||
public function toDataHandler(): array | ||
{ | ||
$data = parent::toDataHandler(); | ||
|
||
foreach ($this->pages as $childPage) { | ||
$data = array_merge_recursive($data, $childPage->toDataHandler()); | ||
} | ||
foreach ($this->templates as $template) { | ||
$data = array_merge_recursive($data, $template->toDataHandler()); | ||
} | ||
foreach ($this->contentBlocks as $contentBlock) { | ||
$data = array_merge_recursive($data, $contentBlock->toDataHandler()); | ||
} | ||
|
||
return $data; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
declare(strict_types = 1); | ||
|
||
/* | ||
* This file is part of the package bk2k/bootstrap-package. | ||
* | ||
* For the full copyright and license information, please read the | ||
* LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
namespace BK2K\BootstrapPackage\SiteCreator\Dto; | ||
|
||
/** | ||
* Site | ||
*/ | ||
class Site | ||
{ | ||
public string $title; | ||
public string $description; | ||
public array $pages = []; | ||
|
||
public function toDataHandler(): array | ||
{ | ||
$data = []; | ||
foreach ($this->pages as $page) { | ||
$data = array_merge_recursive($data, $page->toDataHandler()); | ||
} | ||
|
||
return $data; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
declare(strict_types = 1); | ||
|
||
/* | ||
* This file is part of the package bk2k/bootstrap-package. | ||
* | ||
* For the full copyright and license information, please read the | ||
* LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
namespace BK2K\BootstrapPackage\SiteCreator\Dto; | ||
|
||
/** | ||
* Template | ||
*/ | ||
class Template extends AbstractEntity | ||
{ | ||
protected string $table = 'sys_template'; | ||
protected ?string $parentStorage = 'templates'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of the package bk2k/bootstrap-package. | ||
* | ||
* For the full copyright and license information, please read the | ||
* LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
namespace BK2K\BootstrapPackage\SiteCreator\Factory; | ||
|
||
use BK2K\BootstrapPackage\SiteCreator\Dto\ContentBlock; | ||
|
||
class ContentBlockFactory | ||
{ | ||
/** | ||
* @param array<string, mixed> $data | ||
*/ | ||
public static function fromArray(array $data): ContentBlock | ||
{ | ||
$contentBlock = new ContentBlock(); | ||
if (isset($data['id'])) { | ||
$contentBlock->id = $data['id']; | ||
unset($data['id']); | ||
} | ||
$contentBlock->parameterBag = $data; | ||
|
||
return $contentBlock; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of the package bk2k/bootstrap-package. | ||
* | ||
* For the full copyright and license information, please read the | ||
* LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
namespace BK2K\BootstrapPackage\SiteCreator\Factory; | ||
|
||
use BK2K\BootstrapPackage\SiteCreator\Dto\Page; | ||
|
||
class PageFactory | ||
{ | ||
/** | ||
* @param array<string, mixed> $data | ||
*/ | ||
public static function fromArray(array $data): Page | ||
{ | ||
$page = new Page(); | ||
|
||
if (isset($data['id'])) { | ||
$page->id = $data['id']; | ||
unset($data['id']); | ||
} | ||
|
||
if (isset($data['pages'])) { | ||
foreach ($data['pages'] as $childPageData) { | ||
$childPage = self::fromArray($childPageData); | ||
$childPage->parent = $page; | ||
$page->pages[] = $childPage; | ||
} | ||
unset($data['pages']); | ||
} | ||
|
||
if (isset($data['templates'])) { | ||
foreach ($data['templates'] as $templateData) { | ||
$template = TemplateFactory::fromArray($templateData); | ||
$template->parent = $page; | ||
$page->templates[] = $template; | ||
} | ||
unset($data['templates']); | ||
} | ||
|
||
if (isset($data['contentBlocks'])) { | ||
foreach ($data['contentBlocks'] as $contentBlockData) { | ||
$contentBlock = ContentBlockFactory::fromArray($contentBlockData); | ||
$contentBlock->parent = $page; | ||
$page->contentBlocks[] = $contentBlock; | ||
} | ||
unset($data['contentBlocks']); | ||
} | ||
|
||
if (!isset($data['hidden'])) { | ||
$data['hidden'] = 0; | ||
} | ||
|
||
$page->parameterBag = $data; | ||
|
||
return $page; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of the package bk2k/bootstrap-package. | ||
* | ||
* For the full copyright and license information, please read the | ||
* LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
namespace BK2K\BootstrapPackage\SiteCreator\Factory; | ||
|
||
use BK2K\BootstrapPackage\SiteCreator\Dto\Site; | ||
|
||
class SiteFactory | ||
{ | ||
/** | ||
* @param array<string, mixed> $data | ||
*/ | ||
public static function fromArray(array $data): Site | ||
{ | ||
$site = new Site(); | ||
$site->title = $data['title']; | ||
$site->description = $data['description']; | ||
foreach ($data['pages'] as $page) { | ||
$site->pages[] = PageFactory::fromArray($page); | ||
} | ||
|
||
return $site; | ||
} | ||
} |
Oops, something went wrong.