Skip to content

Commit

Permalink
Merge pull request #445 from magento-performance/CABPI-389
Browse files Browse the repository at this point in the history
CABPI-389 Switch environment to production
  • Loading branch information
andimov committed May 6, 2022
2 parents ebd88ee + 0af8c77 commit 415704b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,10 @@ public function __construct(
*/
public function checkOrganizationAllocation(array $profile): bool
{
if (empty($profile['roles'])) {
throw new AdobeImsOrganizationAuthorizationException(
__('No roles assigned for profile.')
);
}

$customerOrganizations = $this->getCustomerOrganizationList($profile['roles']);
$configuredOrganization = $this->adminImsConfig->getOrganizationId();

if (!in_array($configuredOrganization, $customerOrganizations, true)) {
//@TODO CABPI-324: Change Org check to use new endpoint
if (!$configuredOrganization) {
throw new AdobeImsOrganizationAuthorizationException(
__('Profile is not assigned to defined organization.')
);
Expand Down
19 changes: 10 additions & 9 deletions app/code/Magento/AdminAdobeIms/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,23 @@
<integration>
<admin_enabled>0</admin_enabled>
<admin>
<auth_url_pattern><![CDATA[https://ims-na1-stg1.adobelogin.com/ims/authorize/v2?client_id=#{client_id}&redirect_uri=#{redirect_uri}&locale=#{locale}&scope=#{scope}&response_type=code]]></auth_url_pattern>
<reauth_url_pattern><![CDATA[https://ims-na1-stg1.adobelogin.com/ims/authorize/v2?client_id=#{client_id}&redirect_uri=#{redirect_uri}&locale=#{locale}&scope=#{scope}&response_type=code&reauth=check]]></reauth_url_pattern>
<auth_url_pattern><![CDATA[https://ims-na1.adobelogin.com/ims/authorize/v2?client_id=#{client_id}&redirect_uri=#{redirect_uri}&locale=#{locale}&scope=#{scope}&response_type=code]]></auth_url_pattern>
<reauth_url_pattern><![CDATA[https://ims-na1.adobelogin.com/ims/authorize/v2?client_id=#{client_id}&redirect_uri=#{redirect_uri}&locale=#{locale}&scope=#{scope}&response_type=code&reauth=check]]></reauth_url_pattern>
<scopes>
<openid>openid</openid>
<AdobeID>AdobeID</AdobeID>
<additional_info.roles>additional_info.roles</additional_info.roles>
<openid>openid</openid>
<email>email</email>
<profile>profile</profile>
</scopes>
</admin>
<logging_enabled>0</logging_enabled>
<organization_id backend_model="Magento\Config\Model\Config\Backend\Encrypted"/>
<auth_url_pattern><![CDATA[https://ims-na1-stg1.adobelogin.com/ims/authorize/v2?client_id=#{client_id}&amp;redirect_uri=#{redirect_uri}&amp;locale=#{locale}&amp;scope=openid,creative_sdk,email,profile&amp;response_type=code]]></auth_url_pattern>
<token_url>https://ims-na1-stg1.adobelogin.com/ims/token</token_url>
<profile_url><![CDATA[https://ims-na1-stg1.adobelogin.com/ims/profile/v1?client_id=#{client_id}]]></profile_url>
<logout_url><![CDATA[https://ims-na1-stg1.adobelogin.com/ims/logout/v1?access_token=#{access_token}&amp;client_id=#{client_id}&amp;client_secret=#{client_secret}]]></logout_url>
<auth_url_pattern><![CDATA[https://ims-na1.adobelogin.com/ims/authorize/v2?client_id=#{client_id}&amp;redirect_uri=#{redirect_uri}&amp;locale=#{locale}&amp;scope=openid,creative_sdk,email,profile&amp;response_type=code]]></auth_url_pattern>
<token_url>https://ims-na1.adobelogin.com/ims/token</token_url>
<profile_url><![CDATA[https://ims-na1.adobelogin.com/ims/profile/v1?client_id=#{client_id}]]></profile_url>
<logout_url><![CDATA[https://ims-na1.adobelogin.com/ims/logout/v1?access_token=#{access_token}&amp;client_id=#{client_id}&amp;client_secret=#{client_secret}]]></logout_url>
<certificate_path><![CDATA[https://static.adobelogin.com/keys/prod/]]></certificate_path>
<validate_token_url><![CDATA[https://ims-na1-stg1.adobelogin.com/ims/validate_token/v1?token=#{token}&client_id=#{client_id}&type=#{token_type}]]></validate_token_url>
<validate_token_url><![CDATA[https://ims-na1.adobelogin.com/ims/validate_token/v1?token=#{token}&client_id=#{client_id}&type=#{token_type}]]></validate_token_url>
</integration>
<email>
<header_template>admin_adobe_ims_email_header_template</header_template>
Expand Down

0 comments on commit 415704b

Please sign in to comment.