-
Notifications
You must be signed in to change notification settings - Fork 1
/
growlme
executable file
·175 lines (153 loc) · 6.4 KB
/
growlme
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
#!/usr/bin/env python
#
# usage:
# growlme <command>
#
# Runs <command> in a subshell, and notifies growl of success or failure
# error codes on completion. The success/failure messages can be customized
# on the command line. The growl remote password can be supplied on the
# command line or provided in a '~/.growlpass' file.
#
# The first (largest) section of this code is Rui Carmo's netgrowl.py:
# http://the.taoofmac.com/space/Projects/netgrowl
#
# Copyright 2004 Rui Carmo <http://the.taoofmac.com>
# Copyright 2010 Greg Brown <[email protected]>
# Copyright 2010 Robey Pointer <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy
# of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import optparse
import os
import socket
import struct
import subprocess
import sys
try:
import hashlib
md5_constructor = hashlib.md5
except ImportError:
import md5
md5_constructor = md5.new
GROWL_PASSWORD = "password"
GROWL_UDP_PORT = 9887
GROWL_PROTOCOL_VERSION = 1
GROWL_TYPE_REGISTRATION = 0
GROWL_TYPE_NOTIFICATION = 1
class GrowlRegistrationPacket:
"""
Builds a Growl Network Registration packet.
Defaults to emulating the command-line growlnotify utility.
"""
def __init__(self, application="growlnotify", password=None):
self.notifications = []
self.defaults = [] # array of indexes into notifications
self.application = application.encode("utf-8")
self.password = password
def addNotification(self, notification="Command-Line Growl Notification", enabled=True):
"""Adds a notification type and sets whether it is enabled on the GUI"""
self.notifications.append(notification)
if enabled:
self.defaults.append(len(self.notifications) - 1)
def payload(self):
"""Returns the packet payload."""
self.data = struct.pack("!BBH", GROWL_PROTOCOL_VERSION, GROWL_TYPE_REGISTRATION, len(self.application))
self.data += struct.pack("BB", len(self.notifications), len(self.defaults))
self.data += self.application
for notification in self.notifications:
encoded = notification.encode("utf-8")
self.data += struct.pack("!H", len(encoded))
self.data += encoded
for default in self.defaults:
self.data += struct.pack("B", default)
self.checksum = md5_constructor()
self.checksum.update(self.data)
if self.password:
self.checksum.update(self.password)
self.data += self.checksum.digest()
return self.data
class GrowlNotificationPacket:
"""
Builds a Growl Network Notification packet.
Defaults to emulating the command-line growlnotify utility.
"""
def __init__(self, application="growlnotify",
notification="Command-Line Growl Notification", title="Title",
description="Description", priority=0, sticky=False, password=None):
self.application = application.encode("utf-8")
self.notification = notification.encode("utf-8")
self.title = title.encode("utf-8")
self.description = description.encode("utf-8")
flags = (priority & 0x07) * 2
if priority < 0:
flags |= 0x08
if sticky:
flags = flags | 0x0100
self.data = struct.pack("!BBHHHHH", GROWL_PROTOCOL_VERSION, GROWL_TYPE_NOTIFICATION, flags,
len(self.notification), len(self.title), len(self.description),
len(self.application))
self.data += self.notification
self.data += self.title
self.data += self.description
self.data += self.application
self.checksum = md5_constructor()
self.checksum.update(self.data)
if password:
self.checksum.update(password)
self.data += self.checksum.digest()
def payload(self):
"""Returns the packet payload."""
return self.data
def send_notification(host, password, title, message):
addr = (host, GROWL_UDP_PORT)
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
p = GrowlRegistrationPacket(application="buildnotify", password=password)
p.addNotification("Build Notification", enabled=True)
s.sendto(p.payload(), addr)
p = GrowlNotificationPacket(application="buildnotify", notification="Build Notification", title=title, description=message, priority=1, password=password)
s.sendto(p.payload(), addr)
s.close()
if __name__ == '__main__':
try:
growlpass = open(os.path.expanduser("~/.growlpass"), 'r').readline().strip()
except:
growlpass = GROWL_PASSWORD
sshclient = os.environ.get('SSH_CLIENT', 'localhost')
clientip = sshclient.split()[0]
parser = optparse.OptionParser(usage='usage: %prog [options] <command...>')
parser.disable_interspersed_args()
parser.add_option("-H", "--host", dest='host', default=clientip)
parser.add_option("-P", "--password", dest='password', default=growlpass)
parser.add_option("-m", "--message", dest='success_text', metavar='TEXT', help='message to display on success')
parser.add_option("--fail", dest='fail_text', metavar='TEXT', help='message to display on failure')
parser.add_option("-t", "--title", dest='title', help='growl title')
(opts, args) = parser.parse_args()
if not args:
parser.error("must provide a command to execute")
if opts.title is None:
opts.title = socket.getfqdn() + ": " + " ".join(args)
if opts.success_text is None:
opts.success_text = "Succeeded"
if opts.fail_text is None:
opts.fail_text = "FAILED"
process = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, bufsize=-1)
while True:
data = process.stdout.read(128)
if data == "":
break
sys.stdout.write(data)
exit_code = process.wait()
if exit_code == 0:
message = opts.success_text
else:
message = opts.fail_text
send_notification(opts.host, opts.password, opts.title, message)