summaryrefslogtreecommitdiff
path: root/app/Event/BaseNotificationListener.php
blob: 6c1728cb79a113076261c5123d59726391684138 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php

namespace Event;

use Core\Listener;
use Model\Notification;

/**
 * Base notification listener
 *
 * @package event
 * @author  Frederic Guillot
 */
abstract class BaseNotificationListener implements Listener
{
    /**
     * Notification model
     *
     * @accesss protected
     * @var Model\Notification
     */
    protected $notification;

    /**
     * Template name
     *
     * @accesss private
     * @var string
     */
    private $template = '';

    /**
     * Fetch data for the mail template
     *
     * @access public
     * @param  array    $data    Event data
     * @return array
     */
    abstract public function getTemplateData(array $data);

    /**
     * Constructor
     *
     * @access public
     * @param  \Model\Notification   $notification   Notification model instance
     * @param  string                $template       Template name
     */
    public function __construct(Notification $notification, $template)
    {
        $this->template = $template;
        $this->notification = $notification;
    }

    /**
     * Execute the action
     *
     * @access public
     * @param  array   $data   Event data dictionary
     * @return bool            True if the action was executed or false when not executed
     */
    public function execute(array $data)
    {
        $values = $this->getTemplateData($data);

        // Get the list of users to be notified
        $users = $this->notification->getUsersList($values['task']['project_id']);

        // Send notifications
        if ($users) {
            $this->notification->sendEmails($this->template, $users, $values);
            return true;
        }

        return false;
    }
}