-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatastructures.go
88 lines (79 loc) · 3.1 KB
/
datastructures.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
package common
// UserDocument is the schema for information stored for a given user
type UserDocument struct {
AccDetails AccDetailsDocument `json:"accdetails"`
FriendIDs []string `json:"friendids"`
GamesOwned []GameOwnedDocument `json:"gamesowned"`
InsertionTime int64 `json:"insertiontime"`
}
// AccDetailsDocument is the schema for information stored by
// a user for a given user (in the user collection)
type AccDetailsDocument struct {
SteamID string `json:"steamid"`
Personaname string `json:"personaname"`
Profileurl string `json:"profileurl"`
Avatar string `json:"avatar"`
Timecreated int `json:"timecreated"`
Loccountrycode string `json:"loccountrycode"`
}
// GameOwnedDocument is the schema for information stored
// by a user for a given game (in the user collection)
type GameOwnedDocument struct {
AppID int `json:"appid"`
Playtime_Forever int `json:"playtime_forever"`
}
// GameInfo is the schema for information stored for each steam game
type GameInfoDocument struct {
AppID int `json:"appid"`
Name string `json:"name"`
ImgIconURL string `json:"imgiconurl"`
ImgLogoURL string `json:"imglogourl"`
}
// CrawlingStatus stores the total number of friends to crawl
// for a given user and the number of profiles that have been
// crawled so far. This is used to keep track of when a given
// user has been crawled completely and processing of their
// data should start
type CrawlingStatus struct {
TimeStarted int64 `json:"timestarted"`
CrawlID string `json:"crawlid"`
OriginalCrawlTarget string `json:"originalcrawltarget"`
MaxLevel int `json:"maxlevel"`
TotalUsersToCrawl int `json:"totaluserstocrawl"`
UsersCrawled int `json:"userscrawled"`
}
// UsersGraphData is the data saved for an entire crawl job that
// is later served and processed for viewing. All of a user's details
// and their friend network's details along with the ten most popular
// games of the network are saved here
type UsersGraphData struct {
UserDetails UsersGraphInformation `json:"userdetails"`
FriendDetails []UsersGraphInformation `json:"frienddetails"`
// TopGameDetails is the details of the most played games
// for a given user. Ten are initially chosen but only the games
// with supplied details from the steam web API are included
// in the final output which can lead to there being less than
// ten games. At most only ten games will be present
TopGameDetails []BareGameInfo `json:"topgamedetails"`
}
// UsersGraphInformation stores information for each user in relation
// to which user they are connected with initially in the network
type UsersGraphInformation struct {
User UserDocument
FromID string
MaxLevel int
CurrentLevel int
}
// BareGameInfo correlates a steam appID to a game title
type BareGameInfo struct {
AppID int `json:"appid"`
Name string `json:"name"`
}
// LoggingFields holds the default fields that are attached to logs
type LoggingFields struct {
NodeName string
NodeDC string
LogPaths []string
NodeIPV4 string
Service string
}