Port remote control to GDBus
This commit is contained in:
parent
923ce01c47
commit
7447f33c5e
|
@ -60,7 +60,7 @@ except Exception:
|
||||||
|
|
||||||
OBJ_PATH = '/org/gajim/dbus/RemoteObject'
|
OBJ_PATH = '/org/gajim/dbus/RemoteObject'
|
||||||
INTERFACE = 'org.gajim.dbus.RemoteInterface'
|
INTERFACE = 'org.gajim.dbus.RemoteInterface'
|
||||||
SERVICE = 'org.gajim.dbus'
|
SERVICE = 'org.gajim.Gajim'
|
||||||
BASENAME = 'gajim-remote'
|
BASENAME = 'gajim-remote'
|
||||||
|
|
||||||
class GajimRemote:
|
class GajimRemote:
|
||||||
|
|
|
@ -2583,7 +2583,7 @@ class Interface:
|
||||||
if app.config.get('remote_control'):
|
if app.config.get('remote_control'):
|
||||||
try:
|
try:
|
||||||
from gajim import remote_control
|
from gajim import remote_control
|
||||||
self.remote_ctrl = remote_control.Remote()
|
remote_control.GajimRemote()
|
||||||
except Exception:
|
except Exception:
|
||||||
pass
|
pass
|
||||||
GLib.timeout_add_seconds(5, remote_init)
|
GLib.timeout_add_seconds(5, remote_init)
|
||||||
|
|
|
@ -26,10 +26,13 @@
|
||||||
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
||||||
##
|
##
|
||||||
|
|
||||||
from gi.repository import GLib
|
|
||||||
import os
|
import os
|
||||||
import base64
|
import base64
|
||||||
import mimetypes
|
import mimetypes
|
||||||
|
from time import time
|
||||||
|
|
||||||
|
from gi.repository import GLib
|
||||||
|
from gi.repository import Gio
|
||||||
|
|
||||||
from gajim.common import app
|
from gajim.common import app
|
||||||
from gajim.common import helpers
|
from gajim.common import helpers
|
||||||
|
@ -39,71 +42,263 @@ from gajim.common.connection_handlers_events import MessageOutgoingEvent
|
||||||
from gajim.common.connection_handlers_events import GcMessageOutgoingEvent
|
from gajim.common.connection_handlers_events import GcMessageOutgoingEvent
|
||||||
|
|
||||||
|
|
||||||
from gajim.common import dbus_support
|
|
||||||
if dbus_support.supported:
|
|
||||||
import dbus
|
|
||||||
if dbus_support:
|
|
||||||
import dbus.service
|
|
||||||
|
|
||||||
INTERFACE = 'org.gajim.dbus.RemoteInterface'
|
|
||||||
OBJ_PATH = '/org/gajim/dbus/RemoteObject'
|
|
||||||
SERVICE = 'org.gajim.dbus'
|
|
||||||
|
|
||||||
# type mapping
|
|
||||||
|
|
||||||
# in most cases it is a utf-8 string
|
|
||||||
DBUS_STRING = dbus.String
|
|
||||||
|
|
||||||
# general type (for use in dicts, where all values should have the same type)
|
|
||||||
DBUS_BOOLEAN = dbus.Boolean
|
|
||||||
DBUS_DOUBLE = dbus.Double
|
|
||||||
DBUS_INT32 = dbus.Int32
|
|
||||||
# dictionary with string key and binary value
|
|
||||||
DBUS_DICT_SV = lambda : dbus.Dictionary({}, signature="sv")
|
|
||||||
# dictionary with string key and value
|
|
||||||
DBUS_DICT_SS = lambda : dbus.Dictionary({}, signature="ss")
|
|
||||||
# empty type (there is no equivalent of None on D-Bus, but historically gajim
|
|
||||||
# used 0 instead)
|
|
||||||
DBUS_NONE = lambda : dbus.Int32(0)
|
|
||||||
|
|
||||||
def get_dbus_struct(obj):
|
def get_dbus_struct(obj):
|
||||||
"""
|
"""
|
||||||
Recursively go through all the items and replace them with their casted dbus
|
Recursively go through all the items and replace them with their casted dbus
|
||||||
equivalents
|
equivalents
|
||||||
"""
|
"""
|
||||||
if obj is None:
|
if obj is None:
|
||||||
return DBUS_NONE()
|
return None
|
||||||
if isinstance(obj, str):
|
if isinstance(obj, str):
|
||||||
return DBUS_STRING(obj)
|
return GLib.Variant('s', obj)
|
||||||
if isinstance(obj, int):
|
if isinstance(obj, int):
|
||||||
return DBUS_INT32(obj)
|
return GLib.Variant('i', obj)
|
||||||
if isinstance(obj, float):
|
if isinstance(obj, float):
|
||||||
return DBUS_DOUBLE(obj)
|
return GLib.Variant('d', obj)
|
||||||
if isinstance(obj, bool):
|
if isinstance(obj, bool):
|
||||||
return DBUS_BOOLEAN(obj)
|
return GLib.Variant('b', obj)
|
||||||
if isinstance(obj, (list, tuple)):
|
if isinstance(obj, (list, tuple)):
|
||||||
result = dbus.Array([get_dbus_struct(i) for i in obj],
|
result = GLib.Variant('av', [get_dbus_struct(i) for i in obj])
|
||||||
signature='v')
|
|
||||||
if result == []:
|
|
||||||
return DBUS_NONE()
|
|
||||||
return result
|
return result
|
||||||
if isinstance(obj, dict):
|
if isinstance(obj, dict):
|
||||||
result = DBUS_DICT_SV()
|
result = GLib.VariantDict()
|
||||||
for key, value in obj.items():
|
for key, value in obj.items():
|
||||||
result[DBUS_STRING(key)] = get_dbus_struct(value)
|
result.insert_value(key, get_dbus_struct(value))
|
||||||
if result == {}:
|
return result.end()
|
||||||
return DBUS_NONE()
|
|
||||||
return result
|
|
||||||
# unknown type
|
# unknown type
|
||||||
return DBUS_NONE()
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
class Server:
|
||||||
|
def __init__(self, con, path):
|
||||||
|
method_outargs = {}
|
||||||
|
method_inargs = {}
|
||||||
|
for interface in Gio.DBusNodeInfo.new_for_xml(self.__doc__).interfaces:
|
||||||
|
|
||||||
|
for method in interface.methods:
|
||||||
|
method_outargs[method.name] = '(' + ''.join(
|
||||||
|
[arg.signature for arg in method.out_args]) + ')'
|
||||||
|
method_inargs[method.name] = tuple(
|
||||||
|
arg.signature for arg in method.in_args)
|
||||||
|
|
||||||
|
con.register_object(
|
||||||
|
object_path=path,
|
||||||
|
interface_info=interface,
|
||||||
|
method_call_closure=self.on_method_call)
|
||||||
|
|
||||||
|
self.method_inargs = method_inargs
|
||||||
|
self.method_outargs = method_outargs
|
||||||
|
|
||||||
|
def on_method_call(self, connection, sender, object_path, interface_name,
|
||||||
|
method_name, parameters, invocation):
|
||||||
|
|
||||||
|
args = list(parameters.unpack())
|
||||||
|
for i, sig in enumerate(self.method_inargs[method_name]):
|
||||||
|
if sig is 'h':
|
||||||
|
msg = invocation.get_message()
|
||||||
|
fd_list = msg.get_unix_fd_list()
|
||||||
|
args[i] = fd_list.get(args[i])
|
||||||
|
|
||||||
|
result = getattr(self, method_name)(*args)
|
||||||
|
|
||||||
|
# out_args is atleast (signature1). We therefore always wrap the result
|
||||||
|
# as a tuple. Refer to https://bugzilla.gnome.org/show_bug.cgi?id=765603
|
||||||
|
result = (result, )
|
||||||
|
|
||||||
|
out_args = self.method_outargs[method_name]
|
||||||
|
if out_args != '()':
|
||||||
|
variant = GLib.Variant(out_args, result)
|
||||||
|
invocation.return_value(variant)
|
||||||
|
else:
|
||||||
|
invocation.return_value(None)
|
||||||
|
|
||||||
|
|
||||||
|
class GajimRemote(Server):
|
||||||
|
'''
|
||||||
|
<!DOCTYPE node PUBLIC '-//freedesktop//DTD D-BUS Object Introspection 1.0//EN'
|
||||||
|
'http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd'>
|
||||||
|
<node>
|
||||||
|
<interface name='org.freedesktop.DBus.Introspectable'>
|
||||||
|
<method name='Introspect'>
|
||||||
|
<arg name='data' direction='out' type='s'/>
|
||||||
|
</method>
|
||||||
|
</interface>
|
||||||
|
<interface name='org.gajim.dbus.RemoteInterface'>
|
||||||
|
<method name='account_info'>
|
||||||
|
<arg name='account' type='s' />
|
||||||
|
<arg direction='out' type='a{ss}' />
|
||||||
|
</method>
|
||||||
|
<method name='add_contact'>
|
||||||
|
<arg name='jid' type='s' />
|
||||||
|
<arg name='account' type='s' />
|
||||||
|
<arg direction='out' type='b' />
|
||||||
|
</method>
|
||||||
|
<method name='change_avatar'>
|
||||||
|
<arg name='picture' type='s' />
|
||||||
|
<arg name='account' type='s' />
|
||||||
|
</method>
|
||||||
|
<method name='change_status'>
|
||||||
|
<arg name='status' type='s' />
|
||||||
|
<arg name='message' type='s' />
|
||||||
|
<arg name='account' type='s' />
|
||||||
|
<arg direction='out' type='b' />
|
||||||
|
</method>
|
||||||
|
<method name='get_status'>
|
||||||
|
<arg name='account' type='s' />
|
||||||
|
<arg direction='out' type='s' />
|
||||||
|
</method>
|
||||||
|
<method name='get_status_message'>
|
||||||
|
<arg name='account' type='s' />
|
||||||
|
<arg direction='out' type='s' />
|
||||||
|
</method>
|
||||||
|
<method name='get_unread_msgs_number'>
|
||||||
|
<arg direction='out' type='s' />
|
||||||
|
</method>
|
||||||
|
<method name='join_room'>
|
||||||
|
<arg name='room_jid' type='s' />
|
||||||
|
<arg name='nick' type='s' />
|
||||||
|
<arg name='password' type='s' />
|
||||||
|
<arg name='account' type='s' />
|
||||||
|
</method>
|
||||||
|
<method name='list_accounts'>
|
||||||
|
<arg direction='out' type='as' />
|
||||||
|
</method>
|
||||||
|
<method name='list_contacts'>
|
||||||
|
<arg name='account' type='s' />
|
||||||
|
<arg direction='out' type='aa{sv}' />
|
||||||
|
</method>
|
||||||
|
<method name='open_chat'>
|
||||||
|
<arg name='jid' type='s' />
|
||||||
|
<arg name='account' type='s' />
|
||||||
|
<arg name='message' type='s' />
|
||||||
|
<arg direction='out' type='b' />
|
||||||
|
</method>
|
||||||
|
<method name='prefs_del'>
|
||||||
|
<arg name='key' type='s' />
|
||||||
|
<arg direction='out' type='b' />
|
||||||
|
</method>
|
||||||
|
<method name='prefs_list'>
|
||||||
|
<arg direction='out' type='a{ss}' />
|
||||||
|
</method>
|
||||||
|
<method name='prefs_put'>
|
||||||
|
<arg name='key' type='s' />
|
||||||
|
<arg direction='out' type='b' />
|
||||||
|
</method>
|
||||||
|
<method name='prefs_store'>
|
||||||
|
<arg direction='out' type='b' />
|
||||||
|
</method>
|
||||||
|
<method name='remove_contact'>
|
||||||
|
<arg name='jid' type='s' />
|
||||||
|
<arg name='account' type='s' />
|
||||||
|
<arg direction='out' type='b' />
|
||||||
|
</method>
|
||||||
|
<method name='send_chat_message'>
|
||||||
|
<arg name='jid' type='s' />
|
||||||
|
<arg name='message' type='s' />
|
||||||
|
<arg name='keyID' type='s' />
|
||||||
|
<arg name='account' type='s' />
|
||||||
|
<arg direction='out' type='b' />
|
||||||
|
</method>
|
||||||
|
<method name='send_file'>
|
||||||
|
<arg name='file_path' type='s' />
|
||||||
|
<arg name='jid' type='s' />
|
||||||
|
<arg name='account' type='s' />
|
||||||
|
<arg direction='out' type='b' />
|
||||||
|
</method>
|
||||||
|
<method name='send_groupchat_message'>
|
||||||
|
<arg name='room_jid' type='s' />
|
||||||
|
<arg name='message' type='s' />
|
||||||
|
<arg name='account' type='s' />
|
||||||
|
<arg direction='out' type='b' />
|
||||||
|
</method>
|
||||||
|
<method name='send_single_message'>
|
||||||
|
<arg name='jid' type='s' />
|
||||||
|
<arg name='subject' type='s' />
|
||||||
|
<arg name='message' type='s' />
|
||||||
|
<arg name='keyID' type='s' />
|
||||||
|
<arg name='account' type='s' />
|
||||||
|
<arg direction='out' type='b' />
|
||||||
|
</method>
|
||||||
|
<method name='send_xml'>
|
||||||
|
<arg name='xml' type='s' />
|
||||||
|
<arg name='account' type='s' />
|
||||||
|
</method>
|
||||||
|
<method name='set_priority'>
|
||||||
|
<arg name='prio' type='s' />
|
||||||
|
<arg name='account' type='s' />
|
||||||
|
</method>
|
||||||
|
<method name='show_next_pending_event' />
|
||||||
|
<method name='show_roster' />
|
||||||
|
<method name='start_chat'>
|
||||||
|
<arg name='account' type='s' />
|
||||||
|
<arg direction='out' type='b' />
|
||||||
|
</method>
|
||||||
|
<method name='toggle_ipython' />
|
||||||
|
<method name='toggle_roster_appearance' />
|
||||||
|
<signal name='AccountPresence'>
|
||||||
|
<arg type='av' />
|
||||||
|
</signal>
|
||||||
|
<signal name='ChatState'>
|
||||||
|
<arg type='av' />
|
||||||
|
</signal>
|
||||||
|
<signal name='ContactAbsence'>
|
||||||
|
<arg type='av' />
|
||||||
|
</signal>
|
||||||
|
<signal name='ContactPresence'>
|
||||||
|
<arg type='av' />
|
||||||
|
</signal>
|
||||||
|
<signal name='ContactStatus'>
|
||||||
|
<arg type='av' />
|
||||||
|
</signal>
|
||||||
|
<signal name='EntityTime'>
|
||||||
|
<arg type='av' />
|
||||||
|
</signal>
|
||||||
|
<signal name='GCMessage'>
|
||||||
|
<arg type='av' />
|
||||||
|
</signal>
|
||||||
|
<signal name='GCPresence'>
|
||||||
|
<arg type='av' />
|
||||||
|
</signal>
|
||||||
|
<signal name='MessageSent'>
|
||||||
|
<arg type='av' />
|
||||||
|
</signal>
|
||||||
|
<signal name='NewAccount'>
|
||||||
|
<arg type='av' />
|
||||||
|
</signal>
|
||||||
|
<signal name='NewMessage'>
|
||||||
|
<arg type='av' />
|
||||||
|
</signal>
|
||||||
|
<signal name='OsInfo'>
|
||||||
|
<arg type='av' />
|
||||||
|
</signal>
|
||||||
|
<signal name='Roster'>
|
||||||
|
<arg type='av' />
|
||||||
|
</signal>
|
||||||
|
<signal name='RosterInfo'>
|
||||||
|
<arg type='av' />
|
||||||
|
</signal>
|
||||||
|
<signal name='Subscribe'>
|
||||||
|
<arg type='av' />
|
||||||
|
</signal>
|
||||||
|
<signal name='Subscribed'>
|
||||||
|
<arg type='av' />
|
||||||
|
</signal>
|
||||||
|
<signal name='Unsubscribed'>
|
||||||
|
<arg type='av' />
|
||||||
|
</signal>
|
||||||
|
<signal name='VcardInfo'>
|
||||||
|
<arg type='av' />
|
||||||
|
</signal>
|
||||||
|
</interface>
|
||||||
|
</node>
|
||||||
|
'''
|
||||||
|
|
||||||
class Remote:
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.signal_object = None
|
self.con = Gio.bus_get_sync(Gio.BusType.SESSION, None)
|
||||||
session_bus = dbus_support.session_bus.SessionBus()
|
Gio.bus_own_name_on_connection(self.con, 'org.gajim.Gajim',
|
||||||
|
Gio.BusNameOwnerFlags.NONE, None, None)
|
||||||
bus_name = dbus.service.BusName(SERVICE, bus=session_bus)
|
super().__init__(self.con, '/org/gajim/dbus/RemoteObject')
|
||||||
self.signal_object = SignalObject(bus_name)
|
self.first_show = True
|
||||||
|
|
||||||
app.ged.register_event_handler('version-result-received', ged.POSTGUI,
|
app.ged.register_event_handler('version-result-received', ged.POSTGUI,
|
||||||
self.on_os_info)
|
self.on_os_info)
|
||||||
|
@ -160,14 +355,14 @@ class Remote:
|
||||||
obj.sub, obj.ask, obj.groups]))
|
obj.sub, obj.ask, obj.groups]))
|
||||||
|
|
||||||
def on_presence_received(self, obj):
|
def on_presence_received(self, obj):
|
||||||
event = None
|
|
||||||
if obj.old_show < 2 and obj.new_show > 1:
|
if obj.old_show < 2 and obj.new_show > 1:
|
||||||
event = 'ContactPresence'
|
event = 'ContactPresence'
|
||||||
elif obj.old_show > 1 and obj.new_show < 2:
|
elif obj.old_show > 1 and obj.new_show < 2:
|
||||||
event = 'ContactAbsence'
|
event = 'ContactAbsence'
|
||||||
elif obj.new_show > 1:
|
elif obj.new_show > 1:
|
||||||
event = 'ContactStatus'
|
event = 'ContactStatus'
|
||||||
if event:
|
else:
|
||||||
|
return
|
||||||
self.raise_signal(event, (obj.conn.name, [obj.jid, obj.show,
|
self.raise_signal(event, (obj.conn.name, [obj.jid, obj.show,
|
||||||
obj.status, obj.resource, obj.prio, obj.keyID, obj.timestamp,
|
obj.status, obj.resource, obj.prio, obj.keyID, obj.timestamp,
|
||||||
obj.contact_nickname]))
|
obj.contact_nickname]))
|
||||||
|
@ -200,132 +395,35 @@ class Remote:
|
||||||
def on_vcard_received(self, obj):
|
def on_vcard_received(self, obj):
|
||||||
self.raise_signal('VcardInfo', (obj.conn.name, obj.vcard_dict))
|
self.raise_signal('VcardInfo', (obj.conn.name, obj.vcard_dict))
|
||||||
|
|
||||||
def raise_signal(self, signal, arg):
|
def raise_signal(self, event_name, data):
|
||||||
if self.signal_object:
|
self.con.emit_signal(None,
|
||||||
try:
|
'/org/gajim/dbus/RemoteObject',
|
||||||
getattr(self.signal_object, signal)(get_dbus_struct(arg))
|
'org.gajim.dbus.RemoteInterface',
|
||||||
except UnicodeDecodeError:
|
event_name,
|
||||||
pass # ignore error when we fail to announce on dbus
|
GLib.Variant.new_tuple(get_dbus_struct(data)))
|
||||||
|
|
||||||
|
|
||||||
class SignalObject(dbus.service.Object):
|
|
||||||
"""
|
|
||||||
Local object definition for /org/gajim/dbus/RemoteObject
|
|
||||||
|
|
||||||
This docstring is not be visible, because the clients can access only the
|
|
||||||
remote object.
|
|
||||||
"""
|
|
||||||
|
|
||||||
def __init__(self, bus_name):
|
|
||||||
self.first_show = True
|
|
||||||
self.vcard_account = None
|
|
||||||
|
|
||||||
# register our dbus API
|
|
||||||
dbus.service.Object.__init__(self, bus_name, OBJ_PATH)
|
|
||||||
|
|
||||||
@dbus.service.signal(INTERFACE, signature='av')
|
|
||||||
def Roster(self, account_and_data):
|
|
||||||
pass
|
|
||||||
|
|
||||||
@dbus.service.signal(INTERFACE, signature='av')
|
|
||||||
def AccountPresence(self, status_and_account):
|
|
||||||
pass
|
|
||||||
|
|
||||||
@dbus.service.signal(INTERFACE, signature='av')
|
|
||||||
def ContactPresence(self, account_and_array):
|
|
||||||
pass
|
|
||||||
|
|
||||||
@dbus.service.signal(INTERFACE, signature='av')
|
|
||||||
def ContactAbsence(self, account_and_array):
|
|
||||||
pass
|
|
||||||
|
|
||||||
@dbus.service.signal(INTERFACE, signature='av')
|
|
||||||
def ContactStatus(self, account_and_array):
|
|
||||||
pass
|
|
||||||
|
|
||||||
@dbus.service.signal(INTERFACE, signature='av')
|
|
||||||
def NewMessage(self, account_and_array):
|
|
||||||
pass
|
|
||||||
|
|
||||||
@dbus.service.signal(INTERFACE, signature='av')
|
|
||||||
def Subscribe(self, account_and_array):
|
|
||||||
pass
|
|
||||||
|
|
||||||
@dbus.service.signal(INTERFACE, signature='av')
|
|
||||||
def Subscribed(self, account_and_array):
|
|
||||||
pass
|
|
||||||
|
|
||||||
@dbus.service.signal(INTERFACE, signature='av')
|
|
||||||
def Unsubscribed(self, account_and_jid):
|
|
||||||
pass
|
|
||||||
|
|
||||||
@dbus.service.signal(INTERFACE, signature='av')
|
|
||||||
def NewAccount(self, account_and_array):
|
|
||||||
pass
|
|
||||||
|
|
||||||
@dbus.service.signal(INTERFACE, signature='av')
|
|
||||||
def VcardInfo(self, account_and_vcard):
|
|
||||||
pass
|
|
||||||
|
|
||||||
@dbus.service.signal(INTERFACE, signature='av')
|
|
||||||
def OsInfo(self, account_and_array):
|
|
||||||
pass
|
|
||||||
|
|
||||||
@dbus.service.signal(INTERFACE, signature='av')
|
|
||||||
def EntityTime(self, account_and_array):
|
|
||||||
pass
|
|
||||||
|
|
||||||
@dbus.service.signal(INTERFACE, signature='av')
|
|
||||||
def GCPresence(self, account_and_array):
|
|
||||||
pass
|
|
||||||
|
|
||||||
@dbus.service.signal(INTERFACE, signature='av')
|
|
||||||
def GCMessage(self, account_and_array):
|
|
||||||
pass
|
|
||||||
|
|
||||||
@dbus.service.signal(INTERFACE, signature='av')
|
|
||||||
def RosterInfo(self, account_and_array):
|
|
||||||
pass
|
|
||||||
|
|
||||||
@dbus.service.signal(INTERFACE, signature='av')
|
|
||||||
def ChatState(self, account_and_array):
|
|
||||||
pass
|
|
||||||
|
|
||||||
@dbus.service.signal(INTERFACE, signature='av')
|
|
||||||
def MessageSent(self, account_and_array):
|
|
||||||
pass
|
|
||||||
|
|
||||||
def raise_signal(self, signal, arg):
|
|
||||||
"""
|
|
||||||
Raise a signal, with a single argument of unspecified type Instead of
|
|
||||||
obj.raise_signal("Foo", bar), use obj.Foo(bar)
|
|
||||||
"""
|
|
||||||
getattr(self, signal)(arg)
|
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='s', out_signature='s')
|
|
||||||
def get_status(self, account):
|
def get_status(self, account):
|
||||||
"""
|
"""
|
||||||
Return status (show to be exact) which is the global one unless account is
|
Return status (show to be exact) which is the global one unless
|
||||||
given
|
account is given
|
||||||
"""
|
"""
|
||||||
if not account:
|
if not account:
|
||||||
# If user did not ask for account, returns the global status
|
# If user did not ask for account, returns the global status
|
||||||
return DBUS_STRING(helpers.get_global_show())
|
return helpers.get_global_show()
|
||||||
# return show for the given account
|
# return show for the given account
|
||||||
index = app.connections[account].connected
|
index = app.connections[account].connected
|
||||||
return DBUS_STRING(app.SHOW_LIST[index])
|
return app.SHOW_LIST[index]
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='s', out_signature='s')
|
|
||||||
def get_status_message(self, account):
|
def get_status_message(self, account):
|
||||||
"""
|
"""
|
||||||
Return status which is the global one unless account is given
|
Return status which is the global one unless account is given
|
||||||
"""
|
"""
|
||||||
if not account:
|
if not account:
|
||||||
# If user did not ask for account, returns the global status
|
# If user did not ask for account, returns the global status
|
||||||
return DBUS_STRING(str(helpers.get_global_status()))
|
return str(helpers.get_global_status())
|
||||||
# return show for the given account
|
# return show for the given account
|
||||||
status = app.connections[account].status
|
status = app.connections[account].status
|
||||||
return DBUS_STRING(status)
|
return status
|
||||||
|
|
||||||
def _get_account_and_contact(self, account, jid):
|
def _get_account_and_contact(self, account, jid):
|
||||||
"""
|
"""
|
||||||
|
@ -341,12 +439,12 @@ class SignalObject(dbus.service.Object):
|
||||||
if account:
|
if account:
|
||||||
if app.connections[account].connected > 1: # account is connected
|
if app.connections[account].connected > 1: # account is connected
|
||||||
connected_account = account
|
connected_account = account
|
||||||
contact = app.contacts.get_contact_with_highest_priority(account,
|
contact = app.contacts.get_contact_with_highest_priority(
|
||||||
jid)
|
account, jid)
|
||||||
else:
|
else:
|
||||||
for account in accounts:
|
for account in accounts:
|
||||||
contact = app.contacts.get_contact_with_highest_priority(account,
|
contact = app.contacts.get_contact_with_highest_priority(
|
||||||
jid)
|
account, jid)
|
||||||
if contact and app.connections[account].connected > 1:
|
if contact and app.connections[account].connected > 1:
|
||||||
# account is connected
|
# account is connected
|
||||||
connected_account = account
|
connected_account = account
|
||||||
|
@ -383,36 +481,42 @@ class SignalObject(dbus.service.Object):
|
||||||
break
|
break
|
||||||
return connected_account
|
return connected_account
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='sss', out_signature='b')
|
|
||||||
def send_file(self, file_path, jid, account):
|
def send_file(self, file_path, jid, account):
|
||||||
"""
|
"""
|
||||||
Send file, located at 'file_path' to 'jid', using account (optional)
|
Send file, located at 'file_path' to 'jid', using account (optional)
|
||||||
'account'
|
'account'
|
||||||
"""
|
"""
|
||||||
jid = self._get_real_jid(jid, account)
|
jid = self._get_real_jid(jid, account)
|
||||||
connected_account, contact = self._get_account_and_contact(account, jid)
|
connected_account, contact = self._get_account_and_contact(
|
||||||
|
account, jid)
|
||||||
|
|
||||||
if connected_account:
|
if connected_account:
|
||||||
if file_path.startswith('file://'):
|
if file_path.startswith('file://'):
|
||||||
file_path=file_path[7:]
|
file_path = file_path[7:]
|
||||||
if os.path.isfile(file_path): # is it file?
|
if os.path.isfile(file_path): # is it file?
|
||||||
app.interface.instances['file_transfers'].send_file(
|
app.interface.instances['file_transfers'].send_file(
|
||||||
connected_account, contact, file_path)
|
connected_account, contact, file_path)
|
||||||
return DBUS_BOOLEAN(True)
|
return True
|
||||||
return DBUS_BOOLEAN(False)
|
return False
|
||||||
|
|
||||||
def _send_message(self, jid, message, keyID, account, type_ = 'chat',
|
def _send_message(self,
|
||||||
subject = None):
|
jid,
|
||||||
|
message,
|
||||||
|
keyID,
|
||||||
|
account,
|
||||||
|
type_='chat',
|
||||||
|
subject=None):
|
||||||
"""
|
"""
|
||||||
Can be called from send_chat_message (default when send_message) or
|
Can be called from send_chat_message (default when send_message) or
|
||||||
send_single_message
|
send_single_message
|
||||||
"""
|
"""
|
||||||
if not jid or not message:
|
if not jid or not message:
|
||||||
return DBUS_BOOLEAN(False)
|
return False
|
||||||
if not keyID:
|
if not keyID:
|
||||||
keyID = ''
|
keyID = ''
|
||||||
|
|
||||||
connected_account, contact = self._get_account_and_contact(account, jid)
|
connected_account, contact = self._get_account_and_contact(
|
||||||
|
account, jid)
|
||||||
if connected_account:
|
if connected_account:
|
||||||
connection = app.connections[connected_account]
|
connection = app.connections[connected_account]
|
||||||
sessions = connection.get_sessions(jid)
|
sessions = connection.get_sessions(jid)
|
||||||
|
@ -420,17 +524,24 @@ class SignalObject(dbus.service.Object):
|
||||||
session = sessions[0]
|
session = sessions[0]
|
||||||
else:
|
else:
|
||||||
session = connection.make_new_session(jid)
|
session = connection.make_new_session(jid)
|
||||||
ctrl = app.interface.msg_win_mgr.search_control(jid,
|
ctrl = app.interface.msg_win_mgr.search_control(
|
||||||
connected_account)
|
jid, connected_account)
|
||||||
if ctrl:
|
if ctrl:
|
||||||
ctrl.send_message(message)
|
ctrl.send_message(message)
|
||||||
else:
|
else:
|
||||||
app.nec.push_outgoing_event(MessageOutgoingEvent(None, account=connected_account, jid=jid, message=message, keyID=keyID, type_=type_, control=ctrl))
|
app.nec.push_outgoing_event(
|
||||||
|
MessageOutgoingEvent(
|
||||||
|
None,
|
||||||
|
account=connected_account,
|
||||||
|
jid=jid,
|
||||||
|
message=message,
|
||||||
|
keyID=keyID,
|
||||||
|
type_=type_,
|
||||||
|
control=ctrl))
|
||||||
|
|
||||||
return DBUS_BOOLEAN(True)
|
return True
|
||||||
return DBUS_BOOLEAN(False)
|
return False
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='ssss', out_signature='b')
|
|
||||||
def send_chat_message(self, jid, message, keyID, account):
|
def send_chat_message(self, jid, message, keyID, account):
|
||||||
"""
|
"""
|
||||||
Send chat 'message' to 'jid', using account (optional) 'account'. If keyID
|
Send chat 'message' to 'jid', using account (optional) 'account'. If keyID
|
||||||
|
@ -439,31 +550,33 @@ class SignalObject(dbus.service.Object):
|
||||||
jid = self._get_real_jid(jid, account)
|
jid = self._get_real_jid(jid, account)
|
||||||
return self._send_message(jid, message, keyID, account)
|
return self._send_message(jid, message, keyID, account)
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='sssss', out_signature='b')
|
|
||||||
def send_single_message(self, jid, subject, message, keyID, account):
|
def send_single_message(self, jid, subject, message, keyID, account):
|
||||||
"""
|
"""
|
||||||
Send single 'message' to 'jid', using account (optional) 'account'. If
|
Send single 'message' to 'jid', using account (optional) 'account'. If
|
||||||
keyID is specified, encrypt the message with the pgp key
|
keyID is specified, encrypt the message with the pgp key
|
||||||
"""
|
"""
|
||||||
jid = self._get_real_jid(jid, account)
|
jid = self._get_real_jid(jid, account)
|
||||||
return self._send_message(jid, message, keyID, account, 'normal', subject)
|
return self._send_message(jid, message, keyID, account, 'normal',
|
||||||
|
subject)
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='sss', out_signature='b')
|
|
||||||
def send_groupchat_message(self, room_jid, message, account):
|
def send_groupchat_message(self, room_jid, message, account):
|
||||||
"""
|
"""
|
||||||
Send 'message' to groupchat 'room_jid', using account (optional) 'account'
|
Send 'message' to groupchat 'room_jid', using account (optional) 'account'
|
||||||
"""
|
"""
|
||||||
if not room_jid or not message:
|
if not room_jid or not message:
|
||||||
return DBUS_BOOLEAN(False)
|
return False
|
||||||
connected_account = self._get_account_for_groupchat(account, room_jid)
|
connected_account = self._get_account_for_groupchat(account, room_jid)
|
||||||
if connected_account:
|
if connected_account:
|
||||||
connection = app.connections[connected_account]
|
connection = app.connections[connected_account]
|
||||||
app.nec.push_outgoing_event(GcMessageOutgoingEvent(None,
|
app.nec.push_outgoing_event(
|
||||||
account=connected_account, jid=room_jid, message=message))
|
GcMessageOutgoingEvent(
|
||||||
return DBUS_BOOLEAN(True)
|
None,
|
||||||
return DBUS_BOOLEAN(False)
|
account=connected_account,
|
||||||
|
jid=room_jid,
|
||||||
|
message=message))
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='sss', out_signature='b')
|
|
||||||
def open_chat(self, jid, account, message):
|
def open_chat(self, jid, account, message):
|
||||||
"""
|
"""
|
||||||
Shows the tabbed window for new message to 'jid', using account (optional)
|
Shows the tabbed window for new message to 'jid', using account (optional)
|
||||||
|
@ -476,7 +589,7 @@ class SignalObject(dbus.service.Object):
|
||||||
jid = helpers.parse_jid(jid)
|
jid = helpers.parse_jid(jid)
|
||||||
except Exception:
|
except Exception:
|
||||||
# Jid is not conform, ignore it
|
# Jid is not conform, ignore it
|
||||||
return DBUS_BOOLEAN(False)
|
return False
|
||||||
|
|
||||||
minimized_control = None
|
minimized_control = None
|
||||||
if account:
|
if account:
|
||||||
|
@ -511,32 +624,31 @@ class SignalObject(dbus.service.Object):
|
||||||
connected_account = first_connected_acct
|
connected_account = first_connected_acct
|
||||||
|
|
||||||
if minimized_control:
|
if minimized_control:
|
||||||
app.interface.roster.on_groupchat_maximized(None, jid,
|
app.interface.roster.on_groupchat_maximized(
|
||||||
connected_account)
|
None, jid, connected_account)
|
||||||
|
|
||||||
if connected_account:
|
if connected_account:
|
||||||
app.interface.new_chat_from_jid(connected_account, jid, message)
|
app.interface.new_chat_from_jid(connected_account, jid, message)
|
||||||
# preserve the 'steal focus preservation'
|
# preserve the 'steal focus preservation'
|
||||||
win = app.interface.msg_win_mgr.get_window(jid,
|
win = app.interface.msg_win_mgr.get_window(
|
||||||
connected_account).window
|
jid, connected_account).window
|
||||||
if win.get_property('visible'):
|
if win.get_property('visible'):
|
||||||
win.window.present()
|
win.window.present()
|
||||||
return DBUS_BOOLEAN(True)
|
return True
|
||||||
return DBUS_BOOLEAN(False)
|
return False
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='sss', out_signature='b')
|
|
||||||
def change_status(self, status, message, account):
|
def change_status(self, status, message, account):
|
||||||
"""
|
"""
|
||||||
change_status(status, message, account). Account is optional - if not
|
change_status(status, message, account). Account is optional - if not
|
||||||
specified status is changed for all accounts
|
specified status is changed for all accounts
|
||||||
"""
|
"""
|
||||||
if status not in ('offline', 'online', 'chat',
|
if status not in ('offline', 'online', 'chat', 'away', 'xa', 'dnd',
|
||||||
'away', 'xa', 'dnd', 'invisible'):
|
'invisible'):
|
||||||
status = ''
|
status = ''
|
||||||
if account:
|
if account:
|
||||||
if not status:
|
if not status:
|
||||||
if account not in app.connections:
|
if account not in app.connections:
|
||||||
return DBUS_BOOLEAN(False)
|
return False
|
||||||
status = app.SHOW_LIST[app.connections[account].connected]
|
status = app.SHOW_LIST[app.connections[account].connected]
|
||||||
GLib.idle_add(app.interface.roster.send_status, account, status,
|
GLib.idle_add(app.interface.roster.send_status, account, status,
|
||||||
message)
|
message)
|
||||||
|
@ -554,9 +666,8 @@ class SignalObject(dbus.service.Object):
|
||||||
status_ = app.SHOW_LIST[app.connections[acc].connected]
|
status_ = app.SHOW_LIST[app.connections[acc].connected]
|
||||||
GLib.idle_add(app.interface.roster.send_status, acc, status_,
|
GLib.idle_add(app.interface.roster.send_status, acc, status_,
|
||||||
message)
|
message)
|
||||||
return DBUS_BOOLEAN(False)
|
return False
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='ss', out_signature='')
|
|
||||||
def set_priority(self, prio, account):
|
def set_priority(self, prio, account):
|
||||||
"""
|
"""
|
||||||
set_priority(prio, account). Account is optional - if not specified
|
set_priority(prio, account). Account is optional - if not specified
|
||||||
|
@ -566,8 +677,7 @@ class SignalObject(dbus.service.Object):
|
||||||
app.config.set_per('accounts', account, 'priority', prio)
|
app.config.set_per('accounts', account, 'priority', prio)
|
||||||
show = app.SHOW_LIST[app.connections[account].connected]
|
show = app.SHOW_LIST[app.connections[account].connected]
|
||||||
status = app.connections[account].status
|
status = app.connections[account].status
|
||||||
GLib.idle_add(app.connections[account].change_status, show,
|
GLib.idle_add(app.connections[account].change_status, show, status)
|
||||||
status)
|
|
||||||
else:
|
else:
|
||||||
# account not specified, so change prio of all accounts
|
# account not specified, so change prio of all accounts
|
||||||
for acc in app.contacts.get_accounts():
|
for acc in app.contacts.get_accounts():
|
||||||
|
@ -579,10 +689,8 @@ class SignalObject(dbus.service.Object):
|
||||||
app.config.set_per('accounts', acc, 'priority', prio)
|
app.config.set_per('accounts', acc, 'priority', prio)
|
||||||
show = app.SHOW_LIST[app.connections[acc].connected]
|
show = app.SHOW_LIST[app.connections[acc].connected]
|
||||||
status = app.connections[acc].status
|
status = app.connections[acc].status
|
||||||
GLib.idle_add(app.connections[acc].change_status, show,
|
GLib.idle_add(app.connections[acc].change_status, show, status)
|
||||||
status)
|
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='', out_signature='')
|
|
||||||
def show_next_pending_event(self):
|
def show_next_pending_event(self):
|
||||||
"""
|
"""
|
||||||
Show the window(s) with next pending event in tabbed/group chats
|
Show the window(s) with next pending event in tabbed/group chats
|
||||||
|
@ -593,46 +701,43 @@ class SignalObject(dbus.service.Object):
|
||||||
return
|
return
|
||||||
app.interface.handle_event(account, jid, event.type_)
|
app.interface.handle_event(account, jid, event.type_)
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='', out_signature='as')
|
|
||||||
def list_accounts(self):
|
def list_accounts(self):
|
||||||
"""
|
"""
|
||||||
List register accounts
|
List register accounts
|
||||||
"""
|
"""
|
||||||
result = app.contacts.get_accounts()
|
result = app.contacts.get_accounts()
|
||||||
result_array = dbus.Array([], signature='s')
|
result_array = []
|
||||||
if result and len(result) > 0:
|
if result:
|
||||||
for account in result:
|
for account in result:
|
||||||
result_array.append(DBUS_STRING(account))
|
result_array.append(account)
|
||||||
return result_array
|
return result_array
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='s', out_signature='a{ss}')
|
|
||||||
def account_info(self, account):
|
def account_info(self, account):
|
||||||
"""
|
"""
|
||||||
Show info on account: resource, jid, nick, prio, message
|
Show info on account: resource, jid, nick, prio, message
|
||||||
"""
|
"""
|
||||||
result = DBUS_DICT_SS()
|
result = {}
|
||||||
if account in app.connections:
|
if account in app.connections:
|
||||||
# account is valid
|
# account is valid
|
||||||
con = app.connections[account]
|
con = app.connections[account]
|
||||||
index = con.connected
|
index = con.connected
|
||||||
result['status'] = DBUS_STRING(app.SHOW_LIST[index])
|
result['status'] = app.SHOW_LIST[index]
|
||||||
result['name'] = DBUS_STRING(con.name)
|
result['name'] = con.name
|
||||||
result['jid'] = DBUS_STRING(app.get_jid_from_account(con.name))
|
result['jid'] = app.get_jid_from_account(con.name)
|
||||||
result['message'] = DBUS_STRING(con.status)
|
result['message'] = con.status
|
||||||
result['priority'] = DBUS_STRING(str(con.priority))
|
result['priority'] = str(con.priority)
|
||||||
result['resource'] = DBUS_STRING(app.config.get_per('accounts',
|
result['resource'] = app.config.get_per('accounts', con.name,
|
||||||
con.name, 'resource'))
|
'resource')
|
||||||
return result
|
return result
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='s', out_signature='aa{sv}')
|
|
||||||
def list_contacts(self, account):
|
def list_contacts(self, account):
|
||||||
"""
|
"""
|
||||||
List all contacts in the roster. If the first argument is specified, then
|
List all contacts in the roster. If the first argument is specified,
|
||||||
return the contacts for the specified account
|
then return the contacts for the specified account
|
||||||
"""
|
"""
|
||||||
result = dbus.Array([], signature='aa{sv}')
|
result = []
|
||||||
accounts = app.contacts.get_accounts()
|
accounts = app.contacts.get_accounts()
|
||||||
if len(accounts) == 0:
|
if not accounts:
|
||||||
return result
|
return result
|
||||||
if account:
|
if account:
|
||||||
accounts_to_search = [account]
|
accounts_to_search = [account]
|
||||||
|
@ -647,9 +752,9 @@ class SignalObject(dbus.service.Object):
|
||||||
result.append(item)
|
result.append(item)
|
||||||
return result
|
return result
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='', out_signature='a{ss}')
|
|
||||||
def prefs_list(self):
|
def prefs_list(self):
|
||||||
prefs_dict = DBUS_DICT_SS()
|
prefs_dict = {}
|
||||||
|
|
||||||
def get_prefs(data, name, path, value):
|
def get_prefs(data, name, path, value):
|
||||||
if value is None:
|
if value is None:
|
||||||
return
|
return
|
||||||
|
@ -658,60 +763,56 @@ class SignalObject(dbus.service.Object):
|
||||||
for node in path:
|
for node in path:
|
||||||
key += node + '#'
|
key += node + '#'
|
||||||
key += name
|
key += name
|
||||||
prefs_dict[DBUS_STRING(key)] = DBUS_STRING(value)
|
prefs_dict[key] = str(value)
|
||||||
|
|
||||||
app.config.foreach(get_prefs)
|
app.config.foreach(get_prefs)
|
||||||
return prefs_dict
|
return prefs_dict
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='', out_signature='b')
|
|
||||||
def prefs_store(self):
|
def prefs_store(self):
|
||||||
try:
|
try:
|
||||||
app.interface.save_config()
|
app.interface.save_config()
|
||||||
except Exception:
|
except Exception:
|
||||||
return DBUS_BOOLEAN(False)
|
return False
|
||||||
return DBUS_BOOLEAN(True)
|
return True
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='s', out_signature='b')
|
|
||||||
def prefs_del(self, key):
|
def prefs_del(self, key):
|
||||||
if not key:
|
if not key:
|
||||||
return DBUS_BOOLEAN(False)
|
return False
|
||||||
key_path = key.split('#', 2)
|
key_path = key.split('#', 2)
|
||||||
if len(key_path) != 3:
|
if len(key_path) != 3:
|
||||||
return DBUS_BOOLEAN(False)
|
return False
|
||||||
if key_path[2] == '*':
|
if key_path[2] == '*':
|
||||||
app.config.del_per(key_path[0], key_path[1])
|
app.config.del_per(key_path[0], key_path[1])
|
||||||
else:
|
else:
|
||||||
app.config.del_per(key_path[0], key_path[1], key_path[2])
|
app.config.del_per(key_path[0], key_path[1], key_path[2])
|
||||||
return DBUS_BOOLEAN(True)
|
return True
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='s', out_signature='b')
|
|
||||||
def prefs_put(self, key):
|
def prefs_put(self, key):
|
||||||
if not key:
|
if not key:
|
||||||
return DBUS_BOOLEAN(False)
|
return False
|
||||||
key_path = key.split('#', 2)
|
key_path = key.split('#', 2)
|
||||||
if len(key_path) < 3:
|
if len(key_path) < 3:
|
||||||
subname, value = key.split('=', 1)
|
subname, value = key.split('=', 1)
|
||||||
app.config.set(subname, value)
|
app.config.set(subname, value)
|
||||||
return DBUS_BOOLEAN(True)
|
return True
|
||||||
subname, value = key_path[2].split('=', 1)
|
subname, value = key_path[2].split('=', 1)
|
||||||
app.config.set_per(key_path[0], key_path[1], subname, value)
|
app.config.set_per(key_path[0], key_path[1], subname, value)
|
||||||
return DBUS_BOOLEAN(True)
|
return True
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='ss', out_signature='b')
|
|
||||||
def add_contact(self, jid, account):
|
def add_contact(self, jid, account):
|
||||||
if account:
|
if account:
|
||||||
if account in app.connections and \
|
if account in app.connections and \
|
||||||
app.connections[account].connected > 1:
|
app.connections[account].connected > 1:
|
||||||
# if given account is active, use it
|
# if given account is active, use it
|
||||||
AddNewContactWindow(account = account, jid = jid)
|
AddNewContactWindow(account=account, jid=jid)
|
||||||
else:
|
else:
|
||||||
# wrong account
|
# wrong account
|
||||||
return DBUS_BOOLEAN(False)
|
return False
|
||||||
else:
|
else:
|
||||||
# if account is not given, show account combobox
|
# if account is not given, show account combobox
|
||||||
AddNewContactWindow(account = None, jid = jid)
|
AddNewContactWindow(account=None, jid=jid)
|
||||||
return DBUS_BOOLEAN(True)
|
return True
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='ss', out_signature='b')
|
|
||||||
def remove_contact(self, jid, account):
|
def remove_contact(self, jid, account):
|
||||||
jid = self._get_real_jid(jid, account)
|
jid = self._get_real_jid(jid, account)
|
||||||
accounts = app.contacts.get_accounts()
|
accounts = app.contacts.get_accounts()
|
||||||
|
@ -728,7 +829,7 @@ class SignalObject(dbus.service.Object):
|
||||||
app.interface.roster.remove_contact(contact, account)
|
app.interface.roster.remove_contact(contact, account)
|
||||||
app.contacts.remove_jid(account, jid)
|
app.contacts.remove_jid(account, jid)
|
||||||
contact_exists = True
|
contact_exists = True
|
||||||
return DBUS_BOOLEAN(contact_exists)
|
return contact_exists
|
||||||
|
|
||||||
def _is_first(self):
|
def _is_first(self):
|
||||||
if self.first_show:
|
if self.first_show:
|
||||||
|
@ -736,7 +837,7 @@ class SignalObject(dbus.service.Object):
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def _get_real_jid(self, jid, account = None):
|
def _get_real_jid(self, jid, account=None):
|
||||||
"""
|
"""
|
||||||
Get the real jid from the given one: removes xmpp: or get jid from nick if
|
Get the real jid from the given one: removes xmpp: or get jid from nick if
|
||||||
account is specified, search only in this account
|
account is specified, search only in this account
|
||||||
|
@ -775,10 +876,10 @@ class SignalObject(dbus.service.Object):
|
||||||
for contact in contacts:
|
for contact in contacts:
|
||||||
if prim_contact is None or contact.priority > prim_contact.priority:
|
if prim_contact is None or contact.priority > prim_contact.priority:
|
||||||
prim_contact = contact
|
prim_contact = contact
|
||||||
contact_dict = DBUS_DICT_SV()
|
contact_dict = {}
|
||||||
contact_dict['name'] = DBUS_STRING(prim_contact.name)
|
contact_dict['name'] = GLib.Variant('s', prim_contact.name)
|
||||||
contact_dict['show'] = DBUS_STRING(prim_contact.show)
|
contact_dict['show'] = GLib.Variant('s', prim_contact.show)
|
||||||
contact_dict['jid'] = DBUS_STRING(prim_contact.jid)
|
contact_dict['jid'] = GLib.Variant('s', prim_contact.jid)
|
||||||
if prim_contact.keyID:
|
if prim_contact.keyID:
|
||||||
keyID = None
|
keyID = None
|
||||||
if len(prim_contact.keyID) == 8:
|
if len(prim_contact.keyID) == 8:
|
||||||
|
@ -786,30 +887,28 @@ class SignalObject(dbus.service.Object):
|
||||||
elif len(prim_contact.keyID) == 16:
|
elif len(prim_contact.keyID) == 16:
|
||||||
keyID = prim_contact.keyID[8:]
|
keyID = prim_contact.keyID[8:]
|
||||||
if keyID:
|
if keyID:
|
||||||
contact_dict['openpgp'] = keyID
|
contact_dict['openpgp'] = GLib.Variant('s', keyID)
|
||||||
contact_dict['resources'] = dbus.Array([], signature='(sis)')
|
resources = GLib.VariantBuilder(GLib.VariantType('a(sis)'))
|
||||||
for contact in contacts:
|
for contact in contacts:
|
||||||
resource_props = dbus.Struct((DBUS_STRING(contact.resource),
|
resource_props = (contact.resource, int(contact.priority),
|
||||||
dbus.Int32(contact.priority), DBUS_STRING(contact.status)))
|
contact.status)
|
||||||
contact_dict['resources'].append(resource_props)
|
resources.add_value(GLib.Variant("(sis)", resource_props))
|
||||||
contact_dict['groups'] = dbus.Array([], signature='(s)')
|
contact_dict['resources'] = resources.end()
|
||||||
for group in prim_contact.groups:
|
#contact_dict['groups'] = [] # TODO
|
||||||
contact_dict['groups'].append((DBUS_STRING(group),))
|
#for group in prim_contact.groups:
|
||||||
|
# contact_dict['groups'].append((group, ))
|
||||||
return contact_dict
|
return contact_dict
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='', out_signature='s')
|
|
||||||
def get_unread_msgs_number(self):
|
def get_unread_msgs_number(self):
|
||||||
return DBUS_STRING(str(app.events.get_nb_events()))
|
return str(app.events.get_nb_events())
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='s', out_signature='b')
|
|
||||||
def start_chat(self, account):
|
def start_chat(self, account):
|
||||||
if not account:
|
if not account:
|
||||||
# error is shown in gajim-remote check_arguments(..)
|
# error is shown in gajim-remote check_arguments(..)
|
||||||
return DBUS_BOOLEAN(False)
|
return False
|
||||||
app.app.activate_action('start-chat')
|
app.app.activate_action('start-chat')
|
||||||
return DBUS_BOOLEAN(True)
|
return True
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='ss', out_signature='')
|
|
||||||
def send_xml(self, xml, account):
|
def send_xml(self, xml, account):
|
||||||
if account:
|
if account:
|
||||||
app.connections[account].send_stanza(str(xml))
|
app.connections[account].send_stanza(str(xml))
|
||||||
|
@ -817,7 +916,6 @@ class SignalObject(dbus.service.Object):
|
||||||
for acc in app.contacts.get_accounts():
|
for acc in app.contacts.get_accounts():
|
||||||
app.connections[acc].send_stanza(str(xml))
|
app.connections[acc].send_stanza(str(xml))
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='ss', out_signature='')
|
|
||||||
def change_avatar(self, picture, account):
|
def change_avatar(self, picture, account):
|
||||||
filesize = os.path.getsize(picture)
|
filesize = os.path.getsize(picture)
|
||||||
invalid_file = False
|
invalid_file = False
|
||||||
|
@ -847,7 +945,6 @@ class SignalObject(dbus.service.Object):
|
||||||
app.connections[acc].get_module('VCardTemp').send_vcard(
|
app.connections[acc].get_module('VCardTemp').send_vcard(
|
||||||
vcard, sha)
|
vcard, sha)
|
||||||
|
|
||||||
@dbus.service.method(INTERFACE, in_signature='ssss', out_signature='')
|
|
||||||
def join_room(self, room_jid, nick, password, account):
|
def join_room(self, room_jid, nick, password, account):
|
||||||
if not account:
|
if not account:
|
||||||
# get the first connected account
|
# get the first connected account
|
||||||
|
@ -868,3 +965,6 @@ class SignalObject(dbus.service.Object):
|
||||||
app.interface.join_gc_minimal(account, room_jid)
|
app.interface.join_gc_minimal(account, room_jid)
|
||||||
else:
|
else:
|
||||||
app.interface.join_gc_room(account, room_jid, nick, password)
|
app.interface.join_gc_room(account, room_jid, nick, password)
|
||||||
|
|
||||||
|
def Introspect(self):
|
||||||
|
return self.__doc__
|
||||||
|
|
Loading…
Reference in New Issue