/python3/berrymq/adapter/growl/netgrowl.py
https://bitbucket.org/shibu/berrymq · Python · 139 lines · 102 code · 18 blank · 19 comment · 8 complexity · 0df728e7e3af40dcc874fadd1a54834e MD5 · raw file
- #!/usr/bin/env python
- """Growl 0.6 Network Protocol Client for Python
- modified by SHIBUKAWA Yoshiki to follow PEP-8 and remove deprecate warning.
- """
- __version__ = "0.6" # will always match Growl version
- __author__ = "Rui Carmo (http://the.taoofmac.com)"
- __copyright__ = "(C) 2004 Rui Carmo. Code under BSD License."
- __contributors__ = "Ingmar J Stein (Growl Team)"
- import struct
- from hashlib import md5
- from socket import AF_INET, SOCK_DGRAM, socket
- 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
- # end def
- 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)
- # end def
- 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()
- self.checksum.update(self.data)
- if self.password:
- self.checksum.update(self.password)
- self.data += self.checksum.digest()
- return self.data
- # end def
- # end class
- 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 | 0x0001
- 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()
- self.checksum.update(self.data)
- if password:
- self.checksum.update(password)
- self.data += self.checksum.digest()
- # end def
- def payload(self):
- """Returns the packet payload."""
- return self.data
- # end def
- # end class
- if __name__ == '__main__':
- print("Starting Unit Test")
- print(" - please make sure Growl is listening for network notifications")
- addr = ("localhost", GROWL_UDP_PORT)
- s = socket(AF_INET,SOCK_DGRAM)
- print("Assembling registration packet like growlnotify's (no password)")
- p = GrowlRegistrationPacket()
- p.addNotification()
- print("Sending registration packet")
- s.sendto(p.payload(), addr)
- import time
- time.sleep(3)
- print("Assembling standard notification packet")
- p = GrowlNotificationPacket()
- print("Sending standard notification packet")
- s.sendto(p.payload(), addr)
- print("Assembling priority -2 (Very Low) notification packet")
- p = GrowlNotificationPacket(priority=-2)
- print("Sending priority -2 notification packet")
- s.sendto(p.payload(), addr)
- print("Assembling priority 2 (Very High) sticky notification packet")
- p = GrowlNotificationPacket(priority=2,sticky=True)
- print("Sending priority 2 (Very High) sticky notification packet")
- s.sendto(p.payload(), addr)
- s.close()
- print("Done.")