mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Push Notifications (Mobile and PC) (#13277)
* Update manifest and add service worker cleanup icons a bit * Push notifications WIP * navigate working * cleanup * acknowledge wired up * Set VAPID keys on composer install * Component to control notification permissions. * Allow all user option to validate * Enable on browser load if transport exists. * Check for transport before showing user permissions translations * Documentation * style fixes * access via the attribute model * fix alerting test * update schema * cleanup subscription on disable * non-configurable db and table for webpush subscriptions (respect system connection) * revert AlertTransport change hopefully phpstan can figure it out * phpstan fixes * Support custom details display * Match transport names to brand's preferred display * less duplicate id errors * Tests are done in Laravel code now so remove legacy function usage... could be better, but ok * Style fixes * Style fixes 2 * Fix alert test * Doc updates requires HTTPS and GMP * unregister subscription when permission is set to denied * cleanup after user deletion * delete the right thing * fix whitespace * update install docs to include php-gmp * suggest ext-gmp * update javascript * Update functions.php Co-authored-by: Jellyfrog <Jellyfrog@users.noreply.github.com>
This commit is contained in:
127
LibreNMS/Util/Mail.php
Normal file
127
LibreNMS/Util/Mail.php
Normal file
@@ -0,0 +1,127 @@
|
||||
<?php
|
||||
/*
|
||||
* Mail.php
|
||||
*
|
||||
* -Description-
|
||||
*
|
||||
* 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
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package LibreNMS
|
||||
* @link http://librenms.org
|
||||
* @copyright 2021 Tony Murray
|
||||
* @author Tony Murray <murraytony@gmail.com>
|
||||
*/
|
||||
|
||||
namespace LibreNMS\Util;
|
||||
|
||||
use Exception;
|
||||
use LibreNMS\Config;
|
||||
use PHPMailer\PHPMailer\PHPMailer;
|
||||
|
||||
class Mail
|
||||
{
|
||||
/**
|
||||
* Parse string with emails. Return array with email (as key) and name (as value)
|
||||
*
|
||||
* @param string $emails
|
||||
* @return array|false
|
||||
*/
|
||||
public static function parseEmails($emails)
|
||||
{
|
||||
$result = [];
|
||||
$regex = '/^[\"\']?([^\"\']+)[\"\']?\s{0,}<([^@]+@[^>]+)>$/';
|
||||
if (is_string($emails)) {
|
||||
$emails = preg_split('/[,;]\s{0,}/', $emails);
|
||||
foreach ($emails as $email) {
|
||||
if (preg_match($regex, $email, $out, PREG_OFFSET_CAPTURE)) {
|
||||
$result[$out[2][0]] = $out[1][0];
|
||||
} else {
|
||||
if (strpos($email, '@')) {
|
||||
$from_name = Config::get('email_user');
|
||||
$result[$email] = $from_name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
// Return FALSE if input not string
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Send email with PHPMailer
|
||||
*
|
||||
* @param string $emails
|
||||
* @param string $subject
|
||||
* @param string $message
|
||||
* @param bool $html
|
||||
* @return bool|string
|
||||
*/
|
||||
public static function send($emails, $subject, $message, bool $html = false)
|
||||
{
|
||||
if (is_array($emails) || ($emails = self::parseEmails($emails))) {
|
||||
d_echo("Attempting to email $subject to: " . implode('; ', array_keys($emails)) . PHP_EOL);
|
||||
$mail = new PHPMailer(true);
|
||||
try {
|
||||
$mail->Hostname = php_uname('n');
|
||||
|
||||
foreach (self::parseEmails(Config::get('email_from')) as $from => $from_name) {
|
||||
$mail->setFrom($from, $from_name);
|
||||
}
|
||||
foreach ($emails as $email => $email_name) {
|
||||
$mail->addAddress($email, $email_name);
|
||||
}
|
||||
$mail->Subject = $subject;
|
||||
$mail->XMailer = Config::get('project_name');
|
||||
$mail->CharSet = 'utf-8';
|
||||
$mail->WordWrap = 76;
|
||||
$mail->Body = $message;
|
||||
if ($html) {
|
||||
$mail->isHTML(true);
|
||||
}
|
||||
switch (strtolower(trim(Config::get('email_backend')))) {
|
||||
case 'sendmail':
|
||||
$mail->Mailer = 'sendmail';
|
||||
$mail->Sendmail = Config::get('email_sendmail_path');
|
||||
break;
|
||||
case 'smtp':
|
||||
$mail->isSMTP();
|
||||
$mail->Host = Config::get('email_smtp_host');
|
||||
$mail->Timeout = Config::get('email_smtp_timeout');
|
||||
$mail->SMTPAuth = Config::get('email_smtp_auth');
|
||||
$mail->SMTPSecure = Config::get('email_smtp_secure');
|
||||
$mail->Port = Config::get('email_smtp_port');
|
||||
$mail->Username = Config::get('email_smtp_username');
|
||||
$mail->Password = Config::get('email_smtp_password');
|
||||
$mail->SMTPAutoTLS = Config::get('email_auto_tls');
|
||||
$mail->SMTPDebug = 0;
|
||||
break;
|
||||
default:
|
||||
$mail->Mailer = 'mail';
|
||||
break;
|
||||
}
|
||||
|
||||
return $mail->send();
|
||||
} catch (\PHPMailer\PHPMailer\Exception $e) {
|
||||
return $e->errorMessage();
|
||||
} catch (Exception $e) {
|
||||
return $e->getMessage();
|
||||
}
|
||||
}
|
||||
|
||||
return 'No contacts found';
|
||||
}
|
||||
}
|
84
LibreNMS/Util/Proxy.php
Normal file
84
LibreNMS/Util/Proxy.php
Normal file
@@ -0,0 +1,84 @@
|
||||
<?php
|
||||
/*
|
||||
* Proxy.php
|
||||
*
|
||||
* -Description-
|
||||
*
|
||||
* 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
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package LibreNMS
|
||||
* @link http://librenms.org
|
||||
* @copyright 2021 Tony Murray
|
||||
* @author Tony Murray <murraytony@gmail.com>
|
||||
*/
|
||||
|
||||
namespace LibreNMS\Util;
|
||||
|
||||
use LibreNMS\Config;
|
||||
|
||||
class Proxy
|
||||
{
|
||||
/**
|
||||
* Return the proxy url
|
||||
*
|
||||
* @return array|bool|false|string
|
||||
*/
|
||||
public static function get()
|
||||
{
|
||||
if (getenv('http_proxy')) {
|
||||
return getenv('http_proxy');
|
||||
} elseif (getenv('https_proxy')) {
|
||||
return getenv('https_proxy');
|
||||
} elseif ($callback_proxy = Config::get('callback_proxy')) {
|
||||
return $callback_proxy;
|
||||
} elseif ($http_proxy = Config::get('http_proxy')) {
|
||||
return $http_proxy;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the proxy url in guzzle format "tcp://127.0.0.1:8888"
|
||||
*/
|
||||
public static function forGuzzle(): string
|
||||
{
|
||||
$proxy = self::forCurl();
|
||||
|
||||
return empty($proxy) ? '' : ('tcp://' . $proxy);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the ip and port of the proxy
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function forCurl(): string
|
||||
{
|
||||
return str_replace(['http://', 'https://'], '', rtrim(self::get(), '/'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the proxy on a curl handle
|
||||
*
|
||||
* @param resource $curl
|
||||
*/
|
||||
public static function applyToCurl($curl): void
|
||||
{
|
||||
$proxy = self::forCurl();
|
||||
if (! empty($proxy)) {
|
||||
curl_setopt($curl, CURLOPT_PROXY, $proxy);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user