-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsora.go
58 lines (45 loc) · 1.64 KB
/
sora.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
package kohaku
import (
"encoding/json"
"strconv"
"time"
"github.com/go-playground/validator/v10"
zlog "github.com/rs/zerolog/log"
)
// TODO: validator 処理の追加
type soraStats struct {
Type string `json:"type" validate:"required"`
Timestamp time.Time `json:"timestamp" validate:"required"`
Label string `json:"label" validate:"required"`
Version string `json:"version" validate:"required"`
NodeName string `json:"node_name" validate:"required"`
}
// type: connection.rtc / type: connection.sora
type soraConnectionStats struct {
soraStats
/*
Validate の場合 bool だとデフォルトが false になってしまい、
false が入ってきた時常にエラーになる。
そのため *bool にして nil か true か false かの 3 択判定にする
*/
Multistream *bool `json:"multistream" validate:"required"`
Simulcast *bool `json:"simulcast" validate:"required"`
Spotlight *bool `json:"spotlight" validate:"required"`
Role string `json:"role" validate:"required,len=8"`
ChannelID string `json:"channel_id" validate:"required,maxb=255"`
SessionID string `json:"session_id" validate:"required,len=26"`
ClientID string `json:"client_id" validate:"required,maxb=255"`
ConnectionID string `json:"connection_id" validate:"required,len=26"`
Stats []json.RawMessage `json:"stats" validate:"required"`
}
// 最大バイトサイズ
func maximumNumberOfBytesFunc(fl validator.FieldLevel) bool {
param := fl.Param()
// 255 バイトまで指定可能
length, err := strconv.ParseUint(param, 10, 8)
if err != nil {
zlog.Error().Err(err).Send()
panic(err)
}
return uint64(fl.Field().Len()) <= length
}