Files
backupscript/src/Ntfy/Ntfy.php

27 lines
618 B
PHP
Raw Normal View History

2023-05-26 11:47:40 +00:00
<?php
namespace App\Ntfy;
2023-05-26 12:14:21 +00:00
class Ntfy
{
2023-05-26 13:04:15 +00:00
protected string $domain;
function __construct(string $domain)
2023-05-26 11:47:40 +00:00
{
$this->domain = $domain;
}
2023-05-26 13:04:15 +00:00
function send(string $topic, string $title, string $message): void
2023-05-26 11:47:40 +00:00
{
2023-05-26 12:14:21 +00:00
file_get_contents(
'https://'.$this->domain.'/'.$topic, false, stream_context_create(
['http' => [
2023-05-26 11:47:40 +00:00
'method' => 'POST',
'header' =>
"Content-Type: text/plain\r\n" .
"Title: $title\r\n",
2023-05-26 12:14:21 +00:00
'content' => $message]
]
)
);
2023-05-26 11:47:40 +00:00
}
}