5 pubsub "github.com/tuxychandru/pubsub"
12 type SpaceState struct {
14 buttonpress_until int64
20 presence_socket_path_ string
21 xmpp_presence_events_chan_ chan interface{}
22 xmpp_login_ struct {jid string; pass string}
23 xmpp_bot_authstring_ string
24 xmpp_state_save_dir_ string
25 button_press_timeout_ int64 = 3600
31 flag.StringVar(&xmpp_login_.jid, "xjid", "realrauminfo@realraum.at/Tuer", "XMPP Bot Login JID")
32 flag.StringVar(&xmpp_login_.pass, "xpass", "", "XMPP Bot Login Password")
33 flag.StringVar(&xmpp_bot_authstring_, "xbotauth", "", "String that user use to authenticate themselves to the bot")
34 flag.StringVar(&presence_socket_path_,"presencesocket", "/var/run/tuer/presence.socket", "Path to presence socket")
35 flag.StringVar(&xmpp_state_save_dir_,"xstatedir","/flash/var/lib/r3netstatus/", "Directory to save XMPP bot state in")
41 func IfThenElseStr(c bool, strue, sfalse string) string {
42 if c {return strue} else {return sfalse}
45 func composeMessage(present, locked, shut bool, who string, ts int64) string {
46 return fmt.Sprintf("%s (Door is %s and %s and was last used%s at %s)",
47 IfThenElseStr(present, "Somebody is present!" , "Everybody left."),
48 IfThenElseStr(locked, "locked","unlocked"),
49 IfThenElseStr(shut, "shut","ajar"),
50 IfThenElseStr(len(who) == 0,"", " by " + who),
51 time.Unix(ts,0).String())
54 func EventToXMPP(ps *pubsub.PubSub, xmpp_presence_events_chan_ chan <- interface{}) {
55 events := ps.Sub("presence","door","buttons","updateinterval")
58 if x := recover(); x != nil {
59 fmt.Printf("handleIncomingXMPPStanzas: run time panic: %v", x)
60 ps.Unsub(events, "presence","door","buttons","updateinterval")
61 close(xmpp_presence_events_chan_)
65 var present, locked, shut bool = false, true, true
66 var last_buttonpress int64 = 0
68 button_msg := "The button has been pressed ! Propably someone is bored and in need of company ! ;-)"
69 present_status := r3xmppbot.XMPPStatusEvent{r3xmppbot.ShowOnline,"Somebody is present"}
70 notpresent_status := r3xmppbot.XMPPStatusEvent{r3xmppbot.ShowNotAvailabe,"Nobody is here"}
71 button_status := r3xmppbot.XMPPStatusEvent{r3xmppbot.ShowFreeForChat, "The button has been pressed :-)"}
73 xmpp_presence_events_chan_ <- r3xmppbot.XMPPStatusEvent{r3xmppbot.ShowNotAvailabe, "Nobody is here"}
75 for eventinterface := range(events) {
76 switch event := eventinterface.(type) {
78 present = event.Present
79 xmpp_presence_events_chan_ <- r3xmppbot.XMPPMsgEvent{Msg: composeMessage(present, locked, shut, who, event.Ts), DistributeLevel: r3xmppbot.R3OnlineOnlyInfo, RememberAsStatus: true}
81 xmpp_presence_events_chan_ <- present_status
83 xmpp_presence_events_chan_ <- notpresent_status
85 case DoorCommandEvent:
86 if len(event.Who) > 0 && len(event.Using) > 0 {
87 who = fmt.Sprintf("%s (%s)",event.Who, event.Using)
91 xmpp_presence_events_chan_ <- fmt.Sprintln("DoorCommand:",event.Command, "using", event.Using, "by", event.Who, time.Unix(event.Ts,0))
92 case DoorStatusUpdate:
95 xmpp_presence_events_chan_ <- r3xmppbot.XMPPMsgEvent{Msg: composeMessage(present, locked, shut, who, event.Ts), DistributeLevel: r3xmppbot.R3DebugInfo, RememberAsStatus: true}
96 case ButtonPressUpdate:
97 xmpp_presence_events_chan_ <- r3xmppbot.XMPPMsgEvent{Msg: button_msg, DistributeLevel: r3xmppbot.R3OnlineOnlyInfo}
98 xmpp_presence_events_chan_ <- button_status
99 last_buttonpress = event.Ts
101 if present && last_buttonpress > 0 && time.Now().Unix() - last_buttonpress > button_press_timeout_ {
102 xmpp_presence_events_chan_ <- present_status
111 var bot *r3xmppbot.XmppBot
112 bot, xmpp_presence_events_chan_, xmpperr = r3xmppbot.NewStartedBot(xmpp_login_.jid, xmpp_login_.pass, xmpp_bot_authstring_, xmpp_state_save_dir_, true)
114 newlinequeue := make(chan string, 1)
116 //~ brn := brain.New()
117 defer close(newlinequeue)
119 //~ defer brn.Shutdown()
124 go EventToXMPP(ps, xmpp_presence_events_chan_)
127 fmt.Println("XMPP Bot disabled")
129 go ReadFromUSocket(presence_socket_path_, newlinequeue)
130 ticker := time.NewTicker(time.Duration(7) * time.Minute)
134 case e := <-newlinequeue:
135 ParseSocketInputLine(e, ps) //, brn)
137 ps.Pub(TimeTick{time.Now().Unix()}, "updateinterval")