phpci/PHPCI/Plugin/Email.php

233 lines
5.9 KiB
PHP
Raw Normal View History

2013-05-31 13:56:35 +02:00
<?php
/**
* PHPCI - Continuous Integration for PHP
*
* @copyright Copyright 2014, Block 8 Limited.
* @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md
* @link https://www.phptesting.org/
*/
2013-05-31 13:56:35 +02:00
namespace PHPCI\Plugin;
use Exception;
use b8\View;
2013-10-10 02:01:06 +02:00
use PHPCI\Builder;
2014-12-04 16:48:52 +01:00
use PHPCI\Helper\Lang;
2013-10-10 02:01:06 +02:00
use PHPCI\Model\Build;
use PHPCI\Helper\Email as EmailHelper;
use Psr\Log\LogLevel;
2013-05-31 13:56:35 +02:00
/**
* Email Plugin - Provides simple email capability to PHPCI.
* @author Steve Brazier <meadsteve@gmail.com>
* @package PHPCI
* @subpackage Plugins
*/
class Email extends AbstractPlugin
2013-05-31 13:56:35 +02:00
{
/**
* @inheritdoc
*/
protected $allowedStages = array('complete', 'success', 'failure', 'fixed', 'broken');
2013-05-31 13:56:35 +02:00
/**
* @var \PHPCI\Builder
*/
protected $phpci;
/**
* @var \PHPCI\Model\Build
*/
protected $build;
/**
* @var array
*/
protected $options;
/**
* Set up the plugin, configure options, etc.
* @param Builder $phpci
* @param Build $build
* @param \Swift_Mailer $mailer
* @param array $options
*/
2014-02-27 15:04:08 +01:00
public function __construct(
Builder $phpci,
Build $build,
array $options = array()
) {
$this->phpci = $phpci;
$this->build = $build;
$this->options = $options;
2013-05-31 13:56:35 +02:00
}
/**
2015-02-05 14:27:26 +01:00
* Send a notification mail.
*/
2013-05-31 13:56:35 +02:00
public function execute()
{
$addresses = $this->getEmailAddresses();
// Without some email addresses in the yml file then we
// can't do anything.
if (count($addresses) == 0) {
return false;
}
$buildStatus = $this->build->isSuccessful() ? "Passing Build" : "Failing Build";
$projectName = $this->build->getProject()->getTitle();
2013-05-31 13:56:35 +02:00
try {
$view = $this->getMailTemplate();
} catch (Exception $e) {
$this->phpci->log(
sprintf('Unknown mail template "%s", falling back to default.', $this->options['template']),
LogLevel::WARNING
);
$view = $this->getDefaultMailTemplate();
}
$view->build = $this->build;
$view->project = $this->build->getProject();
$layout = new View('Email/layout');
$layout->build = $this->build;
$layout->project = $this->build->getProject();
$layout->content = $view->render();
$body = $layout->render();
2014-12-04 16:48:52 +01:00
$sendFailures = $this->sendSeparateEmails(
$addresses,
sprintf("PHPCI - %s - %s", $projectName, $buildStatus),
$body
);
// This is a success if we've not failed to send anything.
$this->phpci->log(sprintf("%d emails sent", (count($addresses) - $sendFailures)));
$this->phpci->log(sprintf("%d emails failed to send", $sendFailures));
2013-10-10 02:01:06 +02:00
return ($sendFailures === 0);
2013-05-31 13:56:35 +02:00
}
/**
* @param string $toAddress Single address to send to
* @param string[] $ccList
* @param string $subject Email subject
* @param string $body Email body
* @return array Array of failed addresses
*/
protected function sendEmail($toAddress, $ccList, $subject, $body)
{
$email = new EmailHelper();
$email->setEmailTo($toAddress, $toAddress);
$email->setSubject($subject);
$email->setBody($body);
$email->setHtml(true);
2014-02-25 17:03:00 +01:00
if (is_array($ccList) && count($ccList)) {
foreach ($ccList as $address) {
2014-11-12 13:44:56 +01:00
$email->addCc($address, $address);
}
2014-02-25 17:03:00 +01:00
}
return $email->send();
}
/**
* Send an email to a list of specified subjects.
*
* @param array $toAddresses
* List of destination addresses for message.
* @param string $subject
* Mail subject
* @param string $body
* Mail body
*
* @return int number of failed messages
*/
public function sendSeparateEmails(array $toAddresses, $subject, $body)
{
$failures = 0;
2014-02-25 17:03:00 +01:00
$ccList = $this->getCcAddresses();
2013-10-10 02:01:06 +02:00
foreach ($toAddresses as $address) {
if (!$this->sendEmail($address, $ccList, $subject, $body)) {
$failures++;
}
}
return $failures;
}
/**
* Get the list of email addresses to send to.
* @return array
*/
protected function getEmailAddresses()
{
$addresses = array();
2013-10-10 02:01:06 +02:00
$committer = $this->build->getCommitterEmail();
2013-10-08 13:50:59 +02:00
if (isset($this->options['committer']) && !empty($committer)) {
$addresses[] = $committer;
}
if (isset($this->options['addresses'])) {
foreach ($this->options['addresses'] as $address) {
$addresses[] = $address;
}
}
if (empty($addresses) && isset($this->options['default_mailto_address'])) {
$addresses[] = $this->options['default_mailto_address'];
}
return array_unique($addresses);
}
2014-02-25 17:03:00 +01:00
/**
* Get the list of email addresses to CC.
*
* @return array
*/
2014-02-25 17:03:00 +01:00
protected function getCcAddresses()
{
2014-02-27 15:04:08 +01:00
$ccAddresses = array();
2014-02-25 17:03:00 +01:00
if (isset($this->options['cc'])) {
foreach ($this->options['cc'] as $address) {
2014-02-27 15:04:08 +01:00
$ccAddresses[] = $address;
2014-02-25 17:03:00 +01:00
}
}
2014-02-27 15:04:08 +01:00
return $ccAddresses;
2014-02-25 17:03:00 +01:00
}
/**
* Get the mail template used to sent the mail.
*
* @return View
*/
protected function getMailTemplate()
{
if (isset($this->options['template'])) {
return new View('Email/' . $this->options['template']);
}
return $this->getDefaultMailTemplate();
}
/**
* Get the default mail template.
*
* @return View
*/
protected function getDefaultMailTemplate()
{
$template = $this->build->isSuccessful() ? 'short' : 'long';
return new View('Email/' . $template);
}
2014-02-27 15:04:08 +01:00
}