Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

104 lines
3.5 KiB
PHP
Raw Permalink Normal View History

<?php
/* Copyright (C) 2014 Daniel Preussker <f0o@devilcode.org>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2021-02-09 00:29:04 +01:00
* along with this program. If not, see <https://www.gnu.org/licenses/>. */
/**
* API Transport
2021-09-10 20:09:53 +02:00
*
* @author f0o <f0o@devilcode.org>
* @copyright 2014 f0o, LibreNMS
* @license GPL
*/
2020-09-21 14:54:51 +02:00
namespace LibreNMS\Alert\Transport;
2018-07-21 13:34:59 -06:00
use LibreNMS\Alert\Transport;
2021-10-06 07:29:47 -05:00
use LibreNMS\Util\Proxy;
2018-07-21 13:34:59 -06:00
class Slack extends Transport
{
public function deliverAlert($obj, $opts)
2018-07-21 13:34:59 -06:00
{
$slack_opts = $this->parseUserOptions($this->config['slack-options']);
2018-07-21 13:34:59 -06:00
$slack_opts['url'] = $this->config['slack-url'];
2018-07-21 13:34:59 -06:00
return $this->contactSlack($obj, $slack_opts);
}
public static function contactSlack($obj, $api)
{
$host = $api['url'];
$curl = curl_init();
$slack_msg = html_entity_decode(strip_tags($obj['msg'] ?? ''), ENT_QUOTES);
$color = self::getColorForState($obj['state']);
2018-07-21 13:34:59 -06:00
$data = [
'attachments' => [
0 => [
'fallback' => $slack_msg,
'color' => $color,
'title' => $obj['title'] ?? null,
2018-07-21 13:34:59 -06:00
'text' => $slack_msg,
'mrkdwn_in' => ['text', 'fallback'],
'author_name' => $api['author_name'] ?? null,
2018-07-21 13:34:59 -06:00
],
],
'channel' => $api['channel'] ?? null,
'username' => $api['username'] ?? null,
'icon_emoji' => isset($api['icon_emoji']) ? ':' . $api['icon_emoji'] . ':' : null,
2018-07-21 13:34:59 -06:00
];
$alert_message = json_encode($data);
curl_setopt($curl, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);
2021-10-06 07:29:47 -05:00
Proxy::applyToCurl($curl);
2018-07-21 13:34:59 -06:00
curl_setopt($curl, CURLOPT_URL, $host);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $alert_message);
2018-07-21 13:34:59 -06:00
$ret = curl_exec($curl);
$code = curl_getinfo($curl, CURLINFO_HTTP_CODE);
if ($code != 200) {
var_dump("API '$host' returned Error"); //FIXME: propper debuging
var_dump('Params: ' . $alert_message); //FIXME: propper debuging
var_dump('Return: ' . $ret); //FIXME: propper debuging
2020-09-21 14:54:51 +02:00
2018-07-21 13:34:59 -06:00
return 'HTTP Status code ' . $code;
}
2020-09-21 14:54:51 +02:00
return true;
}
2018-07-21 13:34:59 -06:00
public static function configTemplate()
{
return [
'config' => [
[
'title' => 'Webhook URL',
'name' => 'slack-url',
'descr' => 'Slack Webhook URL',
'type' => 'text',
],
[
'title' => 'Slack Options',
'name' => 'slack-options',
2018-07-21 13:34:59 -06:00
'descr' => 'Slack Options',
'type' => 'textarea',
],
],
'validation' => [
'slack-url' => 'required|url',
],
];
}
}