summaryrefslogtreecommitdiff
path: root/app/Controller/Webhook.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controller/Webhook.php')
-rw-r--r--app/Controller/Webhook.php16
1 files changed, 14 insertions, 2 deletions
diff --git a/app/Controller/Webhook.php b/app/Controller/Webhook.php
index afa0543a..06bfcd4e 100644
--- a/app/Controller/Webhook.php
+++ b/app/Controller/Webhook.php
@@ -112,8 +112,20 @@ class Webhook extends Base
$this->response->text('Not Authorized', 401);
}
- $result = $this->postmarkWebhook->parsePayload($this->request->getJson() ?: array());
+ echo $this->postmarkWebhook->parsePayload($this->request->getJson() ?: array()) ? 'PARSED' : 'IGNORED';
+ }
- echo $result ? 'PARSED' : 'IGNORED';
+ /**
+ * Handle Mailgun webhooks
+ *
+ * @access public
+ */
+ public function mailgun()
+ {
+ if ($this->config->get('webhook_token') !== $this->request->getStringParam('token')) {
+ $this->response->text('Not Authorized', 401);
+ }
+
+ echo $this->mailgunWebhook->parsePayload($_POST) ? 'PARSED' : 'IGNORED';
}
}