mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-12 09:44:59 +00:00
9c6ba7e2c7
This is a new authentication system that covers all the features exposed by the server, including playback, API, metrics and PPROF, improves internal authentication by adding permissions, improves HTTP-based authentication by adding the ability to exclude certain actions from being authenticated, adds an additional method (JWT-based authentication).
37 lines
752 B
Go
37 lines
752 B
Go
package conf
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"code.cloudfoundry.org/bytefmt"
|
|
)
|
|
|
|
// StringSize is a size that is unmarshaled from a string.
|
|
type StringSize uint64
|
|
|
|
// MarshalJSON implements json.Marshaler.
|
|
func (s StringSize) MarshalJSON() ([]byte, error) {
|
|
return []byte(`"` + bytefmt.ByteSize(uint64(s)) + `"`), nil
|
|
}
|
|
|
|
// UnmarshalJSON implements json.Unmarshaler.
|
|
func (s *StringSize) UnmarshalJSON(b []byte) error {
|
|
var in string
|
|
if err := json.Unmarshal(b, &in); err != nil {
|
|
return err
|
|
}
|
|
|
|
v, err := bytefmt.ToBytes(in)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
*s = StringSize(v)
|
|
|
|
return nil
|
|
}
|
|
|
|
// UnmarshalEnv implements env.Unmarshaler.
|
|
func (s *StringSize) UnmarshalEnv(_ string, v string) error {
|
|
return s.UnmarshalJSON([]byte(`"` + v + `"`))
|
|
}
|