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
ca6fb25a
Commit
ca6fb25a
authored
8 years ago
by
Aaron Bauman
Browse files
Options
Downloads
Patches
Plain Diff
interim commit
parent
334d1542
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
modules/salesforce_pull/src/Plugin/QueueWorker/PullBase.php
+12
-2
12 additions, 2 deletions
modules/salesforce_pull/src/Plugin/QueueWorker/PullBase.php
with
12 additions
and
2 deletions
modules/salesforce_pull/src/Plugin/QueueWorker/PullBase.php
+
12
−
2
View file @
ca6fb25a
...
@@ -146,12 +146,15 @@ abstract class PullBase extends QueueWorkerBase implements ContainerFactoryPlugi
...
@@ -146,12 +146,15 @@ abstract class PullBase extends QueueWorkerBase implements ContainerFactoryPlugi
*/
*/
protected
function
updateEntity
(
SalesforceMappingInterface
$mapping
,
MappedObjectInterface
$mapped_object
,
SObject
$sf_object
)
{
protected
function
updateEntity
(
SalesforceMappingInterface
$mapping
,
MappedObjectInterface
$mapped_object
,
SObject
$sf_object
)
{
if
(
!
$mapping
->
checkTriggers
([
MappingConstants
::
SALESFORCE_MAPPING_SYNC_SF_UPDATE
]))
{
if
(
!
$mapping
->
checkTriggers
([
MappingConstants
::
SALESFORCE_MAPPING_SYNC_SF_UPDATE
]))
{
echo
__LINE__
.
PHP_EOL
;
return
;
return
;
}
}
try
{
try
{
echo
__LINE__
.
PHP_EOL
;
$entity
=
$this
->
etm
->
getStorage
(
$mapped_object
->
entity_type_id
->
value
)
$entity
=
$this
->
etm
->
getStorage
(
$mapped_object
->
entity_type_id
->
value
)
->
load
(
$mapped_object
->
entity_id
->
value
);
->
load
(
$mapped_object
->
entity_id
->
value
);
echo
__LINE__
.
PHP_EOL
;
if
(
!
$entity
)
{
if
(
!
$entity
)
{
$this
->
logger
->
log
(
$this
->
logger
->
log
(
LogLevel
::
ERROR
,
LogLevel
::
ERROR
,
...
@@ -161,12 +164,14 @@ abstract class PullBase extends QueueWorkerBase implements ContainerFactoryPlugi
...
@@ -161,12 +164,14 @@ abstract class PullBase extends QueueWorkerBase implements ContainerFactoryPlugi
'%msg'
=>
$e
->
getMessage
(),
'%msg'
=>
$e
->
getMessage
(),
]
]
);
);
echo
__LINE__
.
PHP_EOL
;
return
;
return
;
}
}
// Flag this entity as having been processed. This does not persist,
// Flag this entity as having been processed. This does not persist,
// but is used by salesforce_push to avoid duplicate processing.
// but is used by salesforce_push to avoid duplicate processing.
$entity
->
salesforce_pull
=
TRUE
;
$entity
->
salesforce_pull
=
TRUE
;
echo
__LINE__
.
PHP_EOL
;
$entity_updated
=
!
empty
(
$entity
->
changed
->
value
)
$entity_updated
=
!
empty
(
$entity
->
changed
->
value
)
?
$entity
->
changed
->
value
?
$entity
->
changed
->
value
...
@@ -175,6 +180,7 @@ abstract class PullBase extends QueueWorkerBase implements ContainerFactoryPlugi
...
@@ -175,6 +180,7 @@ abstract class PullBase extends QueueWorkerBase implements ContainerFactoryPlugi
$pull_trigger_date
=
$pull_trigger_date
=
$sf_object
->
field
(
$mapping
->
get
(
'pull_trigger_date'
));
$sf_object
->
field
(
$mapping
->
get
(
'pull_trigger_date'
));
$sf_record_updated
=
strtotime
(
$pull_trigger_date
);
$sf_record_updated
=
strtotime
(
$pull_trigger_date
);
echo
__LINE__
.
PHP_EOL
;
$mapped_object
$mapped_object
->
setDrupalEntity
(
$entity
)
->
setDrupalEntity
(
$entity
)
...
@@ -184,12 +190,15 @@ abstract class PullBase extends QueueWorkerBase implements ContainerFactoryPlugi
...
@@ -184,12 +190,15 @@ abstract class PullBase extends QueueWorkerBase implements ContainerFactoryPlugi
SalesforceEvents
::
PULL_PREPULL
,
SalesforceEvents
::
PULL_PREPULL
,
new
SalesforcePullEvent
(
$mapped_object
,
MappingConstants
::
SALESFORCE_MAPPING_SYNC_SF_UPDATE
)
new
SalesforcePullEvent
(
$mapped_object
,
MappingConstants
::
SALESFORCE_MAPPING_SYNC_SF_UPDATE
)
);
);
echo
__LINE__
.
PHP_EOL
;
// @TODO allow some means for contrib to force pull regardless
// @TODO allow some means for contrib to force pull regardless
// of updated dates
// of updated dates
if
(
$sf_record_updated
>
$entity_updated
)
{
if
(
$sf_record_updated
>
$entity_updated
)
{
// Set fields values on the Drupal entity.
// Set fields values on the Drupal entity.
echo
__LINE__
.
PHP_EOL
;
$mapped_object
->
pull
();
$mapped_object
->
pull
();
echo
__LINE__
.
PHP_EOL
;
$this
->
logger
->
log
(
$this
->
logger
->
log
(
LogLevel
::
NOTICE
,
LogLevel
::
NOTICE
,
'Updated entity %label associated with Salesforce Object ID: %sfid'
,
'Updated entity %label associated with Salesforce Object ID: %sfid'
,
...
@@ -198,10 +207,13 @@ abstract class PullBase extends QueueWorkerBase implements ContainerFactoryPlugi
...
@@ -198,10 +207,13 @@ abstract class PullBase extends QueueWorkerBase implements ContainerFactoryPlugi
'%sfid'
=>
(
string
)
$sf_object
->
id
(),
'%sfid'
=>
(
string
)
$sf_object
->
id
(),
]
]
);
);
echo
__LINE__
.
PHP_EOL
;
return
MappingConstants
::
SALESFORCE_MAPPING_SYNC_SF_UPDATE
;
return
MappingConstants
::
SALESFORCE_MAPPING_SYNC_SF_UPDATE
;
}
}
}
}
catch
(
\Exception
$e
)
{
catch
(
\Exception
$e
)
{
var_dump
(
$e
);
echo
__LINE__
.
PHP_EOL
;
$this
->
logger
->
log
(
$this
->
logger
->
log
(
LogLevel
::
ERROR
,
LogLevel
::
ERROR
,
'Failed to update entity %label from Salesforce object %sfobjectid. Error: %msg'
,
'Failed to update entity %label from Salesforce object %sfobjectid. Error: %msg'
,
...
@@ -258,7 +270,6 @@ abstract class PullBase extends QueueWorkerBase implements ContainerFactoryPlugi
...
@@ -258,7 +270,6 @@ abstract class PullBase extends QueueWorkerBase implements ContainerFactoryPlugi
'salesforce_mapping'
=>
$mapping
->
id
(),
'salesforce_mapping'
=>
$mapping
->
id
(),
'salesforce_id'
=>
(
string
)
$sf_object
->
id
(),
'salesforce_id'
=>
(
string
)
$sf_object
->
id
(),
]);
]);
var_dump
(
$mapped_object
);
$mapped_object
$mapped_object
->
setDrupalEntity
(
$entity
)
->
setDrupalEntity
(
$entity
)
->
setSalesforceRecord
(
$sf_object
);
->
setSalesforceRecord
(
$sf_object
);
...
@@ -291,7 +302,6 @@ abstract class PullBase extends QueueWorkerBase implements ContainerFactoryPlugi
...
@@ -291,7 +302,6 @@ abstract class PullBase extends QueueWorkerBase implements ContainerFactoryPlugi
return
MappingConstants
::
SALESFORCE_MAPPING_SYNC_SF_CREATE
;
return
MappingConstants
::
SALESFORCE_MAPPING_SYNC_SF_CREATE
;
}
}
catch
(
\Exception
$e
)
{
catch
(
\Exception
$e
)
{
var_dump
(
$e
);
$this
->
logger
->
log
(
$this
->
logger
->
log
(
LogLevel
::
ERROR
,
LogLevel
::
ERROR
,
'%msg Pull-create failed for Salesforce Object ID: %sfobjectid'
,
'%msg Pull-create failed for Salesforce Object ID: %sfobjectid'
,
...
...
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