Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
salesforce-3257058
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
salesforce-3257058
Commits
c5e1767d
Commit
c5e1767d
authored
6 years ago
by
Aaron Bauman
Browse files
Options
Downloads
Plain Diff
Merge branch '8.x-3.x' of into 2899460
parents
9ca15257
089f5240
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
salesforce.install
+19
-6
19 additions, 6 deletions
salesforce.install
with
19 additions
and
6 deletions
salesforce.install
+
19
−
6
View file @
c5e1767d
...
@@ -8,8 +8,8 @@
...
@@ -8,8 +8,8 @@
use
Drupal\Core\Url
;
use
Drupal\Core\Url
;
use
Drupal\Component\Serialization\Json
;
use
Drupal\Component\Serialization\Json
;
use
Drupal\salesforce\Entity\SalesforceAuthConfig
;
use
Drupal\salesforce\Entity\SalesforceAuthConfig
;
use
Drupal\Core\Utility\UpdateException
;
use
Drupal\salesforce\SalesforceAuthProviderPluginManager
;
use
Drupal\salesforce\SalesforceAuthProviderPluginManager
;
use
OAuth\Common\Storage\Exception\TokenNotFoundException
;
/**
/**
* Implements hook_uninstall().
* Implements hook_uninstall().
...
@@ -267,13 +267,20 @@ function salesforce_update_8004() {
...
@@ -267,13 +267,20 @@ function salesforce_update_8004() {
\Drupal
::
cache
()
->
delete
(
'salesforce:objects'
);
\Drupal
::
cache
()
->
delete
(
'salesforce:objects'
);
}
}
/**
* Convert legacy oauth credentials to new auth plugin config.
*/
/**
/**
* Convert legacy oauth credentials to new auth plugin config.
* Convert legacy oauth credentials to new auth plugin config.
*/
*/
function
salesforce_update_8005
()
{
function
salesforce_update_8005
()
{
$change_list
=
\Drupal
::
entityDefinitionUpdateManager
()
->
getChangeSummary
();
$change_list
=
\Drupal
::
entityDefinitionUpdateManager
()
->
getChangeSummary
();
if
(
!
empty
(
$change_list
[
'salesforce_auth'
]))
{
if
(
!
empty
(
$change_list
[
'salesforce_auth'
]))
{
throw
new
UpdateException
(
"** PENDING SCHEMA UPDATES **
\n
** Please install entity updates (entup) to install Salesforce Auth Config before proceeding with database update."
);
if
(
!
empty
(
$change_list
[
'salesforce_auth'
]))
{
$entityType
=
\Drupal
::
entityTypeManager
()
->
getDefinition
(
'salesforce_auth'
);
\Drupal
::
entityDefinitionUpdateManager
()
->
installEntityType
(
$entityType
);
}
}
}
$message
=
''
;
$message
=
''
;
...
@@ -293,13 +300,19 @@ function salesforce_update_8005() {
...
@@ -293,13 +300,19 @@ function salesforce_update_8005() {
* Convert legacy token to new auth plugin config.
* Convert legacy token to new auth plugin config.
*/
*/
function
salesforce_update_8006
()
{
function
salesforce_update_8006
()
{
/** @var \Drupal\salesforce\Entity\SalesforceAuthConfig $oauth */
$oauth
=
SalesforceAuthProviderPluginManager
::
getAuthConfig
();
$oauth
=
SalesforceAuthProviderPluginManager
::
getAuthConfig
();
if
(
!
$oauth
)
{
if
(
!
$oauth
)
{
return
"Auth config missing. Refused to update legacy token."
;
return
"Auth config missing. Refused to update legacy token."
;
}
}
if
(
\Drupal
::
service
(
'salesforce.auth_token_storage'
)
->
retrieveAccessToken
(
$oauth
->
id
()))
{
try
{
return
"Token exists. Refused to update."
;
if
(
\Drupal
::
service
(
'salesforce.auth_token_storage'
)
->
retrieveAccessToken
(
$oauth
->
id
()))
{
return
"Token exists. Refused to update."
;
}
}
catch
(
TokenNotFoundException
$e
)
{
\Drupal
::
service
(
'salesforce.auth_token_storage'
)
->
updateToken
();
return
"Updated legacy token to new plugin config."
;
}
}
\Drupal
::
service
(
'salesforce.auth_token_storage'
)
->
updateToken
();
return
"Updated legacy token to new plugin config."
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment