-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathincoming.go
265 lines (212 loc) · 6.42 KB
/
incoming.go
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
package imessage
import (
"fmt"
"path/filepath"
"regexp"
"strings"
"sync"
"time"
"github.com/fsnotify/fsnotify"
)
// DefaultDuration is the minimum interval that must pass before opening the database again.
const DefaultDuration = 200 * time.Millisecond
var ErrNoRows = fmt.Errorf("no message rows found")
// Incoming is represents a message from someone. This struct is filled out
// and sent to incoming callback methods and/or to bound channels.
type Incoming struct {
RowID int64 // RowID is the unique database row id.
From string // From is the handle of the user who sent the message.
Text string // Text is the body of the message.
File bool // File is true if a file is attached. (no way to access it atm)
}
// Callback is the type used to return an incoming message to the consuming app.
// Create a function that matches this interface to process incoming messages
// using a callback (as opposed to a channel).
type Callback func(msg Incoming)
type chanBinding struct {
Match string
Chan chan Incoming
}
type funcBinding struct {
Match string
Func Callback
}
type binds struct {
Funcs []*funcBinding
Chans []*chanBinding
// locks either or both slices
sync.RWMutex
}
// IncomingChan connects a channel to a matched string in a message.
// Similar to the IncomingCall method, this will send an incoming message
// to a channel. Any message with text matching `match` is sent. Regexp supported.
// Use '.*' for all messages. The channel blocks, so avoid long operations.
func (m *Messages) IncomingChan(match string, channel chan Incoming) {
m.binds.Lock()
defer m.binds.Unlock()
m.Chans = append(m.Chans, &chanBinding{Match: match, Chan: channel})
}
// IncomingCall connects a callback function to a matched string in a message.
// This methods creates a callback that is run in a go routine any time
// a message containing `match` is found. Use '.*' for all messages. Supports regexp.
func (m *Messages) IncomingCall(match string, callback Callback) {
m.binds.Lock()
defer m.binds.Unlock()
m.Funcs = append(m.Funcs, &funcBinding{Match: match, Func: callback})
}
// RemoveChan deletes a message match to channel made with IncomingChan().
func (m *Messages) RemoveChan(match string) int {
m.binds.Lock()
defer m.binds.Unlock()
removed := 0
for i, rlen := 0, len(m.Chans); i < rlen; i++ {
j := i - removed
if m.Chans[j].Match == match {
m.Chans = append(m.Chans[:j], m.Chans[j+1:]...)
removed++
}
}
return removed
}
// RemoveCall deletes a message match to function callback made with IncomingCall().
func (m *Messages) RemoveCall(match string) int {
m.binds.Lock()
defer m.binds.Unlock()
removed := 0
for i, rlen := 0, len(m.Funcs); i < rlen; i++ {
j := i - removed
if m.Funcs[j].Match == match {
m.Funcs = append(m.Funcs[:j], m.Funcs[j+1:]...)
removed++
}
}
return removed
}
// processIncomingMessages starts the iMessage-sqlite3 db watcher routine(s).
//
//nolint:wrapcheck
func (m *Messages) processIncomingMessages() error {
watcher, err := fsnotify.NewWatcher()
if err != nil {
return err
}
go func() {
m.fsnotifySQL(watcher, time.NewTicker(DefaultDuration))
_ = watcher.Close()
}()
return watcher.Add(filepath.Dir(m.SQLPath))
}
func (m *Messages) fsnotifySQL(watcher *fsnotify.Watcher, ticker *time.Ticker) {
for checkDB := false; ; {
select {
case msg, ok := <-m.inChan:
if !ok {
return
}
m.handleIncoming(msg)
case <-ticker.C:
if checkDB {
m.checkForNewMessages()
}
case event, ok := <-watcher.Events:
if !ok {
m.ErrorLog.Print("fsnotify watcher failed. message routines stopped")
m.Stop()
return
}
checkDB = event.Op&fsnotify.Write == fsnotify.Write
case err, ok := <-watcher.Errors:
if !ok {
m.ErrorLog.Print("fsnotify watcher errors failed. message routines stopped.")
m.Stop()
return
}
m.checkErr(err, "fsnotify watcher")
}
}
}
func (m *Messages) checkForNewMessages() {
dbase, err := m.getDB()
if err != nil || dbase == nil {
return // error
}
defer m.closeDB(dbase)
sql := `SELECT message.rowid as rowid, handle.id as handle, cache_has_attachments, message.text as text ` +
`FROM message INNER JOIN handle ON message.handle_id = handle.ROWID ` +
`WHERE is_from_me=0 AND message.rowid > $id ORDER BY message.date ASC`
query, _, err := dbase.PrepareTransient(sql)
if err != nil {
return
}
query.SetInt64("$id", m.currentID)
for {
if hasRow, err := query.Step(); err != nil {
m.ErrorLog.Printf("%s: %q\n", sql, err)
return
} else if !hasRow {
m.checkErr(query.Finalize(), "query reset")
return
}
// Update Current ID (for the next SELECT), and send this message to the processors.
m.currentID = query.GetInt64("rowid")
m.inChan <- Incoming{
RowID: m.currentID,
From: strings.TrimSpace(query.GetText("handle")),
Text: strings.TrimSpace(query.GetText("text")),
File: query.GetInt64("cache_has_attachments") == 1,
}
}
}
// getCurrentID opens the iMessage DB and gets the last written / current ID.
//
//nolint:wrapcheck
func (m *Messages) getCurrentID() error {
sql := `SELECT MAX(rowid) AS id FROM message`
dbase, err := m.getDB()
if err != nil {
return err
}
defer m.closeDB(dbase)
query, _, err := dbase.PrepareTransient(sql)
if err != nil {
return err
}
m.DebugLog.Print("querying current id")
if hasrow, err := query.Step(); err != nil {
m.ErrorLog.Printf("%s: %q\n", sql, err)
return err
} else if !hasrow {
_ = query.Finalize()
return ErrNoRows
}
m.currentID = query.GetInt64("id")
return query.Finalize()
}
// handleIncoming runs the call back funcs and notifies the call back channels.
func (m *Messages) handleIncoming(msg Incoming) {
m.DebugLog.Printf("new message id %d from: %s size: %d", msg.RowID, msg.From, len(msg.Text))
m.binds.RLock()
defer m.binds.RUnlock()
// Handle call back functions.
for _, bind := range m.Funcs {
if matched, err := regexp.MatchString(bind.Match, msg.Text); err != nil {
m.ErrorLog.Printf("%s: %q\n", bind.Match, err)
continue
} else if !matched {
continue
}
go bind.Func(msg)
m.DebugLog.Printf("found matching message handler func: %v", bind.Match)
}
// Handle call back channels.
for _, bind := range m.Chans {
if matched, err := regexp.MatchString(bind.Match, msg.Text); err != nil {
m.ErrorLog.Printf("%s: %q\n", bind.Match, err)
continue
} else if !matched {
continue
}
m.DebugLog.Printf("found matching message handler chan: %v", bind.Match)
bind.Chan <- msg
}
}