Add Hipchat integration
This commit is contained in:
@@ -44,7 +44,7 @@ class Config extends Base
|
||||
$values += array('subtask_restriction' => 0, 'subtask_time_tracking' => 0, 'subtask_forecast' => 0);
|
||||
}
|
||||
else if ($redirect === 'integrations') {
|
||||
$values += array('integration_slack_webhook' => 0);
|
||||
$values += array('integration_slack_webhook' => 0, 'integration_hipchat' => 0);
|
||||
}
|
||||
|
||||
if ($this->config->save($values)) {
|
||||
|
||||
@@ -47,8 +47,9 @@ class HttpClient
|
||||
}
|
||||
|
||||
$headers = array(
|
||||
'Connection: close',
|
||||
'User-Agent: '.self::HTTP_USER_AGENT,
|
||||
'Content-Type: application/json',
|
||||
'Connection: close',
|
||||
);
|
||||
|
||||
$context = stream_context_create(array(
|
||||
|
||||
53
app/Integration/Hipchat.php
Normal file
53
app/Integration/Hipchat.php
Normal file
@@ -0,0 +1,53 @@
|
||||
<?php
|
||||
|
||||
namespace Integration;
|
||||
|
||||
/**
|
||||
* Hipchat Webhook
|
||||
*
|
||||
* @package integration
|
||||
* @author Frederic Guillot
|
||||
*/
|
||||
class Hipchat extends Base
|
||||
{
|
||||
/**
|
||||
* Send message to the Hipchat room
|
||||
*
|
||||
* @access public
|
||||
* @param integer $project_id Project id
|
||||
* @param integer $task_id Task id
|
||||
* @param string $event_name Event name
|
||||
* @param array $data Event data
|
||||
*/
|
||||
public function notify($project_id, $task_id, $event_name, array $event)
|
||||
{
|
||||
$project = $this->project->getbyId($project_id);
|
||||
|
||||
$event['event_name'] = $event_name;
|
||||
$event['author'] = $this->user->getFullname($this->session['user']);
|
||||
|
||||
$html = '<img src="http://kanboard.net/assets/img/favicon-32x32.png"/>';
|
||||
$html .= '<strong>'.$project['name'].'</strong><br/>';
|
||||
$html .= $this->projectActivity->getTitle($event);
|
||||
|
||||
if ($this->config->get('application_url')) {
|
||||
$html .= '<br/><a href="'.$this->config->get('application_url');
|
||||
$html .= $this->helper->u('task', 'show', array('task_id' => $task_id, 'project_id' => $project_id)).'">';
|
||||
$html .= t('view the task on Kanboard').'</a>';
|
||||
}
|
||||
|
||||
$payload = array(
|
||||
'message' => $html,
|
||||
'color' => 'yellow',
|
||||
);
|
||||
|
||||
$url = sprintf(
|
||||
'%s/v2/room/%s/notification?auth_token=%s',
|
||||
$this->config->get('integration_hipchat_api_url'),
|
||||
$this->config->get('integration_hipchat_room_id'),
|
||||
$this->config->get('integration_hipchat_room_token')
|
||||
);
|
||||
|
||||
$this->httpClient->post($url, $payload);
|
||||
}
|
||||
}
|
||||
@@ -827,4 +827,9 @@ return array(
|
||||
// 'Webhook URL' => '',
|
||||
// 'Help on Slack integration' => '',
|
||||
// '%s remove the assignee of the task %s' => '',
|
||||
// 'Send notifications to Hipchat' => '',
|
||||
// 'API URL' => '',
|
||||
// 'Room API ID or name' => '',
|
||||
// 'Room notification token' => '',
|
||||
// 'Help on Hipchat integration' => '',
|
||||
);
|
||||
|
||||
@@ -827,4 +827,9 @@ return array(
|
||||
// 'Webhook URL' => '',
|
||||
// 'Help on Slack integration' => '',
|
||||
// '%s remove the assignee of the task %s' => '',
|
||||
// 'Send notifications to Hipchat' => '',
|
||||
// 'API URL' => '',
|
||||
// 'Room API ID or name' => '',
|
||||
// 'Room notification token' => '',
|
||||
// 'Help on Hipchat integration' => '',
|
||||
);
|
||||
|
||||
@@ -827,4 +827,9 @@ return array(
|
||||
// 'Webhook URL' => '',
|
||||
// 'Help on Slack integration' => '',
|
||||
// '%s remove the assignee of the task %s' => '',
|
||||
// 'Send notifications to Hipchat' => '',
|
||||
// 'API URL' => '',
|
||||
// 'Room API ID or name' => '',
|
||||
// 'Room notification token' => '',
|
||||
// 'Help on Hipchat integration' => '',
|
||||
);
|
||||
|
||||
@@ -827,4 +827,9 @@ return array(
|
||||
// 'Webhook URL' => '',
|
||||
// 'Help on Slack integration' => '',
|
||||
// '%s remove the assignee of the task %s' => '',
|
||||
// 'Send notifications to Hipchat' => '',
|
||||
// 'API URL' => '',
|
||||
// 'Room API ID or name' => '',
|
||||
// 'Room notification token' => '',
|
||||
// 'Help on Hipchat integration' => '',
|
||||
);
|
||||
|
||||
@@ -825,8 +825,13 @@ return array(
|
||||
'Reference currency' => 'Devise de référence',
|
||||
'The currency rate have been added successfully.' => 'Le taux de change a été ajouté avec succès.',
|
||||
'Unable to add this currency rate.' => 'Impossible d\'ajouter ce taux de change',
|
||||
'Send notifications to a Slack channel' => 'Envoyer des notifications sur un channel Slack',
|
||||
'Send notifications to a Slack channel' => 'Envoyer les notifications sur un salon de discussion Slack',
|
||||
'Webhook URL' => 'URL du webhook',
|
||||
'Help on Slack integration' => 'Aide sur l\'intégration avec Slack',
|
||||
'%s remove the assignee of the task %s' => '%s a enlevé la personne assignée à la tâche %s',
|
||||
'Send notifications to Hipchat' => 'Envoyer les notifications vers Hipchat',
|
||||
'API URL' => 'URL de l\'api',
|
||||
'Room API ID or name' => 'Nom ou identifiant du salon de discussion',
|
||||
'Room notification token' => 'Jeton de sécurité du salon de discussion',
|
||||
'Help on Hipchat integration' => 'Aide sur l\'intégration avec Hipchat',
|
||||
);
|
||||
|
||||
@@ -827,4 +827,9 @@ return array(
|
||||
// 'Webhook URL' => '',
|
||||
// 'Help on Slack integration' => '',
|
||||
// '%s remove the assignee of the task %s' => '',
|
||||
// 'Send notifications to Hipchat' => '',
|
||||
// 'API URL' => '',
|
||||
// 'Room API ID or name' => '',
|
||||
// 'Room notification token' => '',
|
||||
// 'Help on Hipchat integration' => '',
|
||||
);
|
||||
|
||||
@@ -827,4 +827,9 @@ return array(
|
||||
// 'Webhook URL' => '',
|
||||
// 'Help on Slack integration' => '',
|
||||
// '%s remove the assignee of the task %s' => '',
|
||||
// 'Send notifications to Hipchat' => '',
|
||||
// 'API URL' => '',
|
||||
// 'Room API ID or name' => '',
|
||||
// 'Room notification token' => '',
|
||||
// 'Help on Hipchat integration' => '',
|
||||
);
|
||||
|
||||
@@ -827,4 +827,9 @@ return array(
|
||||
// 'Webhook URL' => '',
|
||||
// 'Help on Slack integration' => '',
|
||||
// '%s remove the assignee of the task %s' => '',
|
||||
// 'Send notifications to Hipchat' => '',
|
||||
// 'API URL' => '',
|
||||
// 'Room API ID or name' => '',
|
||||
// 'Room notification token' => '',
|
||||
// 'Help on Hipchat integration' => '',
|
||||
);
|
||||
|
||||
@@ -827,4 +827,9 @@ return array(
|
||||
// 'Webhook URL' => '',
|
||||
// 'Help on Slack integration' => '',
|
||||
// '%s remove the assignee of the task %s' => '',
|
||||
// 'Send notifications to Hipchat' => '',
|
||||
// 'API URL' => '',
|
||||
// 'Room API ID or name' => '',
|
||||
// 'Room notification token' => '',
|
||||
// 'Help on Hipchat integration' => '',
|
||||
);
|
||||
|
||||
@@ -827,4 +827,9 @@ return array(
|
||||
// 'Webhook URL' => '',
|
||||
// 'Help on Slack integration' => '',
|
||||
// '%s remove the assignee of the task %s' => '',
|
||||
// 'Send notifications to Hipchat' => '',
|
||||
// 'API URL' => '',
|
||||
// 'Room API ID or name' => '',
|
||||
// 'Room notification token' => '',
|
||||
// 'Help on Hipchat integration' => '',
|
||||
);
|
||||
|
||||
@@ -827,4 +827,9 @@ return array(
|
||||
// 'Webhook URL' => '',
|
||||
// 'Help on Slack integration' => '',
|
||||
// '%s remove the assignee of the task %s' => '',
|
||||
// 'Send notifications to Hipchat' => '',
|
||||
// 'API URL' => '',
|
||||
// 'Room API ID or name' => '',
|
||||
// 'Room notification token' => '',
|
||||
// 'Help on Hipchat integration' => '',
|
||||
);
|
||||
|
||||
@@ -827,4 +827,9 @@ return array(
|
||||
// 'Webhook URL' => '',
|
||||
// 'Help on Slack integration' => '',
|
||||
// '%s remove the assignee of the task %s' => '',
|
||||
// 'Send notifications to Hipchat' => '',
|
||||
// 'API URL' => '',
|
||||
// 'Room API ID or name' => '',
|
||||
// 'Room notification token' => '',
|
||||
// 'Help on Hipchat integration' => '',
|
||||
);
|
||||
|
||||
@@ -827,4 +827,9 @@ return array(
|
||||
// 'Webhook URL' => '',
|
||||
// 'Help on Slack integration' => '',
|
||||
// '%s remove the assignee of the task %s' => '',
|
||||
// 'Send notifications to Hipchat' => '',
|
||||
// 'API URL' => '',
|
||||
// 'Room API ID or name' => '',
|
||||
// 'Room notification token' => '',
|
||||
// 'Help on Hipchat integration' => '',
|
||||
);
|
||||
|
||||
@@ -827,4 +827,9 @@ return array(
|
||||
// 'Webhook URL' => '',
|
||||
// 'Help on Slack integration' => '',
|
||||
// '%s remove the assignee of the task %s' => '',
|
||||
// 'Send notifications to Hipchat' => '',
|
||||
// 'API URL' => '',
|
||||
// 'Room API ID or name' => '',
|
||||
// 'Room notification token' => '',
|
||||
// 'Help on Hipchat integration' => '',
|
||||
);
|
||||
|
||||
@@ -827,4 +827,9 @@ return array(
|
||||
// 'Webhook URL' => '',
|
||||
// 'Help on Slack integration' => '',
|
||||
// '%s remove the assignee of the task %s' => '',
|
||||
// 'Send notifications to Hipchat' => '',
|
||||
// 'API URL' => '',
|
||||
// 'Room API ID or name' => '',
|
||||
// 'Room notification token' => '',
|
||||
// 'Help on Hipchat integration' => '',
|
||||
);
|
||||
|
||||
@@ -827,4 +827,9 @@ return array(
|
||||
// 'Webhook URL' => '',
|
||||
// 'Help on Slack integration' => '',
|
||||
// '%s remove the assignee of the task %s' => '',
|
||||
// 'Send notifications to Hipchat' => '',
|
||||
// 'API URL' => '',
|
||||
// 'Room API ID or name' => '',
|
||||
// 'Room notification token' => '',
|
||||
// 'Help on Hipchat integration' => '',
|
||||
);
|
||||
|
||||
@@ -827,4 +827,9 @@ return array(
|
||||
// 'Webhook URL' => '',
|
||||
// 'Help on Slack integration' => '',
|
||||
// '%s remove the assignee of the task %s' => '',
|
||||
// 'Send notifications to Hipchat' => '',
|
||||
// 'API URL' => '',
|
||||
// 'Room API ID or name' => '',
|
||||
// 'Room notification token' => '',
|
||||
// 'Help on Hipchat integration' => '',
|
||||
);
|
||||
|
||||
@@ -6,7 +6,16 @@ use PDO;
|
||||
use Core\Security;
|
||||
use Model\Link;
|
||||
|
||||
const VERSION = 58;
|
||||
const VERSION = 59;
|
||||
|
||||
function version_59($pdo)
|
||||
{
|
||||
$rq = $pdo->prepare('INSERT INTO settings VALUES (?, ?)');
|
||||
$rq->execute(array('integration_hipchat', '0'));
|
||||
$rq->execute(array('integration_hipchat_api_url', 'https://api.hipchat.com'));
|
||||
$rq->execute(array('integration_hipchat_room_id', ''));
|
||||
$rq->execute(array('integration_hipchat_room_token', ''));
|
||||
}
|
||||
|
||||
function version_58($pdo)
|
||||
{
|
||||
|
||||
@@ -6,7 +6,16 @@ use PDO;
|
||||
use Core\Security;
|
||||
use Model\Link;
|
||||
|
||||
const VERSION = 39;
|
||||
const VERSION = 40;
|
||||
|
||||
function version_40($pdo)
|
||||
{
|
||||
$rq = $pdo->prepare('INSERT INTO settings VALUES (?, ?)');
|
||||
$rq->execute(array('integration_hipchat', '0'));
|
||||
$rq->execute(array('integration_hipchat_api_url', 'https://api.hipchat.com'));
|
||||
$rq->execute(array('integration_hipchat_room_id', ''));
|
||||
$rq->execute(array('integration_hipchat_room_token', ''));
|
||||
}
|
||||
|
||||
function version_39($pdo)
|
||||
{
|
||||
|
||||
@@ -6,7 +6,16 @@ use Core\Security;
|
||||
use PDO;
|
||||
use Model\Link;
|
||||
|
||||
const VERSION = 57;
|
||||
const VERSION = 58;
|
||||
|
||||
function version_58($pdo)
|
||||
{
|
||||
$rq = $pdo->prepare('INSERT INTO settings VALUES (?, ?)');
|
||||
$rq->execute(array('integration_hipchat', '0'));
|
||||
$rq->execute(array('integration_hipchat_api_url', 'https://api.hipchat.com'));
|
||||
$rq->execute(array('integration_hipchat_room_id', ''));
|
||||
$rq->execute(array('integration_hipchat_room_token', ''));
|
||||
}
|
||||
|
||||
function version_57($pdo)
|
||||
{
|
||||
|
||||
@@ -75,6 +75,7 @@ class ClassProvider implements ServiceProviderInterface
|
||||
'GitlabWebhook',
|
||||
'GithubWebhook',
|
||||
'BitbucketWebhook',
|
||||
'Hipchat',
|
||||
'SlackWebhook',
|
||||
)
|
||||
);
|
||||
|
||||
@@ -42,14 +42,32 @@ class ProjectActivitySubscriber extends Base implements EventSubscriberInterface
|
||||
$values
|
||||
);
|
||||
|
||||
if ($this->config->get('integration_slack_webhook') == 1) {
|
||||
$this->slackWebhook->notify(
|
||||
$values['task']['project_id'],
|
||||
$values['task']['id'],
|
||||
$event_name,
|
||||
$values
|
||||
);
|
||||
}
|
||||
$this->sendSlackNotification($event_name, $values);
|
||||
$this->sendHipchatNotification($event_name, $values);
|
||||
}
|
||||
}
|
||||
|
||||
private function sendSlackNotification($event_name, array $values)
|
||||
{
|
||||
if ($this->config->get('integration_slack_webhook') == 1) {
|
||||
$this->slackWebhook->notify(
|
||||
$values['task']['project_id'],
|
||||
$values['task']['id'],
|
||||
$event_name,
|
||||
$values
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
private function sendHipchatNotification($event_name, array $values)
|
||||
{
|
||||
if ($this->config->get('integration_hipchat') == 1) {
|
||||
$this->hipchat->notify(
|
||||
$values['task']['project_id'],
|
||||
$values['task']['id'],
|
||||
$event_name,
|
||||
$values
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -6,6 +6,22 @@
|
||||
|
||||
<?= $this->formCsrf() ?>
|
||||
|
||||
<h3><img src="assets/img/hipchat-icon.png"/> <?= t('Hipchat') ?></h3>
|
||||
<div class="listing">
|
||||
<?= $this->formCheckbox('integration_hipchat', t('Send notifications to Hipchat'), 1, $values['integration_hipchat'] == 1) ?>
|
||||
|
||||
<?= $this->formLabel(t('API URL'), 'integration_hipchat_api_url') ?>
|
||||
<?= $this->formText('integration_hipchat_api_url', $values, $errors) ?>
|
||||
|
||||
<?= $this->formLabel(t('Room API ID or name'), 'integration_hipchat_room_id') ?>
|
||||
<?= $this->formText('integration_hipchat_room_id', $values, $errors) ?>
|
||||
|
||||
<?= $this->formLabel(t('Room notification token'), 'integration_hipchat_room_token') ?>
|
||||
<?= $this->formText('integration_hipchat_room_token', $values, $errors) ?>
|
||||
|
||||
<p class="form-help"><a href="http://kanboard.net/documentation/hipchat" target="_blank"><?= t('Help on Hipchat integration') ?></a></p>
|
||||
</div>
|
||||
|
||||
<h3><i class="fa fa-slack fa-fw"></i> <?= t('Slack') ?></h3>
|
||||
<div class="listing">
|
||||
<?= $this->formCheckbox('integration_slack_webhook', t('Send notifications to a Slack channel'), 1, $values['integration_slack_webhook'] == 1) ?>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<p class="form-help"><a href="http://kanboard.net/documentation/github-webhooks" target="_blank"><?= t('Help on Github webhooks') ?></a></p>
|
||||
</div>
|
||||
|
||||
<h3><i class="fa fa-git fa-fw"></i> <?= t('Gitlab webhooks') ?></h3>
|
||||
<h3><img src="assets/img/gitlab-icon.png"/> <?= t('Gitlab webhooks') ?></h3>
|
||||
<div class="listing">
|
||||
<input type="text" class="auto-select" readonly="readonly" value="<?= $this->getCurrentBaseUrl().$this->u('webhook', 'gitlab', array('token' => $webhook_token, 'project_id' => $project['id'])) ?>"/><br/>
|
||||
<p class="form-help"><a href="http://kanboard.net/documentation/gitlab-webhooks" target="_blank"><?= t('Help on Gitlab webhooks') ?></a></p>
|
||||
|
||||
Reference in New Issue
Block a user