Welcome to mirror list, hosted at ThFree Co, Russian Federation.

network_manager_listener.py « src - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e95a3651effa702e6b3574242b0d06f34fb67405 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# -*- coding: utf-8 -*-
##	network_manager_listener.py
## Copyright (C) 2006 Jeffrey C. Ollie <jeff at ocjtech.us>
## Copyright (C) 2006 Stefan Bethge <stefan at lanpartei.de>
##
## 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/>.
##

import sys
from common import gajim

def device_now_active(self, *args):
	for connection in gajim.connections.itervalues():
		if gajim.config.get_per('accounts', connection.name,
		'listen_to_network_manager') and connection.time_to_reconnect:
			connection._reconnect()

def device_no_longer_active(self, *args):
	for connection in gajim.connections.itervalues():
		if gajim.config.get_per('accounts', connection.name,
		'listen_to_network_manager') and connection.connected > 1:
			connection._disconnectedReconnCB()

supported = False

if sys.platform == 'darwin':
	supported = True
else:
	try:
		from common.dbus_support import system_bus

		bus = system_bus.SystemBus()

		if 'org.freedesktop.NetworkManager' in bus.list_names():
			supported = True
			bus.add_signal_receiver(device_no_longer_active,
									'DeviceNoLongerActive',
									'org.freedesktop.NetworkManager',
									'org.freedesktop.NetworkManager',
									'/org/freedesktop/NetworkManager')

			bus.add_signal_receiver(device_now_active,
									'DeviceNowActive',
									'org.freedesktop.NetworkManager',
									'org.freedesktop.NetworkManager',
									'/org/freedesktop/NetworkManager')
	except:
		pass

# vim: se ts=3: