forked from ryanbradynd05/go-tmdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
companies.go
47 lines (43 loc) · 1.55 KB
/
companies.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
package tmdb
import (
"fmt"
)
// Company struct
type Company struct {
Description string
Headquarters string
Homepage string
ID int
LogoPath string `json:"logo_path"`
Name string
Movies *MoviePagedResults `json:",omitempty"`
ParentCompany struct {
Name string
ID int
LogoPath string `json:"logo_path"`
} `json:"parent_company"`
}
// GetCompanyInfo gets all of the basic information about a company
// https://developers.themoviedb.org/3/companies/get-company-details
func (tmdb *TMDb) GetCompanyInfo(id int, options map[string]string) (*Company, error) {
var availableOptions = map[string]struct{}{
"append_to_response": {}}
var companyInfo Company
optionsString := getOptionsString(options, availableOptions)
uri := fmt.Sprintf("%s/company/%v?api_key=%s%s", baseURL, id, tmdb.apiKey, optionsString)
result, err := getTmdb(uri, &companyInfo)
return result.(*Company), err
}
// GetCompanyMovies gets the list of movies associated with a particular company
// No current documentation exists for this endpoint
func (tmdb *TMDb) GetCompanyMovies(id int, options map[string]string) (*MoviePagedResults, error) {
var availableOptions = map[string]struct{}{
"page": {},
"language": {},
"append_to_response": {}}
var movies MoviePagedResults
optionsString := getOptionsString(options, availableOptions)
uri := fmt.Sprintf("%s/company/%v/movies?api_key=%s%s", baseURL, id, tmdb.apiKey, optionsString)
result, err := getTmdb(uri, &movies)
return result.(*MoviePagedResults), err
}