mirror of https://github.com/SeanOMik/znc-push.git
Add pushalot support
This commit is contained in:
parent
78267649c0
commit
e9fc5a9589
32
push.cpp
32
push.cpp
|
@ -406,6 +406,33 @@ class CPushMod : public CModule
|
||||||
params["priority"] = options["message_priority"];
|
params["priority"] = options["message_priority"];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else if (service == "pushalot")
|
||||||
|
{
|
||||||
|
if (options["secret"] == "")
|
||||||
|
{
|
||||||
|
PutModule("Error: secret (authorization token) not set");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
service_host = "pushalot.com";
|
||||||
|
service_url = "/api/sendmessage";
|
||||||
|
|
||||||
|
params["AuthorizationToken"] = options["secret"];
|
||||||
|
params["Title"] = message_title;
|
||||||
|
params["Body"] = message_content;
|
||||||
|
|
||||||
|
if (message_uri != "")
|
||||||
|
{
|
||||||
|
params["Link"] = message_uri;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( options["message_uri_title"] != "" )
|
||||||
|
{
|
||||||
|
params["LinkTitle"] = options["message_uri_title"];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
else if (service == "prowl")
|
else if (service == "prowl")
|
||||||
{
|
{
|
||||||
if (options["secret"] == "")
|
if (options["secret"] == "")
|
||||||
|
@ -1294,6 +1321,11 @@ class CPushMod : public CModule
|
||||||
{
|
{
|
||||||
PutModule("Note: Pushover requires setting both the 'username' (to user key) and the 'secret' (to application api key) option");
|
PutModule("Note: Pushover requires setting both the 'username' (to user key) and the 'secret' (to application api key) option");
|
||||||
}
|
}
|
||||||
|
else if (value == "pushalot")
|
||||||
|
{
|
||||||
|
PutModule("Note: Pushalot requires setting the 'secret' (to user key) (to authorization token) option");
|
||||||
|
}
|
||||||
|
|
||||||
else if (value == "prowl")
|
else if (value == "prowl")
|
||||||
{
|
{
|
||||||
PutModule("Note: Prowl requires setting the 'secret' option");
|
PutModule("Note: Prowl requires setting the 'secret' option");
|
||||||
|
|
Loading…
Reference in New Issue