summaryrefslogtreecommitdiff
path: root/app/Event/WebhookListener.php
blob: f7e23e07073be6de94fa21bfd0ff5d29982d9321 (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
<?php

namespace Event;

/**
 * Webhook task events
 *
 * @package event
 * @author  Frederic Guillot
 */
class WebhookListener extends Base
{
    /**
     * Url to call
     *
     * @access private
     * @var string
     */
    private $url = '';

    /**
     * Set webhook url
     *
     * @access public
     * @param  string     $url       URL to call
     */
    public function setUrl($url)
    {
        $this->url = $url;
    }

    /**
     * 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)
    {
        $this->webhook->notify($this->url, $data);
        return true;
    }
}