mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 05:14:20 +03:00
47 lines
960 B
Go
47 lines
960 B
Go
|
package data
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"encoding/gob"
|
||
|
)
|
||
|
|
||
|
// ConfigEntry is the actual object saved to the database.
|
||
|
// The Value is encoded using encoding/gob.
|
||
|
type ConfigEntry struct {
|
||
|
Key string
|
||
|
Value interface{}
|
||
|
}
|
||
|
|
||
|
func (c *ConfigEntry) getString() (string, error) {
|
||
|
decoder := c.getDecoder()
|
||
|
var result string
|
||
|
err := decoder.Decode(&result)
|
||
|
return result, err
|
||
|
}
|
||
|
|
||
|
func (c *ConfigEntry) getNumber() (float64, error) {
|
||
|
decoder := c.getDecoder()
|
||
|
var result float64
|
||
|
err := decoder.Decode(&result)
|
||
|
return result, err
|
||
|
}
|
||
|
|
||
|
func (c *ConfigEntry) getBool() (bool, error) {
|
||
|
decoder := c.getDecoder()
|
||
|
var result bool
|
||
|
err := decoder.Decode(&result)
|
||
|
return result, err
|
||
|
}
|
||
|
|
||
|
func (c *ConfigEntry) getObject(result interface{}) error {
|
||
|
decoder := c.getDecoder()
|
||
|
err := decoder.Decode(result)
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
func (c *ConfigEntry) getDecoder() *gob.Decoder {
|
||
|
valueBytes := c.Value.([]byte)
|
||
|
decoder := gob.NewDecoder(bytes.NewBuffer(valueBytes))
|
||
|
return decoder
|
||
|
}
|