Passed
Push — master ( 860717...a2ae62 )
by Aimeos
18:23
created

Standard::getSubClient()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 73
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 2
dl 0
loc 73
rs 10
c 0
b 0
f 0

How to fix   Long Method   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
3
/**
4
 * @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
5
 * @copyright Aimeos (aimeos.org), 2015-2023
6
 * @package Admin
7
 * @subpackage JQAdm
8
 */
9
10
11
namespace Aimeos\Admin\JQAdm\Product\Category;
12
13
sprintf( 'category' ); // for translation
14
15
16
/**
17
 * Default implementation of product category 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/product/category/name
27
	 * Name of the category subpart used by the JQAdm product implementation
28
	 *
29
	 * Use "Myname" if your class is named "\Aimeos\Admin\Jqadm\Product\Category\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 2016.04
34
	 */
35
36
37
	/**
38
	 * Adds the required data used in the template
39
	 *
40
	 * @param \Aimeos\Base\View\Iface $view View object
41
	 * @return \Aimeos\Base\View\Iface View object with assigned parameters
42
	 */
43
	public function data( \Aimeos\Base\View\Iface $view ) : \Aimeos\Base\View\Iface
44
	{
45
		$manager = \Aimeos\MShop::create( $this->context(), 'product/lists/type' );
46
		$filter = $manager->filter()->add( 'product.lists.type.domain', '==', 'catalog' )
47
			->order( 'product.lists.type.code' );
48
49
		$view->categoryTypes = $manager->search( $filter )->getCode();
50
		return $view;
51
	}
52
53
54
	/**
55
	 * Copies a resource
56
	 *
57
	 * @return string|null HTML output
58
	 */
59
	public function copy() : ?string
60
	{
61
		$view = $this->object()->data( $this->view() );
62
63
		$view->categoryData = $this->toArray( $view->item, true );
64
		$view->categoryBody = parent::copy();
65
66
		return $this->render( $view );
67
	}
68
69
70
	/**
71
	 * Creates a new resource
72
	 *
73
	 * @return string|null HTML output
74
	 */
75
	public function create() : ?string
76
	{
77
		$view = $this->object()->data( $this->view() );
78
		$siteid = $this->context()->locale()->getSiteId();
79
		$data = $view->param( 'category', [] );
80
81
		foreach( $view->value( $data, 'product.lists.id', [] ) as $idx => $value ) {
82
			$data['product.lists.siteid'][$idx] = $siteid;
83
		}
84
85
		$view->categoryData = $data;
86
		$view->categoryBody = parent::create();
87
88
		return $this->render( $view );
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->categoryData = $this->toArray( $view->item );
101
		$view->categoryBody = 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
		$this->fromArray( $view->item, $view->param( 'category', [] ) );
117
		$view->categoryBody = 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/product/category/decorators/excludes
133
		 * Excludes decorators added by the "common" option from the product 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/product/category/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 2016.01
152
		 * @see admin/jqadm/common/decorators/default
153
		 * @see admin/jqadm/product/category/decorators/global
154
		 * @see admin/jqadm/product/category/decorators/local
155
		 */
156
157
		/** admin/jqadm/product/category/decorators/global
158
		 * Adds a list of globally available decorators only to the product 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/product/category/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 2016.01
175
		 * @see admin/jqadm/common/decorators/default
176
		 * @see admin/jqadm/product/category/decorators/excludes
177
		 * @see admin/jqadm/product/category/decorators/local
178
		 */
179
180
		/** admin/jqadm/product/category/decorators/local
181
		 * Adds a list of local decorators only to the product 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\Product\Decorator\*") around the JQAdm client.
190
		 *
191
		 *  admin/jqadm/product/category/decorators/local = array( 'decorator2' )
192
		 *
193
		 * This would add the decorator named "decorator2" defined by
194
		 * "\Aimeos\Admin\JQAdm\Product\Decorator\Decorator2" only to the JQAdm client.
195
		 *
196
		 * @param array List of decorator names
197
		 * @since 2016.01
198
		 * @see admin/jqadm/common/decorators/default
199
		 * @see admin/jqadm/product/category/decorators/excludes
200
		 * @see admin/jqadm/product/category/decorators/global
201
		 */
202
		return $this->createSubClient( 'product/category/' . $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/product/category/subparts
214
		 * List of JQAdm sub-clients rendered within the product category 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 2016.01
244
		 */
245
		return $this->context()->config()->get( 'admin/jqadm/product/category/subparts', [] );
246
	}
247
248
249
	/**
250
	 * Creates new and updates existing items using the data array
251
	 *
252
	 * @param \Aimeos\MShop\Product\Item\Iface $item Product item object without referenced domain items
253
	 * @param array $data Data array
254
	 * @return \Aimeos\MShop\Product\Item\Iface Modified product item
255
	 */
256
	protected function fromArray( \Aimeos\MShop\Product\Item\Iface $item, array $data ) : \Aimeos\MShop\Product\Item\Iface
257
	{
258
		$manager = \Aimeos\MShop::create( $this->context(), 'product' );
259
		$listItems = $item->getListItems( 'catalog' );
260
261
		foreach( $data as $entry )
262
		{
263
			$listid = $this->val( $entry, 'product.lists.id' );
264
			$litem = $listItems->pull( $listid ) ?: $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

264
			$litem = $listItems->pull( $listid ) ?: $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...
265
266
			$litem->setType( $this->val( $entry, 'product.lists.type' ) )
267
				->setRefId( $this->val( $entry, 'product.lists.refid' ) );
268
269
			$item->addListItem( 'catalog', $litem );
270
		}
271
272
		return $item->deleteListItems( $listItems );
273
	}
274
275
276
	/**
277
	 * Constructs the data array for the view from the given item
278
	 *
279
	 * @param \Aimeos\MShop\Product\Item\Iface $item Product item object including referenced domain items
280
	 * @param bool $copy True if items should be copied, false if not
281
	 * @return string[] Multi-dimensional associative list of item data
282
	 */
283
	protected function toArray( \Aimeos\MShop\Product\Item\Iface $item, bool $copy = false ) : array
284
	{
285
		$data = [];
286
		$siteId = $this->context()->locale()->getSiteId();
287
288
		foreach( $item->getListItems( 'catalog' ) as $listItem )
289
		{
290
			if( ( $refItem = $listItem->getRefItem() ) === null ) {
291
				continue;
292
			}
293
294
			$label = $refItem->getLabel() . ' (' . $refItem->getCode() . ')';
295
			$list = ['catalog.label' => $label] + $listItem->toArray( true ) + $refItem->toArray( true );
296
297
			if( $copy === true )
298
			{
299
				$list['product.lists.siteid'] = $siteId;
300
				$list['product.lists.id'] = '';
301
			}
302
303
			$data[] = $list;
304
		}
305
306
		return $data;
307
	}
308
309
310
	/**
311
	 * Returns the rendered template including the view data
312
	 *
313
	 * @param \Aimeos\Base\View\Iface $view View object with data assigned
314
	 * @return string HTML output
315
	 */
316
	protected function render( \Aimeos\Base\View\Iface $view ) : string
317
	{
318
		/** admin/jqadm/product/category/template-item
319
		 * Relative path to the HTML body template of the category subpart for products.
320
		 *
321
		 * The template file contains the HTML code and processing instructions
322
		 * to generate the result shown in the body of the frontend. The
323
		 * configuration string is the path to the template file relative
324
		 * to the templates directory (usually in templates/admin/jqadm).
325
		 *
326
		 * You can overwrite the template file configuration in extensions and
327
		 * provide alternative templates. These alternative templates should be
328
		 * named like the default one but with the string "default" replaced by
329
		 * an unique name. You may use the name of your project for this. If
330
		 * you've implemented an alternative client class as well, "default"
331
		 * should be replaced by the name of the new class.
332
		 *
333
		 * @param string Relative path to the template creating the HTML code
334
		 * @since 2016.04
335
		 */
336
		$tplconf = 'admin/jqadm/product/category/template-item';
337
		$default = 'product/item-category';
338
339
		return $view->render( $view->config( $tplconf, $default ) );
340
	}
341
}
342