Add Sendgrid as mail transport

This commit is contained in:
Frederic Guillot
2015-06-13 13:17:16 -04:00
parent 7ba9b2d9b9
commit f2abf33912
9 changed files with 119 additions and 47 deletions

View File

@@ -210,6 +210,18 @@ abstract class Base extends \Core\Base
} }
} }
/**
* Check webhook token
*
* @access protected
*/
protected function checkWebhookToken()
{
if ($this->config->get('webhook_token') !== $this->request->getStringParam('token')) {
$this->response->text('Not Authorized', 401);
}
}
/** /**
* Redirection when there is no project in the database * Redirection when there is no project in the database
* *

View File

@@ -17,9 +17,7 @@ class Webhook extends Base
*/ */
public function task() public function task()
{ {
if ($this->config->get('webhook_token') !== $this->request->getStringParam('token')) { $this->checkWebhookToken();
$this->response->text('Not Authorized', 401);
}
$defaultProject = $this->project->getFirst(); $defaultProject = $this->project->getFirst();
@@ -49,9 +47,7 @@ class Webhook extends Base
*/ */
public function github() public function github()
{ {
if ($this->config->get('webhook_token') !== $this->request->getStringParam('token')) { $this->checkWebhookToken();
$this->response->text('Not Authorized', 401);
}
$this->githubWebhook->setProjectId($this->request->getIntegerParam('project_id')); $this->githubWebhook->setProjectId($this->request->getIntegerParam('project_id'));
@@ -70,15 +66,10 @@ class Webhook extends Base
*/ */
public function gitlab() public function gitlab()
{ {
if ($this->config->get('webhook_token') !== $this->request->getStringParam('token')) { $this->checkWebhookToken();
$this->response->text('Not Authorized', 401);
}
$this->gitlabWebhook->setProjectId($this->request->getIntegerParam('project_id')); $this->gitlabWebhook->setProjectId($this->request->getIntegerParam('project_id'));
$result = $this->gitlabWebhook->parsePayload($this->request->getJson() ?: array());
$result = $this->gitlabWebhook->parsePayload(
$this->request->getJson() ?: array()
);
echo $result ? 'PARSED' : 'IGNORED'; echo $result ? 'PARSED' : 'IGNORED';
} }
@@ -90,12 +81,9 @@ class Webhook extends Base
*/ */
public function bitbucket() public function bitbucket()
{ {
if ($this->config->get('webhook_token') !== $this->request->getStringParam('token')) { $this->checkWebhookToken();
$this->response->text('Not Authorized', 401);
}
$this->bitbucketWebhook->setProjectId($this->request->getIntegerParam('project_id')); $this->bitbucketWebhook->setProjectId($this->request->getIntegerParam('project_id'));
$result = $this->bitbucketWebhook->parsePayload(json_decode(@$_POST['payload'], true) ?: array()); $result = $this->bitbucketWebhook->parsePayload(json_decode(@$_POST['payload'], true) ?: array());
echo $result ? 'PARSED' : 'IGNORED'; echo $result ? 'PARSED' : 'IGNORED';
@@ -108,10 +96,7 @@ class Webhook extends Base
*/ */
public function postmark() public function postmark()
{ {
if ($this->config->get('webhook_token') !== $this->request->getStringParam('token')) { $this->checkWebhookToken();
$this->response->text('Not Authorized', 401);
}
echo $this->postmark->receiveEmail($this->request->getJson() ?: array()) ? 'PARSED' : 'IGNORED'; echo $this->postmark->receiveEmail($this->request->getJson() ?: array()) ? 'PARSED' : 'IGNORED';
} }
@@ -122,10 +107,7 @@ class Webhook extends Base
*/ */
public function mailgun() public function mailgun()
{ {
if ($this->config->get('webhook_token') !== $this->request->getStringParam('token')) { $this->checkWebhookToken();
$this->response->text('Not Authorized', 401);
}
echo $this->mailgun->receiveEmail($_POST) ? 'PARSED' : 'IGNORED'; echo $this->mailgun->receiveEmail($_POST) ? 'PARSED' : 'IGNORED';
} }
@@ -136,10 +118,7 @@ class Webhook extends Base
*/ */
public function sendgrid() public function sendgrid()
{ {
if ($this->config->get('webhook_token') !== $this->request->getStringParam('token')) { $this->checkWebhookToken();
$this->response->text('Not Authorized', 401); echo $this->sendgrid->receiveEmail($_POST) ? 'PARSED' : 'IGNORED';
}
echo $this->sendgridWebhook->parsePayload($_POST) ? 'PARSED' : 'IGNORED';
} }
} }

View File

@@ -31,6 +31,9 @@ class EmailClient extends Base
} }
switch (MAIL_TRANSPORT) { switch (MAIL_TRANSPORT) {
case 'sendgrid':
$this->sendgrid->sendEmail($email, $name, $subject, $html, $author);
break;
case 'mailgun': case 'mailgun':
$this->mailgun->sendEmail($email, $name, $subject, $html, $author); $this->mailgun->sendEmail($email, $name, $subject, $html, $author);
break; break;

View File

@@ -6,13 +6,39 @@ use HTML_To_Markdown;
use Core\Tool; use Core\Tool;
/** /**
* Sendgrid Webhook * Sendgrid Integration
* *
* @package integration * @package integration
* @author Frederic Guillot * @author Frederic Guillot
*/ */
class SendgridWebhook extends \Core\Base class Sendgrid extends \Core\Base
{ {
/**
* Send a HTML email
*
* @access public
* @param string $email
* @param string $name
* @param string $subject
* @param string $html
* @param string $author
*/
public function sendEmail($email, $name, $subject, $html, $author)
{
$payload = array(
'api_user' => SENDGRID_API_USER,
'api_key' => SENDGRID_API_KEY,
'to' => $email,
'toname' => $name,
'from' => MAIL_FROM,
'fromname' => $author,
'html' => $html,
'subject' => $subject,
);
$this->httpClient->postForm('https://api.sendgrid.com/api/mail.send.json', $payload);
}
/** /**
* Parse incoming email * Parse incoming email
* *
@@ -20,7 +46,7 @@ class SendgridWebhook extends \Core\Base
* @param array $payload Incoming email * @param array $payload Incoming email
* @return boolean * @return boolean
*/ */
public function parsePayload(array $payload) public function receiveEmail(array $payload)
{ {
if (empty($payload['envelope']) || empty($payload['subject'])) { if (empty($payload['envelope']) || empty($payload['subject'])) {
return false; return false;

View File

@@ -80,7 +80,7 @@ class ClassProvider implements ServiceProviderInterface
'Jabber', 'Jabber',
'Mailgun', 'Mailgun',
'Postmark', 'Postmark',
'SendgridWebhook', 'Sendgrid',
'SlackWebhook', 'SlackWebhook',
'Smtp', 'Smtp',
) )

View File

@@ -67,6 +67,8 @@ defined('MAIL_SENDMAIL_COMMAND') or define('MAIL_SENDMAIL_COMMAND', '/usr/sbin/s
defined('POSTMARK_API_TOKEN') or define('POSTMARK_API_TOKEN', ''); defined('POSTMARK_API_TOKEN') or define('POSTMARK_API_TOKEN', '');
defined('MAILGUN_API_TOKEN') or define('MAILGUN_API_TOKEN', ''); defined('MAILGUN_API_TOKEN') or define('MAILGUN_API_TOKEN', '');
defined('MAILGUN_DOMAIN') or define('MAILGUN_DOMAIN', ''); defined('MAILGUN_DOMAIN') or define('MAILGUN_DOMAIN', '');
defined('SENDGRID_API_USER') or define('SENDGRID_API_USER', '');
defined('SENDGRID_API_KEY') or define('SENDGRID_API_KEY', '');
// Enable or disable "Strict-Transport-Security" HTTP header // Enable or disable "Strict-Transport-Security" HTTP header
defined('ENABLE_HSTS') or define('ENABLE_HSTS', true); defined('ENABLE_HSTS') or define('ENABLE_HSTS', true);

View File

@@ -16,7 +16,7 @@ define('FILES_DIR', 'data/files/');
// E-mail address for the "From" header (notifications) // E-mail address for the "From" header (notifications)
define('MAIL_FROM', 'notifications@kanboard.local'); define('MAIL_FROM', 'notifications@kanboard.local');
// Mail transport available: "smtp", "sendmail", "mail" (PHP mail function), "postmark", "mailgun" // Mail transport available: "smtp", "sendmail", "mail" (PHP mail function), "postmark", "mailgun", "sendgrid"
define('MAIL_TRANSPORT', 'mail'); define('MAIL_TRANSPORT', 'mail');
// SMTP configuration to use when the "smtp" transport is chosen // SMTP configuration to use when the "smtp" transport is chosen
@@ -38,6 +38,10 @@ define('MAILGUN_API_TOKEN', '');
// Mailgun domain name // Mailgun domain name
define('MAILGUN_DOMAIN', ''); define('MAILGUN_DOMAIN', '');
// Sendgrid API configuration
define('SENDGRID_API_USER', '');
define('SENDGRID_API_KEY', '');
// Database driver: sqlite, mysql or postgres (sqlite by default) // Database driver: sqlite, mysql or postgres (sqlite by default)
define('DB_DRIVER', 'sqlite'); define('DB_DRIVER', 'sqlite');

View File

@@ -22,6 +22,7 @@ There are several email transports available:
- PHP native mail function - PHP native mail function
- Mailgun - Mailgun
- Postmark - Postmark
- Sendgrid
Server settings Server settings
--------------- ---------------
@@ -93,7 +94,7 @@ define('MAILGUN_API_TOKEN', 'YOUR_API_KEY');
define('MAILGUN_DOMAIN', 'YOUR_DOMAIN_CONFIGURED_IN_MAILGUN'); define('MAILGUN_DOMAIN', 'YOUR_DOMAIN_CONFIGURED_IN_MAILGUN');
// Be sure to use the sender email address configured in Mailgun // Be sure to use the sender email address configured in Mailgun
define('MAIL_FROM', 'sender-address-configured-in-postmark@example.org'); define('MAIL_FROM', 'sender-address-configured-in-mailgun@example.org');
``` ```
### Postmark HTTP API ### Postmark HTTP API
@@ -116,6 +117,23 @@ define('POSTMARK_API_TOKEN', 'COPY HERE YOUR POSTMARK API TOKEN');
define('MAIL_FROM', 'sender-address-configured-in-postmark@example.org'); define('MAIL_FROM', 'sender-address-configured-in-postmark@example.org');
``` ```
### Sendgrid HTTP API
You can use the HTTP API of Sendgrid to send emails.
Configuration:
```php
// We choose "sendgrid" as mail transport
define('MAIL_TRANSPORT', 'sendgrid');
// Sendgrid username
define('SENDGRID_API_USER', 'YOUR_SENDGRID_USERNAME');
// Sendgrid password
define('SENDGRID_API_KEY', 'YOUR_SENDGRID_PASSWORD');
```
### The sender email address ### The sender email address
By default, emails will use the sender address `notifications@kanboard.local`. By default, emails will use the sender address `notifications@kanboard.local`.

View File

@@ -2,18 +2,46 @@
require_once __DIR__.'/Base.php'; require_once __DIR__.'/Base.php';
use Integration\SendgridWebhook; use Integration\Sendgrid;
use Model\TaskCreation; use Model\TaskCreation;
use Model\TaskFinder; use Model\TaskFinder;
use Model\Project; use Model\Project;
use Model\ProjectPermission; use Model\ProjectPermission;
use Model\User; use Model\User;
class SendgridWebhookTest extends Base class SendgridTest extends Base
{ {
public function testSendEmail()
{
$pm = new Sendgrid($this->container);
$pm->sendEmail('test@localhost', 'Me', 'Test', 'Content', 'Bob');
$this->assertEquals('https://api.sendgrid.com/api/mail.send.json', $this->container['httpClient']->getUrl());
$data = $this->container['httpClient']->getData();
$this->assertArrayHasKey('api_user', $data);
$this->assertArrayHasKey('api_key', $data);
$this->assertArrayHasKey('from', $data);
$this->assertArrayHasKey('fromname', $data);
$this->assertArrayHasKey('to', $data);
$this->assertArrayHasKey('toname', $data);
$this->assertArrayHasKey('subject', $data);
$this->assertArrayHasKey('html', $data);
$this->assertEquals('test@localhost', $data['to']);
$this->assertEquals('Me', $data['toname']);
$this->assertEquals('notifications@kanboard.local', $data['from']);
$this->assertEquals('Bob', $data['fromname']);
$this->assertEquals('Test', $data['subject']);
$this->assertEquals('Content', $data['html']);
$this->assertEquals('', $data['api_key']);
$this->assertEquals('', $data['api_user']);
}
public function testHandlePayload() public function testHandlePayload()
{ {
$w = new SendgridWebhook($this->container); $w = new Sendgrid($this->container);
$p = new Project($this->container); $p = new Project($this->container);
$pp = new ProjectPermission($this->container); $pp = new ProjectPermission($this->container);
$u = new User($this->container); $u = new User($this->container);
@@ -26,22 +54,22 @@ class SendgridWebhookTest extends Base
$this->assertEquals(2, $p->create(array('name' => 'test2', 'identifier' => 'TEST1'))); $this->assertEquals(2, $p->create(array('name' => 'test2', 'identifier' => 'TEST1')));
// Empty payload // Empty payload
$this->assertFalse($w->parsePayload(array())); $this->assertFalse($w->receiveEmail(array()));
// Unknown user // Unknown user
$this->assertFalse($w->parsePayload(array( $this->assertFalse($w->receiveEmail(array(
'envelope' => '{"to":["a@b.c"],"from":"a.b.c"}', 'envelope' => '{"to":["a@b.c"],"from":"a.b.c"}',
'subject' => 'Email task' 'subject' => 'Email task'
))); )));
// Project not found // Project not found
$this->assertFalse($w->parsePayload(array( $this->assertFalse($w->receiveEmail(array(
'envelope' => '{"to":["a@b.c"],"from":"me@localhost"}', 'envelope' => '{"to":["a@b.c"],"from":"me@localhost"}',
'subject' => 'Email task' 'subject' => 'Email task'
))); )));
// User is not member // User is not member
$this->assertFalse($w->parsePayload(array( $this->assertFalse($w->receiveEmail(array(
'envelope' => '{"to":["something+test1@localhost"],"from":"me@localhost"}', 'envelope' => '{"to":["something+test1@localhost"],"from":"me@localhost"}',
'subject' => 'Email task' 'subject' => 'Email task'
))); )));
@@ -49,7 +77,7 @@ class SendgridWebhookTest extends Base
$this->assertTrue($pp->addMember(2, 2)); $this->assertTrue($pp->addMember(2, 2));
// The task must be created // The task must be created
$this->assertTrue($w->parsePayload(array( $this->assertTrue($w->receiveEmail(array(
'envelope' => '{"to":["something+test1@localhost"],"from":"me@localhost"}', 'envelope' => '{"to":["something+test1@localhost"],"from":"me@localhost"}',
'subject' => 'Email task' 'subject' => 'Email task'
))); )));
@@ -62,7 +90,7 @@ class SendgridWebhookTest extends Base
$this->assertEquals(2, $task['creator_id']); $this->assertEquals(2, $task['creator_id']);
// Html content // Html content
$this->assertTrue($w->parsePayload(array( $this->assertTrue($w->receiveEmail(array(
'envelope' => '{"to":["something+test1@localhost"],"from":"me@localhost"}', 'envelope' => '{"to":["something+test1@localhost"],"from":"me@localhost"}',
'subject' => 'Email task', 'subject' => 'Email task',
'html' => '<strong>bold</strong> text', 'html' => '<strong>bold</strong> text',
@@ -76,7 +104,7 @@ class SendgridWebhookTest extends Base
$this->assertEquals(2, $task['creator_id']); $this->assertEquals(2, $task['creator_id']);
// Text content // Text content
$this->assertTrue($w->parsePayload(array( $this->assertTrue($w->receiveEmail(array(
'envelope' => '{"to":["something+test1@localhost"],"from":"me@localhost"}', 'envelope' => '{"to":["something+test1@localhost"],"from":"me@localhost"}',
'subject' => 'Email task', 'subject' => 'Email task',
'text' => '**bold** text', 'text' => '**bold** text',
@@ -90,7 +118,7 @@ class SendgridWebhookTest extends Base
$this->assertEquals(2, $task['creator_id']); $this->assertEquals(2, $task['creator_id']);
// Text + html content // Text + html content
$this->assertTrue($w->parsePayload(array( $this->assertTrue($w->receiveEmail(array(
'envelope' => '{"to":["something+test1@localhost"],"from":"me@localhost"}', 'envelope' => '{"to":["something+test1@localhost"],"from":"me@localhost"}',
'subject' => 'Email task', 'subject' => 'Email task',
'html' => '<strong>bold</strong> html', 'html' => '<strong>bold</strong> html',