-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservices.go
148 lines (122 loc) · 4.61 KB
/
services.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
/*
* Copyright (c) 2018 Yamagishi Kazutoshi
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package mirakurun
import (
"context"
"fmt"
"io"
"net/http"
)
// Service represents a Mirakurun service.
type Service struct {
ID int `json:"id"`
ServiceID int `json:"serviceId"`
NetworkID int `json:"networkId"`
Name string `json:"name"`
LogoID int `json:"logoId,omitempty"`
HasLogoData bool `json:"hasLogoData,omitempty"`
RemoteControlKeyID int `json:"remoteControlKeyId,omitempty"`
Channel Channel `json:"channel,omitempty"`
}
// ServicesListOptions specifies the optional parameters to the Client.GetServices method.
type ServicesListOptions struct {
ServiceID int `url:"serviceId,omitempty"`
NetworkID int `url:"networkId,omitempty"`
Name string `url:"name,omitempty"`
Type int `url:"type,omitempty"`
ChannelType string `url:"channel.type,omitempty"`
Channel string `url:"channel.channel,omitempty"`
}
// GetServicesByChannel lists the services for the specified channel.
func (c *Client) GetServicesByChannel(ctx context.Context, typ string, channel string) ([]*Service, *http.Response, error) {
u := fmt.Sprintf("channels/%s/%s/services", typ, channel)
req, err := c.NewRequest("GET", u, nil)
if err != nil {
return nil, nil, err
}
services := []*Service{}
resp, err := c.Do(ctx, req, &services)
if err != nil {
return nil, resp, err
}
return services, resp, nil
}
// GetServiceByChannel fetches a service for the specified channel.
func (c *Client) GetServiceByChannel(ctx context.Context, typ string, channel string, sid int) (*Service, *http.Response, error) {
u := fmt.Sprintf("channels/%s/%s/services/%d", typ, channel, sid)
req, err := c.NewRequest("GET", u, nil)
if err != nil {
return nil, nil, err
}
service := new(Service)
resp, err := c.Do(ctx, req, service)
if err != nil {
return nil, resp, err
}
return service, resp, nil
}
// GetServiceStreamByChannel fetches a service stream for the specified channel.
func (c *Client) GetServiceStreamByChannel(ctx context.Context, typ string, channel string, sid int, decode bool) (io.ReadCloser, *http.Response, error) {
u := fmt.Sprintf("channels/%s/%s/services/%d/stream", typ, channel, sid)
return c.getTS(ctx, u, decode)
}
// GetServices lists the services.
func (c *Client) GetServices(ctx context.Context, opt *ServicesListOptions) ([]*Service, *http.Response, error) {
u, err := addOptions("services", opt)
if err != nil {
return nil, nil, err
}
req, err := c.NewRequest("GET", u, nil)
if err != nil {
return nil, nil, err
}
services := []*Service{}
resp, err := c.Do(ctx, req, &services)
if err != nil {
return nil, resp, err
}
return services, resp, nil
}
// GetService fetches a service.
func (c *Client) GetService(ctx context.Context, id int) (*Service, *http.Response, error) {
u := fmt.Sprintf("services/%d", id)
req, err := c.NewRequest("GET", u, nil)
if err != nil {
return nil, nil, err
}
service := new(Service)
resp, err := c.Do(ctx, req, service)
if err != nil {
return nil, resp, err
}
return service, resp, nil
}
// GetLogoImage fetches a service logo stream.
func (c *Client) GetLogoImage(ctx context.Context, id int) (io.ReadCloser, *http.Response, error) {
u := fmt.Sprintf("services/%d/logo", id)
return c.requestStream(ctx, "GET", u)
}
// GetServiceStream fetches a service stream.
func (c *Client) GetServiceStream(ctx context.Context, id int, decode bool) (io.ReadCloser, *http.Response, error) {
u := fmt.Sprintf("services/%d/stream", id)
return c.getTS(ctx, u, decode)
}