1
1
mirror of https://github.com/wader/fq.git synced 2024-12-03 13:46:37 +03:00
fq/format/protobuf/protobuf_widevine.go

49 lines
1.4 KiB
Go
Raw Normal View History

2020-06-08 03:29:51 +03:00
package protobuf
// TODO: move? make collection on known protobuf messages?
import (
"github.com/wader/fq/format"
"github.com/wader/fq/pkg/decode"
"github.com/wader/fq/pkg/interp"
"github.com/wader/fq/pkg/scalar"
2020-06-08 03:29:51 +03:00
)
var widevineProtoBufFormat decode.Group
2020-06-08 03:29:51 +03:00
func init() {
interp.RegisterFormat(decode.Format{
2020-06-08 03:29:51 +03:00
Name: format.PROTOBUF_WIDEVINE,
Description: "Widevine protobuf",
DecodeFn: widevineDecode,
Dependencies: []decode.Dependency{
{Names: []string{format.PROTOBUF}, Group: &widevineProtoBufFormat},
2020-06-08 03:29:51 +03:00
},
})
}
func widevineDecode(d *decode.D, _ any) any {
2020-06-08 03:29:51 +03:00
widewinePb := format.ProtoBufMessage{
1: {Type: format.ProtoBufTypeEnum, Name: "algorithm", Enums: scalar.UToSymStr{
0: "unencrypted",
1: "aesctr",
2020-06-08 03:29:51 +03:00
}},
2: {Type: format.ProtoBufTypeBytes, Name: "key_id"},
3: {Type: format.ProtoBufTypeString, Name: "provider"},
4: {Type: format.ProtoBufTypeBytes, Name: "content_id"},
6: {Type: format.ProtoBufTypeString, Name: "policy"},
7: {Type: format.ProtoBufTypeUInt32, Name: "crypto_period_index"},
8: {Type: format.ProtoBufTypeBytes, Name: "grouped_license"},
9: {Type: format.ProtoBufTypeUInt32, Name: "protection_scheme", Enums: scalar.UToSymStr{
2020-06-08 03:29:51 +03:00
1667591779: "cenc",
1667392305: "cbc1",
1667591795: "cens",
1667392371: "cbcs",
}},
}
d.Format(widevineProtoBufFormat, format.ProtoBufIn{Message: widewinePb})
2020-06-08 03:29:51 +03:00
return nil
}