This repository has been archived by the owner on Feb 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithubjobs.go
215 lines (176 loc) · 4.91 KB
/
githubjobs.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
package githubjobs
import (
"bytes"
"encoding/json"
"fmt"
"io"
"net/http"
"reflect"
"github.com/google/go-querystring/query"
)
// endpoint is the Github Jobs API endpoint to query.
const endpoint = "https://jobs.github.com"
type searchQueries struct {
Description string `url:"description"`
Location string `url:"location"`
FullTime bool `url:"full_time"`
}
type cooridinateQueries struct {
Latitude string `url:"lat"`
Longitude string `url:"long"`
}
// Position defines a position returned by Github Jobs.
type Position struct {
ID string `json:"id"`
CreatedAt string `json:"created_at"`
Title string `json:"title"`
Location string `json:"location"`
Type string `json:"type"`
Description string `json:"description"`
HowToApply string `json:"how_to_apply"`
Company string `json:"company"`
CompanyURL string `json:"company_url"`
CompanyLogo string `json:"company_logo"`
URL string `json:"url"`
}
// Error defines an error received when making a request to the API.
type Error struct {
Message string `json:"message"`
Code int `json:"code"`
}
// Error returns a string representing the error, satisfying the error interface.
func (e Error) Error() string {
return fmt.Sprintf("githubjobs: %s (%d)", e.Message, e.Code)
}
func (p Position) String() string {
return stringify(p)
}
// GetPositions gets positions from Github Jobs by description and location.
func GetPositions(description, location string, fullTime bool) ([]*Position, error) {
sq := searchQueries{
Description: description,
Location: location,
FullTime: fullTime,
}
v, _ := query.Values(sq)
url := fmt.Sprintf("%v", endpoint+"/positions.json")
positions := new([]*Position)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return nil, Error{fmt.Sprintf("Could not create request: %s", err), -1}
}
req.URL.RawQuery = v.Encode()
err = clientRequest(req, positions)
if err != nil {
return nil, err
}
return *positions, nil
}
// GetPositionsByCoordinates gets positions from Github Jobs by coordinates (latitude and longitude) in decimal degrees.
func GetPositionsByCoordinates(latitude, longitude string) ([]*Position, error) {
cq := cooridinateQueries{
Latitude: latitude,
Longitude: longitude,
}
v, _ := query.Values(cq)
url := fmt.Sprintf("%v", endpoint+"/positions.json")
positions := new([]*Position)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return nil, Error{fmt.Sprintf("Could not create request: %s", err), -1}
}
req.URL.RawQuery = v.Encode()
err = clientRequest(req, positions)
if err != nil {
return nil, err
}
return *positions, nil
}
// GetPositionByID gets a single job posting from Github Jobs by ID.
func GetPositionByID(ID string) (*Position, error) {
url := fmt.Sprintf("%v", endpoint+"/positions/"+ID+".json")
position := new(Position)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return nil, Error{fmt.Sprintf("Could not create request: %s", err), -1}
}
err = clientRequest(req, position)
if err != nil {
return nil, err
}
return position, nil
}
func clientRequest(req *http.Request, v interface{}) error {
client := &http.Client{}
res, err := client.Do(req)
if err != nil {
return Error{fmt.Sprintf("Failed to make request: %s", err), -1}
}
defer res.Body.Close()
err = json.NewDecoder(res.Body).Decode(v)
if err != nil {
return Error{fmt.Sprintf("Could not read JSON response: %s", err), -1}
}
if err == io.EOF {
err = nil
}
return err
}
// Stringify attempts to create a reasonable string representation of types in.
// It does things like resolve pointers to their values and omits struct fields with nil values.
func stringify(message interface{}) string {
var buf bytes.Buffer
v := reflect.ValueOf(message)
stringifyValue(&buf, v)
return buf.String()
}
// stringifyValue was adopted from go-github library https://github.com/google/go-github/blob/master/github/strings.go.
func stringifyValue(w io.Writer, val reflect.Value) {
if val.Kind() == reflect.Ptr && val.IsNil() {
w.Write([]byte("<nil>"))
return
}
v := reflect.Indirect(val)
switch v.Kind() {
case reflect.String:
fmt.Fprintf(w, `"%s"`, v)
case reflect.Slice:
w.Write([]byte{'['})
for i := 0; i < v.Len(); i++ {
if i > 0 {
w.Write([]byte{' '})
}
stringifyValue(w, v.Index(i))
}
w.Write([]byte{']'})
return
case reflect.Struct:
if v.Type().Name() != "" {
w.Write([]byte(v.Type().String()))
}
w.Write([]byte{'{'})
var sep bool
for i := 0; i < v.NumField(); i++ {
fv := v.Field(i)
if fv.Kind() == reflect.Ptr && fv.IsNil() {
continue
}
if fv.Kind() == reflect.Slice && fv.IsNil() {
continue
}
if sep {
w.Write([]byte(", "))
} else {
sep = true
}
w.Write([]byte(v.Type().Field(i).Name))
w.Write([]byte{':'})
stringifyValue(w, fv)
}
w.Write([]byte{'}'})
default:
if v.CanInterface() {
fmt.Fprint(w, v.Interface())
}
}
}