-
Notifications
You must be signed in to change notification settings - Fork 118
/
Setup.php
244 lines (191 loc) · 6.23 KB
/
Setup.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<?php
/**
* @license LGPLv3, https://opensource.org/licenses/LGPL-3.0
* @copyright Aimeos (aimeos.org), 2021
*/
namespace Aimeos;
/**
* Setup Aimeos data structures and storeages
*/
class Setup
{
private $bootstrap;
private $context;
private $config;
private $verbose;
/**
* Initializes the Aimeos setup object
*
* @param Bootstrap $bootstrap Aimeos bootstrap object
* @param array $config Associative list of config keys and values
*/
public function __construct( Bootstrap $bootstrap, array $config = [] )
{
$this->bootstrap = $bootstrap;
$this->config = $config;
$this->macros();
}
/**
* Creates a new initialized setup object
*
* @param Bootstrap $bootstrap Aimeos bootstrap object
* @param array $config Associative list of config keys and values
* @return self Aimeos setup object
*/
public static function use( Bootstrap $bootstrap, array $config = [] ) : self
{
return new static( $bootstrap, $config );
}
/**
* Sets a custom context object
*
* @param \Aimeos\MShop\ContextIface $context Context object
* @return self Same object for fluid method calls
*/
public function context( \Aimeos\MShop\ContextIface $context ) : self
{
$this->context = $context;
return $this;
}
/**
* Performs the migrations
*
* @param string $site Site code to execute the migrations for
* @param string $template Name of the migration template
*/
public function up( string $site = 'default', string $template = 'default' )
{
$ctx = ( $this->context ?? $this->createContext() )->setEditor( 'setup' );
\Aimeos\Upscheme\Task\Base::macro( 'context', function() use ( $ctx ) {
return $ctx;
} );
$config = $ctx->config();
$config->set( 'setup/site', $site );
$dbconf = $this->getDBConfig( $config );
$taskPaths = $this->bootstrap->getSetupPaths( $template );
\Aimeos\Upscheme\Up::use( $dbconf, $taskPaths )->verbose( $this->verbose )->up();
}
/**
* Sets the verbosity level
*
* @param mixed $level Verbosity level (empty: none, v: notice, vv: info, vvv: debug)
* @return self Same object for fluid method calls
*/
public function verbose( $level = 'v' ) : self
{
$this->verbose = $level;
return $this;
}
/**
* Returns a new context object
*
* @return \Aimeos\MShop\ContextIface New context object
*/
protected function createContext() : \Aimeos\MShop\ContextIface
{
$ctx = new \Aimeos\MShop\Context();
$conf = new \Aimeos\Base\Config\PHPArray( [], $this->bootstrap->getConfigPaths() );
foreach( $this->config as $key => $value ) {
$conf->set( $key, $value );
}
$conf = new \Aimeos\Base\Config\Decorator\Memory( $conf );
$ctx->setConfig( $conf );
$dbm = new \Aimeos\Base\DB\Manager\Standard( $conf->get( 'resource', [] ), 'DBAL' );
$ctx->setDatabaseManager( $dbm );
$fsm = new \Aimeos\Base\Filesystem\Manager\Standard( $conf->get( 'resource', [] ) );
$ctx->setFilesystemManager( $fsm );
$logger = new \Aimeos\Base\Logger\Errorlog( \Aimeos\Base\Logger\Iface::INFO );
$ctx->setLogger( $logger );
$password = new \Aimeos\Base\Password\Standard();
$ctx->setPassword( $password );
$session = new \Aimeos\Base\Session\None();
$ctx->setSession( $session );
$cache = new \Aimeos\Base\Cache\None();
$ctx->setCache( $cache );
$process = new \Aimeos\Base\Process\Pcntl( $conf->get( 'pcntl_max', 4 ), $conf->get( 'pcntl_priority', 19 ) );
$process = new \Aimeos\Base\Process\Decorator\Check( $process );
$ctx->setProcess( $process );
return $ctx;
}
/**
* Returns the database configuration
*
* @param \Aimeos\Base\Config\Iface $conf Configuration object
* @return array Database configuration
*/
protected function getDBConfig( \Aimeos\Base\Config\Iface $conf ) : array
{
$dbconfig = $conf->get( 'resource', [] );
foreach( $dbconfig as $rname => $entry )
{
if( strncmp( $rname, 'db', 2 ) !== 0 ) {
unset( $dbconfig[$rname] );
}
}
return $dbconfig;
}
/**
* Adds the required marcos to the Upscheme objects
*/
protected function macros()
{
\Aimeos\Upscheme\Up::macro( 'connect', function( array $cfg ) {
switch( $cfg['adapter'] )
{
case 'mysql': $cfg['driver'] = 'pdo_mysql'; break;
case 'oracle': $cfg['driver'] = 'pdo_oci'; break;
case 'pgsql': $cfg['driver'] = 'pdo_pgsql'; break;
case 'sqlsrv': $cfg['driver'] = 'pdo_sqlsrv'; break;
default: $cfg['driver'] = $cfg['adapter'];
}
if( isset( $cfg['database'] ) ) {
$cfg['dbname'] = $cfg['database'];
}
if( isset( $cfg['username'] ) ) {
$cfg['user'] = $cfg['username'];
}
unset( $cfg['adapter'], $cfg['database'], $cfg['username'] );
return \Doctrine\DBAL\DriverManager::getConnection( $cfg );
} );
$codelen = $this->config['codelength'] ?? 64;
\Aimeos\Upscheme\Schema\Table::macro( 'startend', function() {
$this->datetime( 'start' )->null( true );
return $this->datetime( 'end' )->null( true );
} );
\Aimeos\Upscheme\Schema\Table::macro( 'code', function( string $name = 'code' ) use ( $codelen ) {
return $this->string( $name, $codelen )
->opt( 'charset', 'utf8mb4', 'mysql' )
->opt( 'collation', 'utf8mb4_bin', 'mysql' )
->default( '' );
} );
\Aimeos\Upscheme\Schema\Table::macro( 'config', function( string $name = 'config' ) {
return $this->text( $name )
->opt( 'charset', 'utf8mb4', 'mysql' )
->opt( 'collation', 'utf8mb4_general_ci', 'mysql' )
->null( true );
} );
\Aimeos\Upscheme\Schema\Table::macro( 'type', function( string $name = 'type' ) use ( $codelen ) {
return $this->string( $name, $codelen )
->opt( 'charset', 'utf8mb4', 'mysql' )
->opt( 'collation', 'utf8mb4_bin', 'mysql' )
->default( '' );
} );
\Aimeos\Upscheme\Schema\Table::macro( 'refid', function( string $name = 'refid' ) {
return $this->string( $name, 36 )
->opt( 'charset', 'utf8mb4', 'mysql' )
->opt( 'collation', 'utf8mb4_bin', 'mysql' )
->default( '' );
} );
\Aimeos\Upscheme\Schema\Table::macro( 'i18n', function( string $name = 'i18n' ) {
return $this->text( $name )
->opt( 'charset', 'utf8mb4', 'mysql' )
->opt( 'collation', 'utf8mb4_bin', 'mysql' )
->null( true );
} );
\Aimeos\Upscheme\Schema\Table::macro( 'meta', function() {
$this->datetime( 'mtime' );
$this->datetime( 'ctime' );
return $this->string( 'editor' );
} );
}
}