Completed
Push — master ( 9144ee...005523 )
by Aimeos
03:27
created

Standard   A

Complexity

Total Complexity 14

Size/Duplication

Total Lines 204
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 5

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 14
c 1
b 0
f 1
lcom 1
cbo 5
dl 0
loc 204
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A get() 0 21 1
A getChildItems() 0 13 3
B getItems() 0 24 3
C saveEntry() 0 28 7
1
<?php
2
3
/**
4
 * @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
5
 * @copyright Aimeos (aimeos.org), 2016
6
 * @package Admin
7
 * @subpackage JsonAdm
8
 */
9
10
11
namespace Aimeos\Admin\JsonAdm\Locale\Site;
12
13
14
/**
15
 * JSON API locale site  client
16
 *
17
 * @package Admin
18
 * @subpackage JsonAdm
19
 */
20
class Standard
21
	extends \Aimeos\Admin\JsonAdm\Standard
0 ignored issues
show
Coding Style introduced by
The extends keyword must be on the same line as the class name
Loading history...
Coding Style introduced by
Expected 0 spaces between "Standard" and comma; 1 found
Loading history...
22
	implements \Aimeos\Admin\JsonAdm\Common\Iface
0 ignored issues
show
Coding Style introduced by
The implements keyword must be on the same line as the class name
Loading history...
23
{
24
	/** admin/jsonadm/locale/site/decorators/excludes
25
	 * Excludes decorators added by the "common" option from the JSON API clients
26
	 *
27
	 * Decorators extend the functionality of a class by adding new aspects
28
	 * (e.g. log what is currently done), executing the methods of the underlying
29
	 * class only in certain conditions (e.g. only for logged in users) or
30
	 * modify what is returned to the caller.
31
	 *
32
	 * This option allows you to remove a decorator added via
33
	 * "admin/jsonadm/common/decorators/default" before they are wrapped
34
	 * around the Jsonadm client.
35
	 *
36
	 *  admin/jsonadm/decorators/excludes = array( 'decorator1' )
37
	 *
38
	 * This would remove the decorator named "decorator1" from the list of
39
	 * common decorators ("\Aimeos\Admin\JsonAdm\Common\Decorator\*") added via
40
	 * "admin/jsonadm/common/decorators/default" for the JSON API client.
41
	 *
42
	 * @param array List of decorator names
43
	 * @since 2016.01
44
	 * @category Developer
45
	 * @see admin/jsonadm/common/decorators/default
46
	 * @see admin/jsonadm/locale/site/decorators/global
47
	 * @see admin/jsonadm/locale/site/decorators/local
48
	 */
49
50
	/** admin/jsonadm/locale/site/decorators/global
51
	 * Adds a list of globally available decorators only to the Jsonadm client
52
	 *
53
	 * Decorators extend the functionality of a class by adding new aspects
54
	 * (e.g. log what is currently done), executing the methods of the underlying
55
	 * class only in certain conditions (e.g. only for logged in users) or
56
	 * modify what is returned to the caller.
57
	 *
58
	 * This option allows you to wrap global decorators
59
	 * ("\Aimeos\Admin\Jsonadm\Common\Decorator\*") around the Jsonadm
60
	 * client.
61
	 *
62
	 *  admin/jsonadm/locale/site/decorators/global = array( 'decorator1' )
63
	 *
64
	 * This would add the decorator named "decorator1" defined by
65
	 * "\Aimeos\Admin\Jsonadm\Common\Decorator\Decorator1" only to the
66
	 * "locale/site " Jsonadm client.
67
	 *
68
	 * @param array List of decorator names
69
	 * @since 2016.01
70
	 * @category Developer
71
	 * @see admin/jsonadm/common/decorators/default
72
	 * @see admin/jsonadm/locale/site/decorators/excludes
73
	 * @see admin/jsonadm/locale/site/decorators/local
74
	 */
75
76
	/** admin/jsonadm/locale/site/decorators/local
77
	 * Adds a list of local decorators only to the Jsonadm client
78
	 *
79
	 * Decorators extend the functionality of a class by adding new aspects
80
	 * (e.g. log what is currently done), executing the methods of the underlying
81
	 * class only in certain conditions (e.g. only for logged in users) or
82
	 * modify what is returned to the caller.
83
	 *
84
	 * This option allows you to wrap local decorators
85
	 * ("\Aimeos\Admin\Jsonadm\Catalog\Decorator\*") around the Jsonadm
86
	 * client.
87
	 *
88
	 *  admin/jsonadm/locale/site/decorators/local = array( 'decorator2' )
89
	 *
90
	 * This would add the decorator named "decorator2" defined by
91
	 * "\Aimeos\Admin\Jsonadm\Catalog\Decorator\Decorator2" only to the
92
	 * "locale/site " Jsonadm client.
93
	 *
94
	 * @param array List of decorator names
95
	 * @since 2016.01
96
	 * @category Developer
97
	 * @see admin/jsonadm/common/decorators/default
98
	 * @see admin/jsonadm/locale/site/decorators/excludes
99
	 * @see admin/jsonadm/locale/site/decorators/global
100
	 */
101
102
103
	/**
104
	 * Returns the requested resource or the resource list
105
	 *
106
	 * @param string $body Request body
107
	 * @param array &$header Variable which contains the HTTP headers and the new ones afterwards
108
	 * @param integer &$status Variable which contains the HTTP status afterwards
109
	 * @return string Content for response body
110
	 */
111
	public function get( $body, array &$header, &$status )
112
	{
113
		/** admin/jsonadm/partials/locale/site/template-data
114
		 * Relative path to the data partial template file for the locale site  client
115
		 *
116
		 * Partials are templates which are reused in other templates and generate
117
		 * reoccuring blocks filled with data from the assigned values. The data
118
		 * partial creates the "data" part for the JSON API response.
119
		 *
120
		 * The partial template files are usually stored in the templates/partials/ folder
121
		 * of the core or the extensions. The configured path to the partial file must
122
		 * be relative to the templates/ folder, e.g. "partials/data-standard.php".
123
		 *
124
		 * @param string Relative path to the template file
125
		 * @since 2016.07
126
		 * @category Developer
127
		 */
128
		$this->getView()->assign( array( 'partial-data' => 'admin/jsonadm/partials/locale/site/template-data' ) );
129
130
		return parent::get( $body, $header, $status );
131
	}
132
133
134
	/**
135
	 * Returns the items with parent/child relationships
136
	 *
137
	 * @param array $items List of items implementing \Aimeos\MShop\Common\Item\Iface
138
	 * @param array $include List of resource types that should be fetched
139
	 * @return array List of items implementing \Aimeos\MShop\Common\Item\Iface
140
	 */
141
	protected function getChildItems( array $items, array $include )
142
	{
143
		$list = array();
144
145
		if( in_array( 'locale/site', $include ) )
146
		{
147
			foreach( $items as $item ) {
148
				$list = array_merge( $list, $item->getChildren() );
149
			}
150
		}
151
152
		return $list;
153
	}
154
155
156
	/**
157
	 * Retrieves the item or items and adds the data to the view
158
	 *
159
	 * @param \Aimeos\MW\View\Iface $view View instance
160
	 * @return \Aimeos\MW\View\Iface View instance with additional data assigned
161
	 */
162
	protected function getItems( \Aimeos\MW\View\Iface $view )
163
	{
164
		$include = ( ( $include = $view->param( 'include' ) ) !== null ? explode( ',', $include ) : array() );
165
		$manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'locale/site' );
166
		$search = $this->initCriteria( $manager->createSearch(), $view->param() );
167
		$total = 1;
168
169
		if( ( $id = $view->param( 'id' ) ) == null )
170
		{
171
			$view->data = $manager->searchItems( $search, array(), $total );
172
			$view->childItems = $this->getChildItems( $view->data, $include );
173
		}
174
		else
175
		{
176
			$view->data = $manager->getTree( $id, array(), \Aimeos\MW\Tree\Manager\Base::LEVEL_LIST, $search );
177
			$view->childItems = $this->getChildItems( array( $view->data ), $include );
178
		}
179
180
		$view->listItems = array();
181
		$view->refItems = array();
182
		$view->total = $total;
183
184
		return $view;
185
	}
186
187
188
	/**
189
	 * Saves and returns the new or updated item
190
	 *
191
	 * @param \Aimeos\MShop\Common\Manager\Iface $manager Manager responsible for the items
192
	 * @param \stdClass $entry Object including "id" and "attributes" elements
193
	 * @return \Aimeos\MShop\Common\Item\Iface New or updated item
194
	 */
195
	protected function saveEntry( \Aimeos\MShop\Common\Manager\Iface $manager, \stdClass $entry )
196
	{
197
		$targetId = ( isset( $entry->targetid ) ? $entry->targetid : null );
198
		$refId = ( isset( $entry->refid ) ? $entry->refid : null );
199
200
		if( isset( $entry->id ) )
201
		{
202
			$item = $manager->getItem( $entry->id );
203
			$item = $this->addItemData( $manager, $item, $entry, $item->getResourceType() );
204
			$manager->saveItem( $item );
205
206
			if( isset( $entry->parentid ) && $targetId !== null ) {
207
				$manager->moveItem( $item->getId(), $entry->parentid, $targetId, $refId );
208
			}
209
		}
210
		else
211
		{
212
			$item = $manager->createItem();
213
			$item = $this->addItemData( $manager, $item, $entry, $item->getResourceType() );
214
			$manager->insertItem( $item, $targetId, $refId );
215
		}
216
217
		if( isset( $entry->relationships ) ) {
218
			$this->saveRelationships( $manager, $item, $entry->relationships );
219
		}
220
221
		return $manager->getItem( $item->getId() );
222
	}
223
}
224