-
Notifications
You must be signed in to change notification settings - Fork 3
/
mongodb.go
447 lines (396 loc) · 12.1 KB
/
mongodb.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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
package main
import (
"fmt"
"log"
"time"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
)
const (
database = "twitter_data"
collectionTweet = "tweet"
collectionTwitterProfile = "twitter_profile"
collectionObservableTwitter = "observable_twitter"
collectionTweetLabel = "tweet_label"
collectionAccessKeys = "access_keys"
fieldInReplyToScreenName = "in_reply_to_screen_name"
fieldStatusId = "status_id"
fieldAccountName = "account_name"
fieldLang = "lang"
fieldText = "text"
fieldUserName = "user_name"
fieldProfileName = "profile_name"
fieldSentiment = "sentiment"
fieldSentimentScore = "sentiment_score"
fieldTweetClass = "tweet_class"
fieldClassifierCertainty = "classifier_certainty"
fieldIsAnnotated = "is_annotated"
fieldAccessKey = "access_key"
)
// MongoGetSession returns a session
func MongoGetSession(mongoIP, username, password string) *mgo.Session {
info := &mgo.DialInfo{
Addrs: []string{mongoIP},
Timeout: 60 * time.Second,
Database: database,
Username: username,
Password: password,
}
session, err := mgo.DialWithInfo(info)
if err != nil {
log.Fatal(err)
}
session.SetMode(mgo.Monotonic, true)
return session
}
// MongoCreateCollectionIndexes creates the indexes
func MongoCreateCollectionIndexes(mongoClient *mgo.Session) {
// Index
tweetIndex := mgo.Index{
Key: []string{fieldStatusId},
Unique: true,
Background: true,
Sparse: true,
}
tweetCollection := mongoClient.DB(database).C(collectionTweet)
err := tweetCollection.EnsureIndex(tweetIndex)
if err != nil {
panic(err)
}
// Index
tweetSecondIndex := mgo.Index{
Key: []string{fieldText, fieldUserName},
Unique: true,
Background: true,
Sparse: true,
}
err = tweetCollection.EnsureIndex(tweetSecondIndex)
if err != nil {
panic(err)
}
// Index
twitterProfileIndex := mgo.Index{
Key: []string{fieldProfileName},
Unique: true,
Background: true,
Sparse: true,
}
twitterProfileCollection := mongoClient.DB(database).C(collectionTwitterProfile)
err = twitterProfileCollection.EnsureIndex(twitterProfileIndex)
if err != nil {
panic(err)
}
// Index
observableTwitterIndex := mgo.Index{
Key: []string{fieldAccountName, fieldLang},
Unique: true,
Background: true,
Sparse: true,
}
observableTwitterCollection := mongoClient.DB(database).C(collectionObservableTwitter)
err = observableTwitterCollection.EnsureIndex(observableTwitterIndex)
if err != nil {
panic(err)
}
// Index
tweetLabelIndex := mgo.Index{
Key: []string{fieldStatusId},
Unique: true,
Background: true,
Sparse: true,
}
tweetLabelCollection := mongoClient.DB(database).C(collectionTweetLabel)
err = tweetLabelCollection.EnsureIndex(tweetLabelIndex)
if err != nil {
panic(err)
}
// Index
accessKeysIndex := mgo.Index{
Key: []string{fieldAccessKey},
Unique: true,
Background: true,
Sparse: true,
}
accessKeysCollection := mongoClient.DB(database).C(collectionAccessKeys)
err = accessKeysCollection.EnsureIndex(accessKeysIndex)
if err != nil {
panic(err)
}
}
// MongoInsertTweets returns ok if the tweet was inserted or already existed
func MongoInsertTweets(mongoClient *mgo.Session, tweets []Tweet) bool {
for _, tweet := range tweets {
err := mongoClient.DB(database).C(collectionTweet).Insert(tweet)
if err != nil && !mgo.IsDup(err) {
fmt.Println(err)
return false
}
}
return true
}
// MongoUpdateTweetsSentimentAndClass returns ok if the tweet was inserted or already existed
func MongoUpdateTweetsSentimentAndClass(mongoClient *mgo.Session, tweets []Tweet) bool {
for _, tweet := range tweets {
query := bson.M{fieldStatusId: tweet.StatusID}
update := bson.M{"$set": bson.M{
fieldSentiment: tweet.Sentiment,
fieldSentimentScore: tweet.SentimentScore,
fieldTweetClass: tweet.TweetClass,
fieldClassifierCertainty: tweet.ClassifierCertainty,
}}
_, err := mongoClient.DB(database).C(collectionTweet).Upsert(query, update)
if err != nil && !mgo.IsDup(err) {
fmt.Println(err)
return false
}
}
return true
}
// MongoGetTweetOfClass returns all tweets belonging to one class i.e., issue report of a specific twitter page
func MongoGetTweetOfClass(mongoClient *mgo.Session, tweetedToName string, tweetClass string) []Tweet {
var tweets []Tweet
err := mongoClient.
DB(database).
C(collectionTweet).
Find(bson.M{fieldInReplyToScreenName: tweetedToName, fieldTweetClass: tweetClass}).
All(&tweets)
if err != nil {
fmt.Println("ERR", err)
panic(err)
}
return tweets
}
// MongoGetTweetOfClass returns all tweets belonging to one class i.e., issue report of a specific twitter page
func MongoGetTweetOfClassLimited(mongoClient *mgo.Session, tweetedToName string, tweetClass string, limit int) []Tweet {
var tweets []Tweet
err := mongoClient.
DB(database).
C(collectionTweet).
Find(bson.M{fieldInReplyToScreenName: tweetedToName, fieldTweetClass: tweetClass}).
Limit(limit).
All(&tweets)
if err != nil {
fmt.Println("ERR", err)
panic(err)
}
return tweets
}
// MongoGetAllTweetsOfAccountName returns all tweets belonging to one specific twitter page
func MongoGetAllTweetsOfAccountName(mongoClient *mgo.Session, accountName string) []Tweet {
var tweets []Tweet
err := mongoClient.
DB(database).
C(collectionTweet).
Find(bson.M{fieldInReplyToScreenName: accountName}).
All(&tweets)
if err != nil {
fmt.Println("ERR", err)
panic(err)
}
//, "created_at_full": bson.M{"$exists": true}
return tweets
}
// MongoGetUnclassifiedAllTweetsOfAccountName returns all tweets belonging to one specific twitter page
func MongoGetUnclassifiedAllTweetsOfAccountName(mongoClient *mgo.Session, accountName, lang string) []Tweet {
var tweets []Tweet
err := mongoClient.
DB(database).
C(collectionTweet).
Find(bson.M{fieldInReplyToScreenName: accountName, fieldTweetClass: "", fieldLang: lang}).
All(&tweets)
if err != nil {
fmt.Println("ERR", err)
panic(err)
}
//, "created_at_full": bson.M{"$exists": true}
return tweets
}
// MongoGetAllUnlabeledTweetsOfAccountName returns all tweets of a Twitter account that are not manually labeled yet.
func MongoGetAllUnlabeledTweetsOfAccountName(mongoClient *mgo.Session, accountName string) []Tweet {
var tweets []Tweet
var labeledTweets []TweetLabel
err := mongoClient.
DB(database).
C(collectionTweetLabel).
Find(nil).
All(&labeledTweets)
if err != nil {
fmt.Println("ERR", err)
panic(err)
}
var tweetsToExclude []string
for _, tweet := range labeledTweets {
tweetsToExclude = append(tweetsToExclude, tweet.StatusID)
}
var query = make(bson.M)
query[fieldInReplyToScreenName] = accountName
query[fieldStatusId] = bson.M{"$nin": tweetsToExclude}
err = mongoClient.
DB(database).
C(collectionTweet).
Find(query).
All(&tweets)
if err != nil {
fmt.Println("ERR", err)
panic(err)
}
return tweets
}
// MongoGetAllTweetsOfAccountForCurrentWeek returns all tweets belonging to one specific twitter page
func MongoGetAllTweetsOfAccountForCurrentWeek(mongoClient *mgo.Session, accountName string, from int, to int) []Tweet {
var tweets []Tweet
pipeline := []bson.M{bson.M{
"$match": bson.M{
"$and": []bson.M{bson.M{
fieldInReplyToScreenName: accountName,
"created_at": bson.M{
"$gte": from,
"$lte": to,
},
}},
},
}}
err := mongoClient.
DB(database).
C(collectionTweet).
Pipe(pipeline).
All(&tweets)
if err != nil {
fmt.Println("ERR", err)
panic(err)
}
return tweets
}
// MongoGetAllTwitterAccounts returns all twitter accounts
func MongoGetAllTwitterAccounts(mongoClient *mgo.Session) TwitterAccount {
var twitterAccountsRaw []string
err := mongoClient.
DB(database).
C(collectionTweet).
Find(nil).
Distinct(fieldInReplyToScreenName, &twitterAccountsRaw)
if err != nil {
fmt.Println("ERR", err)
panic(err)
}
fmt.Printf("MongoGetAllTwitterAccounts: %v\n", twitterAccountsRaw)
return TwitterAccount{Names: twitterAccountsRaw}
}
// MongoInsertObservableTwitter returns ok if the package name was inserted or already existed
func MongoInsertObservableTwitter(mongoClient *mgo.Session, observable ObservableTwitter) bool {
query := bson.M{fieldAccountName: observable.AccountName}
update := bson.M{"$set": observable}
_, err := mongoClient.DB(database).C(collectionObservableTwitter).Upsert(query, update)
if err != nil && !mgo.IsDup(err) {
fmt.Println(err)
return false
}
return true
}
// MongoGetAllObservableTwitter returns all observable apps
func MongoGetAllObservableTwitter(mongoClient *mgo.Session) []ObservableTwitter {
var observables []ObservableTwitter
err := mongoClient.
DB(database).
C(collectionObservableTwitter).
Find(nil).
All(&observables)
if err != nil {
fmt.Println("ERR", err)
panic(err)
}
return observables
}
// MongoDeleteObservableTwitter returns ok if db entry could be deleted
func MongoDeleteObservableTwitter(mongoClient *mgo.Session, observable ObservableTwitter) bool {
_, err := mongoClient.
DB(database).
C(collectionObservableTwitter).
RemoveAll(bson.M{fieldAccountName: observable.AccountName})
return err == nil
}
// MongoInsertTweetLabel returns ok if the label was inserted or already existed
func MongoInsertTweetLabel(mongoClient *mgo.Session, tweetLabel TweetLabel) bool {
err := mongoClient.DB(database).C(collectionTweetLabel).Insert(tweetLabel)
if err != nil && !mgo.IsDup(err) {
fmt.Println(err)
return false
}
return true
}
// MongoUpdateTweetClassAndAnnotation is called when a human provides an annotation for a tweet
func MongoUpdateTweetClassAndAnnotation(mongoClient *mgo.Session, tweetLabel TweetLabel) bool {
query := bson.M{fieldStatusId: tweetLabel.StatusID}
update := bson.M{"$set": bson.M{fieldTweetClass: tweetLabel.Label, fieldIsAnnotated: true}}
_, err := mongoClient.DB(database).C(collectionTweet).Upsert(query, update)
if err != nil && !mgo.IsDup(err) {
fmt.Println(err)
return false
}
return true
}
// MongoResetTweetLabels resets the tweet collection
func MongoGetAllLabeledTweets(mongoClient *mgo.Session) []TweetLabel {
var labeledTweets []TweetLabel
err := mongoClient.
DB(database).
C(collectionTweetLabel).
Find(nil).
All(&labeledTweets)
if err != nil {
fmt.Println("ERR", err)
panic(err)
}
return labeledTweets
}
// MongoUpdateTweetTopics returns ok whether the topics were be updated
func MongoUpdateTweetTopics(mongoClient *mgo.Session, tweet Tweet) bool {
query := bson.M{"status_id": tweet.StatusID}
update := bson.M{"$set": bson.M{"topics": tweet.Topics}}
_, err := mongoClient.DB(database).C(collectionTweet).Upsert(query, update)
if err != nil && !mgo.IsDup(err) {
fmt.Println(err)
return false
}
return true
}
// MongoGetAccessKeyExists returns true if the key is in the database
func MongoGetAccessKeyExists(mongoClient *mgo.Session, accessKey AccessKey) bool {
count, err := mongoClient.
DB(database).
C(collectionAccessKeys).
Find(bson.M{fieldAccessKey: accessKey.Key}).
Count()
if err != nil {
fmt.Println("ERR", err)
panic(err)
}
return count > 0
}
// MongoGetAccessKeyConfiguration returns true if the key is in the database
func MongoGetAccessKeyConfiguration(mongoClient *mgo.Session, accessKey AccessKey) AccessKeyConfiguration {
var accessKeyDB AccessKey
err := mongoClient.
DB(database).
C(collectionAccessKeys).
Find(bson.M{fieldAccessKey: accessKey.Key}).
One(&accessKeyDB)
if err != nil {
fmt.Println("ERR", err)
panic(err)
}
return accessKeyDB.Configuration
}
// MongoUpdateAccessKeyConfiguration
func MongoUpdateAccessKeyConfiguration(mongoClient *mgo.Session, accessKey AccessKey) {
query := bson.M{fieldAccessKey: accessKey.Key}
update := bson.M{"$set": bson.M{
"configuration.twitter_accounts": accessKey.Configuration.TwitterAccounts,
"configuration.google_play_store_accounts": accessKey.Configuration.GooglePlayStoreAccounts,
"configuration.topics": accessKey.Configuration.Topics,
}}
_, err := mongoClient.DB(database).C(collectionAccessKeys).Upsert(query, update)
if err != nil && !mgo.IsDup(err) {
fmt.Println(err)
}
}