This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
class.ext_update.php
104 lines (92 loc) · 2.92 KB
/
class.ext_update.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?php
/*
* Copyright notice
*
* (c) 2017 Henning Gerhardt
*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 3
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
use TYPO3\CMS\Extbase\Object\ObjectManager;
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;
use TYPO3\CMS\Extensionmanager\Utility\InstallUtility;
use TYPO3\CMS\Install\Service\SqlSchemaMigrationService;
/**
* Class for updating Evecorp data
*
*/
class ext_update
{
/**
* Name of the extension this controller belongs to
*
* @var string
*/
protected $extensionName = 'evecorp';
/**
* Extbase Object Manager
*
* @var \TYPO3\CMS\Extbase\Object\ObjectManager
*/
protected $objectManager;
/**
* Extension Manager Install Tool
*
* @var \TYPO3\CMS\Extensionmanager\Utility\InstallUtility
*/
protected $installTool;
/**
* Imports a static tables SQL File (ext_tables_static+adt)
*
* @param string $extensionSitePath
* @return void
*/
protected function importStaticSqlFile($extensionSitePath)
{
$extTablesStaticSqlFile = $extensionSitePath . 'ext_tables_static+adt.sql';
$extTablesStaticSqlContent = '';
if (file_exists($extTablesStaticSqlFile)) {
$extTablesStaticSqlContent .= GeneralUtility::getUrl($extTablesStaticSqlFile);
}
if ($extTablesStaticSqlContent !== '') {
$this->installTool->importStaticSql($extTablesStaticSqlContent);
}
}
/**
* Stub function for the extension manager
*
* @return \boolean true to allow access
*/
public function access()
{
return \TRUE;
}
/**
* Update table structure and import static data
*
* @return \string
*/
public function main()
{
$content = '';
$this->objectManager = GeneralUtility::makeInstance(ObjectManager::class);
$this->installTool = $this->objectManager->get(InstallUtility::class);
$installToolSqlParser = GeneralUtility::makeInstance(SqlSchemaMigrationService::class);
$this->installTool->injectInstallToolSqlParser($installToolSqlParser);
// Process the database updates of this base extension
// (we want to re-process these updates every time the update script is invoked)
$extensionSitePath = ExtensionManagementUtility::extPath(GeneralUtility::camelCaseToLowerCaseUnderscored($this->extensionName));
$content .= '<p>Updating tables for evecorp extension</p>';
$this->importStaticSqlFile($extensionSitePath);
return $content;
}
}