2023-03-16 09:53:18 +00:00
|
|
|
import usocket as socket
|
|
|
|
import ssl
|
|
|
|
|
2023-03-16 11:47:45 +00:00
|
|
|
with open('token') as f:
|
|
|
|
token = f.readline().strip('\n')
|
2023-03-16 09:53:18 +00:00
|
|
|
|
2023-03-16 11:47:45 +00:00
|
|
|
|
|
|
|
def send_msg(text, title=""):
|
2023-03-16 09:53:18 +00:00
|
|
|
s = socket.socket()
|
|
|
|
|
|
|
|
host = "ntfy.acorneroftheweb.com"
|
|
|
|
port = 443
|
|
|
|
|
|
|
|
ai = socket.getaddrinfo(host, port)
|
|
|
|
print("Address infos:", ai)
|
|
|
|
addr = ai[0][-1]
|
|
|
|
|
|
|
|
print("Connect address:", addr)
|
|
|
|
s.connect(addr)
|
|
|
|
|
|
|
|
s = ssl.wrap_socket(s)
|
|
|
|
|
|
|
|
headers = """\
|
|
|
|
POST / HTTP/1.1\r
|
|
|
|
Host: {host}\r
|
|
|
|
Content-Type: application/json\r
|
|
|
|
Authorization: Bearer {token}
|
|
|
|
Accept: */*\r
|
2023-03-16 11:47:45 +00:00
|
|
|
Connection: close\r
|
2023-03-16 09:53:18 +00:00
|
|
|
Content-Length: {content_length}\r
|
|
|
|
\r\n"""
|
2023-03-16 11:47:45 +00:00
|
|
|
body = '{"topic": "d1", "message": "' + text + '", "title": "' + title + '"}'
|
2023-03-16 09:53:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
body_bytes = body.encode('ascii')
|
|
|
|
header_bytes = headers.format(
|
|
|
|
content_length=len(body_bytes),
|
|
|
|
token=token,
|
|
|
|
host=str(host)
|
|
|
|
).encode('iso-8859-1')
|
|
|
|
|
|
|
|
payload = header_bytes + body_bytes
|
|
|
|
|
|
|
|
print(payload)
|
|
|
|
|
|
|
|
s.write(payload)
|
2023-03-16 11:47:45 +00:00
|
|
|
print(s.read())
|
2023-03-16 09:53:18 +00:00
|
|
|
|
|
|
|
s.close()
|
|
|
|
|
|
|
|
|
2023-03-16 11:47:45 +00:00
|
|
|
def main():
|
|
|
|
send_msg("Hello there")
|
|
|
|
|
|
|
|
|
2023-03-16 09:53:18 +00:00
|
|
|
main()
|