Standard::fromArray()   B
last analyzed

Complexity

Conditions 8
Paths 5

Size

Total Lines 37
Code Lines 19

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 8
eloc 19
nc 5
nop 2
dl 0
loc 37
rs 8.4444
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
5
 * @copyright Aimeos (aimeos.org), 2017-2025
6
 * @package Admin
7
 * @subpackage JQAdm
8
 */
9
10
11
namespace Aimeos\Admin\JQAdm\Attribute\Text;
12
13
sprintf( 'text' ); // for translation
14
15
16
/**
17
 * Default implementation of attribute text JQAdm client.
18
 *
19
 * @package Admin
20
 * @subpackage JQAdm
21
 */
22
class Standard
23
	extends \Aimeos\Admin\JQAdm\Common\Admin\Factory\Base
24
	implements \Aimeos\Admin\JQAdm\Common\Admin\Factory\Iface
25
{
26
	/** admin/jqadm/attribute/text/name
27
	 * Name of the text subpart used by the JQAdm attribute implementation
28
	 *
29
	 * Use "Myname" if your class is named "\Aimeos\Admin\Jqadm\Attribute\Text\Myname".
30
	 * The name is case-sensitive and you should avoid camel case names like "MyName".
31
	 *
32
	 * @param string Last part of the JQAdm class name
33
	 * @since 2017.07
34
	 */
35
36
37
	/**
38
	 * Copies a resource
39
	 *
40
	 * @return string|null HTML output
41
	 */
42
	public function copy() : ?string
43
	{
44
		$view = $this->object()->data( $this->view() );
45
		$view->textData = $this->toArray( $view->item, true );
46
		$view->textBody = parent::copy();
47
48
		return $this->render( $view );
49
	}
50
51
52
	/**
53
	 * Creates a new resource
54
	 *
55
	 * @return string|null HTML output
56
	 */
57
	public function create() : ?string
58
	{
59
		$view = $this->object()->data( $this->view() );
60
		$siteid = $this->context()->locale()->getSiteId();
61
		$data = $view->param( 'text', [] );
62
63
		foreach( $data as $idx => $entry )
64
		{
65
			$data[$idx]['attribute.lists.siteid'] = $siteid;
66
			$data[$idx]['text.siteid'] = $siteid;
67
		}
68
69
		$view->textData = $data;
70
		$view->textBody = parent::create();
71
72
		return $this->render( $view );
73
	}
74
75
76
	/**
77
	 * Deletes a resource
78
	 *
79
	 * @return string|null HTML output
80
	 */
81
	public function delete() : ?string
82
	{
83
		parent::delete();
84
85
		$item = $this->view()->item;
86
		$item->deleteListItems( $item->getListItems( 'text', null, null, false ), true );
87
88
		return null;
89
	}
90
91
92
	/**
93
	 * Returns a single resource
94
	 *
95
	 * @return string|null HTML output
96
	 */
97
	public function get() : ?string
98
	{
99
		$view = $this->object()->data( $this->view() );
100
		$view->textData = $this->toArray( $view->item );
101
		$view->textBody = parent::get();
102
103
		return $this->render( $view );
104
	}
105
106
107
	/**
108
	 * Saves the data
109
	 *
110
	 * @return string|null HTML output
111
	 */
112
	public function save() : ?string
113
	{
114
		$view = $this->view();
115
116
		$view->item = $this->fromArray( $view->item, $view->param( 'text', [] ) );
117
		$view->textBody = parent::save();
118
119
		return null;
120
	}
121
122
123
	/**
124
	 * Returns the sub-client given by its name.
125
	 *
126
	 * @param string $type Name of the client type
127
	 * @param string|null $name Name of the sub-client (Default if null)
128
	 * @return \Aimeos\Admin\JQAdm\Iface Sub-client object
129
	 */
130
	public function getSubClient( string $type, ?string $name = null ) : \Aimeos\Admin\JQAdm\Iface
131
	{
132
		/** admin/jqadm/attribute/text/decorators/excludes
133
		 * Excludes decorators added by the "common" option from the attribute JQAdm client
134
		 *
135
		 * Decorators extend the functionality of a class by adding new aspects
136
		 * (e.g. log what is currently done), executing the methods of the underlying
137
		 * class only in certain conditions (e.g. only for logged in users) or
138
		 * modify what is returned to the caller.
139
		 *
140
		 * This option allows you to remove a decorator added via
141
		 * "admin/jqadm/common/decorators/default" before they are wrapped
142
		 * around the JQAdm client.
143
		 *
144
		 *  admin/jqadm/attribute/text/decorators/excludes = array( 'decorator1' )
145
		 *
146
		 * This would remove the decorator named "decorator1" from the list of
147
		 * common decorators ("\Aimeos\Admin\JQAdm\Common\Decorator\*") added via
148
		 * "admin/jqadm/common/decorators/default" to the JQAdm client.
149
		 *
150
		 * @param array List of decorator names
151
		 * @since 2017.07
152
		 * @see admin/jqadm/common/decorators/default
153
		 * @see admin/jqadm/attribute/text/decorators/global
154
		 * @see admin/jqadm/attribute/text/decorators/local
155
		 */
156
157
		/** admin/jqadm/attribute/text/decorators/global
158
		 * Adds a list of globally available decorators only to the attribute JQAdm client
159
		 *
160
		 * Decorators extend the functionality of a class by adding new aspects
161
		 * (e.g. log what is currently done), executing the methods of the underlying
162
		 * class only in certain conditions (e.g. only for logged in users) or
163
		 * modify what is returned to the caller.
164
		 *
165
		 * This option allows you to wrap global decorators
166
		 * ("\Aimeos\Admin\JQAdm\Common\Decorator\*") around the JQAdm client.
167
		 *
168
		 *  admin/jqadm/attribute/text/decorators/global = array( 'decorator1' )
169
		 *
170
		 * This would add the decorator named "decorator1" defined by
171
		 * "\Aimeos\Admin\JQAdm\Common\Decorator\Decorator1" only to the JQAdm client.
172
		 *
173
		 * @param array List of decorator names
174
		 * @since 2017.07
175
		 * @see admin/jqadm/common/decorators/default
176
		 * @see admin/jqadm/attribute/text/decorators/excludes
177
		 * @see admin/jqadm/attribute/text/decorators/local
178
		 */
179
180
		/** admin/jqadm/attribute/text/decorators/local
181
		 * Adds a list of local decorators only to the attribute JQAdm client
182
		 *
183
		 * Decorators extend the functionality of a class by adding new aspects
184
		 * (e.g. log what is currently done), executing the methods of the underlying
185
		 * class only in certain conditions (e.g. only for logged in users) or
186
		 * modify what is returned to the caller.
187
		 *
188
		 * This option allows you to wrap local decorators
189
		 * ("\Aimeos\Admin\JQAdm\Attribute\Decorator\*") around the JQAdm client.
190
		 *
191
		 *  admin/jqadm/attribute/text/decorators/local = array( 'decorator2' )
192
		 *
193
		 * This would add the decorator named "decorator2" defined by
194
		 * "\Aimeos\Admin\JQAdm\Attribute\Decorator\Decorator2" only to the JQAdm client.
195
		 *
196
		 * @param array List of decorator names
197
		 * @since 2017.07
198
		 * @see admin/jqadm/common/decorators/default
199
		 * @see admin/jqadm/attribute/text/decorators/excludes
200
		 * @see admin/jqadm/attribute/text/decorators/global
201
		 */
202
		return $this->createSubClient( 'attribute/text/' . $type, $name );
203
	}
204
205
206
	/**
207
	 * Returns the list of sub-client names configured for the client.
208
	 *
209
	 * @return array List of JQAdm client names
210
	 */
211
	protected function getSubClientNames() : array
212
	{
213
		/** admin/jqadm/attribute/text/subparts
214
		 * List of JQAdm sub-clients rendered within the attribute text section
215
		 *
216
		 * The output of the frontend is composed of the code generated by the JQAdm
217
		 * clients. Each JQAdm client can consist of serveral (or none) sub-clients
218
		 * that are responsible for rendering certain sub-parts of the output. The
219
		 * sub-clients can contain JQAdm clients themselves and therefore a
220
		 * hierarchical tree of JQAdm clients is composed. Each JQAdm client creates
221
		 * the output that is placed inside the container of its parent.
222
		 *
223
		 * At first, always the JQAdm code generated by the parent is printed, then
224
		 * the JQAdm code of its sub-clients. The order of the JQAdm sub-clients
225
		 * determines the order of the output of these sub-clients inside the parent
226
		 * container. If the configured list of clients is
227
		 *
228
		 *  array( "subclient1", "subclient2" )
229
		 *
230
		 * you can easily change the order of the output by reordering the subparts:
231
		 *
232
		 *  admin/jqadm/<clients>/subparts = array( "subclient1", "subclient2" )
233
		 *
234
		 * You can also remove one or more parts if they shouldn't be rendered:
235
		 *
236
		 *  admin/jqadm/<clients>/subparts = array( "subclient1" )
237
		 *
238
		 * As the clients only generates structural JQAdm, the layout defined via CSS
239
		 * should support adding, removing or reordering content by a fluid like
240
		 * design.
241
		 *
242
		 * @param array List of sub-client names
243
		 * @since 2017.07
244
		 */
245
		return $this->context()->config()->get( 'admin/jqadm/attribute/text/subparts', [] );
246
	}
247
248
249
	/**
250
	 * Adds the required data used in the text template
251
	 *
252
	 * @param \Aimeos\Base\View\Iface $view View object
253
	 * @return \Aimeos\Base\View\Iface View object with assigned parameters
254
	 */
255
	public function data( \Aimeos\Base\View\Iface $view ) : \Aimeos\Base\View\Iface
256
	{
257
		$context = $this->context();
258
259
		$textTypeManager = \Aimeos\MShop::create( $context, 'text/type' );
260
		$listTypeManager = \Aimeos\MShop::create( $context, 'attribute/lists/type' );
261
262
		$search = $textTypeManager->filter( true )->order( 'text.type.code' )->slice( 0, 10000 );
263
		$listSearch = $listTypeManager->filter( true )->order( 'attribute.lists.type.code' )->slice( 0, 10000 );
264
265
		$view->textTypes = $textTypeManager->search( $search );
266
		$view->textListTypes = $listTypeManager->search( $listSearch );
267
268
		return $view;
269
	}
270
271
272
	/**
273
	 * Creates new and updates existing items using the data array
274
	 *
275
	 * @param \Aimeos\MShop\Attribute\Item\Iface $item Attribute item object without referenced domain items
276
	 * @param array $data Data array
277
	 * @return \Aimeos\MShop\Attribute\Item\Iface Modified attribute item
278
	 */
279
	protected function fromArray( \Aimeos\MShop\Attribute\Item\Iface $item, array $data ) : \Aimeos\MShop\Attribute\Item\Iface
280
	{
281
		$context = $this->context();
282
283
		$textManager = \Aimeos\MShop::create( $context, 'text' );
284
		$manager = \Aimeos\MShop::create( $context, 'attribute' );
285
286
		$listItems = $item->getListItems( 'text', null, null, false );
287
288
289
		foreach( $data as $idx => $entry )
290
		{
291
			if( trim( $this->val( $entry, 'text.content', '' ) ) === '' ) {
292
				continue;
293
			}
294
295
			$id = $this->val( $entry, 'text.id', '' );
296
			$type = $this->val( $entry, 'attribute.lists.type', 'default' );
297
298
			$listItem = $item->getListItem( 'text', $type, $id, false ) ?: $manager->createListItem();
0 ignored issues
show
Bug introduced by
The method createListItem() does not exist on Aimeos\MShop\Common\Manager\Iface. Did you maybe mean create()? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

298
			$listItem = $item->getListItem( 'text', $type, $id, false ) ?: $manager->/** @scrutinizer ignore-call */ createListItem();

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
299
			$refItem = $listItem->getRefItem() ?: $textManager->create();
300
301
			$refItem->fromArray( $entry, true );
302
			$listItem->fromArray( $entry, true )->setPosition( $idx )->setConfig( [] );
303
304
			foreach( (array) $this->val( $entry, 'config', [] ) as $cfg )
305
			{
306
				if( ( $key = trim( $cfg['key'] ?? '' ) ) !== '' && ( $val = trim( $cfg['val'] ?? '' ) ) !== '' ) {
307
					$listItem->setConfigValue( $key, json_decode( $val, true ) ?? $val );
308
				}
309
			}
310
311
			$item->addListItem( 'text', $listItem, $refItem );
312
			unset( $listItems[$listItem->getId()] );
313
		}
314
315
		return $item->deleteListItems( $listItems, true );
316
	}
317
318
319
	/**
320
	 * Constructs the data array for the view from the given item
321
	 *
322
	 * @param \Aimeos\MShop\Attribute\Item\Iface $item Attribute item object including referenced domain items
323
	 * @param bool $copy True if items should be copied, false if not
324
	 * @return string[] Multi-dimensional associative list of item data
325
	 */
326
	protected function toArray( \Aimeos\MShop\Attribute\Item\Iface $item, bool $copy = false ) : array
327
	{
328
		$data = [];
329
		$siteId = $this->context()->locale()->getSiteId();
330
331
		foreach( $item->getListItems( 'text', null, null, false ) as $listItem )
332
		{
333
			if( ( $refItem = $listItem->getRefItem() ) === null ) {
334
				continue;
335
			}
336
337
			$list = $listItem->toArray( true ) + $refItem->toArray( true );
338
339
			if( $copy === true )
340
			{
341
				$list['attribute.lists.siteid'] = $siteId;
342
				$list['attribute.lists.id'] = '';
343
				$list['text.siteid'] = $siteId;
344
				$list['text.id'] = null;
345
			}
346
347
			$list['attribute.lists.datestart'] = str_replace( ' ', 'T', $list['attribute.lists.datestart'] ?? '' );
348
			$list['attribute.lists.dateend'] = str_replace( ' ', 'T', $list['attribute.lists.dateend'] ?? '' );
349
			$list['config'] = [];
350
351
			foreach( $listItem->getConfig() as $key => $value ) {
352
				$list['config'][] = ['key' => $key, 'val' => $value];
353
			}
354
355
			$data[] = $list;
356
		}
357
358
		return $data;
359
	}
360
361
362
	/**
363
	 * Returns the rendered template including the view data
364
	 *
365
	 * @param \Aimeos\Base\View\Iface $view View object with data assigned
366
	 * @return string HTML output
367
	 */
368
	protected function render( \Aimeos\Base\View\Iface $view ) : string
369
	{
370
		/** admin/jqadm/attribute/text/template-item
371
		 * Relative path to the HTML body template of the text subpart for attributes.
372
		 *
373
		 * The template file contains the HTML code and processing instructions
374
		 * to generate the result shown in the body of the frontend. The
375
		 * configuration string is the path to the template file relative
376
		 * to the templates directory (usually in templates/admin/jqadm).
377
		 *
378
		 * You can overwrite the template file configuration in extensions and
379
		 * provide alternative templates. These alternative templates should be
380
		 * named like the default one but with the string "default" replaced by
381
		 * an unique name. You may use the name of your project for this. If
382
		 * you've implemented an alternative client class as well, "default"
383
		 * should be replaced by the name of the new class.
384
		 *
385
		 * @param string Relative path to the template creating the HTML code
386
		 * @since 2016.04
387
		 */
388
		$tplconf = 'admin/jqadm/attribute/text/template-item';
389
		$default = 'attribute/item-text';
390
391
		return $view->render( $view->config( $tplconf, $default ) );
392
	}
393
}
394