2011-09-05 22:00:23 +02:00
|
|
|
## src/upower_listener.py
|
|
|
|
##
|
2014-01-02 09:33:54 +01:00
|
|
|
## Copyright (C) 2006-2014 Yann Leboulanger <asterix AT lagaule.org>
|
2011-09-05 22:00:23 +02:00
|
|
|
##
|
|
|
|
## This file is part of Gajim.
|
|
|
|
##
|
|
|
|
## Gajim 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 3 only.
|
|
|
|
##
|
|
|
|
## Gajim 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 Gajim. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
##
|
|
|
|
|
|
|
|
|
|
|
|
supported = False
|
|
|
|
|
2017-06-13 23:58:06 +02:00
|
|
|
from gajim.common import dbus_support
|
2017-08-13 13:18:56 +02:00
|
|
|
from gajim.common import app
|
2011-09-05 22:00:23 +02:00
|
|
|
|
|
|
|
def on_suspend(*args, **kwargs):
|
2017-08-13 13:18:56 +02:00
|
|
|
for name, conn in app.connections.items():
|
|
|
|
if app.account_is_connected(name):
|
|
|
|
conn.old_show = app.SHOW_LIST[conn.connected]
|
2011-09-05 22:00:23 +02:00
|
|
|
st = conn.status
|
|
|
|
conn.change_status('offline', _('Machine going to sleep'))
|
|
|
|
conn.status = st
|
|
|
|
conn.time_to_reconnect = 5
|
|
|
|
|
|
|
|
if dbus_support.supported:
|
|
|
|
try:
|
2017-06-13 23:58:06 +02:00
|
|
|
from gajim.common.dbus_support import system_bus
|
2011-09-05 22:00:23 +02:00
|
|
|
bus = system_bus.bus()
|
|
|
|
if 'org.freedesktop.UPower' in bus.list_names():
|
|
|
|
up_object = bus.get_object('org.freedesktop.UPower',
|
|
|
|
'/org/freedesktop/UPower')
|
|
|
|
bus.add_signal_receiver(on_suspend, 'Sleeping',
|
|
|
|
'org.freedesktop.UPower', 'org.freedesktop.UPower',
|
|
|
|
'/org/freedesktop/UPower')
|
|
|
|
supported = True
|
|
|
|
except Exception:
|
2012-08-11 22:46:39 +02:00
|
|
|
pass
|