comparison libpurple/plugins/startup.py @ 16784:db06d4a18246

Add a python script plugins/startup.py which will first check whether a client with the same home directory is running. If so, it will do a purple_blist_show() and exit. Otherwise, it will start the client. Usage example: startup.py pidgin -c /tmp/ I wanted to do a purple_notify_ to notify the user. But because we can't/ don't expose functions with callbacks as parameters to dbus, that was not possible.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Wed, 02 May 2007 16:18:45 +0000
parents
children 00cec200ec58
comparison
equal deleted inserted replaced
16783:c5bcac0d593d 16784:db06d4a18246
1 #!/usr/bin/env python
2 #
3 # Makes sure only one purple instance is running
4 #
5 # Purple is the legal property of its developers, whose names are too numerous
6 # to list here. Please refer to the COPYRIGHT file distributed with this
7 # source distribution.
8 #
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #
23
24 import sys
25 import dbus
26 import os
27
28 home = os.path.expanduser('~/.purple/')
29 for arg in range(1, len(sys.argv[1:])):
30 if sys.argv[arg] == "-c":
31 home = os.path.expanduser(sys.argv[arg + 1])
32 break
33
34 bus = dbus.SessionBus()
35
36 try:
37 obj = bus.get_object("im.pidgin.purple.PurpleService", "/im/pidgin/purple/PurpleObject")
38 purple = dbus.Interface(obj, "im.pidgin.purple.PurpleInterface")
39 userdir = purple.PurpleUserDir()
40 if not os.path.isabs(userdir):
41 userdir = os.path.join(purple.PurpleHomeDir(), userdir)
42 if home == userdir:
43 print "Already running."
44 purple.PurpleBlistShow()
45 else:
46 print "Starting client from a different home directory."
47 raise
48 except:
49 os.execlp(sys.argv[1], " ".join(sys.argv[2:]))