simplenews_mailjet_subscriptions: added rules action to respond to unsubscribe webhook
This commit is contained in:
parent
a528b89949
commit
6f26734eac
|
@ -42,33 +42,29 @@ expression:
|
|||
value:
|
||||
rules_tokens: { }
|
||||
provides_mapping: { }
|
||||
-
|
||||
id: rules_condition
|
||||
uuid: fe051e60-fd5e-4e90-a272-c526017966cb
|
||||
weight: 0
|
||||
condition_id: rules_entity_is_of_type
|
||||
negate: false
|
||||
context_values:
|
||||
type: mailjet_event
|
||||
context_mapping:
|
||||
entity: mailjet_event
|
||||
context_processors:
|
||||
type:
|
||||
rules_tokens: { }
|
||||
provides_mapping: { }
|
||||
actions:
|
||||
id: rules_action_set
|
||||
uuid: 5c91a286-ea41-47f7-b6a9-451cb4bb2324
|
||||
weight: 0
|
||||
actions:
|
||||
-
|
||||
id: rules_action
|
||||
uuid: 9e184f51-443d-41ec-94c0-2c5ec5bdb1db
|
||||
weight: -50
|
||||
action_id: 'rules_entity_create:commerce_log'
|
||||
context_values: { }
|
||||
context_mapping: { }
|
||||
context_processors: { }
|
||||
provides_mapping:
|
||||
commerce_log_created: mailjet_event_log_created
|
||||
-
|
||||
id: rules_action
|
||||
uuid: 7eb49497-8830-46d4-975c-6b25b5d6dee6
|
||||
weight: 0
|
||||
weight: -49
|
||||
action_id: rules_simplenews_mailjet_subscriptions_unsubscribe_from_list
|
||||
context_values:
|
||||
listID: mailjet_event.event_field.mj_list_id
|
||||
email: mailjet_event.event_field.email
|
||||
listID: mailjet_event.event_field
|
||||
email: mailjet_event.event_field
|
||||
context_mapping: { }
|
||||
context_processors:
|
||||
listID:
|
||||
|
|
|
@ -303,10 +303,10 @@ index 98342b5..f67ba96 100644
|
|||
'#type' => 'submit',
|
||||
diff --git a/src/Plugin/RulesAction/UnsubscribeFromList.php b/src/Plugin/RulesAction/UnsubscribeFromList.php
|
||||
new file mode 100644
|
||||
index 0000000..b880ed2
|
||||
index 0000000..3f546ef
|
||||
--- /dev/null
|
||||
+++ b/src/Plugin/RulesAction/UnsubscribeFromList.php
|
||||
@@ -0,0 +1,49 @@
|
||||
@@ -0,0 +1,51 @@
|
||||
+<?php
|
||||
+
|
||||
+namespace Drupal\simplenews_mailjet_subscriptions\Plugin\RulesAction;
|
||||
|
@ -347,7 +347,9 @@ index 0000000..b880ed2
|
|||
+ protected function doExecute(integer $listID, string $email) {
|
||||
+ $l = $listID;
|
||||
+ $e = $email;
|
||||
+ \Drupal::logger('simplenews_mailjet_subscriptions')->notice("Unsubscribe webhook triggered for listID: " . $listID . ", and email: " . $email . ".");
|
||||
+ \Drupal::logger('simplenews_mailjet_subscriptions')->notice(print_r($listID, true));
|
||||
+ // \Drupal::logger('simplenews_mailjet_subscriptions')->notice("Unsubscribe webhook triggered for listID: " . $listID . ", and email: " . $email . ".");
|
||||
+
|
||||
+ // find corresponding simplenews list from mailjet listID
|
||||
+
|
||||
+ // get subscriber entity
|
||||
|
|
Loading…
Reference in New Issue