-
Notifications
You must be signed in to change notification settings - Fork 35
/
search.go
225 lines (210 loc) · 5.4 KB
/
search.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
220
221
222
223
224
225
package tmdb
import (
"fmt"
"net/url"
)
// SearchCompanies type is a struct for companies JSON response.
type SearchCompanies struct {
Page int64 `json:"page"`
*SearchCompaniesResults
TotalPages int64 `json:"total_pages"`
TotalResults int64 `json:"total_results"`
}
// GetSearchCompanies search for companies.
//
// https://developers.themoviedb.org/3/search/search-companies
func (c *Client) GetSearchCompanies(
query string,
urlOptions map[string]string,
) (*SearchCompanies, error) {
options := c.fmtOptions(urlOptions)
tmdbURL := fmt.Sprintf(
"%s%scompany?api_key=%s&query=%s%s",
baseURL,
searchURL,
c.apiKey,
url.QueryEscape(query),
options,
)
SearchCompanies := SearchCompanies{}
if err := c.get(tmdbURL, &SearchCompanies); err != nil {
return nil, err
}
return &SearchCompanies, nil
}
// SearchCollections type is a strcut for collections JSON response.
type SearchCollections struct {
Page int64 `json:"page"`
*SearchCollectionsResults
TotalPages int64 `json:"total_pages"`
TotalResults int64 `json:"total_results"`
}
// GetSearchCollections search for collections.
//
// https://developers.themoviedb.org/3/search/search-collections
func (c *Client) GetSearchCollections(
query string,
urlOptions map[string]string,
) (*SearchCollections, error) {
options := c.fmtOptions(urlOptions)
tmdbURL := fmt.Sprintf(
"%s%scollection?api_key=%s&query=%s%s",
baseURL,
searchURL,
c.apiKey,
url.QueryEscape(query),
options,
)
searchCollections := SearchCollections{}
if err := c.get(tmdbURL, &searchCollections); err != nil {
return nil, err
}
return &searchCollections, nil
}
// SearchKeywords type is a struct for keywords JSON response.
type SearchKeywords struct {
Page int64 `json:"page"`
*SearchKeywordsResults
TotalPages int64 `json:"total_pages"`
TotalResults int64 `json:"total_results"`
}
// GetSearchKeywords search for keywords.
//
// https://developers.themoviedb.org/3/search/search-keywords
func (c *Client) GetSearchKeywords(
query string,
urlOptions map[string]string,
) (*SearchKeywords, error) {
options := c.fmtOptions(urlOptions)
tmdbURL := fmt.Sprintf(
"%s%skeyword?api_key=%s&query=%s%s",
baseURL,
searchURL,
c.apiKey,
url.QueryEscape(query),
options,
)
searchKeywords := SearchKeywords{}
if err := c.get(tmdbURL, &searchKeywords); err != nil {
return nil, err
}
return &searchKeywords, nil
}
// SearchMovies type is a struct for movies JSON response.
type SearchMovies struct {
Page int64 `json:"page"`
TotalResults int64 `json:"total_results"`
TotalPages int64 `json:"total_pages"`
*SearchMoviesResults
}
// GetSearchMovies search for keywords.
//
// https://developers.themoviedb.org/3/search/search-movies
func (c *Client) GetSearchMovies(
query string,
urlOptions map[string]string,
) (*SearchMovies, error) {
options := c.fmtOptions(urlOptions)
tmdbURL := fmt.Sprintf(
"%s%smovie?api_key=%s&query=%s%s",
baseURL,
searchURL,
c.apiKey,
url.QueryEscape(query),
options,
)
searchMovies := SearchMovies{}
if err := c.get(tmdbURL, &searchMovies); err != nil {
return nil, err
}
return &searchMovies, nil
}
// SearchMulti type is a struct for multi JSON response.
type SearchMulti struct {
Page int `json:"page"`
*SearchMultiResults
TotalResults int64 `json:"total_results"`
TotalPages int64 `json:"total_pages"`
}
// GetSearchMulti search multiple models in a single request.
// Multi search currently supports searching for movies,
// tv shows and people in a single request.
//
// https://developers.themoviedb.org/3/search/multi-search
func (c *Client) GetSearchMulti(
query string,
urlOptions map[string]string,
) (*SearchMulti, error) {
options := c.fmtOptions(urlOptions)
tmdbURL := fmt.Sprintf(
"%s%smulti?api_key=%s&query=%s%s",
baseURL,
searchURL,
c.apiKey,
url.QueryEscape(query),
options,
)
searchMulti := SearchMulti{}
if err := c.get(tmdbURL, &searchMulti); err != nil {
return nil, err
}
return &searchMulti, nil
}
// SearchPeople type is a struct for people JSON response.
type SearchPeople struct {
Page int64 `json:"page"`
TotalResults int64 `json:"total_results"`
TotalPages int64 `json:"total_pages"`
*SearchPeopleResults
}
// GetSearchPeople search for people.
//
// https://developers.themoviedb.org/3/search/search-people
func (c *Client) GetSearchPeople(
query string,
urlOptions map[string]string,
) (*SearchPeople, error) {
options := c.fmtOptions(urlOptions)
tmdbURL := fmt.Sprintf(
"%s%sperson?api_key=%s&query=%s%s",
baseURL,
searchURL,
c.apiKey,
url.QueryEscape(query),
options,
)
searchPeople := SearchPeople{}
if err := c.get(tmdbURL, &searchPeople); err != nil {
return nil, err
}
return &searchPeople, nil
}
// SearchTVShows type is a struct for tv show JSON response.
type SearchTVShows struct {
Page int64 `json:"page"`
TotalResults int64 `json:"total_results"`
TotalPages int64 `json:"total_pages"`
*SearchTVShowsResults
}
// GetSearchTVShow search for a TV Show.
//
// https://developers.themoviedb.org/3/search/search-tv-shows
func (c *Client) GetSearchTVShow(
query string,
urlOptions map[string]string,
) (*SearchTVShows, error) {
options := c.fmtOptions(urlOptions)
tmdbURL := fmt.Sprintf(
"%s%stv?api_key=%s&query=%s%s",
baseURL,
searchURL,
c.apiKey,
url.QueryEscape(query),
options,
)
searchTVShows := SearchTVShows{}
if err := c.get(tmdbURL, &searchTVShows); err != nil {
return nil, err
}
return &searchTVShows, nil
}