Completed
Push — master ( 1c941d...2f4bf0 )
by Aimeos
18:41
created
src/Aimeos/Shop/Command/AccountCommand.php 1 patch
Spacing   +63 added lines, -63 removed lines patch added patch discarded remove patch
@@ -43,29 +43,29 @@  discard block
 block discarded – undo
43 43
 	 */
44 44
 	public function fire()
45 45
 	{
46
-		$code = $this->argument( 'email' );
47
-		if( ( $password = $this->option( 'password' ) ) === null ) {
48
-			$password = $this->secret( 'Password' );
46
+		$code = $this->argument('email');
47
+		if (($password = $this->option('password')) === null) {
48
+			$password = $this->secret('Password');
49 49
 		}
50 50
 
51
-		$context = $this->getLaravel()->make( 'Aimeos\Shop\Base\Context' )->get( false, 'backend' );
52
-		$context->setEditor( 'aimeos:account' );
51
+		$context = $this->getLaravel()->make('Aimeos\Shop\Base\Context')->get(false, 'backend');
52
+		$context->setEditor('aimeos:account');
53 53
 
54
-		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context );
55
-		$context->setLocale( $localeManager->createItem() );
54
+		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context);
55
+		$context->setLocale($localeManager->createItem());
56 56
 
57
-		$user = $this->createCustomerItem( $context, $code, $password );
57
+		$user = $this->createCustomerItem($context, $code, $password);
58 58
 
59
-		if( $this->option( 'admin' ) ) {
60
-			$this->addGroup( $context, $user, 'admin' );
59
+		if ($this->option('admin')) {
60
+			$this->addGroup($context, $user, 'admin');
61 61
 		}
62 62
 
63
-		if( $this->option( 'api' ) ) {
64
-			$this->addGroup( $context, $user, 'api' );
63
+		if ($this->option('api')) {
64
+			$this->addGroup($context, $user, 'api');
65 65
 		}
66 66
 
67
-		if( $this->option( 'editor' ) ) {
68
-			$this->addGroup( $context, $user, 'editor' );
67
+		if ($this->option('editor')) {
68
+			$this->addGroup($context, $user, 'editor');
69 69
 		}
70 70
 	}
71 71
 
@@ -77,33 +77,33 @@  discard block
 block discarded – undo
77 77
 	 * @param string $userid Unique user ID
78 78
 	 * @param string $groupid Unique group ID
79 79
 	 */
80
-	protected function addListItem( \Aimeos\MShop\Context\Item\Iface $context, $userid, $groupid )
80
+	protected function addListItem(\Aimeos\MShop\Context\Item\Iface $context, $userid, $groupid)
81 81
 	{
82
-		$manager = \Aimeos\MShop\Factory::createManager( $context, 'customer/lists' );
83
-		$typeManager = \Aimeos\MShop\Factory::createManager( $context, 'customer/lists/type' );
82
+		$manager = \Aimeos\MShop\Factory::createManager($context, 'customer/lists');
83
+		$typeManager = \Aimeos\MShop\Factory::createManager($context, 'customer/lists/type');
84 84
 
85
-		$typeid = $typeManager->findItem( 'default', array(), 'customer/group' )->getId();
85
+		$typeid = $typeManager->findItem('default', array(), 'customer/group')->getId();
86 86
 
87 87
 		$search = $manager->createSearch();
88 88
 		$expr = array(
89
-			$search->compare( '==', 'customer.lists.parentid', $userid ),
90
-			$search->compare( '==', 'customer.lists.refid', $groupid ),
91
-			$search->compare( '==', 'customer.lists.domain', 'customer/group' ),
92
-			$search->compare( '==', 'customer.lists.typeid', $typeid ),
89
+			$search->compare('==', 'customer.lists.parentid', $userid),
90
+			$search->compare('==', 'customer.lists.refid', $groupid),
91
+			$search->compare('==', 'customer.lists.domain', 'customer/group'),
92
+			$search->compare('==', 'customer.lists.typeid', $typeid),
93 93
 		);
94
-		$search->setConditions( $search->combine( '&&', $expr ) );
95
-		$search->setSlice( 0, 1 );
94
+		$search->setConditions($search->combine('&&', $expr));
95
+		$search->setSlice(0, 1);
96 96
 
97
-		if( count( $manager->searchItems( $search ) ) === 0 )
97
+		if (count($manager->searchItems($search)) === 0)
98 98
 		{
99 99
 			$item = $manager->createItem();
100
-			$item->setDomain( 'customer/group' );
101
-			$item->setParentId( $userid );
102
-			$item->setTypeId( $typeid );
103
-			$item->setRefId( $groupid );
104
-			$item->setStatus( 1 );
100
+			$item->setDomain('customer/group');
101
+			$item->setParentId($userid);
102
+			$item->setTypeId($typeid);
103
+			$item->setRefId($groupid);
104
+			$item->setStatus(1);
105 105
 
106
-			$manager->saveItem( $item, false );
106
+			$manager->saveItem($item, false);
107 107
 		}
108 108
 	}
109 109
 
@@ -115,23 +115,23 @@  discard block
 block discarded – undo
115 115
 	 * @param \Aimeos\MShop\Customer\Item\Iface $user Aimeos customer object
116 116
 	 * @param string $group Unique customer group code
117 117
 	 */
118
-	protected function addGroup( \Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $user, $group )
118
+	protected function addGroup(\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $user, $group)
119 119
 	{
120
-		$this->info( sprintf( 'Add "%1$s" group to user "%2$s" for sites', $group, $user->getCode() ) );
120
+		$this->info(sprintf('Add "%1$s" group to user "%2$s" for sites', $group, $user->getCode()));
121 121
 
122
-		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context );
122
+		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context);
123 123
 
124
-		foreach( $this->getSiteItems( $context, $this->argument( 'site' ) ) as $siteItem )
124
+		foreach ($this->getSiteItems($context, $this->argument('site')) as $siteItem)
125 125
 		{
126
-			$localeItem = $localeManager->bootstrap( $siteItem->getCode(), '', '', false );
126
+			$localeItem = $localeManager->bootstrap($siteItem->getCode(), '', '', false);
127 127
 
128 128
 			$lcontext = clone $context;
129
-			$lcontext->setLocale( $localeItem );
129
+			$lcontext->setLocale($localeItem);
130 130
 
131
-			$this->info( '- ' . $siteItem->getCode() );
131
+			$this->info('- '.$siteItem->getCode());
132 132
 
133
-			$groupItem = $this->getGroupItem( $lcontext, $group );
134
-			$this->addListItem( $lcontext, $user->getId(), $groupItem->getId() );
133
+			$groupItem = $this->getGroupItem($lcontext, $group);
134
+			$this->addListItem($lcontext, $user->getId(), $groupItem->getId());
135 135
 		}
136 136
 	}
137 137
 
@@ -146,23 +146,23 @@  discard block
 block discarded – undo
146 146
 	 * @param string $password New user password
147 147
 	 * @return \Aimeos\MShop\Customer\Item\Iface Aimeos customer item object
148 148
 	 */
149
-	protected function createCustomerItem( \Aimeos\MShop\Context\Item\Iface $context, $email, $password )
149
+	protected function createCustomerItem(\Aimeos\MShop\Context\Item\Iface $context, $email, $password)
150 150
 	{
151
-		$manager = \Aimeos\MShop\Factory::createManager( $context, 'customer' );
151
+		$manager = \Aimeos\MShop\Factory::createManager($context, 'customer');
152 152
 
153 153
 		try {
154
-			$item = $manager->findItem( $email );
155
-		} catch( \Aimeos\MShop\Exception $e ) {
154
+			$item = $manager->findItem($email);
155
+		} catch (\Aimeos\MShop\Exception $e) {
156 156
 			$item = $manager->createItem();
157 157
 		}
158 158
 
159
-		$item->setCode( $email );
160
-		$item->setLabel( $email );
161
-		$item->getPaymentAddress()->setEmail( $email );
162
-		$item->setPassword( $password );
163
-		$item->setStatus( 1 );
159
+		$item->setCode($email);
160
+		$item->setLabel($email);
161
+		$item->getPaymentAddress()->setEmail($email);
162
+		$item->setPassword($password);
163
+		$item->setStatus(1);
164 164
 
165
-		$manager->saveItem( $item );
165
+		$manager->saveItem($item);
166 166
 
167 167
 		return $item;
168 168
 	}
@@ -176,8 +176,8 @@  discard block
 block discarded – undo
176 176
 	protected function getArguments()
177 177
 	{
178 178
 		return array(
179
-			array( 'email', InputArgument::REQUIRED, 'E-mail address of the account that should be created' ),
180
-			array( 'site', InputArgument::OPTIONAL, 'Site codes to create accounts for like "default unittest" (none for all)' ),
179
+			array('email', InputArgument::REQUIRED, 'E-mail address of the account that should be created'),
180
+			array('site', InputArgument::OPTIONAL, 'Site codes to create accounts for like "default unittest" (none for all)'),
181 181
 		);
182 182
 	}
183 183
 
@@ -189,21 +189,21 @@  discard block
 block discarded – undo
189 189
 	 * @param string $code Unique customer group code
190 190
 	 * @return \Aimeos\MShop\Customer\Item\Group\Iface Aimeos customer group item object
191 191
 	 */
192
-	protected function getGroupItem( \Aimeos\MShop\Context\Item\Iface $context, $code )
192
+	protected function getGroupItem(\Aimeos\MShop\Context\Item\Iface $context, $code)
193 193
 	{
194
-		$manager = \Aimeos\MShop\Customer\Manager\Factory::createManager( $context )->getSubmanager( 'group' );
194
+		$manager = \Aimeos\MShop\Customer\Manager\Factory::createManager($context)->getSubmanager('group');
195 195
 
196 196
 		try
197 197
 		{
198
-			$item = $manager->findItem( $code );
198
+			$item = $manager->findItem($code);
199 199
 		}
200
-		catch( \Aimeos\MShop\Exception $e )
200
+		catch (\Aimeos\MShop\Exception $e)
201 201
 		{
202 202
 			$item = $manager->createItem();
203
-			$item->setLabel( $code );
204
-			$item->setCode( $code );
203
+			$item->setLabel($code);
204
+			$item->setCode($code);
205 205
 
206
-			$manager->saveItem( $item );
206
+			$manager->saveItem($item);
207 207
 		}
208 208
 
209 209
 		return $item;
@@ -218,10 +218,10 @@  discard block
 block discarded – undo
218 218
 	protected function getOptions()
219 219
 	{
220 220
 		return array(
221
-			array( 'password', null, InputOption::VALUE_REQUIRED, 'Optional password for the account (will ask for if not given)' ),
222
-			array( 'admin', null, InputOption::VALUE_NONE, 'If account should have administrator privileges' ),
223
-			array( 'api', null, InputOption::VALUE_NONE, 'If account should be able to access the APIs' ),
224
-			array( 'editor', null, InputOption::VALUE_NONE, 'If account should have limited editor privileges' ),
221
+			array('password', null, InputOption::VALUE_REQUIRED, 'Optional password for the account (will ask for if not given)'),
222
+			array('admin', null, InputOption::VALUE_NONE, 'If account should have administrator privileges'),
223
+			array('api', null, InputOption::VALUE_NONE, 'If account should be able to access the APIs'),
224
+			array('editor', null, InputOption::VALUE_NONE, 'If account should have limited editor privileges'),
225 225
 		);
226 226
 	}
227 227
 }
Please login to merge, or discard this patch.