@@ -29,13 +29,13 @@ discard block |
||
29 | 29 | */ |
30 | 30 | protected function configure() |
31 | 31 | { |
32 | - $this->setName( 'aimeos:account'); |
|
33 | - $this->setDescription( 'Creates new (admin) accounts' ); |
|
34 | - $this->addArgument( 'email', InputArgument::REQUIRED, 'E-mail address of the account that should be created' ); |
|
35 | - $this->addArgument( 'site', InputArgument::OPTIONAL, 'Site codes to create accounts for like "default unittest" (none for all)' ); |
|
36 | - $this->addOption( 'password', null, InputOption::VALUE_REQUIRED, 'Optional password for the account (will ask for if not given)' ); |
|
37 | - $this->addOption( 'admin', null, InputOption::VALUE_NONE, 'If account should have administrator privileges' ); |
|
38 | - $this->addOption( 'editor', null, InputOption::VALUE_NONE, 'If account should have limited editor privileges' ); |
|
32 | + $this->setName('aimeos:account'); |
|
33 | + $this->setDescription('Creates new (admin) accounts'); |
|
34 | + $this->addArgument('email', InputArgument::REQUIRED, 'E-mail address of the account that should be created'); |
|
35 | + $this->addArgument('site', InputArgument::OPTIONAL, 'Site codes to create accounts for like "default unittest" (none for all)'); |
|
36 | + $this->addOption('password', null, InputOption::VALUE_REQUIRED, 'Optional password for the account (will ask for if not given)'); |
|
37 | + $this->addOption('admin', null, InputOption::VALUE_NONE, 'If account should have administrator privileges'); |
|
38 | + $this->addOption('editor', null, InputOption::VALUE_NONE, 'If account should have limited editor privileges'); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | |
@@ -45,32 +45,32 @@ discard block |
||
45 | 45 | * @param InputInterface $input Input object |
46 | 46 | * @param OutputInterface $output Output object |
47 | 47 | */ |
48 | - protected function execute( InputInterface $input, OutputInterface $output ) |
|
48 | + protected function execute(InputInterface $input, OutputInterface $output) |
|
49 | 49 | { |
50 | - $code = $input->getArgument( 'email' ); |
|
51 | - if( ( $password = $input->getOption( 'password' ) ) === null ) |
|
50 | + $code = $input->getArgument('email'); |
|
51 | + if (($password = $input->getOption('password')) === null) |
|
52 | 52 | { |
53 | - $helper = $this->getHelper( 'question' ); |
|
54 | - $question = new Question( 'Password' ); |
|
55 | - $question->setHidden( true ); |
|
53 | + $helper = $this->getHelper('question'); |
|
54 | + $question = new Question('Password'); |
|
55 | + $question->setHidden(true); |
|
56 | 56 | |
57 | - $password = $helper->ask( $input, $output, $question ); |
|
57 | + $password = $helper->ask($input, $output, $question); |
|
58 | 58 | } |
59 | 59 | |
60 | - $context = $this->getContainer()->get( 'aimeos_context' )->get( false ); |
|
61 | - $context->setEditor( 'aimeos:account' ); |
|
60 | + $context = $this->getContainer()->get('aimeos_context')->get(false); |
|
61 | + $context->setEditor('aimeos:account'); |
|
62 | 62 | |
63 | - $localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context ); |
|
64 | - $context->setLocale( $localeManager->createItem() ); |
|
63 | + $localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context); |
|
64 | + $context->setLocale($localeManager->createItem()); |
|
65 | 65 | |
66 | - $user = $this->createCustomerItem( $context, $code, $password ); |
|
66 | + $user = $this->createCustomerItem($context, $code, $password); |
|
67 | 67 | |
68 | - if( $input->getOption( 'admin' ) ) { |
|
69 | - $this->addGroup( $input, $output, $context, $user, 'admin' ); |
|
68 | + if ($input->getOption('admin')) { |
|
69 | + $this->addGroup($input, $output, $context, $user, 'admin'); |
|
70 | 70 | } |
71 | 71 | |
72 | - if( $input->getOption( 'editor' ) ) { |
|
73 | - $this->addGroup( $input, $output, $context, $user, 'editor' ); |
|
72 | + if ($input->getOption('editor')) { |
|
73 | + $this->addGroup($input, $output, $context, $user, 'editor'); |
|
74 | 74 | } |
75 | 75 | } |
76 | 76 | |
@@ -84,24 +84,24 @@ discard block |
||
84 | 84 | * @param \Aimeos\MShop\Customer\Item\Iface $user Aimeos customer object |
85 | 85 | * @param string $group Unique customer group code |
86 | 86 | */ |
87 | - protected function addGroup( InputInterface $input, OutputInterface $output, |
|
88 | - \Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $user, $group ) |
|
87 | + protected function addGroup(InputInterface $input, OutputInterface $output, |
|
88 | + \Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $user, $group) |
|
89 | 89 | { |
90 | - $output->writeln( sprintf( 'Add "%1$s" group to user "%2$s" for sites', $group, $user->getCode() ) ); |
|
90 | + $output->writeln(sprintf('Add "%1$s" group to user "%2$s" for sites', $group, $user->getCode())); |
|
91 | 91 | |
92 | - $localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context ); |
|
92 | + $localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context); |
|
93 | 93 | |
94 | - foreach( $this->getSiteItems( $context, $input ) as $siteItem ) |
|
94 | + foreach ($this->getSiteItems($context, $input) as $siteItem) |
|
95 | 95 | { |
96 | - $localeItem = $localeManager->bootstrap( $siteItem->getCode(), '', '', false ); |
|
96 | + $localeItem = $localeManager->bootstrap($siteItem->getCode(), '', '', false); |
|
97 | 97 | |
98 | 98 | $lcontext = clone $context; |
99 | - $lcontext->setLocale( $localeItem ); |
|
99 | + $lcontext->setLocale($localeItem); |
|
100 | 100 | |
101 | - $output->writeln( '- ' . $siteItem->getCode() ); |
|
101 | + $output->writeln('- '.$siteItem->getCode()); |
|
102 | 102 | |
103 | - $groupItem = $this->getGroupItem( $lcontext, $group ); |
|
104 | - $this->addListItem( $lcontext, $user->getId(), $groupItem->getId() ); |
|
103 | + $groupItem = $this->getGroupItem($lcontext, $group); |
|
104 | + $this->addListItem($lcontext, $user->getId(), $groupItem->getId()); |
|
105 | 105 | } |
106 | 106 | } |
107 | 107 | |
@@ -113,31 +113,31 @@ discard block |
||
113 | 113 | * @param string $userid Unique user ID |
114 | 114 | * @param string $groupid Unique group ID |
115 | 115 | */ |
116 | - protected function addListItem( \Aimeos\MShop\Context\Item\Iface $context, $userid, $groupid ) |
|
116 | + protected function addListItem(\Aimeos\MShop\Context\Item\Iface $context, $userid, $groupid) |
|
117 | 117 | { |
118 | - $manager = \Aimeos\MShop\Customer\Manager\Factory::createManager( $context )->getSubmanager( 'lists' ); |
|
119 | - $typeid = $manager->getSubmanager( 'type' )->findItem( 'default', array(), 'customer/group' )->getId(); |
|
118 | + $manager = \Aimeos\MShop\Customer\Manager\Factory::createManager($context)->getSubmanager('lists'); |
|
119 | + $typeid = $manager->getSubmanager('type')->findItem('default', array(), 'customer/group')->getId(); |
|
120 | 120 | |
121 | 121 | $search = $manager->createSearch(); |
122 | 122 | $expr = array( |
123 | - $search->compare( '==', 'customer.lists.parentid', $userid ), |
|
124 | - $search->compare( '==', 'customer.lists.refid', $groupid ), |
|
125 | - $search->compare( '==', 'customer.lists.domain', 'customer/group' ), |
|
126 | - $search->compare( '==', 'customer.lists.typeid', $typeid ), |
|
123 | + $search->compare('==', 'customer.lists.parentid', $userid), |
|
124 | + $search->compare('==', 'customer.lists.refid', $groupid), |
|
125 | + $search->compare('==', 'customer.lists.domain', 'customer/group'), |
|
126 | + $search->compare('==', 'customer.lists.typeid', $typeid), |
|
127 | 127 | ); |
128 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
129 | - $search->setSlice( 0, 1 ); |
|
128 | + $search->setConditions($search->combine('&&', $expr)); |
|
129 | + $search->setSlice(0, 1); |
|
130 | 130 | |
131 | - if( count( $manager->searchItems( $search ) ) === 0 ) |
|
131 | + if (count($manager->searchItems($search)) === 0) |
|
132 | 132 | { |
133 | 133 | $item = $manager->createItem(); |
134 | - $item->setDomain( 'customer/group' ); |
|
135 | - $item->setParentId( $userid ); |
|
136 | - $item->setTypeId( $typeid ); |
|
137 | - $item->setRefId( $groupid ); |
|
138 | - $item->setStatus( 1 ); |
|
134 | + $item->setDomain('customer/group'); |
|
135 | + $item->setParentId($userid); |
|
136 | + $item->setTypeId($typeid); |
|
137 | + $item->setRefId($groupid); |
|
138 | + $item->setStatus(1); |
|
139 | 139 | |
140 | - $manager->saveItem( $item, false ); |
|
140 | + $manager->saveItem($item, false); |
|
141 | 141 | } |
142 | 142 | } |
143 | 143 | |
@@ -152,22 +152,22 @@ discard block |
||
152 | 152 | * @param string $password New user password |
153 | 153 | * @return \Aimeos\MShop\Customer\Item\Iface Aimeos customer item object |
154 | 154 | */ |
155 | - protected function createCustomerItem( \Aimeos\MShop\Context\Item\Iface $context, $email, $password ) |
|
155 | + protected function createCustomerItem(\Aimeos\MShop\Context\Item\Iface $context, $email, $password) |
|
156 | 156 | { |
157 | - $manager = \Aimeos\MShop\Factory::createManager( $context, 'customer' ); |
|
157 | + $manager = \Aimeos\MShop\Factory::createManager($context, 'customer'); |
|
158 | 158 | |
159 | 159 | try { |
160 | - $item = $manager->findItem( $email ); |
|
161 | - } catch( \Aimeos\MShop\Exception $e ) { |
|
160 | + $item = $manager->findItem($email); |
|
161 | + } catch (\Aimeos\MShop\Exception $e) { |
|
162 | 162 | $item = $manager->createItem(); |
163 | 163 | } |
164 | 164 | |
165 | - $item->setCode( $email ); |
|
166 | - $item->setLabel( $email ); |
|
167 | - $item->getPaymentAddress()->setEmail( $email ); |
|
168 | - $item->setPassword( $password ); |
|
165 | + $item->setCode($email); |
|
166 | + $item->setLabel($email); |
|
167 | + $item->getPaymentAddress()->setEmail($email); |
|
168 | + $item->setPassword($password); |
|
169 | 169 | |
170 | - $manager->saveItem( $item ); |
|
170 | + $manager->saveItem($item); |
|
171 | 171 | |
172 | 172 | return $item; |
173 | 173 | } |
@@ -180,21 +180,21 @@ discard block |
||
180 | 180 | * @param string $code Unique customer group code |
181 | 181 | * @return \Aimeos\MShop\Customer\Item\Group\Iface Aimeos customer group item object |
182 | 182 | */ |
183 | - protected function getGroupItem( \Aimeos\MShop\Context\Item\Iface $context, $code ) |
|
183 | + protected function getGroupItem(\Aimeos\MShop\Context\Item\Iface $context, $code) |
|
184 | 184 | { |
185 | - $manager = \Aimeos\MShop\Customer\Manager\Factory::createManager( $context )->getSubmanager( 'group' ); |
|
185 | + $manager = \Aimeos\MShop\Customer\Manager\Factory::createManager($context)->getSubmanager('group'); |
|
186 | 186 | |
187 | 187 | try |
188 | 188 | { |
189 | - $item = $manager->findItem( $code ); |
|
189 | + $item = $manager->findItem($code); |
|
190 | 190 | } |
191 | - catch( \Aimeos\MShop\Exception $e ) |
|
191 | + catch (\Aimeos\MShop\Exception $e) |
|
192 | 192 | { |
193 | 193 | $item = $manager->createItem(); |
194 | - $item->setLabel( $code ); |
|
195 | - $item->setCode( $code ); |
|
194 | + $item->setLabel($code); |
|
195 | + $item->setCode($code); |
|
196 | 196 | |
197 | - $manager->saveItem( $item ); |
|
197 | + $manager->saveItem($item); |
|
198 | 198 | } |
199 | 199 | |
200 | 200 | return $item; |