This repository has been archived by the owner on Aug 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 247
/
activity.go
219 lines (206 loc) · 5.72 KB
/
activity.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
package goinsta
import (
"encoding/json"
"strconv"
)
// Activity is the activity of your instagram account
//
// You can get Recent and Following activities.
type Activity struct {
inst *Instagram
}
//FollowingActivity is the latest activity of the people you are following
type FollowingActivity struct {
inst *Instagram
err error
AutoLoadMoreEnabled bool `json:"auto_load_more_enabled"`
NextID int64 `json:"next_max_id"`
Stories []struct {
Type int `json:"type"`
StoryType int `json:"story_type"`
Args struct {
MediaDestination string `json:"media_destination"`
Destination string `json:"destination"`
Text string `json:"text"`
Links []struct {
Start int `json:"start"`
End int `json:"end"`
Type string `json:"type"`
ID string `json:"id"`
} `json:"links"`
ProfileID int64 `json:"profile_id"`
ProfileImage string `json:"profile_image"`
SecondProfileID int64 `json:"second_profile_id"`
SecondProfileImage string `json:"second_profile_image"`
ProfileImageDestination string `json:"profile_image_destination"`
Media []struct {
ID string `json:"id"`
Image string `json:"image"`
} `json:"media"`
Timestamp int64 `json:"timestamp"`
Tuuid string `json:"tuuid"`
} `json:"args"`
Counts struct {
} `json:"counts"`
Pk string `json:"pk"`
} `json:"stories"`
Status string `json:"status"`
}
func (act *FollowingActivity) Error() error {
return act.err
}
// Next allows pagination over following recent activity.
//
// See example:
func (act *FollowingActivity) Next() bool {
if act.err != nil {
return false
}
insta := act.inst
body, err := insta.sendRequest(
&reqOptions{
Endpoint: urlActivityFollowing,
Query: map[string]string{
"max_id": strconv.FormatInt(act.NextID, 10),
},
IsPost: false,
},
)
if err == nil {
act2 := FollowingActivity{}
err = json.Unmarshal(body, &act2)
if err == nil {
*act = act2
act.inst = insta
if len(act.Stories) == 0 || act.NextID == 0 {
act.err = ErrNoMore
}
return true
}
}
act.err = err
return false
}
// MineActivity is the recent activity menu.
//
// See example: examples/activity/recent.go
type MineActivity struct {
inst *Instagram
err error
// Ad is every column of Activity section
Ad struct {
Items []struct {
//User User `json:"user"`
Algorithm string `json:"algorithm"`
SocialContext string `json:"social_context"`
Icon string `json:"icon"`
Caption string `json:"caption"`
MediaIds []interface{} `json:"media_ids"`
ThumbnailUrls []interface{} `json:"thumbnail_urls"`
LargeUrls []interface{} `json:"large_urls"`
MediaInfos []interface{} `json:"media_infos"`
Value float64 `json:"value"`
IsNewSuggestion bool `json:"is_new_suggestion"`
} `json:"items"`
MoreAvailable bool `json:"more_available"`
} `json:"aymf"`
Counts struct {
PhotosOfYou int `json:"photos_of_you"`
Requests int `json:"requests"`
} `json:"counts"`
FriendRequestStories []interface{} `json:"friend_request_stories"`
Stories []struct {
Type int `json:"type"`
StoryType int `json:"story_type"`
Args struct {
Text string `json:"text"`
Links []struct {
Start int `json:"start"`
End int `json:"end"`
Type string `json:"type"`
ID string `json:"id"`
} `json:"links"`
InlineFollow struct {
UserInfo User `json:"user_info"`
Following bool `json:"following"`
OutgoingRequest bool `json:"outgoing_request"`
} `json:"inline_follow"`
Actions []string `json:"actions"`
ProfileID int64 `json:"profile_id"`
ProfileImage string `json:"profile_image"`
Timestamp float64 `json:"timestamp"`
Tuuid string `json:"tuuid"`
Clicked bool `json:"clicked"`
ProfileName string `json:"profile_name"`
LatestReelMedia int64 `json:"latest_reel_media"`
} `json:"args"`
Counts struct {
} `json:"counts"`
Pk string `json:"pk"`
} `json:"old_stories"`
ContinuationToken int64 `json:"continuation_token"`
Subscription interface{} `json:"subscription"`
NextID int64 `json:"next_max_id"`
Status string `json:"status"`
}
func (act *MineActivity) Error() error {
return act.err
}
// Next function allows pagination over notifications.
//
// See example: examples/activity/recent.go
func (act *MineActivity) Next() bool {
if act.err != nil {
return false
}
insta := act.inst
body, err := insta.sendRequest(
&reqOptions{
Endpoint: urlActivityRecent,
Query: map[string]string{
"max_id": strconv.FormatInt(act.NextID, 10),
},
IsPost: false,
},
)
if err == nil {
act2 := MineActivity{}
err = json.Unmarshal(body, &act2)
if err == nil {
*act = act2
act.inst = insta
if len(act.Stories) == 0 || act.NextID == 0 {
act.err = ErrNoMore
}
return true
}
}
act.err = err
return false
}
func newActivity(inst *Instagram) *Activity {
act := &Activity{
inst: inst,
}
return act
}
// Following allows to receive recent following activity.
//
// Use Next to paginate over activities
//
// See example: examples/activity/following.go
func (act *Activity) Following() *FollowingActivity {
insta := act.inst
nact := &FollowingActivity{inst: insta}
return nact
}
// Recent allows to receive recent activity (notifications).
//
// Use Activities.Next to paginate over activities.
//
// See example: examples/activity/recent.go
func (act *Activity) Recent() *MineActivity {
insta := act.inst
nact := &MineActivity{inst: insta}
return nact
}