141e5418272d4ecc00b1b46463b935b8809f7733
[svn42.git] / go / r3-netstatus / r3xmppbot / r3xmppbot.go
1 // (c) Bernhard Tittelbach, 2013
2
3 package r3xmppbot
4
5 import (
6         xmpp "code.google.com/p/goexmpp"
7     "crypto/tls"
8     "os"
9     "time"
10     "encoding/json"
11     "path"
12 )
13
14 //~ type StdLogger struct {
15 //~ }
16
17 //~ func (s *StdLogger) Log(v ...interface{}) {
18         //~ log.Println(v...)
19 //~ }
20
21 //~ func (s *StdLogger) Logf(fmt string, v ...interface{}) {
22         //~ log.Printf(fmt, v...)
23 //~ }
24
25
26 func (botdata *XmppBot) makeXMPPMessage(to string, message interface{}, subject interface{}) *xmpp.Message {
27     xmppmsgheader := xmpp.Header{To: to,
28                                                             From: botdata.my_jid_,
29                                                             Id: <-xmpp.Id,
30                                                             Type: "chat",
31                                                             Lang: "",
32                                                             Innerxml: "",
33                                                             Error: nil,
34                                                             Nested: make([]interface{},0)}
35
36     var msgsubject, msgbody *xmpp.Generic
37     switch cast_msg := message.(type) {
38         case string:
39             msgbody = &xmpp.Generic{Chardata: cast_msg}
40         case *string:
41             msgbody = &xmpp.Generic{Chardata: *cast_msg}
42         case *xmpp.Generic:
43             msgbody = cast_msg
44         default:
45             msgbody = &xmpp.Generic{}
46     }
47     switch cast_msg := subject.(type) {
48         case string:
49             msgsubject = &xmpp.Generic{Chardata: cast_msg}
50         case *string:
51             msgsubject = &xmpp.Generic{Chardata: *cast_msg}
52         case *xmpp.Generic:
53             msgsubject = cast_msg
54         default:
55             msgsubject = &xmpp.Generic{}
56     }
57     return &xmpp.Message{Header: xmppmsgheader , Subject: msgsubject, Body: msgbody, Thread: &xmpp.Generic{}}
58 }
59
60 func (botdata *XmppBot) makeXMPPPresence(to, ptype, show, status string) *xmpp.Presence {
61     xmppmsgheader := xmpp.Header{To: to,
62                                                             From: botdata.my_jid_,
63                                                             Id: <-xmpp.Id,
64                                                             Type: ptype,
65                                                             Lang: "",
66                                                             Innerxml: "",
67                                                             Error: nil,
68                                                             Nested: make([]interface{},0)}
69     var gen_show, gen_status *xmpp.Generic
70     if len(show) == 0 {
71         gen_show = nil
72     } else {
73         gen_show = &xmpp.Generic{Chardata: show}
74     }
75     if len(status) == 0 {
76         gen_status = nil
77     } else {
78         gen_status = &xmpp.Generic{Chardata: status}
79     }
80     return &xmpp.Presence{Header: xmppmsgheader, Show: gen_show, Status: gen_status}
81 }
82
83 type R3JIDDesire int
84
85 const (
86     R3NoChange R3JIDDesire = -1
87     R3NeverInfo R3JIDDesire = iota // ignore first value by assigning to blank identifier
88     R3OnlineOnlyInfo
89     R3OnlineOnlyWithRecapInfo
90     R3AlwaysInfo
91     R3DebugInfo
92 )
93
94 const (
95     ShowOnline string = ""
96     ShowAway string = "away"
97     ShowNotAvailabe string = "xa"
98     ShowDoNotDisturb string = "dnd"
99     ShowFreeForChat string = "chat"
100 )
101
102 type JidData struct {
103         Online  bool
104     Wants   R3JIDDesire
105 }
106
107 type JabberEvent struct {
108     JID      string
109     Online   bool
110     Wants    R3JIDDesire
111     StatusNow bool
112 }
113
114 type XMPPMsgEvent struct {
115     Msg string
116     DistributeLevel R3JIDDesire
117     RememberAsStatus bool
118 }
119
120 type XMPPStatusEvent struct {
121     Show string
122     Status string
123 }
124
125 type RealraumXmppNotifierConfig map[string]JidData
126
127 type XmppBot struct {
128     jid_lastauthtime_ map[string]int64
129     realraum_jids_ RealraumXmppNotifierConfig
130     password_ string
131     auth_cmd_ string
132     auth_cmd2_ string
133     my_jid_ string
134     auth_timeout_ int64
135     config_file_ string
136     my_login_password_ string
137     xmppclient_ *xmpp.Client
138     presence_events_ *chan interface{}
139 }
140
141
142 func (data RealraumXmppNotifierConfig) saveTo(filepath string) () {
143     fh, err := os.Create(filepath)
144     if err != nil {
145         Syslog_.Println(err)
146         return
147     }
148     defer fh.Close()
149     enc := json.NewEncoder(fh)
150     if err = enc.Encode(&data); err != nil {
151         Syslog_.Println(err)
152         return
153     }
154 }
155
156 func (data RealraumXmppNotifierConfig) loadFrom(filepath string) () {
157     fh, err := os.Open(filepath)
158     if err != nil {
159         Syslog_.Println(err)
160         return
161     }
162     defer fh.Close()
163     dec := json.NewDecoder(fh)
164     if err = dec.Decode(&data); err != nil {
165         Syslog_.Println(err)
166         return
167     }
168     for to, jiddata := range data  {
169         jiddata.Online = false
170         data[to]=jiddata
171     }
172 }
173
174
175 func init() {
176         //~ logger := &StdLogger{}
177         //~ xmpp.Debug = logger
178         //~ xmpp.Info = logger
179         //~ xmpp.Warn = logger
180 }
181
182 func (botdata *XmppBot) handleEventsforXMPP(xmppout chan <- xmpp.Stanza, presence_events <- chan interface{}, jabber_events <- chan JabberEvent) {
183     var last_status_msg *string
184
185     defer func() {
186         if x := recover(); x != nil {
187             Syslog_.Printf("handleEventsforXMPP: run time panic: %v", x)
188         }
189     }()
190
191         for {
192                 select {
193                 case pe := <-presence_events:
194             Debug_.Printf("handleEventsforXMPP<-presence_events: %T %+v", pe, pe)
195             switch pec := pe.(type) {
196                 case xmpp.Stanza:
197                     xmppout <- pec
198                     continue
199                 case string:
200                     for to, jiddata := range botdata.realraum_jids_  {
201                         if  jiddata.Wants >= R3DebugInfo {
202                             xmppout <-  botdata.makeXMPPMessage(to, pec, nil)
203                         }
204                     }
205
206                 case XMPPStatusEvent:
207                     xmppout <- botdata.makeXMPPPresence("", "", pec.Show, pec.Status)
208
209                 case XMPPMsgEvent:
210                     if pec.RememberAsStatus {
211                         last_status_msg = &pec.Msg
212                     }
213                     for to, jiddata := range botdata.realraum_jids_  {
214                         if  jiddata.Wants >= pec.DistributeLevel && ((jiddata.Wants >= R3OnlineOnlyInfo && jiddata.Online) || jiddata.Wants >= R3AlwaysInfo) {
215                             xmppout <-  botdata.makeXMPPMessage(to, pec.Msg, nil)
216                         }
217                     }
218                 default:
219                     break
220                 }
221
222                 case je := <-jabber_events:
223             Debug_.Printf("handleEventsforXMPP<-jabber_events: %T %+v", je, je)
224             simple_jid := removeJIDResource(je.JID)
225             jid_data, jid_in_map := botdata.realraum_jids_[simple_jid]
226             
227             //send status if requested, even if user never changed any settings and thus is not in map
228             if last_status_msg != nil && je.StatusNow {
229                 xmppout <-  botdata.makeXMPPMessage(je.JID, last_status_msg, nil)
230             }
231             
232             if jid_in_map {
233                 //if R3OnlineOnlyWithRecapInfo, we want a status update when coming online
234                 if last_status_msg != nil && ! jid_data.Online && je.Online && jid_data.Wants == R3OnlineOnlyWithRecapInfo {
235                     xmppout <-  botdata.makeXMPPMessage(je.JID, last_status_msg, nil)
236                 }
237                 jid_data.Online = je.Online
238                 if je.Wants > R3NoChange {
239                     jid_data.Wants = je.Wants
240                 }
241                 botdata.realraum_jids_[simple_jid] = jid_data
242                 botdata.realraum_jids_.saveTo(botdata.config_file_)
243             } else if je.Wants > R3NoChange {
244                 botdata.realraum_jids_[simple_jid] = JidData{je.Online, je.Wants}
245                 botdata.realraum_jids_.saveTo(botdata.config_file_)
246             }
247                 }
248         }
249 }
250
251 func removeJIDResource(jid string) string {
252     var jidjid xmpp.JID
253     jidjid.Set(jid)
254     jidjid.Resource = ""
255     return jidjid.String()
256 }
257
258 func (botdata *XmppBot) isAuthenticated(jid string) bool {
259     authtime, in_map := botdata.jid_lastauthtime_[jid]
260     return in_map && time.Now().Unix() - authtime < botdata.auth_timeout_
261 }
262
263 const help_text_ string = "\n*auth*<password>* ...Enables you to use more commands.\n*time* ...Returns bot time."
264 const help_text_auth string = "You are authorized to use the following commands:\n*off* ...You will no longer receive notifications.\n*on* ...You will be notified of r3 status changes while you are online.\n*on_with_recap* ...Like *on* but additionally you will receive the current status when you come online.\n*on_while_offline* ...You will receive all r3 status changes, wether you are online or offline.\n*status* ...Use it to query the current status.\n*time* ...Returns bot time.\n*bye* ...Logout."
265
266 //~ var re_msg_auth_    *regexp.Regexp     = regexp.MustCompile("auth\s+(\S+)")
267
268 func (botdata *XmppBot) handleIncomingMessageDialog(inmsg xmpp.Message, xmppout chan<- xmpp.Stanza, jabber_events chan JabberEvent) {
269     if inmsg.Body == nil || inmsg.GetHeader() == nil {
270         return
271     }
272     bodytext :=inmsg.Body.Chardata
273     if botdata.isAuthenticated(inmsg.GetHeader().From) {
274         switch bodytext {
275             case "on", "*on*":
276                 jabber_events <- JabberEvent{inmsg.GetHeader().From, true, R3OnlineOnlyInfo, false}
277                 xmppout <- botdata.makeXMPPMessage(inmsg.GetHeader().From, "Receive r3 status updates while online." , "Your New Status")
278             case "off", "*off*":
279                 jabber_events <- JabberEvent{inmsg.GetHeader().From, true, R3NeverInfo, false}
280                 xmppout <- botdata.makeXMPPMessage(inmsg.GetHeader().From, "Do not receive anything." , "Your New Status")
281             case "on_with_recap", "*on_with_recap*":
282                 jabber_events <- JabberEvent{inmsg.GetHeader().From, true, R3OnlineOnlyWithRecapInfo, false}
283                 xmppout <- botdata.makeXMPPMessage(inmsg.GetHeader().From, "Receive r3 status updates while and current status on coming, online." , "Your New Status")
284             case "on_while_offline", "*on_while_offline*":
285                 jabber_events <- JabberEvent{inmsg.GetHeader().From, true, R3AlwaysInfo, false}
286                 xmppout <- botdata.makeXMPPMessage(inmsg.GetHeader().From, "Receive all r3 status updates, even if you are offline." , "Your New Status")
287             case "debug":
288                 jabber_events <- JabberEvent{inmsg.GetHeader().From, true, R3DebugInfo, false}
289                 xmppout <- botdata.makeXMPPMessage(inmsg.GetHeader().From, "Debug mode enabled" , "Your New Status")
290             case "bye", "Bye", "quit", "logout", "*bye*":
291                 botdata.jid_lastauthtime_[inmsg.GetHeader().From] = 0
292                 xmppout <- botdata.makeXMPPMessage(inmsg.GetHeader().From, "Bye Bye !" ,nil)
293             case "open","close":
294                 xmppout <- botdata.makeXMPPMessage(inmsg.GetHeader().From, "Sorry, I can't operate the door for you." ,nil)
295             case "status", "*status*":
296                 jabber_events <- JabberEvent{inmsg.GetHeader().From, true, R3NoChange, true}
297             case "time", "*time*":
298                 xmppout <- botdata.makeXMPPMessage(inmsg.GetHeader().From, time.Now().String() , nil)
299             default:
300                 //~ auth_match = re_msg_auth_.FindStringSubmatch(inmsg.Body.Chardata)
301                 xmppout <- botdata.makeXMPPMessage(inmsg.GetHeader().From, help_text_auth, nil)
302         }
303     } else {
304         switch bodytext {
305             case "Hilfe","hilfe","help","Help","?","hallo","Hallo","Yes","yes","ja","ja bitte","bitte","sowieso":
306                 xmppout <- botdata.makeXMPPMessage(inmsg.GetHeader().From, help_text_, "Available Commands")
307             case botdata.auth_cmd_, botdata.auth_cmd2_:
308                 botdata.jid_lastauthtime_[inmsg.GetHeader().From] = time.Now().Unix()
309                 xmppout <- botdata.makeXMPPMessage(inmsg.GetHeader().From, help_text_auth, nil)
310             case "status", "*status*", "off", "*off*", "on", "*on*", "on_while_offline", "*on_while_offline*", "on_with_recap", "*on_with_recap*":
311                 xmppout <- botdata.makeXMPPMessage(inmsg.GetHeader().From, "Sorry, you need to be authorized to do that." , nil)
312             case "time", "*time*":
313                 xmppout <- botdata.makeXMPPMessage(inmsg.GetHeader().From, time.Now().String() , nil)
314             default:
315                 //~ auth_match = re_msg_auth_.FindStringSubmatch(inmsg.Body.Chardata)
316                 xmppout <- botdata.makeXMPPMessage(inmsg.GetHeader().From, "A nice day to you too !\nDo you need \"help\" ?", nil)
317         }
318     }
319 }
320
321 func (botdata *XmppBot) handleIncomingXMPPStanzas(xmppin <- chan xmpp.Stanza, xmppout chan<- xmpp.Stanza, jabber_events chan JabberEvent) {
322
323     defer func() {
324         if x := recover(); x != nil {
325             Syslog_.Printf("handleIncomingXMPPStanzas: run time panic: %v", x)
326             close(jabber_events)
327         }
328     }()
329
330     var incoming_stanza interface{}
331     for incoming_stanza = range xmppin {
332         switch stanza := incoming_stanza.(type) {
333             case *xmpp.Message:
334                 botdata.handleIncomingMessageDialog(*stanza, xmppout, jabber_events)
335             case *xmpp.Presence:
336                 if stanza.GetHeader() == nil {
337                     continue
338                 }
339                 switch stanza.GetHeader().Type {
340                     case "subscribe":
341                         xmppout <- botdata.makeXMPPPresence(stanza.GetHeader().From, "subscribed", "", "")
342                         jabber_events <- JabberEvent{stanza.GetHeader().From, true, R3NoChange, false}
343                         xmppout <- botdata.makeXMPPPresence(stanza.GetHeader().From, "subscribe", "", "")
344                     case "unsubscribe", "unsubscribed":
345                         jabber_events <- JabberEvent{stanza.GetHeader().From, false, R3NeverInfo, false}
346                         botdata.jid_lastauthtime_[stanza.GetHeader().From] = 0 //logout
347                         xmppout <- botdata.makeXMPPPresence(stanza.GetHeader().From, "unsubscribe", "","")
348                     case "unavailable":
349                         jabber_events <- JabberEvent{stanza.GetHeader().From, false, R3NoChange, false}
350                         botdata.jid_lastauthtime_[stanza.GetHeader().From] = 0 //logout
351                     default:
352                         jabber_events <- JabberEvent{stanza.GetHeader().From, true, R3NoChange, false}
353                 }
354             case *xmpp.Iq:
355                 if stanza.GetHeader() == nil {
356                     continue
357                 }
358         }
359     }
360 }
361
362 func NewStartedBot(loginjid, loginpwd, password, state_save_dir string, insecuretls bool) (*XmppBot, chan interface{}, error) {
363     var err error
364     botdata := new(XmppBot)
365
366     botdata.realraum_jids_ = make(map[string]JidData, 1)
367     botdata.jid_lastauthtime_ = make(map[string]int64,1)
368     botdata.auth_cmd_ = "auth " + password
369     botdata.auth_cmd2_ = "*auth*" + password+"*"
370     botdata.my_jid_ = loginjid
371     botdata.my_login_password_ = loginpwd
372     botdata.auth_timeout_ = 3600*2
373
374     botdata.config_file_ = path.Join(state_save_dir, "r3xmpp."+removeJIDResource(loginjid)+".json")
375
376     //~ logger := &StdLogger{}
377     //~ xmpp.Debug = logger
378     //~ xmpp.Info = logger
379     //~ xmpp.Warn = logger
380
381     xmpp.TlsConfig = tls.Config{InsecureSkipVerify: insecuretls}
382     botdata.realraum_jids_.loadFrom(botdata.config_file_)
383
384     client_jid := new(xmpp.JID)
385     client_jid.Set(botdata.my_jid_)
386     botdata.xmppclient_, err = xmpp.NewClient(client_jid, botdata.my_login_password_, nil)
387     if err != nil {
388         Syslog_.Println("Error connecting to xmpp server", err)
389         return nil, nil, err
390     }
391
392     err = botdata.xmppclient_.StartSession(true, &xmpp.Presence{})
393     if err != nil {
394         Syslog_.Println("'Error StartSession:", err)
395         return nil, nil, err
396     }
397
398     roster := xmpp.Roster(botdata.xmppclient_)
399     for _, entry := range roster {
400         Debug_.Print(entry)
401         if entry.Subscription == "from" {
402             botdata.xmppclient_.Out <- botdata.makeXMPPPresence(entry.Jid, "subscribe", "","")
403         }
404         if entry.Subscription == "none" {
405             delete(botdata.realraum_jids_, entry.Jid)
406         }
407     }
408
409     presence_events := make(chan interface{},1)
410     jabber_events := make(chan JabberEvent,1)
411
412     go botdata.handleEventsforXMPP(botdata.xmppclient_.Out, presence_events, jabber_events)
413     go botdata.handleIncomingXMPPStanzas(botdata.xmppclient_.In, botdata.xmppclient_.Out, jabber_events)
414
415     botdata.presence_events_ = &presence_events
416
417     return botdata, presence_events, nil
418 }
419
420 func (botdata *XmppBot) StopBot() {
421     if botdata.xmppclient_ != nil {
422         close(botdata.xmppclient_.Out)
423     }
424     if botdata.presence_events_ != nil {
425         *botdata.presence_events_ <- false
426         close(*botdata.presence_events_)
427     }
428 }