forked from jzelinskie/geddit
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsession.go
170 lines (139 loc) · 3.6 KB
/
session.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
// Copyright 2012 Jimmy Zelinskie. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package geddit
import (
"encoding/json"
"fmt"
"image"
"image/png"
"github.com/google/go-querystring/query"
)
// Session represents an HTTP session with reddit.com
// without logging into an account.
type Session struct {
useragent string
}
// NewSession creates a new unauthenticated session to reddit.com.
func NewSession(useragent string) *Session {
return &Session{
useragent: useragent,
}
}
// DefaultFrontpage returns the submissions on the default reddit frontpage.
func (s Session) DefaultFrontpage(sort PopularitySort, params ListingOptions) ([]*Submission, error) {
return s.SubredditSubmissions("", sort, params)
}
// SubredditSubmissions returns the submissions on the given subreddit.
func (s Session) SubredditSubmissions(subreddit string, sort PopularitySort, params ListingOptions) ([]*Submission, error) {
v, err := query.Values(params)
if err != nil {
return nil, err
}
baseUrl := "https://www.reddit.com"
// If subbreddit given, add to URL
if subreddit != "" {
baseUrl += "/r/" + subreddit
}
redditUrl := fmt.Sprintf(baseUrl+"/%s.json?%s", sort, v.Encode())
req := request{
url: redditUrl,
useragent: s.useragent,
}
body, err := req.getResponse()
if err != nil {
return nil, err
}
type Response struct {
Data struct {
Children []struct {
Data *Submission
}
}
}
r := new(Response)
err = json.NewDecoder(body).Decode(r)
if err != nil {
return nil, err
}
submissions := make([]*Submission, len(r.Data.Children))
for i, child := range r.Data.Children {
submissions[i] = child.Data
}
return submissions, nil
}
// AboutRedditor returns a Redditor for the given username.
func (s Session) AboutRedditor(username string) (*Redditor, error) {
req := &request{
url: fmt.Sprintf("https://www.reddit.com/user/%s/about.json", username),
useragent: s.useragent,
}
body, err := req.getResponse()
if err != nil {
return nil, err
}
type Response struct {
Data Redditor
}
r := new(Response)
err = json.NewDecoder(body).Decode(r)
if err != nil {
return nil, err
}
return &r.Data, nil
}
// AboutSubreddit returns a subreddit for the given subreddit name.
func (s Session) AboutSubreddit(subreddit string) (*Subreddit, error) {
req := &request{
url: fmt.Sprintf("https://www.reddit.com/r/%s/about.json", subreddit),
useragent: s.useragent,
}
body, err := req.getResponse()
if err != nil {
return nil, err
}
type Response struct {
Data Subreddit
}
r := new(Response)
err = json.NewDecoder(body).Decode(r)
if err != nil {
return nil, err
}
return &r.Data, nil
}
// Comments returns the comments for a given Submission.
func (s Session) Comments(h *Submission) ([]*Comment, error) {
req := &request{
url: fmt.Sprintf("https://www.reddit.com/comments/%s/.json", h.ID),
useragent: s.useragent,
}
body, err := req.getResponse()
if err != nil {
return nil, err
}
r := json.NewDecoder(body)
var interf interface{}
if err = r.Decode(&interf); err != nil {
return nil, err
}
helper := new(helper)
helper.buildComments(interf)
return helper.comments, nil
}
// CaptchaImage gets the png corresponding to the captcha iden and decodes it
func (s Session) CaptchaImage(iden string) (image.Image, error) {
req := &request{
url: fmt.Sprintf("https://www.reddit.com/captcha/%s", iden),
useragent: s.useragent,
}
p, err := req.getResponse()
if err != nil {
return nil, err
}
m, err := png.Decode(p)
if err != nil {
return nil, err
}
return m, nil
}