|
|
6 vuotta sitten | |
|---|---|---|
| src | 5 vuotta sitten | |
| systemd-unit | 5 vuotta sitten | |
| .gitattributes | 5 vuotta sitten | |
| .gitignore | 5 vuotta sitten | |
| LICENSE.md | 5 vuotta sitten | |
| README.md | 5 vuotta sitten | |
| TODO | 5 vuotta sitten | |
| client.js | 5 vuotta sitten | |
| package-lock.json | 5 vuotta sitten | |
| package.json | 5 vuotta sitten | |
| pkg.sh | 5 vuotta sitten | |
| tsconfig.json | 5 vuotta sitten |
Simple communication bridge between clients and telegram. Using sockets is simple way for other clients to send notification. Current version support only one way communication (from client to telegram) but it should be possible to implement registering command. Protocol is based on queue where elements are separated with semicolons.
Reply with "<id>&<auth>"
register;
Reply with OK on success or ERR with message;
login;PIZS-4681-bKUp-2154;
Need authentication Reply with OK on success or ERR with message;
notify; test notification;
Reply with pong
ping;
Reply with closing message and close server connection
close;
Server in: register;close;
Server out: 5&GSFBT-665-oJDDKqerYCWwfmtFWOOD;
Server in: login;EDSPG-466-VlyoDV9i6mBOAwle0hZU;ping;notify;Test;close;
Server out: OK;pong;OK;Closing connection;
Server in: login;invalid-code;
Server out: ERR;auth unmatched or not activated;
Server in: notify;notify without login;
Server out: ERR;need to be logged;