Added SIGCHLD handling to avoid zombie processes.
[python-purple] / nullclient.py
index 2b7dd70..0438951 100644 (file)
@@ -1,50 +1,64 @@
-import purple
+#
+#  Copyright (c) 2008 INdT - Instituto Nokia de Tecnologia
+#
+#  This file is part of python-purple.
+#
+#  python-purple is free software: you can redistribute it and/or modify
+#  it under the terms of the GNU General Public License as published by
+#  the Free Software Foundation, either version 3 of the License, or
+#  (at your option) any later version.
+#
+#  python-purple is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#  GNU General Public License for more details.
+#
+#  You should have received a copy of the GNU General Public License
+#  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+
 import ecore
 import getpass
+import purple
 import sys
 
-class NullClient:
-    def __init__(self):
-        self.p = purple.Purple()
-        self.account = None
+# The information below is needed by libpurple
+__NAME__ = "nullclient"
+__VERSION__ = "0.1"
+__WEBSITE__ = "N/A"
+__DEV_WEBSITE__ = "N/A"
 
-    def execute(self):
-        self.p.purple_init()
+if __name__ == '__main__':
+    # Sets initial parameters
+    core = purple.Purple(__NAME__, __VERSION__, __WEBSITE__, __DEV_WEBSITE__, \
+            debug_enabled=True, default_path="/tmp")
 
-    def set_protocol(self, protocol):
-        for i in self.p.get_protocols():
-            if i[1] == protocol:
-                print "-- NULLCLIENT --: Choosing %s as protocol" % protocol
-                self.protocol = i[0]
-                print "-- NULLCLIENT --: Protocol successfully chosen: %s" % i[0]
-                return
+    # Initializes libpurple
+    core.purple_init()
 
-    def new_account(self, username, protocol, password):
-        self.account = purple.Account(username, protocol)
-        self.account.set_password(password)
-        self.account.set_enabled("carman-purple-python", True)
+    # Get username from user
+    sys.stdout.write("Enter GTalk account: ")
+    username = sys.stdin.readline()[:-1]
 
-    def get_buddies(self, account):
-        buddies = account.get_buddies_online(account)
-        print buddies
+    # Initialize protocol class
+    protocol = purple.Protocol('prpl-jabber')
 
-def getuser():
-    sys.stdout.write("GTalk account: ")
-    username = sys.stdin.readline()
-    return username[:-1]
+    # Creates new account inside libpurple
+    account = purple.Account(username, protocol, core)
+    account.new()
 
-def getpassword():
-    return getpass.getpass()
+    # Get password from user
+    account.set_password(getpass.getpass())
 
-if __name__ == '__main__':
+    # Set account protocol options
+    info = {}
+    info['connect_server'] = 'talk.google.com'
+    info['port'] = '443'
+    info['old_ssl'] = True
+    account.set_protocol_options(info)
 
-    client = NullClient()
-    client.execute()
-    client.set_protocol("XMPP")
-    username = getuser()
-    password = getpassword()
-    client.new_account(username, client.protocol, password)
+    # Enable account (connects automatically)
+    account.set_enabled(True)
 
-    client.p.connect()
-    ecore.timer_add(30, client.get_buddies, client.account)
+    # Initializes ecore mainloop
     ecore.main_loop_begin()