2017-12-10 21:20:28 +01:00
|
|
|
<?php
|
|
|
|
/* Copyright (C) 2017 Celal Emre CICEK <celal.emre@opsgenie.com>
|
|
|
|
* 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/>. */
|
2017-12-10 21:20:28 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* OpsGenie API Transport
|
2021-09-10 20:09:53 +02:00
|
|
|
*
|
2017-12-10 21:20:28 +01:00
|
|
|
* @author Celal Emre CICEK <celal.emre@opsgenie.com>
|
|
|
|
* @copyright 2017 Celal Emre CICEK
|
|
|
|
* @license GPL
|
|
|
|
*/
|
2020-09-21 14:54:51 +02:00
|
|
|
|
2017-12-10 21:20:28 +01:00
|
|
|
namespace LibreNMS\Alert\Transport;
|
|
|
|
|
2018-07-21 13:34:59 -06:00
|
|
|
use LibreNMS\Alert\Transport;
|
2023-05-23 09:25:17 -05:00
|
|
|
use LibreNMS\Exceptions\AlertTransportDeliveryException;
|
|
|
|
use LibreNMS\Util\Http;
|
2017-12-10 21:20:28 +01:00
|
|
|
|
2018-07-21 13:34:59 -06:00
|
|
|
class Opsgenie extends Transport
|
2017-12-10 21:20:28 +01:00
|
|
|
{
|
2023-05-23 09:25:17 -05:00
|
|
|
public function deliverAlert(array $alert_data): bool
|
2018-07-21 13:34:59 -06:00
|
|
|
{
|
2023-05-23 09:25:17 -05:00
|
|
|
$url = $this->config['genie-url'];
|
2017-12-10 21:20:28 +01:00
|
|
|
|
2023-05-23 09:25:17 -05:00
|
|
|
$res = Http::client()->post($url, $alert_data);
|
2020-09-21 14:54:51 +02:00
|
|
|
|
2023-05-23 09:25:17 -05:00
|
|
|
if ($res->successful()) {
|
|
|
|
return true;
|
2017-12-10 21:20:28 +01:00
|
|
|
}
|
|
|
|
|
2023-05-23 09:25:17 -05:00
|
|
|
throw new AlertTransportDeliveryException($alert_data, $res->status(), $res->body(), '', $alert_data);
|
2017-12-10 21:20:28 +01:00
|
|
|
}
|
2018-07-21 13:34:59 -06:00
|
|
|
|
2023-05-23 09:25:17 -05:00
|
|
|
public static function configTemplate(): array
|
2018-07-21 13:34:59 -06:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
'config' => [
|
|
|
|
[
|
|
|
|
'title' => 'Webhook URL',
|
|
|
|
'name' => 'genie-url',
|
|
|
|
'descr' => 'OpsGenie Webhook URL',
|
|
|
|
'type' => 'text',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'validation' => [
|
|
|
|
'genie-url' => 'required|url',
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
2017-12-10 21:20:28 +01:00
|
|
|
}
|