X-Git-Url: http://git.maemo.org/git/?p=python-purple;a=blobdiff_plain;f=nullclient.py;h=0438951ea12f94e7f33659f2eb68261cfce0654d;hp=d0fcb9baf46c40b566d289818e319c86349b2aa7;hb=39c1c26cdc38fe7dc79122c45bba7731b08ed1cd;hpb=96cd4db66ee4749fb6d00e74e0bc9e3101e43079 diff --git a/nullclient.py b/nullclient.py index d0fcb9b..0438951 100644 --- a/nullclient.py +++ b/nullclient.py @@ -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 . +# + 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): - buddies = self.account.get_buddies_online() - 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(20, client.get_buddies) + # Initializes ecore mainloop ecore.main_loop_begin()