@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | public function loginUrl($handle, $options = []) |
155 | 155 | { |
156 | 156 | $provider = $this->getProviderByHandle($handle); |
157 | - if (is_null($provider)){ |
|
157 | + if (is_null($provider)) { |
|
158 | 158 | throw new NotSupportedException('Provider not found or disabled: '.$handle); |
159 | 159 | } |
160 | 160 | |
@@ -223,12 +223,12 @@ discard block |
||
223 | 223 | ]]; |
224 | 224 | |
225 | 225 | foreach ($fields as $field) { |
226 | - if (!$this->validateFieldClass($field)){ |
|
226 | + if (!$this->validateFieldClass($field)) { |
|
227 | 227 | continue; |
228 | 228 | } |
229 | 229 | |
230 | 230 | $option = [ |
231 | - 'label' => $field->name. ' ('.$field->handle.')', |
|
231 | + 'label' => $field->name.' ('.$field->handle.')', |
|
232 | 232 | 'value' => $field->handle |
233 | 233 | ]; |
234 | 234 | |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | Dropdown::class => 1 |
252 | 252 | ]; |
253 | 253 | |
254 | - if (isset($supportedClasses[$fieldClass])){ |
|
254 | + if (isset($supportedClasses[$fieldClass])) { |
|
255 | 255 | return true; |
256 | 256 | } |
257 | 257 | |
@@ -465,7 +465,7 @@ discard block |
||
465 | 465 | { |
466 | 466 | $providers = $this->getAllProviderTypes(); |
467 | 467 | |
468 | - if ($excludeCreated){ |
|
468 | + if ($excludeCreated) { |
|
469 | 469 | $providers = $this->getExcludeCreatedProviders(); |
470 | 470 | } |
471 | 471 | |
@@ -657,7 +657,7 @@ discard block |
||
657 | 657 | $adapter = $provider->getAdapter(); |
658 | 658 | try { |
659 | 659 | $adapter->authenticate(); |
660 | - } catch (\Exception $e){ |
|
660 | + } catch (\Exception $e) { |
|
661 | 661 | Craft::error("Unable to Authorize user", __METHOD__); |
662 | 662 | return false; |
663 | 663 | } |
@@ -665,11 +665,11 @@ discard block |
||
665 | 665 | $userProfile = $adapter->getUserProfile(); |
666 | 666 | $user = Craft::$app->getUser()->getIdentity(); |
667 | 667 | |
668 | - if (!$user){ |
|
668 | + if (!$user) { |
|
669 | 669 | $user = $this->retrieveUser($userProfile, $provider); |
670 | 670 | } |
671 | 671 | |
672 | - if (!$user){ |
|
672 | + if (!$user) { |
|
673 | 673 | Craft::error("Not user to login", __METHOD__); |
674 | 674 | return false; |
675 | 675 | } |
@@ -678,7 +678,7 @@ discard block |
||
678 | 678 | |
679 | 679 | $user = $this->triggerBeforeLoginUser($user, $provider, $userProfile); |
680 | 680 | |
681 | - if (is_null($user)){ |
|
681 | + if (is_null($user)) { |
|
682 | 682 | Craft::error("User not valid to login on BeforeLoginEvent", __METHOD__); |
683 | 683 | return false; |
684 | 684 | } |
@@ -734,7 +734,7 @@ discard block |
||
734 | 734 | */ |
735 | 735 | private function retrieveUser(Profile $userProfile, Provider $provider): ?User |
736 | 736 | { |
737 | - if (is_null($userProfile->email)){ |
|
737 | + if (is_null($userProfile->email)) { |
|
738 | 738 | throw new \Exception("Email address is not provided, please check the settings of your application"); |
739 | 739 | } |
740 | 740 | |
@@ -745,7 +745,7 @@ discard block |
||
745 | 745 | } |
746 | 746 | $settings = Socializer::$app->settings->getSettings(); |
747 | 747 | |
748 | - if (!$settings->enableUserSignUp){ |
|
748 | + if (!$settings->enableUserSignUp) { |
|
749 | 749 | return null; |
750 | 750 | } |
751 | 751 | |
@@ -773,16 +773,16 @@ discard block |
||
773 | 773 | return null; |
774 | 774 | } |
775 | 775 | |
776 | - if (!Craft::$app->elements->saveElement($user)){ |
|
776 | + if (!Craft::$app->elements->saveElement($user)) { |
|
777 | 777 | Craft::error("Unable to create user: ".json_encode($user->getErrors())); |
778 | 778 | throw new \Exception("Something went wrong while creating the user"); |
779 | 779 | } |
780 | 780 | |
781 | 781 | Craft::$app->users->activateUser($user); |
782 | 782 | |
783 | - if ($settings->userGroupId){ |
|
783 | + if ($settings->userGroupId) { |
|
784 | 784 | $userGroup = Craft::$app->getUserGroups()->getGroupById($settings->userGroupId); |
785 | - if ($userGroup){ |
|
785 | + if ($userGroup) { |
|
786 | 786 | Craft::$app->getUsers()->assignUserToGroups($user->id, [$userGroup->id]); |
787 | 787 | } |
788 | 788 | } |
@@ -824,10 +824,10 @@ discard block |
||
824 | 824 | } |
825 | 825 | |
826 | 826 | foreach ($fieldMapping as $item) { |
827 | - if(isset($item['targetUserField']) && $item['targetUserField']){ |
|
827 | + if (isset($item['targetUserField']) && $item['targetUserField']) { |
|
828 | 828 | $profileValue = $profile->{$item['sourceFormField']}; |
829 | 829 | $field = $user->getFieldLayout()->getFieldByHandle($item['targetUserField']); |
830 | - if ($field){ |
|
830 | + if ($field) { |
|
831 | 831 | $user->setFieldValue($item['targetUserField'], $profileValue); |
832 | 832 | } |
833 | 833 | } |
@@ -850,7 +850,7 @@ discard block |
||
850 | 850 | $providerRecord = ProviderRecord::findOne($provider->id); |
851 | 851 | |
852 | 852 | if (!$providerRecord) { |
853 | - throw new Exception(Craft::t("enupal-socializer",'No Provider exists with the ID “{id}”', ['id' => $provider->id])); |
|
853 | + throw new Exception(Craft::t("enupal-socializer", 'No Provider exists with the ID “{id}”', ['id' => $provider->id])); |
|
854 | 854 | } |
855 | 855 | } |
856 | 856 |