This repository has been archived by the owner on Jan 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
rocketchat.py
executable file
·122 lines (103 loc) · 4.29 KB
/
rocketchat.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#!/usr/bin/python
# Copyright (c) 2015 Andre Freitas <p.andrefreitas@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
import argparse
import urllib2
import json
VERSION = "0.0.1"
CONFIG = {
"avatar": "https://raw.githubusercontent.com/andrefreitas/rocketchat-nagios/master/images/nagios_128.png", #noqa
"alias": "Nagios",
"colors": {
"OK": "#36a64f",
"CRITICAL": "#d00000",
"WARNING": "#daa038",
"UNKNOWN": "#e3e4e6",
"DOWN": "#d00000",
"UP": "#40b207",
"UNKNOWN": "#e3e4e6",
"UNREACHABLE": "#e3e4e6"
}
}
TEMPLATE_SERVICE = "{hostalias} {servicedesc} is {servicestate}:\n{serviceoutput}" #noqa
TEMPLATE_HOST = "Host {hostalias} is {hoststate}:\n{hostoutput}" #noqa
def parse():
parser = argparse.ArgumentParser(description='Sends Rocket.Chat webhooks')
parser.add_argument('--url', help='Webhook URL', required=True)
parser.add_argument('--proxy', help='http(s) proxy')
parser.add_argument('--channel', help='Rocket.Chat channel')
parser.add_argument('--hostalias', help='Host Alias', required=True)
parser.add_argument('--nagiosurl', help='Nagios URL. Eg : https://nagios.example.com:8888')
parser.add_argument('--hoststate', help='Host State')
parser.add_argument('--hostoutput', help='Host Output')
parser.add_argument('--servicedesc', help='Service Description')
parser.add_argument('--servicestate', help='Service State')
parser.add_argument('--serviceoutput', help='Service Output')
parser.add_argument('--version', action='version',
version='%(prog)s {version}'.format(version=VERSION))
args = parser.parse_args()
return args
def encode_special_characters(text):
text = text.replace("%", "%25")
text = text.replace("&", "%26")
return text
def render_template(template, args):
text = template.format(**vars(args))
return encode_special_characters(text)
def create_data(args, config):
text = render_template(
TEMPLATE_SERVICE if args.servicestate else TEMPLATE_HOST,
args
)
state = args.servicestate if args.servicestate else args.hoststate
color = config["colors"][state]
payload = {
"alias": config["alias"],
"avatar": config["avatar"],
"text": text.split('\n')[0],
"attachments": [
{
"text": text.split("\n",1)[1],
"color": color
}
]
}
if args.channel:
payload["channel"] = args.channel
data = "payload=" + json.dumps(payload)
return data
def request(url, data, args):
if args.proxy:
proxy = urllib2.ProxyHandler({'http': args.proxy, 'https': args.proxy})
opener = urllib2.build_opener(proxy)
urllib2.install_opener(opener)
req = urllib2.Request(url, data)
response = urllib2.urlopen(req)
return response.read()
if __name__ == "__main__":
args = parse()
if args.nagiosurl:
if args.servicestate:
TEMPLATE_SERVICE += "\nSee {nagiosurl}/nagios/cgi-bin/extinfo.cgi?type=2&host={hostalias}&service={servicedesc}"
elif args.hoststate:
TEMPLATE_HOST += "\nSee {nagiosurl}/nagios/cgi-bin/extinfo.cgi?type=1&host={hostalias}"
data = create_data(args, CONFIG)
response = request(args.url, data, args)
print response