-
Notifications
You must be signed in to change notification settings - Fork 0
/
keywords.go
78 lines (68 loc) · 1.83 KB
/
keywords.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
package wraptmdb
import (
"strconv"
"github.com/kwangsing3/http_methods_golang"
)
/*
* The MIT License (MIT)
*
* Copyright (c) kwangsing3
*
* https://github.com/wrapTMDB/wraptmdb_go
*
*/
type keywords struct{}
var KeyWords keywords
/********************
* 1.GET /keyword/{keyword_id}
* @description
* @param {number|string} keyword_id
* @returns JSON
* @doc https://developers.themoviedb.org/3/keywords/get-keyword-details
********************/
func (k *keywords) GetDetails(keyword_id string) interface{} {
var token = c_module.GetToken()
var header = c_module.GetHeader()
var targetURL string = baseURL + c_module.Route.KEYWORD + keyword_id + `?api_key=` + token
if token == "UnitTest_api_key" {
return targetURL
}
var data, _ = http_methods_golang.GET(targetURL, header)
return data
}
/********************
* 2.GET /keyword/{keyword_id}/movies
* @description Get the movies that belong to a keyword.
* We highly recommend using "movie discover" instead of this method as it is much more flexible.
* @param {number|string} keyword_id
* @param {number|string} language(optional)
* @param {boolean} include_adult(optional)
* @returns JSON
* @doc https://developers.themoviedb.org/3/keywords/get-movies-by-keyword
********************/
func (k *keywords) GetMovies(
keyword_id string,
language string,
include_adult bool,
) interface{} {
var token = c_module.GetToken()
var header = c_module.GetHeader()
var targetURL string = baseURL +
c_module.Route.KEYWORD +
keyword_id + `/` +
"movies" +
`?api_key=` + token
if language != "" {
targetURL += `&language=` + language
}
targetURL += `&include_adult=` + strconv.FormatBool(include_adult)
if token == "UnitTest_api_key" {
return targetURL
}
var data, _ = http_methods_golang.GET(targetURL, header)
return data
}
/*
1.GET Get Details
2.GET Get Movies
*/