annotate frontends/quick_frontend/quick_app.py @ 25:53e921c8a357

new plugin: gateways plugin, and first implementation of findGateways - test menu in Wix - new actionResultExt method, for sending dictionary of dictionaries - new getNextId method, for accessing sat ids from plugins.
author Goffi <goffi@goffi.org>
date Fri, 04 Dec 2009 08:47:44 +0100
parents bb72c29f3432
children c2b131e4e262
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
goffi@necton2
parents:
diff changeset
1 #!/usr/bin/python
goffi@necton2
parents:
diff changeset
2 # -*- coding: utf-8 -*-
goffi@necton2
parents:
diff changeset
3
goffi@necton2
parents:
diff changeset
4 """
goffi@necton2
parents:
diff changeset
5 helper class for making a SAT frontend
goffi@necton2
parents:
diff changeset
6 Copyright (C) 2009 Jérôme Poisson (goffi@goffi.org)
goffi@necton2
parents:
diff changeset
7
goffi@necton2
parents:
diff changeset
8 This program is free software: you can redistribute it and/or modify
goffi@necton2
parents:
diff changeset
9 it under the terms of the GNU General Public License as published by
goffi@necton2
parents:
diff changeset
10 the Free Software Foundation, either version 3 of the License, or
goffi@necton2
parents:
diff changeset
11 (at your option) any later version.
goffi@necton2
parents:
diff changeset
12
goffi@necton2
parents:
diff changeset
13 This program is distributed in the hope that it will be useful,
goffi@necton2
parents:
diff changeset
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
goffi@necton2
parents:
diff changeset
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
goffi@necton2
parents:
diff changeset
16 GNU General Public License for more details.
goffi@necton2
parents:
diff changeset
17
goffi@necton2
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
goffi@necton2
parents:
diff changeset
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
goffi@necton2
parents:
diff changeset
20 """
goffi@necton2
parents:
diff changeset
21
goffi@necton2
parents:
diff changeset
22 from logging import debug, info, error
goffi@necton2
parents:
diff changeset
23 from tools.jid import JID
goffi@necton2
parents:
diff changeset
24 from sat_bridge_frontend.DBus import DBusBridgeFrontend
goffi@necton2
parents:
diff changeset
25 from quick_frontend.quick_contact_management import QuickContactManagement
goffi@necton2
parents:
diff changeset
26
goffi@necton2
parents:
diff changeset
27
goffi@necton2
parents:
diff changeset
28 class QuickApp():
goffi@necton2
parents:
diff changeset
29 """This class contain the main methods needed for the frontend"""
goffi@necton2
parents:
diff changeset
30
goffi@necton2
parents:
diff changeset
31 def __init__(self):
goffi@necton2
parents:
diff changeset
32 self.rosterList = {}
goffi@necton2
parents:
diff changeset
33 self.CM = QuickContactManagement() #a short name if more handy
goffi@necton2
parents:
diff changeset
34
goffi@necton2
parents:
diff changeset
35 ## bridge ##
goffi@necton2
parents:
diff changeset
36 self.bridge=DBusBridgeFrontend()
goffi@necton2
parents:
diff changeset
37 self.bridge.register("newContact", self.newContact)
goffi@necton2
parents:
diff changeset
38 self.bridge.register("newMessage", self.newMessage)
goffi@necton2
parents:
diff changeset
39 self.bridge.register("presenceUpdate", self.presenceUpdate)
goffi@necton2
parents:
diff changeset
40 self.bridge.register("paramUpdate", self.paramUpdate)
goffi@necton2
parents:
diff changeset
41 self.bridge.register("contactDeleted", self.contactDeleted)
goffi@necton2
parents:
diff changeset
42 self.bridge.register("askConfirmation", self.askConfirmation, "request")
22
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
43 self.bridge.register("actionResult", self.actionResult, "request")
25
53e921c8a357 new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents: 22
diff changeset
44 self.bridge.register("actionResultExt", self.actionResult, "request")
0
goffi@necton2
parents:
diff changeset
45
goffi@necton2
parents:
diff changeset
46 ###now we get the essential params###
22
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
47 self.whoami=JID(self.bridge.getParamA("JabberID","Connection"))
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
48 self.watched=self.bridge.getParamA("Watched", "Misc").split() #TODO: put this in a plugin
0
goffi@necton2
parents:
diff changeset
49
goffi@necton2
parents:
diff changeset
50 ## misc ##
22
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
51 self.current_action_ids = set()
0
goffi@necton2
parents:
diff changeset
52 self.onlineContact = set() #FIXME: temporary
goffi@necton2
parents:
diff changeset
53
goffi@necton2
parents:
diff changeset
54 if self.bridge.isConnected():
goffi@necton2
parents:
diff changeset
55 self.setStatusOnline(True)
goffi@necton2
parents:
diff changeset
56
goffi@necton2
parents:
diff changeset
57 ### now we fill the contact list ###
goffi@necton2
parents:
diff changeset
58 for contact in self.bridge.getContacts():
goffi@necton2
parents:
diff changeset
59 self.newContact(contact[0], contact[1], contact[2])
goffi@necton2
parents:
diff changeset
60
goffi@necton2
parents:
diff changeset
61 for status in self.bridge.getPresenceStatus():
goffi@necton2
parents:
diff changeset
62 self.presenceUpdate(status[0], status[1], status[2], status[3], status[4])
goffi@necton2
parents:
diff changeset
63
goffi@necton2
parents:
diff changeset
64
goffi@necton2
parents:
diff changeset
65 def newContact(self, JabberId, attributes, groups):
goffi@necton2
parents:
diff changeset
66 jid=JID(JabberId)
goffi@necton2
parents:
diff changeset
67 self.rosterList[jid.short]=(dict(attributes), list(groups))
goffi@necton2
parents:
diff changeset
68
goffi@necton2
parents:
diff changeset
69 def newMessage(self, from_jid, msg, type, to_jid):
goffi@necton2
parents:
diff changeset
70 sender=JID(from_jid)
goffi@necton2
parents:
diff changeset
71 addr=JID(to_jid)
goffi@necton2
parents:
diff changeset
72 win = addr if sender.short == self.whoami.short else sender
goffi@necton2
parents:
diff changeset
73 self.chat_wins[win.short].printMessage(sender, msg)
goffi@necton2
parents:
diff changeset
74
goffi@necton2
parents:
diff changeset
75 def setStatusOnline(self, online=True):
goffi@necton2
parents:
diff changeset
76 pass
goffi@necton2
parents:
diff changeset
77
goffi@necton2
parents:
diff changeset
78 def presenceUpdate(self, jabber_id, type, show, status, priority):
goffi@necton2
parents:
diff changeset
79 debug ("presence update for %s (type=%s, show=%s, status=%s)", jabber_id, type, show, status);
goffi@necton2
parents:
diff changeset
80 jid=JID(jabber_id)
goffi@necton2
parents:
diff changeset
81 debug ("jid.short=%s whoami.short=%s", jid.short, self.whoami.short)
goffi@necton2
parents:
diff changeset
82
goffi@necton2
parents:
diff changeset
83 ### subscription management ###
goffi@necton2
parents:
diff changeset
84 if type=="subscribed":
goffi@necton2
parents:
diff changeset
85 # this is a subscription confirmation, we just have to inform user
goffi@necton2
parents:
diff changeset
86 self.showDialog("The contact %s has accepted your subscription" % jid.short, 'Subscription confirmation')
goffi@necton2
parents:
diff changeset
87 return
goffi@necton2
parents:
diff changeset
88 elif type=="unsubscribed":
goffi@necton2
parents:
diff changeset
89 # this is a subscription refusal, we just have to inform user
goffi@necton2
parents:
diff changeset
90 self.showDialog("The contact %s has refused your subscription" % jid.short, 'Subscription refusal', 'error')
goffi@necton2
parents:
diff changeset
91 return
goffi@necton2
parents:
diff changeset
92 elif type=="subscribe":
goffi@necton2
parents:
diff changeset
93 # this is a subscrition request, we have to ask for user confirmation
goffi@necton2
parents:
diff changeset
94 answer = self.showDialog("The contact %s wants to subscribe to your presence.\nDo you accept ?" % jid.short, 'Subscription confirmation', 'question')
goffi@necton2
parents:
diff changeset
95 if answer:
goffi@necton2
parents:
diff changeset
96 self.bridge.setPresence(type="subscribed", to=jid.short)
goffi@necton2
parents:
diff changeset
97 else:
goffi@necton2
parents:
diff changeset
98 self.bridge.setPresence(type="unsubscribed", to=jid.short)
goffi@necton2
parents:
diff changeset
99 return
goffi@necton2
parents:
diff changeset
100 ### subscription management end ###
goffi@necton2
parents:
diff changeset
101
goffi@necton2
parents:
diff changeset
102 if jid.short==self.whoami.short:
goffi@necton2
parents:
diff changeset
103 if not type:
goffi@necton2
parents:
diff changeset
104 self.setStatusOnline(True)
goffi@necton2
parents:
diff changeset
105 elif type=="unavailable":
goffi@necton2
parents:
diff changeset
106 self.setStatusOnline(False)
goffi@necton2
parents:
diff changeset
107 return
goffi@necton2
parents:
diff changeset
108
goffi@necton2
parents:
diff changeset
109 if not type:
goffi@necton2
parents:
diff changeset
110 name=""
goffi@necton2
parents:
diff changeset
111 group=""
goffi@necton2
parents:
diff changeset
112 if self.rosterList.has_key(jid.short):
goffi@necton2
parents:
diff changeset
113 if self.rosterList[jid.short][0].has_key("name"):
goffi@necton2
parents:
diff changeset
114 name=self.rosterList[jid.short][0]["name"]
goffi@necton2
parents:
diff changeset
115 if self.rosterList[jid.short][0].has_key("show"):
goffi@necton2
parents:
diff changeset
116 name=self.rosterList[jid.short][0]["show"]
goffi@necton2
parents:
diff changeset
117 if self.rosterList[jid.short][0].has_key("status"):
goffi@necton2
parents:
diff changeset
118 name=self.rosterList[jid.short][0]["status"]
goffi@necton2
parents:
diff changeset
119 if len(self.rosterList[jid.short][1]):
goffi@necton2
parents:
diff changeset
120 group=self.rosterList[jid.short][1][0]
goffi@necton2
parents:
diff changeset
121
goffi@necton2
parents:
diff changeset
122 #FIXME: must be moved in a plugin
goffi@necton2
parents:
diff changeset
123 if jid.short in self.watched and not jid.short in self.onlineContact:
goffi@necton2
parents:
diff changeset
124 self.showAlert("Watched jid [%s] is connected !" % jid.short)
goffi@necton2
parents:
diff changeset
125
goffi@necton2
parents:
diff changeset
126 self.onlineContact.add(jid) #FIXME onlineContact is useless with CM, must be removed
goffi@necton2
parents:
diff changeset
127 self.CM.add(jid)
goffi@necton2
parents:
diff changeset
128 self.contactList.replace(jid, show=show, status=status, name=name, group=group)
goffi@necton2
parents:
diff changeset
129
goffi@necton2
parents:
diff changeset
130
13
bd9e9997d540 wokkel integration (not finished yet)
Goffi <goffi@goffi.org>
parents: 0
diff changeset
131 if type=="unavailable" and jid in self.onlineContact:
bd9e9997d540 wokkel integration (not finished yet)
Goffi <goffi@goffi.org>
parents: 0
diff changeset
132 self.onlineContact.remove(jid)
0
goffi@necton2
parents:
diff changeset
133 self.CM.remove(jid)
goffi@necton2
parents:
diff changeset
134 self.contactList.remove(jid)
goffi@necton2
parents:
diff changeset
135
goffi@necton2
parents:
diff changeset
136
goffi@necton2
parents:
diff changeset
137 def showDialog(self, message, title, type="info"):
goffi@necton2
parents:
diff changeset
138 raise NotImplementedError
goffi@necton2
parents:
diff changeset
139
goffi@necton2
parents:
diff changeset
140 def showAlert(self, message):
goffi@necton2
parents:
diff changeset
141 pass #FIXME
goffi@necton2
parents:
diff changeset
142
goffi@necton2
parents:
diff changeset
143 def paramUpdate(self, name, value, namespace):
goffi@necton2
parents:
diff changeset
144 debug("param update: [%s] %s = %s", namespace, name, value)
goffi@necton2
parents:
diff changeset
145 if (namespace,name) == ("Connection", "JabberID"):
goffi@necton2
parents:
diff changeset
146 debug ("Changing ID to %s", value)
goffi@necton2
parents:
diff changeset
147 self.whoami=JID(value)
goffi@necton2
parents:
diff changeset
148 elif (namespace,name) == ("Misc", "Watched"):
goffi@necton2
parents:
diff changeset
149 self.watched=value.split()
goffi@necton2
parents:
diff changeset
150
goffi@necton2
parents:
diff changeset
151 def contactDeleted(self, jid):
goffi@necton2
parents:
diff changeset
152 target = JID(jid)
goffi@necton2
parents:
diff changeset
153 try:
goffi@necton2
parents:
diff changeset
154 self.onlineContact.remove(target.short)
goffi@necton2
parents:
diff changeset
155 except KeyError:
goffi@necton2
parents:
diff changeset
156 pass
goffi@necton2
parents:
diff changeset
157 self.contactList.remove(self.CM.get_full(jid))
goffi@necton2
parents:
diff changeset
158 self.CM.remove(target)
goffi@necton2
parents:
diff changeset
159
goffi@necton2
parents:
diff changeset
160 def askConfirmation(self, type, id, data):
goffi@necton2
parents:
diff changeset
161 raise NotImplementedError
22
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
162
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
163 def actionResult(self, type, id, data):
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
164 raise NotImplementedError