summaryrefslogtreecommitdiff
path: root/app/Integration/BitbucketWebhook.php
blob: 97a394373c53ce43b4e194a055d600415ec2a3f1 (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
<?php

namespace Kanboard\Integration;

use Kanboard\Event\GenericEvent;

/**
 * Bitbucket Webhook
 *
 * @package  integration
 * @author   Frederic Guillot
 */
class BitbucketWebhook extends \Kanboard\Core\Base
{
    /**
     * Events
     *
     * @var string
     */
    const EVENT_COMMIT                 = 'bitbucket.webhook.commit';
    const EVENT_ISSUE_OPENED           = 'bitbucket.webhook.issue.opened';
    const EVENT_ISSUE_CLOSED           = 'bitbucket.webhook.issue.closed';
    const EVENT_ISSUE_REOPENED         = 'bitbucket.webhook.issue.reopened';
    const EVENT_ISSUE_ASSIGNEE_CHANGE  = 'bitbucket.webhook.issue.assignee';
    const EVENT_ISSUE_COMMENT          = 'bitbucket.webhook.issue.commented';

    /**
     * Project id
     *
     * @access private
     * @var integer
     */
    private $project_id = 0;

    /**
     * Set the project id
     *
     * @access public
     * @param  integer   $project_id   Project id
     */
    public function setProjectId($project_id)
    {
        $this->project_id = $project_id;
    }

    /**
     * Parse incoming events
     *
     * @access public
     * @param  string  $type      Bitbucket event type
     * @param  array   $payload   Bitbucket event
     * @return boolean
     */
    public function parsePayload($type, array $payload)
    {
        switch ($type) {
            case 'issue:comment_created':
                return $this->handleCommentCreated($payload);
            case 'issue:created':
                return $this->handleIssueOpened($payload);
            case 'issue:updated':
                return $this->handleIssueUpdated($payload);
            case 'repo:push':
                return $this->handlePush($payload);
        }

        return false;
    }

    /**
     * Parse comment issue events
     *
     * @access public
     * @param  array   $payload
     * @return boolean
     */
    public function handleCommentCreated(array $payload)
    {
        $task = $this->taskFinder->getByReference($this->project_id, $payload['issue']['id']);

        if (! empty($task)) {
            $user = $this->user->getByUsername($payload['actor']['username']);

            if (! empty($user) && ! $this->projectPermission->isMember($this->project_id, $user['id'])) {
                $user = array();
            }

            $event = array(
                'project_id' => $this->project_id,
                'reference' => $payload['comment']['id'],
                'comment' => $payload['comment']['content']['raw']."\n\n[".t('By @%s on Bitbucket', $payload['actor']['display_name']).']('.$payload['comment']['links']['html']['href'].')',
                'user_id' => ! empty($user) ? $user['id'] : 0,
                'task_id' => $task['id'],
            );

            $this->container['dispatcher']->dispatch(
                self::EVENT_ISSUE_COMMENT,
                new GenericEvent($event)
            );

            return true;
        }

        return false;
    }

    /**
     * Handle new issues
     *
     * @access public
     * @param  array    $payload
     * @return boolean
     */
    public function handleIssueOpened(array $payload)
    {
        $event = array(
            'project_id' => $this->project_id,
            'reference' => $payload['issue']['id'],
            'title' => $payload['issue']['title'],
            'description' => $payload['issue']['content']['raw']."\n\n[".t('Bitbucket Issue').']('.$payload['issue']['links']['html']['href'].')',
        );

        $this->container['dispatcher']->dispatch(
            self::EVENT_ISSUE_OPENED,
            new GenericEvent($event)
        );

        return true;
    }

    /**
     * Handle issue updates
     *
     * @access public
     * @param  array    $payload
     * @return boolean
     */
    public function handleIssueUpdated(array $payload)
    {
        $task = $this->taskFinder->getByReference($this->project_id, $payload['issue']['id']);

        if (empty($task)) {
            return false;
        }

        if (isset($payload['changes']['status'])) {
            return $this->handleStatusChange($task, $payload);
        } elseif (isset($payload['changes']['assignee'])) {
            return $this->handleAssigneeChange($task, $payload);
        }

        return false;
    }

    /**
     * Handle issue status change
     *
     * @access public
     * @param  array    $task
     * @param  array    $payload
     * @return boolean
     */
    public function handleStatusChange(array $task, array $payload)
    {
        $event = array(
            'project_id' => $this->project_id,
            'task_id' => $task['id'],
            'reference' => $payload['issue']['id'],
        );

        switch ($payload['issue']['state']) {
            case 'closed':
                $this->container['dispatcher']->dispatch(self::EVENT_ISSUE_CLOSED, new GenericEvent($event));
                return true;
            case 'open':
                $this->container['dispatcher']->dispatch(self::EVENT_ISSUE_REOPENED, new GenericEvent($event));
                return true;
        }

        return false;
    }

    /**
     * Handle issue assignee change
     *
     * @access public
     * @param  array    $task
     * @param  array    $payload
     * @return boolean
     */
    public function handleAssigneeChange(array $task, array $payload)
    {
        if (empty($payload['issue']['assignee'])) {
            return $this->handleIssueUnassigned($task, $payload);
        }

        return $this->handleIssueAssigned($task, $payload);
    }

    /**
     * Handle issue assigned
     *
     * @access public
     * @param  array    $task
     * @param  array    $payload
     * @return boolean
     */
    public function handleIssueAssigned(array $task, array $payload)
    {
        $user = $this->user->getByUsername($payload['issue']['assignee']['username']);

        if (empty($user)) {
            return false;
        }

        if (! $this->projectPermission->isMember($this->project_id, $user['id'])) {
            return false;
        }

        $event = array(
            'project_id' => $this->project_id,
            'task_id' => $task['id'],
            'owner_id' => $user['id'],
            'reference' => $payload['issue']['id'],
        );

        $this->container['dispatcher']->dispatch(self::EVENT_ISSUE_ASSIGNEE_CHANGE, new GenericEvent($event));

        return true;
    }

    /**
     * Handle issue unassigned
     *
     * @access public
     * @param  array    $task
     * @param  array    $payload
     * @return boolean
     */
    public function handleIssueUnassigned(array $task, array $payload)
    {
        $event = array(
            'project_id' => $this->project_id,
            'task_id' => $task['id'],
            'owner_id' => 0,
            'reference' => $payload['issue']['id'],
        );

        $this->container['dispatcher']->dispatch(self::EVENT_ISSUE_ASSIGNEE_CHANGE, new GenericEvent($event));

        return true;
    }

    /**
     * Parse push events
     *
     * @access public
     * @param  array   $payload
     * @return boolean
     */
    public function handlePush(array $payload)
    {
        if (isset($payload['push']['changes'])) {
            foreach ($payload['push']['changes'] as $change) {
                if (isset($change['new']['target']) && $this->handleCommit($change['new']['target'], $payload['actor'])) {
                    return true;
                }
            }
        }

        return false;
    }

    /**
     * Parse commit
     *
     * @access public
     * @param  array   $commit   Bitbucket commit
     * @param  array   $actor    Bitbucket actor
     * @return boolean
     */
    public function handleCommit(array $commit, array $actor)
    {
        $task_id = $this->task->getTaskIdFromText($commit['message']);

        if (empty($task_id)) {
            return false;
        }

        $task = $this->taskFinder->getById($task_id);

        if (empty($task)) {
            return false;
        }

        if ($task['project_id'] != $this->project_id) {
            return false;
        }

        $this->container['dispatcher']->dispatch(
            self::EVENT_COMMIT,
            new GenericEvent(array(
                'task_id' => $task_id,
                'commit_message' => $commit['message'],
                'commit_url' => $commit['links']['html']['href'],
                'commit_comment' => $commit['message']."\n\n[".t('Commit made by @%s on Bitbucket', $actor['display_name']).']('.$commit['links']['html']['href'].')',
            ) + $task)
        );

        return true;
    }
}