forked from livekit/server-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroomclient.go
125 lines (102 loc) · 3.86 KB
/
roomclient.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
package lksdk
import (
"context"
"net/http"
"github.com/livekit/protocol/auth"
"github.com/livekit/protocol/livekit"
)
type RoomServiceClient struct {
roomService livekit.RoomService
authBase
}
func NewRoomServiceClient(url string, apiKey string, secretKey string) *RoomServiceClient {
url = ToHttpURL(url)
client := livekit.NewRoomServiceProtobufClient(url, &http.Client{})
return &RoomServiceClient{
roomService: client,
authBase: authBase{
apiKey: apiKey,
apiSecret: secretKey,
},
}
}
func (c *RoomServiceClient) CreateRoom(ctx context.Context, req *livekit.CreateRoomRequest) (*livekit.Room, error) {
ctx, err := c.withAuth(ctx, auth.VideoGrant{RoomCreate: true})
if err != nil {
return nil, err
}
return c.roomService.CreateRoom(ctx, req)
}
func (c *RoomServiceClient) ListRooms(ctx context.Context, req *livekit.ListRoomsRequest) (*livekit.ListRoomsResponse, error) {
ctx, err := c.withAuth(ctx, auth.VideoGrant{RoomList: true})
if err != nil {
return nil, err
}
return c.roomService.ListRooms(ctx, req)
}
func (c *RoomServiceClient) DeleteRoom(ctx context.Context, req *livekit.DeleteRoomRequest) (*livekit.DeleteRoomResponse, error) {
ctx, err := c.withAuth(ctx, auth.VideoGrant{RoomCreate: true})
if err != nil {
return nil, err
}
return c.roomService.DeleteRoom(ctx, req)
}
func (c *RoomServiceClient) ListParticipants(ctx context.Context, req *livekit.ListParticipantsRequest) (*livekit.ListParticipantsResponse, error) {
ctx, err := c.withAuth(ctx, auth.VideoGrant{RoomAdmin: true, Room: req.Room})
if err != nil {
return nil, err
}
return c.roomService.ListParticipants(ctx, req)
}
func (c *RoomServiceClient) GetParticipant(ctx context.Context, req *livekit.RoomParticipantIdentity) (*livekit.ParticipantInfo, error) {
ctx, err := c.withAuth(ctx, auth.VideoGrant{RoomAdmin: true, Room: req.Room})
if err != nil {
return nil, err
}
return c.roomService.GetParticipant(ctx, req)
}
func (c *RoomServiceClient) RemoveParticipant(ctx context.Context, req *livekit.RoomParticipantIdentity) (*livekit.RemoveParticipantResponse, error) {
ctx, err := c.withAuth(ctx, auth.VideoGrant{RoomAdmin: true, Room: req.Room})
if err != nil {
return nil, err
}
return c.roomService.RemoveParticipant(ctx, req)
}
func (c *RoomServiceClient) MutePublishedTrack(ctx context.Context, req *livekit.MuteRoomTrackRequest) (*livekit.MuteRoomTrackResponse, error) {
ctx, err := c.withAuth(ctx, auth.VideoGrant{RoomAdmin: true, Room: req.Room})
if err != nil {
return nil, err
}
return c.roomService.MutePublishedTrack(ctx, req)
}
func (c *RoomServiceClient) UpdateParticipant(ctx context.Context, req *livekit.UpdateParticipantRequest) (*livekit.ParticipantInfo, error) {
ctx, err := c.withAuth(ctx, auth.VideoGrant{RoomAdmin: true, Room: req.Room})
if err != nil {
return nil, err
}
return c.roomService.UpdateParticipant(ctx, req)
}
func (c *RoomServiceClient) UpdateSubscriptions(ctx context.Context, req *livekit.UpdateSubscriptionsRequest) (*livekit.UpdateSubscriptionsResponse, error) {
ctx, err := c.withAuth(ctx, auth.VideoGrant{RoomAdmin: true, Room: req.Room})
if err != nil {
return nil, err
}
return c.roomService.UpdateSubscriptions(ctx, req)
}
func (c *RoomServiceClient) UpdateRoomMetadata(ctx context.Context, req *livekit.UpdateRoomMetadataRequest) (*livekit.Room, error) {
ctx, err := c.withAuth(ctx, auth.VideoGrant{RoomAdmin: true, Room: req.Room})
if err != nil {
return nil, err
}
return c.roomService.UpdateRoomMetadata(ctx, req)
}
func (c *RoomServiceClient) SendData(ctx context.Context, req *livekit.SendDataRequest) (*livekit.SendDataResponse, error) {
ctx, err := c.withAuth(ctx, auth.VideoGrant{RoomAdmin: true, Room: req.Room})
if err != nil {
return nil, err
}
return c.roomService.SendData(ctx, req)
}
func (c *RoomServiceClient) CreateToken() *auth.AccessToken {
return auth.NewAccessToken(c.apiKey, c.apiSecret)
}