-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStructs.go
135 lines (122 loc) · 3.83 KB
/
Structs.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
package goRant
//Rants is struct for receiving Rants response
type Rants struct {
Success bool `json:"success"`
Error string `json:"error"`
Rants []Rant `json:"rants"`
Settings string `json:"settings"`
Set string `json:"set"`
Wrw int `json:"wrw"`
News News `json:"news"`
}
//Rant is a struct to save Rant data
type Rant struct {
ID int `json:"id"`
Text string `json:"text"`
Score int `json:"score"`
CreatedTime int `json:"created_time"`
AttachedImage Image `json:"attached_image"`
NumComments int `json:"num_comments"`
Tags []string `json:"tags"`
VoteState int `json:"vote_state"`
Edited bool `json:"edited"`
UserID int `json:"user_id"`
Username string `json:"user_username"`
UserScore int `json:"user_score"`
}
//RantRes is a struct to receive Rant response
type RantRes struct {
Success bool `json:"success"`
Error string `json:"error"`
Rant Rant `json:"rant"`
Comments []Comment `json:"comments"`
}
//Comment is a struct to store comment data
type Comment struct {
ID int `json:"id"`
RantID int `json:"rant_id"`
Body string `json:"body"`
Score int `json:"score"`
CreatedTime int `json:"created_time"`
UserID int `json:"user_id"`
Username string `json:"user_username"`
UserScore int `json:"user_score"`
}
//User is a struct to store User data
type User struct {
Username string `json:"username"`
Score int `json:"score"`
About string `json:"about"`
Location string `json:"location"`
CreatedTime int `json:"created_time"`
Skills string `json:"skills"`
Github string `json:"github"`
Website string `json:"website"`
Content struct {
Content Content `json:"content"`
Counts Counts `json:"counts"`
} `json:"content"`
Avatar Avatar `json:"avatar"`
DPP int `json:"dpp"`
}
//Content is a struct to save Content of a User
// It has rants,upvotes,comments,favoutites of a user
type Content struct {
Rants []Rant `json:"rants"`
Upvoted []Rant `json:"upvoted"`
Comments []Comment `json:"comments"`
Favorites []Rant `json:"favorites"`
}
//Counts is a struct to save Counts of a User
// It has count(int values) of Rants, Upvotes, Comments, Favourites, and Colabs of a user
type Counts struct {
Rants int `json:"rants"`
Upvotes int `json:"upvoted"`
Comments int `json:"comments"`
Favourites int `json:"favourites"`
Collabs int `json:"collabs"`
}
//Avatar is a struct to save avatar information of a user profile
// B stands for background color
// I is the actual image of the profile
type Avatar struct {
B string `json:"b"`
I string `json:"i"`
}
//Image struct is used to store info about Images
// Any attached images in rants, and/or comments
// It has Height, Width, and URl of the image
type Image struct {
URL string `json:"url"`
Width int `json:"width"`
Height int `json:"height"`
}
//News struct is used to store info about any News from devRant
type News struct {
ID int `json:"id"`
Type string `json:"type"`
Headline string `json:"headline"`
Body string `json:"body"`
Footer string `json:"footer"`
Height int `json:"height"`
Action string `json:"action"`
}
//UserRes is a struct to receive User response
type UserRes struct {
Success bool `json:"success"`
Error string `json:"error"`
Profile User `json:"profile"`
}
//SearchRes is a struct to receive Search response
type SearchRes struct {
Success bool `json:"success"`
Error string `json:"error"`
Rants []Rant `json:"results"`
}
//UserIDRes is a struct to receive UserId response
//that is used to fetch a User
type UserIDRes struct {
Success bool `json:"success"`
Error string `json:"error"`
UserID int `json:"user_id"`
}