1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* @license LGPLv3, http://opensource.org/licenses/LGPL-3.0 |
5
|
|
|
* @copyright Aimeos (aimeos.org), 2017-2025 |
6
|
|
|
* @package Controller |
7
|
|
|
* @subpackage Frontend |
8
|
|
|
*/ |
9
|
|
|
|
10
|
|
|
|
11
|
|
|
namespace Aimeos\Controller\Frontend\Locale; |
12
|
|
|
|
13
|
|
|
|
14
|
|
|
/** |
15
|
|
|
* Default implementation of the locale frontend controller |
16
|
|
|
* |
17
|
|
|
* @package Controller |
18
|
|
|
* @subpackage Frontend |
19
|
|
|
*/ |
20
|
|
|
class Standard |
21
|
|
|
extends \Aimeos\Controller\Frontend\Base |
22
|
|
|
implements Iface, \Aimeos\Controller\Frontend\Common\Iface |
23
|
|
|
{ |
24
|
|
|
/** controller/frontend/locale/name |
25
|
|
|
* Class name of the used locale frontend controller implementation |
26
|
|
|
* |
27
|
|
|
* Each default frontend controller can be replace by an alternative imlementation. |
28
|
|
|
* To use this implementation, you have to set the last part of the class |
29
|
|
|
* name as configuration value so the controller factory knows which class it |
30
|
|
|
* has to instantiate. |
31
|
|
|
* |
32
|
|
|
* For example, if the name of the default class is |
33
|
|
|
* |
34
|
|
|
* \Aimeos\Controller\Frontend\Locale\Standard |
35
|
|
|
* |
36
|
|
|
* and you want to replace it with your own version named |
37
|
|
|
* |
38
|
|
|
* \Aimeos\Controller\Frontend\Locale\Mylocale |
39
|
|
|
* |
40
|
|
|
* then you have to set the this configuration option: |
41
|
|
|
* |
42
|
|
|
* controller/jobs/frontend/locale/name = Mylocale |
43
|
|
|
* |
44
|
|
|
* The value is the last part of your own class name and it's case sensitive, |
45
|
|
|
* so take care that the configuration value is exactly named like the last |
46
|
|
|
* part of the class name. |
47
|
|
|
* |
48
|
|
|
* The allowed characters of the class name are A-Z, a-z and 0-9. No other |
49
|
|
|
* characters are possible! You should always start the last part of the class |
50
|
|
|
* name with an upper case character and continue only with lower case characters |
51
|
|
|
* or numbers. Avoid chamel case names like "MyLocale"! |
52
|
|
|
* |
53
|
|
|
* @param string Last part of the class name |
54
|
|
|
* @since 2014.03 |
55
|
|
|
* @category Developer |
56
|
|
|
*/ |
57
|
|
|
|
58
|
|
|
/** controller/frontend/locale/decorators/excludes |
59
|
|
|
* Excludes decorators added by the "common" option from the locale frontend controllers |
60
|
|
|
* |
61
|
|
|
* Decorators extend the functionality of a class by adding new aspects |
62
|
|
|
* (e.g. log what is currently done), executing the methods of the underlying |
63
|
|
|
* class only in certain conditions (e.g. only for logged in users) or |
64
|
|
|
* modify what is returned to the caller. |
65
|
|
|
* |
66
|
|
|
* This option allows you to remove a decorator added via |
67
|
|
|
* "controller/frontend/common/decorators/default" before they are wrapped |
68
|
|
|
* around the frontend controller. |
69
|
|
|
* |
70
|
|
|
* controller/frontend/locale/decorators/excludes = array( 'decorator1' ) |
71
|
|
|
* |
72
|
|
|
* This would remove the decorator named "decorator1" from the list of |
73
|
|
|
* common decorators ("\Aimeos\Controller\Frontend\Common\Decorator\*") added via |
74
|
|
|
* "controller/frontend/common/decorators/default" for the locale frontend controller. |
75
|
|
|
* |
76
|
|
|
* @param array List of decorator names |
77
|
|
|
* @since 2014.03 |
78
|
|
|
* @category Developer |
79
|
|
|
* @see controller/frontend/common/decorators/default |
80
|
|
|
* @see controller/frontend/locale/decorators/global |
81
|
|
|
* @see controller/frontend/locale/decorators/local |
82
|
|
|
*/ |
83
|
|
|
|
84
|
|
|
/** controller/frontend/locale/decorators/global |
85
|
|
|
* Adds a list of globally available decorators only to the locale frontend controllers |
86
|
|
|
* |
87
|
|
|
* Decorators extend the functionality of a class by adding new aspects |
88
|
|
|
* (e.g. log what is currently done), executing the methods of the underlying |
89
|
|
|
* class only in certain conditions (e.g. only for logged in users) or |
90
|
|
|
* modify what is returned to the caller. |
91
|
|
|
* |
92
|
|
|
* This option allows you to wrap global decorators |
93
|
|
|
* ("\Aimeos\Controller\Frontend\Common\Decorator\*") around the frontend controller. |
94
|
|
|
* |
95
|
|
|
* controller/frontend/locale/decorators/global = array( 'decorator1' ) |
96
|
|
|
* |
97
|
|
|
* This would add the decorator named "decorator1" defined by |
98
|
|
|
* "\Aimeos\Controller\Frontend\Common\Decorator\Decorator1" only to the frontend controller. |
99
|
|
|
* |
100
|
|
|
* @param array List of decorator names |
101
|
|
|
* @since 2014.03 |
102
|
|
|
* @category Developer |
103
|
|
|
* @see controller/frontend/common/decorators/default |
104
|
|
|
* @see controller/frontend/locale/decorators/excludes |
105
|
|
|
* @see controller/frontend/locale/decorators/local |
106
|
|
|
*/ |
107
|
|
|
|
108
|
|
|
/** controller/frontend/locale/decorators/local |
109
|
|
|
* Adds a list of local decorators only to the locale frontend controllers |
110
|
|
|
* |
111
|
|
|
* Decorators extend the functionality of a class by adding new aspects |
112
|
|
|
* (e.g. log what is currently done), executing the methods of the underlying |
113
|
|
|
* class only in certain conditions (e.g. only for logged in users) or |
114
|
|
|
* modify what is returned to the caller. |
115
|
|
|
* |
116
|
|
|
* This option allows you to wrap local decorators |
117
|
|
|
* ("\Aimeos\Controller\Frontend\Locale\Decorator\*") around the frontend controller. |
118
|
|
|
* |
119
|
|
|
* controller/frontend/locale/decorators/local = array( 'decorator2' ) |
120
|
|
|
* |
121
|
|
|
* This would add the decorator named "decorator2" defined by |
122
|
|
|
* "\Aimeos\Controller\Frontend\Locale\Decorator\Decorator2" only to the frontend |
123
|
|
|
* controller. |
124
|
|
|
* |
125
|
|
|
* @param array List of decorator names |
126
|
|
|
* @since 2014.03 |
127
|
|
|
* @category Developer |
128
|
|
|
* @see controller/frontend/common/decorators/default |
129
|
|
|
* @see controller/frontend/locale/decorators/excludes |
130
|
|
|
* @see controller/frontend/locale/decorators/global |
131
|
|
|
*/ |
132
|
|
|
|
133
|
|
|
|
134
|
|
|
private \Aimeos\Base\Criteria\Iface $filter; |
135
|
|
|
private \Aimeos\MShop\Common\Manager\Iface $manager; |
136
|
|
|
|
137
|
|
|
|
138
|
|
|
/** |
139
|
|
|
* Common initialization for controller classes |
140
|
|
|
* |
141
|
|
|
* @param \Aimeos\MShop\ContextIface $context Common MShop context object |
142
|
|
|
*/ |
143
|
|
|
public function __construct( \Aimeos\MShop\ContextIface $context ) |
144
|
|
|
{ |
145
|
|
|
parent::__construct( $context ); |
146
|
|
|
|
147
|
|
|
$this->manager = \Aimeos\MShop::create( $context, 'locale' ); |
148
|
|
|
$this->filter = $this->manager->filter( true ); |
149
|
|
|
|
150
|
|
|
$this->addExpression( $this->filter->compare( '==', 'locale.siteid', $context->locale()->getSitePath() ) ); |
151
|
|
|
} |
152
|
|
|
|
153
|
|
|
|
154
|
|
|
/** |
155
|
|
|
* Clones objects in controller |
156
|
|
|
*/ |
157
|
|
|
public function __clone() |
158
|
|
|
{ |
159
|
|
|
$this->filter = clone $this->filter; |
160
|
|
|
parent::__clone(); |
161
|
|
|
} |
162
|
|
|
|
163
|
|
|
|
164
|
|
|
/** |
165
|
|
|
* Adds generic condition for filtering |
166
|
|
|
* |
167
|
|
|
* @param string $operator Comparison operator, e.g. "==", "!=", "<", "<=", ">=", ">", "=~", "~=" |
168
|
|
|
* @param string $key Search key defined by the locale manager, e.g. "locale.status" |
169
|
|
|
* @param array|string $value Value or list of values to compare to |
170
|
|
|
* @return \Aimeos\Controller\Frontend\Locale\Iface Locale controller for fluent interface |
171
|
|
|
* @since 2019.04 |
172
|
|
|
*/ |
173
|
|
|
public function compare( string $operator, string $key, $value ) : Iface |
174
|
|
|
{ |
175
|
|
|
$this->addExpression( $this->filter->compare( $operator, $key, $value ) ); |
176
|
|
|
return $this; |
177
|
|
|
} |
178
|
|
|
|
179
|
|
|
|
180
|
|
|
/** |
181
|
|
|
* Returns the locale for the given locale ID |
182
|
|
|
* |
183
|
|
|
* @param string $id Unique locale ID |
184
|
|
|
* @return \Aimeos\MShop\Locale\Item\Iface Locale item including the referenced domains items |
185
|
|
|
* @since 2019.04 |
186
|
|
|
*/ |
187
|
|
|
public function get( string $id ) : \Aimeos\MShop\Locale\Item\Iface |
188
|
|
|
{ |
189
|
|
|
return $this->manager->get( $id, [], null ); |
190
|
|
|
} |
191
|
|
|
|
192
|
|
|
|
193
|
|
|
/** |
194
|
|
|
* Parses the given array and adds the conditions to the list of conditions |
195
|
|
|
* |
196
|
|
|
* @param array $conditions List of conditions, e.g. ['>' => ['locale.languageid' => 'de']] |
197
|
|
|
* @return \Aimeos\Controller\Frontend\Locale\Iface Locale controller for fluent interface |
198
|
|
|
* @since 2019.04 |
199
|
|
|
*/ |
200
|
|
|
public function parse( array $conditions ) : Iface |
201
|
|
|
{ |
202
|
|
|
if( ( $cond = $this->filter->parse( $conditions ) ) !== null ) { |
203
|
|
|
$this->addExpression( $cond ); |
204
|
|
|
} |
205
|
|
|
|
206
|
|
|
return $this; |
207
|
|
|
} |
208
|
|
|
|
209
|
|
|
|
210
|
|
|
/** |
211
|
|
|
* Returns the locales filtered by the previously assigned conditions |
212
|
|
|
* |
213
|
|
|
* @param int|null &$total Parameter where the total number of found locales will be stored in |
214
|
|
|
* @return \Aimeos\Map Ordered list of locale items implementing \Aimeos\MShop\Locale\Item\Iface |
215
|
|
|
* @since 2019.04 |
216
|
|
|
*/ |
217
|
|
|
public function search( ?int &$total = null ) : \Aimeos\Map |
218
|
|
|
{ |
219
|
|
|
$filter = clone $this->filter; |
220
|
|
|
|
221
|
|
|
$this->addExpression( $filter->getConditions() ); |
222
|
|
|
|
223
|
|
|
$filter->add( $filter->and( $this->getConditions() ) ); |
224
|
|
|
$filter->setSortations( $this->getSortations() ); |
225
|
|
|
|
226
|
|
|
return $this->manager->search( $filter, [], $total ); |
227
|
|
|
} |
228
|
|
|
|
229
|
|
|
|
230
|
|
|
/** |
231
|
|
|
* Sets the start value and the number of returned locale items for slicing the list of found locale items |
232
|
|
|
* |
233
|
|
|
* @param int $start Start value of the first locale item in the list |
234
|
|
|
* @param int $limit Number of returned locale items |
235
|
|
|
* @return \Aimeos\Controller\Frontend\Locale\Iface Locale controller for fluent interface |
236
|
|
|
* @since 2019.04 |
237
|
|
|
*/ |
238
|
|
|
public function slice( int $start, int $limit ) : Iface |
239
|
|
|
{ |
240
|
|
|
$maxsize = $this->context()->config()->get( 'controller/frontend/common/max-size', 500 ); |
241
|
|
|
$this->filter->slice( $start, min( $limit, $maxsize ) ); |
242
|
|
|
return $this; |
243
|
|
|
} |
244
|
|
|
|
245
|
|
|
|
246
|
|
|
/** |
247
|
|
|
* Sets the sorting of the result list |
248
|
|
|
* |
249
|
|
|
* @param string|null $key Sorting key of the result list like "position", null for no sorting |
250
|
|
|
* @return \Aimeos\Controller\Frontend\Locale\Iface Locale controller for fluent interface |
251
|
|
|
* @since 2019.04 |
252
|
|
|
*/ |
253
|
|
|
public function sort( ?string $key = null ) : Iface |
254
|
|
|
{ |
255
|
|
|
$list = $this->splitKeys( $key ); |
256
|
|
|
|
257
|
|
|
foreach( $list as $sortkey ) |
258
|
|
|
{ |
259
|
|
|
$direction = ( $sortkey[0] === '-' ? '-' : '+' ); |
260
|
|
|
$sortkey = ltrim( $sortkey, '+-' ); |
261
|
|
|
|
262
|
|
|
switch( $sortkey ) |
263
|
|
|
{ |
264
|
|
|
case 'position': |
265
|
|
|
$this->addExpression( $this->filter->sort( $direction, 'locale.position' ) ); |
266
|
|
|
break; |
267
|
|
|
default: |
268
|
|
|
$this->addExpression( $this->filter->sort( $direction, $sortkey ) ); |
269
|
|
|
} |
270
|
|
|
} |
271
|
|
|
|
272
|
|
|
return $this; |
273
|
|
|
} |
274
|
|
|
|
275
|
|
|
|
276
|
|
|
/** |
277
|
|
|
* Returns the manager used by the controller |
278
|
|
|
* |
279
|
|
|
* @return \Aimeos\MShop\Common\Manager\Iface Manager object |
280
|
|
|
*/ |
281
|
|
|
protected function getManager() : \Aimeos\MShop\Common\Manager\Iface |
282
|
|
|
{ |
283
|
|
|
return $this->manager; |
284
|
|
|
} |
285
|
|
|
} |
286
|
|
|
|