2017-12-10 21:20:28 +01:00
|
|
|
<?php
|
|
|
|
/* Copyright (C) 2015 Daniel Preussker <f0o@librenms.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/>. */
|
2017-12-10 21:20:28 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Pushbullet API Transport
|
2021-09-10 20:09:53 +02:00
|
|
|
*
|
2017-12-10 21:20:28 +01:00
|
|
|
* @author f0o <f0o@librenms.org>
|
|
|
|
* @copyright 2015 f0o, LibreNMS
|
|
|
|
* @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 Pushbullet 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
|
2017-12-10 21:20:28 +01:00
|
|
|
{
|
|
|
|
// Note: At this point it might be useful to iterate through $obj['contacts'] and send each of them a note ?
|
2023-05-23 09:25:17 -05:00
|
|
|
$url = 'https://api.pushbullet.com/v2/pushes';
|
|
|
|
$data = ['type' => 'note', 'title' => $alert_data['title'], 'body' => $alert_data['msg']];
|
2017-12-10 21:20:28 +01:00
|
|
|
|
2023-05-23 09:25:17 -05:00
|
|
|
$res = Http::client()
|
|
|
|
->withToken($this->config['pushbullet-token'])
|
|
|
|
->post($url, $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
|
|
|
}
|
2020-09-21 14:54:51 +02:00
|
|
|
|
2023-05-23 09:25:17 -05:00
|
|
|
throw new AlertTransportDeliveryException($alert_data, $res->status(), $res->body(), $alert_data['msg'], $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' => 'Access Token',
|
|
|
|
'name' => 'pushbullet-token',
|
|
|
|
'descr' => 'Pushbullet Access Token',
|
|
|
|
'type' => 'text',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'validation' => [
|
|
|
|
'pushbullet-token' => 'required|string',
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
2017-12-10 21:20:28 +01:00
|
|
|
}
|