2005-09-07 23:12:30 +02:00
|
|
|
## remote_control.py
|
2005-07-17 23:41:54 +02:00
|
|
|
##
|
|
|
|
## Gajim Team:
|
|
|
|
## - Yann Le Boulanger <asterix@lagaule.org>
|
|
|
|
## - Vincent Hanquez <tab@snarc.org>
|
|
|
|
## - Nikos Kouremenos <kourem@gmail.com>
|
2005-09-07 23:12:30 +02:00
|
|
|
## - Dimitur Kirov <dkirov@gmail.com>
|
2005-07-17 23:41:54 +02:00
|
|
|
##
|
|
|
|
## Copyright (C) 2003-2005 Gajim Team
|
|
|
|
##
|
|
|
|
## This program 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; version 2 only.
|
|
|
|
##
|
|
|
|
## This program 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.
|
|
|
|
##
|
|
|
|
|
|
|
|
import gobject
|
2005-07-20 02:29:31 +02:00
|
|
|
import gtk
|
2005-08-15 20:28:19 +02:00
|
|
|
import os
|
2005-09-15 22:40:55 +02:00
|
|
|
import sys
|
2005-07-17 23:41:54 +02:00
|
|
|
|
|
|
|
from common import gajim
|
|
|
|
from time import time
|
2005-07-19 22:12:02 +02:00
|
|
|
from common import i18n
|
2005-09-10 00:22:05 +02:00
|
|
|
from dialogs import AddNewContactWindow
|
2005-07-19 22:12:02 +02:00
|
|
|
_ = i18n._
|
|
|
|
|
2005-07-17 23:41:54 +02:00
|
|
|
try:
|
|
|
|
import dbus
|
2005-07-20 22:38:09 +02:00
|
|
|
_version = getattr(dbus, 'version', (0, 20, 0))
|
|
|
|
except ImportError:
|
2005-07-21 09:21:14 +02:00
|
|
|
_version = (0, 0, 0)
|
|
|
|
|
2005-07-17 23:41:54 +02:00
|
|
|
if _version >= (0, 41, 0):
|
|
|
|
import dbus.service
|
|
|
|
import dbus.glib # cause dbus 0.35+ doesn't return signal replies without it
|
|
|
|
DbusPrototype = dbus.service.Object
|
2005-07-21 09:21:14 +02:00
|
|
|
elif _version >= (0, 20, 0):
|
2005-07-17 23:41:54 +02:00
|
|
|
DbusPrototype = dbus.Object
|
2005-07-21 09:21:14 +02:00
|
|
|
else: #dbus is not defined
|
|
|
|
DbusPrototype = str
|
2005-07-17 23:41:54 +02:00
|
|
|
|
|
|
|
INTERFACE = 'org.gajim.dbus.RemoteInterface'
|
|
|
|
OBJ_PATH = '/org/gajim/dbus/RemoteObject'
|
|
|
|
SERVICE = 'org.gajim.dbus'
|
|
|
|
|
|
|
|
class Remote:
|
|
|
|
def __init__(self, plugin):
|
|
|
|
self.signal_object = None
|
2005-08-15 20:28:19 +02:00
|
|
|
if 'dbus' not in globals() and not os.name == 'nt':
|
2005-07-20 22:38:09 +02:00
|
|
|
print _('D-Bus python bindings are missing in this computer')
|
2005-07-20 02:29:31 +02:00
|
|
|
print _('D-Bus capabilities of Gajim cannot be used')
|
2005-07-19 17:07:00 +02:00
|
|
|
raise DbusNotSupported()
|
2005-09-15 22:40:55 +02:00
|
|
|
# dbus 0.23 leads to segfault with threads_init()
|
|
|
|
if sys.version[:4] >= '2.4' and _version[1] < 30:
|
|
|
|
raise DbusNotSupported()
|
|
|
|
|
2005-07-17 23:41:54 +02:00
|
|
|
try:
|
|
|
|
session_bus = dbus.SessionBus()
|
|
|
|
except:
|
2005-07-19 17:07:00 +02:00
|
|
|
raise SessionBusNotPresent()
|
2005-07-17 23:41:54 +02:00
|
|
|
|
|
|
|
if _version[1] >= 41:
|
|
|
|
service = dbus.service.BusName(SERVICE, bus=session_bus)
|
|
|
|
self.signal_object = SignalObject(service, plugin)
|
2005-07-21 09:21:14 +02:00
|
|
|
elif _version[1] <= 40 and _version[1] >= 20:
|
2005-07-17 23:41:54 +02:00
|
|
|
service=dbus.Service(SERVICE, session_bus)
|
|
|
|
self.signal_object = SignalObject(service, plugin)
|
2005-07-21 09:21:14 +02:00
|
|
|
|
2005-07-19 17:07:00 +02:00
|
|
|
def set_enabled(self, status):
|
|
|
|
self.signal_object.disabled = not status
|
|
|
|
|
|
|
|
def is_enabled(self):
|
|
|
|
return not self.signal_object.disabled
|
|
|
|
|
2005-07-17 23:41:54 +02:00
|
|
|
def raise_signal(self, signal, arg):
|
|
|
|
if self.signal_object:
|
|
|
|
self.signal_object.raise_signal(signal, repr(arg))
|
|
|
|
|
|
|
|
|
|
|
|
class SignalObject(DbusPrototype):
|
2005-07-19 17:07:00 +02:00
|
|
|
''' Local object definition for /org/gajim/dbus/RemoteObject. This doc must
|
|
|
|
not be visible, because the clients can access only the remote object. '''
|
2005-07-17 23:41:54 +02:00
|
|
|
|
|
|
|
def __init__(self, service, plugin):
|
|
|
|
self.plugin = plugin
|
|
|
|
self.first_show = True
|
|
|
|
self.vcard_account = None
|
2005-07-19 17:07:00 +02:00
|
|
|
self.disabled = False
|
|
|
|
|
2005-07-17 23:41:54 +02:00
|
|
|
# register our dbus API
|
|
|
|
if _version[1] >= 41:
|
|
|
|
DbusPrototype.__init__(self, service, OBJ_PATH)
|
|
|
|
elif _version[1] >= 30:
|
|
|
|
DbusPrototype.__init__(self, OBJ_PATH, service)
|
|
|
|
else:
|
|
|
|
DbusPrototype.__init__(self, OBJ_PATH, service,
|
2005-07-19 16:25:41 +02:00
|
|
|
[ self.toggle_roster_appearance,
|
2005-07-18 00:38:38 +02:00
|
|
|
self.show_next_unread,
|
2005-07-17 23:41:54 +02:00
|
|
|
self.list_contacts,
|
|
|
|
self.list_accounts,
|
|
|
|
self.change_status,
|
2005-07-20 15:27:27 +02:00
|
|
|
self.open_chat,
|
2005-07-17 23:41:54 +02:00
|
|
|
self.send_message,
|
2005-08-24 01:41:23 +02:00
|
|
|
self.contact_info,
|
2005-09-09 17:29:32 +02:00
|
|
|
self.send_file,
|
|
|
|
self.prefs_list,
|
|
|
|
self.prefs_store,
|
|
|
|
self.prefs_del,
|
|
|
|
self.prefs_put,
|
2005-09-10 00:22:05 +02:00
|
|
|
self.add_contact,
|
|
|
|
self.remove_contact
|
2005-07-17 23:41:54 +02:00
|
|
|
])
|
|
|
|
|
|
|
|
def raise_signal(self, signal, arg):
|
|
|
|
''' raise a signal, with a single string message '''
|
2005-07-19 17:07:00 +02:00
|
|
|
if self.disabled :
|
|
|
|
return
|
2005-07-18 00:30:46 +02:00
|
|
|
if _version[1] >= 30:
|
2005-07-17 23:41:54 +02:00
|
|
|
from dbus import dbus_bindings
|
|
|
|
message = dbus_bindings.Signal(OBJ_PATH, INTERFACE, signal)
|
2005-07-19 22:12:02 +02:00
|
|
|
i = message.get_iter(True)
|
|
|
|
i.append(arg)
|
2005-07-17 23:41:54 +02:00
|
|
|
self._connection.send(message)
|
|
|
|
else:
|
|
|
|
self.emit_signal(INTERFACE, signal, arg)
|
|
|
|
|
|
|
|
|
|
|
|
# signals
|
|
|
|
def VcardInfo(self, *vcard):
|
|
|
|
pass
|
|
|
|
|
2005-08-24 01:41:23 +02:00
|
|
|
def send_file(self, *args):
|
|
|
|
''' send_file(file_path, jid, account=None)
|
|
|
|
send file, located at 'file_path' to 'jid', using account
|
|
|
|
(optional) 'account' '''
|
|
|
|
file_path, jid, account = self._get_real_arguments(args, 3)
|
|
|
|
accounts = gajim.contacts.keys()
|
|
|
|
|
|
|
|
# if there is only one account in roster, take it as default
|
|
|
|
if not account and len(accounts) == 1:
|
|
|
|
account = accounts[0]
|
|
|
|
if account:
|
|
|
|
if gajim.connections[account].connected > 1: # account is online
|
|
|
|
connected_account = gajim.connections[account]
|
|
|
|
else:
|
|
|
|
for account in accounts:
|
|
|
|
if gajim.contacts[account].has_key(jid) and \
|
|
|
|
gajim.connections[account].connected > 1: # account is online
|
|
|
|
connected_account = gajim.connections[account]
|
|
|
|
break
|
|
|
|
if gajim.contacts.has_key(account) and \
|
|
|
|
gajim.contacts[account].has_key(jid):
|
|
|
|
contact = gajim.get_highest_prio_contact_from_contacts(
|
|
|
|
gajim.contacts[account][jid])
|
|
|
|
else:
|
|
|
|
contact = jid
|
|
|
|
|
|
|
|
if connected_account:
|
|
|
|
if os.path.isfile(file_path): # is it file?
|
|
|
|
self.plugin.windows['file_transfers'].send_file(account,
|
|
|
|
contact, file_path)
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2005-07-17 23:41:54 +02:00
|
|
|
def send_message(self, *args):
|
|
|
|
''' send_message(jid, message, keyID=None, account=None)
|
|
|
|
send 'message' to 'jid', using account (optional) 'account'.
|
|
|
|
if keyID is specified, encrypt the message with the pgp key '''
|
2005-07-19 17:07:00 +02:00
|
|
|
if self.disabled:
|
|
|
|
return
|
2005-07-17 23:41:54 +02:00
|
|
|
jid, message, keyID, account = self._get_real_arguments(args, 4)
|
|
|
|
if not jid or not message:
|
|
|
|
return None # or raise error
|
|
|
|
if not keyID:
|
|
|
|
keyID = ''
|
2005-07-20 16:12:49 +02:00
|
|
|
connected_account = None
|
2005-07-20 17:45:56 +02:00
|
|
|
accounts = gajim.contacts.keys()
|
|
|
|
|
|
|
|
# if there is only one account in roster, take it as default
|
|
|
|
if not account and len(accounts) == 1:
|
|
|
|
account = accounts[0]
|
|
|
|
if account:
|
|
|
|
if gajim.connections[account].connected > 1: # account is online
|
|
|
|
connected_account = gajim.connections[account]
|
2005-07-17 23:41:54 +02:00
|
|
|
else:
|
2005-07-20 17:45:56 +02:00
|
|
|
for account in accounts:
|
2005-07-20 16:12:49 +02:00
|
|
|
if gajim.contacts[account].has_key(jid) and \
|
|
|
|
gajim.connections[account].connected > 1: # account is online
|
|
|
|
connected_account = gajim.connections[account]
|
2005-07-20 15:27:27 +02:00
|
|
|
break
|
2005-07-20 16:12:49 +02:00
|
|
|
if connected_account:
|
|
|
|
res = connected_account.send_message(jid, message, keyID)
|
|
|
|
return True
|
2005-07-17 23:41:54 +02:00
|
|
|
return False
|
|
|
|
|
2005-07-20 15:27:27 +02:00
|
|
|
def open_chat(self, *args):
|
|
|
|
''' start_chat(jid, account=None) -> shows the tabbed window for new
|
2005-09-07 23:12:30 +02:00
|
|
|
message to 'jid', using account(optional) 'account' '''
|
2005-07-19 17:07:00 +02:00
|
|
|
if self.disabled:
|
|
|
|
return
|
2005-07-17 23:41:54 +02:00
|
|
|
jid, account = self._get_real_arguments(args, 2)
|
|
|
|
if not jid:
|
2005-09-07 23:12:30 +02:00
|
|
|
# FIXME: raise exception for missing argument (dbus0.35+)
|
2005-07-17 23:41:54 +02:00
|
|
|
return None
|
2005-09-17 13:26:15 +02:00
|
|
|
if jid.startswith('xmpp:'):
|
2005-09-08 12:24:33 +02:00
|
|
|
jid = jid[5:] # len('xmpp:') = 5
|
2005-09-07 23:12:30 +02:00
|
|
|
|
2005-07-17 23:41:54 +02:00
|
|
|
if account:
|
|
|
|
accounts = [account]
|
|
|
|
else:
|
2005-07-18 23:08:31 +02:00
|
|
|
accounts = gajim.connections.keys()
|
2005-07-20 17:45:56 +02:00
|
|
|
if len(accounts) == 1:
|
|
|
|
account = accounts[0]
|
2005-07-20 16:12:49 +02:00
|
|
|
connected_account = None
|
2005-09-13 16:28:22 +02:00
|
|
|
first_connected_acct = None
|
2005-07-20 17:45:56 +02:00
|
|
|
for acct in accounts:
|
|
|
|
if gajim.connections[acct].connected > 1: # account is online
|
|
|
|
if self.plugin.windows[acct]['chats'].has_key(jid):
|
|
|
|
connected_account = acct
|
|
|
|
break
|
|
|
|
# jid is in roster
|
|
|
|
elif gajim.contacts[acct].has_key(jid):
|
|
|
|
connected_account = acct
|
2005-07-20 16:12:49 +02:00
|
|
|
break
|
2005-07-20 17:45:56 +02:00
|
|
|
# we send the message to jid not in roster, because account is specified,
|
|
|
|
# or there is only one account
|
|
|
|
elif account:
|
|
|
|
connected_account = acct
|
2005-09-13 16:28:22 +02:00
|
|
|
elif first_connected_acct is None:
|
|
|
|
first_connected_acct = acct
|
2005-09-13 16:15:13 +02:00
|
|
|
|
|
|
|
# if jid is not a conntact, open-chat with first connected account
|
2005-09-13 16:28:22 +02:00
|
|
|
if connected_account is None and first_connected_acct:
|
|
|
|
connected_account = first_connected_acct
|
2005-09-13 16:15:13 +02:00
|
|
|
|
2005-07-20 16:12:49 +02:00
|
|
|
if connected_account:
|
|
|
|
self.plugin.roster.new_chat_from_jid(connected_account, jid)
|
|
|
|
# preserve the 'steal focus preservation'
|
|
|
|
win = self.plugin.windows[connected_account]['chats'][jid].window
|
|
|
|
if win.get_property('visible'):
|
|
|
|
win.window.focus()
|
2005-07-20 17:45:56 +02:00
|
|
|
return True
|
|
|
|
return False
|
2005-07-17 23:41:54 +02:00
|
|
|
|
|
|
|
def change_status(self, *args, **keywords):
|
|
|
|
''' change_status(status, message, account). account is optional -
|
|
|
|
if not specified status is changed for all accounts. '''
|
2005-07-19 17:07:00 +02:00
|
|
|
if self.disabled:
|
|
|
|
return
|
2005-07-17 23:41:54 +02:00
|
|
|
status, message, account = self._get_real_arguments(args, 3)
|
|
|
|
if status not in ('offline', 'online', 'chat',
|
|
|
|
'away', 'xa', 'dnd', 'invisible'):
|
2005-07-20 15:27:27 +02:00
|
|
|
# FIXME: raise exception for bad status (dbus0.35)
|
2005-07-17 23:41:54 +02:00
|
|
|
return None
|
|
|
|
if account:
|
|
|
|
gobject.idle_add(self.plugin.roster.send_status, account,
|
|
|
|
status, message)
|
|
|
|
else:
|
|
|
|
# account not specified, so change the status of all accounts
|
2005-07-18 23:08:31 +02:00
|
|
|
for acc in gajim.contacts.keys():
|
2005-07-17 23:41:54 +02:00
|
|
|
gobject.idle_add(self.plugin.roster.send_status, acc,
|
|
|
|
status, message)
|
|
|
|
return None
|
|
|
|
|
2005-07-18 00:30:46 +02:00
|
|
|
def show_next_unread(self, *args):
|
2005-07-18 00:38:38 +02:00
|
|
|
''' Show the window(s) with next waiting messages in tabbed/group chats. '''
|
2005-07-19 17:07:00 +02:00
|
|
|
if self.disabled:
|
|
|
|
return
|
2005-07-17 23:41:54 +02:00
|
|
|
#FIXME: when systray is disabled this method does nothing.
|
2005-07-18 00:38:38 +02:00
|
|
|
#FIXME: show message from GC that refer to us (like systray does)
|
2005-07-17 23:41:54 +02:00
|
|
|
if len(self.plugin.systray.jids) != 0:
|
|
|
|
account = self.plugin.systray.jids[0][0]
|
|
|
|
jid = self.plugin.systray.jids[0][1]
|
|
|
|
acc = self.plugin.windows[account]
|
|
|
|
jid_tab = None
|
|
|
|
if acc['gc'].has_key(jid):
|
|
|
|
jid_tab = acc['gc'][jid]
|
|
|
|
elif acc['chats'].has_key(jid):
|
|
|
|
jid_tab = acc['chats'][jid]
|
|
|
|
else:
|
|
|
|
self.plugin.roster.new_chat(
|
2005-07-18 23:08:31 +02:00
|
|
|
gajim.contacts[account][jid][0], account)
|
2005-07-17 23:41:54 +02:00
|
|
|
jid_tab = acc['chats'][jid]
|
|
|
|
if jid_tab:
|
|
|
|
jid_tab.set_active_tab(jid)
|
|
|
|
jid_tab.window.present()
|
2005-07-20 15:27:27 +02:00
|
|
|
# preserve the 'steal focus preservation'
|
2005-07-17 23:41:54 +02:00
|
|
|
if self._is_first():
|
|
|
|
jid_tab.window.window.focus()
|
|
|
|
else:
|
|
|
|
jid_tab.window.window.focus(long(time()))
|
|
|
|
|
|
|
|
|
|
|
|
def contact_info(self, *args):
|
2005-07-18 00:30:46 +02:00
|
|
|
''' get vcard info for a contact. This method returns nothing.
|
|
|
|
You have to register the 'VcardInfo' signal to get the real vcard. '''
|
2005-07-19 17:07:00 +02:00
|
|
|
if self.disabled:
|
|
|
|
return
|
2005-07-20 03:29:40 +02:00
|
|
|
[jid] = self._get_real_arguments(args, 1)
|
2005-09-06 15:17:10 +02:00
|
|
|
if not isinstance(jid, unicode):
|
|
|
|
jid = unicode(jid)
|
2005-07-17 23:41:54 +02:00
|
|
|
if not jid:
|
|
|
|
# FIXME: raise exception for missing argument (0.3+)
|
|
|
|
return None
|
2005-07-18 00:30:46 +02:00
|
|
|
|
2005-07-18 23:08:31 +02:00
|
|
|
accounts = gajim.contacts.keys()
|
2005-07-17 23:41:54 +02:00
|
|
|
|
|
|
|
for account in accounts:
|
2005-09-06 15:17:10 +02:00
|
|
|
if gajim.contacts[account].__contains__(jid):
|
2005-07-17 23:41:54 +02:00
|
|
|
self.vcard_account = account
|
2005-07-19 22:12:02 +02:00
|
|
|
gajim.connections[account].request_vcard(jid)
|
2005-07-17 23:41:54 +02:00
|
|
|
break
|
|
|
|
return None
|
|
|
|
|
|
|
|
def list_accounts(self, *args):
|
|
|
|
''' list register accounts '''
|
2005-07-19 17:07:00 +02:00
|
|
|
if self.disabled:
|
|
|
|
return
|
2005-07-18 23:08:31 +02:00
|
|
|
if gajim.contacts:
|
|
|
|
result = gajim.contacts.keys()
|
2005-07-17 23:41:54 +02:00
|
|
|
if result and len(result) > 0:
|
2005-09-06 15:17:10 +02:00
|
|
|
result_array = []
|
|
|
|
for account in result:
|
|
|
|
result_array.append(account.encode('utf-8'))
|
|
|
|
return result_array
|
2005-07-17 23:41:54 +02:00
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def list_contacts(self, *args):
|
2005-07-19 17:07:00 +02:00
|
|
|
if self.disabled:
|
|
|
|
return
|
2005-07-17 23:41:54 +02:00
|
|
|
''' list all contacts in the roster. If the first argument is specified,
|
|
|
|
then return the contacts for the specified account '''
|
|
|
|
[for_account] = self._get_real_arguments(args, 1)
|
|
|
|
result = []
|
2005-07-18 23:08:31 +02:00
|
|
|
if not gajim.contacts or len(gajim.contacts) == 0:
|
2005-07-17 23:41:54 +02:00
|
|
|
return None
|
|
|
|
if for_account:
|
2005-07-18 23:08:31 +02:00
|
|
|
if gajim.contacts.has_key(for_account):
|
|
|
|
for jid in gajim.contacts[for_account]:
|
2005-07-17 23:41:54 +02:00
|
|
|
item = self._serialized_contacts(
|
2005-07-18 23:08:31 +02:00
|
|
|
gajim.contacts[for_account][jid])
|
2005-07-17 23:41:54 +02:00
|
|
|
if item:
|
|
|
|
result.append(item)
|
|
|
|
else:
|
2005-07-20 15:27:27 +02:00
|
|
|
# 'for_account: is not recognised:',
|
2005-07-17 23:41:54 +02:00
|
|
|
return None
|
|
|
|
else:
|
2005-07-18 23:08:31 +02:00
|
|
|
for account in gajim.contacts:
|
|
|
|
for jid in gajim.contacts[account]:
|
|
|
|
item = self._serialized_contacts(gajim.contacts[account][jid])
|
2005-07-17 23:41:54 +02:00
|
|
|
if item:
|
|
|
|
result.append(item)
|
|
|
|
# dbus 0.40 does not support return result as empty list
|
|
|
|
if result == []:
|
|
|
|
return None
|
|
|
|
return result
|
|
|
|
|
2005-07-19 16:25:41 +02:00
|
|
|
def toggle_roster_appearance(self, *args):
|
2005-07-17 23:41:54 +02:00
|
|
|
''' shows/hides the roster window '''
|
2005-07-19 17:07:00 +02:00
|
|
|
if self.disabled:
|
|
|
|
return
|
2005-07-17 23:41:54 +02:00
|
|
|
win = self.plugin.roster.window
|
|
|
|
if win.get_property('visible'):
|
|
|
|
gobject.idle_add(win.hide)
|
|
|
|
else:
|
|
|
|
win.present()
|
2005-07-20 15:27:27 +02:00
|
|
|
# preserve the 'steal focus preservation'
|
2005-07-17 23:41:54 +02:00
|
|
|
if self._is_first():
|
|
|
|
win.window.focus()
|
|
|
|
else:
|
|
|
|
win.window.focus(long(time()))
|
|
|
|
|
2005-09-09 17:29:32 +02:00
|
|
|
def prefs_list(self, *args):
|
|
|
|
prefs_dict = {}
|
|
|
|
def get_prefs(data, name, path, value):
|
|
|
|
if value is None:
|
|
|
|
return
|
|
|
|
key = ""
|
|
|
|
if path is not None:
|
|
|
|
for node in path:
|
2005-09-09 22:51:22 +02:00
|
|
|
key += node + "#"
|
2005-09-09 17:29:32 +02:00
|
|
|
key += name
|
|
|
|
prefs_dict[key] = unicode(value[1])
|
|
|
|
gajim.config.foreach(get_prefs)
|
|
|
|
return repr(prefs_dict)
|
|
|
|
|
|
|
|
def prefs_store(self, *args):
|
|
|
|
try:
|
|
|
|
self.plugin.save_config()
|
|
|
|
except Exception, e:
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
|
|
def prefs_del(self, *args):
|
2005-09-09 22:51:22 +02:00
|
|
|
[key] = self._get_real_arguments(args, 1)
|
|
|
|
if not key:
|
|
|
|
return False
|
|
|
|
key_path = key.split('#', 2)
|
|
|
|
if len(key_path) != 3:
|
|
|
|
return False
|
|
|
|
if key_path[2] == '*':
|
|
|
|
gajim.config.del_per(key_path[0], key_path[1])
|
|
|
|
else:
|
|
|
|
gajim.config.del_per(key_path[0], key_path[1], key_path[2])
|
|
|
|
return True
|
2005-09-09 17:29:32 +02:00
|
|
|
|
|
|
|
def prefs_put(self, *args):
|
2005-09-09 22:51:22 +02:00
|
|
|
[key] = self._get_real_arguments(args, 1)
|
|
|
|
if not key:
|
|
|
|
return False
|
|
|
|
key_path = key.split('#', 2)
|
|
|
|
if len(key_path) < 3:
|
|
|
|
subname, value = key.split('=', 1)
|
|
|
|
gajim.config.set(subname, value)
|
|
|
|
return True
|
|
|
|
subname, value = key_path[2].split('=', 1)
|
|
|
|
gajim.config.set_per(key_path[0], key_path[1], subname, value)
|
|
|
|
return True
|
2005-09-09 17:29:32 +02:00
|
|
|
|
2005-09-10 00:22:05 +02:00
|
|
|
def add_contact(self, *args):
|
|
|
|
[account] = self._get_real_arguments(args, 1)
|
|
|
|
if gajim.contacts.has_key(account):
|
|
|
|
AddNewContactWindow(self.plugin, account)
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
def remove_contact(self, *args):
|
|
|
|
[jid, account] = self._get_real_arguments(args, 2)
|
|
|
|
accounts = gajim.contacts.keys()
|
|
|
|
|
|
|
|
# if there is only one account in roster, take it as default
|
|
|
|
if account:
|
|
|
|
accounts = [account]
|
|
|
|
else:
|
|
|
|
accounts = gajim.contacts.keys()
|
|
|
|
contact_exists = False
|
|
|
|
for account in accounts:
|
|
|
|
if gajim.contacts[account].has_key(jid):
|
|
|
|
gajim.connections[account].unsubscribe(jid)
|
|
|
|
for contact in gajim.contacts[account][jid]:
|
|
|
|
self.plugin.roster.remove_contact(contact, account)
|
|
|
|
del gajim.contacts[account][jid]
|
|
|
|
contact_exists = True
|
|
|
|
return contact_exists
|
|
|
|
|
2005-07-17 23:41:54 +02:00
|
|
|
def _is_first(self):
|
|
|
|
if self.first_show:
|
|
|
|
self.first_show = False
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
def _get_real_arguments(self, args, desired_length):
|
2005-07-20 15:27:27 +02:00
|
|
|
# supresses the first 'message' argument, which is set in dbus 0.23
|
2005-07-17 23:41:54 +02:00
|
|
|
if _version[1] == 20:
|
|
|
|
args=args[1:]
|
|
|
|
if desired_length > 0:
|
|
|
|
args = list(args)
|
|
|
|
args.extend([None] * (desired_length - len(args)))
|
|
|
|
args = args[:desired_length]
|
|
|
|
return args
|
|
|
|
|
|
|
|
def _serialized_contacts(self, contacts):
|
|
|
|
''' get info from list of Contact objects and create a serialized
|
|
|
|
dict for sending it over dbus '''
|
|
|
|
if not contacts:
|
|
|
|
return None
|
|
|
|
prim_contact = None # primary contact
|
|
|
|
for contact in contacts:
|
|
|
|
if prim_contact == None or contact.priority > prim_contact.priority:
|
|
|
|
prim_contact = contact
|
|
|
|
contact_dict = {}
|
|
|
|
contact_dict['name'] = prim_contact.name
|
|
|
|
contact_dict['show'] = prim_contact.show
|
|
|
|
contact_dict['jid'] = prim_contact.jid
|
|
|
|
if prim_contact.keyID:
|
|
|
|
keyID = None
|
|
|
|
if len(prim_contact.keyID) == 8:
|
|
|
|
keyID = prim_contact.keyID
|
|
|
|
elif len(prim_contact.keyID) == 16:
|
|
|
|
keyID = prim_contact.keyID[8:]
|
|
|
|
if keyID:
|
|
|
|
contact_dict['openpgp'] = keyID
|
|
|
|
contact_dict['resources'] = []
|
|
|
|
for contact in contacts:
|
|
|
|
contact_dict['resources'].append(tuple([contact.resource,
|
|
|
|
contact.priority, contact.status]))
|
|
|
|
return repr(contact_dict)
|
|
|
|
|
|
|
|
|
|
|
|
if _version[1] >= 30 and _version[1] <= 40:
|
|
|
|
method = dbus.method
|
|
|
|
signal = dbus.signal
|
|
|
|
elif _version[1] >= 41:
|
|
|
|
method = dbus.service.method
|
|
|
|
signal = dbus.service.signal
|
|
|
|
|
|
|
|
if _version[1] >= 30:
|
|
|
|
# prevent using decorators, because they are not supported
|
|
|
|
# on python < 2.4
|
2005-07-19 17:07:00 +02:00
|
|
|
# FIXME: use decorators when python2.3 (and dbus 0.23) is OOOOOOLD
|
2005-07-19 16:25:41 +02:00
|
|
|
toggle_roster_appearance = method(INTERFACE)(toggle_roster_appearance)
|
2005-07-17 23:41:54 +02:00
|
|
|
list_contacts = method(INTERFACE)(list_contacts)
|
|
|
|
list_accounts = method(INTERFACE)(list_accounts)
|
2005-07-18 00:54:24 +02:00
|
|
|
show_next_unread = method(INTERFACE)(show_next_unread)
|
2005-07-17 23:41:54 +02:00
|
|
|
change_status = method(INTERFACE)(change_status)
|
2005-07-20 15:27:27 +02:00
|
|
|
open_chat = method(INTERFACE)(open_chat)
|
2005-07-17 23:41:54 +02:00
|
|
|
contact_info = method(INTERFACE)(contact_info)
|
|
|
|
send_message = method(INTERFACE)(send_message)
|
2005-08-24 01:41:23 +02:00
|
|
|
send_file = method(INTERFACE)(send_file)
|
2005-07-17 23:41:54 +02:00
|
|
|
VcardInfo = signal(INTERFACE)(VcardInfo)
|
2005-09-09 17:29:32 +02:00
|
|
|
prefs_list = method(INTERFACE)(prefs_list)
|
|
|
|
prefs_put = method(INTERFACE)(prefs_put)
|
|
|
|
prefs_del = method(INTERFACE)(prefs_del)
|
|
|
|
prefs_store = method(INTERFACE)(prefs_store)
|
2005-09-10 00:22:05 +02:00
|
|
|
remove_contact = method(INTERFACE)(remove_contact)
|
|
|
|
add_contact = method(INTERFACE)(add_contact)
|
2005-07-19 17:07:00 +02:00
|
|
|
|
|
|
|
class SessionBusNotPresent(Exception):
|
|
|
|
''' This exception indicates that there is no session daemon '''
|
|
|
|
def __init__(self):
|
|
|
|
Exception.__init__(self)
|
|
|
|
|
|
|
|
def __str__(self):
|
2005-07-20 15:27:27 +02:00
|
|
|
return _('Session bus is not available')
|
2005-07-19 17:07:00 +02:00
|
|
|
|
|
|
|
class DbusNotSupported(Exception):
|
|
|
|
''' D-Bus is not installed or python bindings are missing '''
|
|
|
|
def __init__(self):
|
|
|
|
Exception.__init__(self)
|
|
|
|
|
|
|
|
def __str__(self):
|
2005-07-20 15:27:27 +02:00
|
|
|
return _('D-Bus is not present on this machine')
|