mirror of
				https://github.com/owncast/owncast.git
				synced 2025-10-31 18:18:06 +08:00 
			
		
		
		
	 813f8692f0
			
		
	
	813f8692f0
	
	
	
		
			
			* Add user-customizable theming. Closes #1915 * Prettified Code! * Add user-customizable theming. Closes #1915 * Add explicit color for page content background * Prettified Code! Co-authored-by: gabek <gabek@users.noreply.github.com>
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			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) getStringSlice() ([]string, error) {
 | |
| 	decoder := c.getDecoder()
 | |
| 	var result []string
 | |
| 	err := decoder.Decode(&result)
 | |
| 	return result, err
 | |
| }
 | |
| 
 | |
| func (c *ConfigEntry) getStringMap() (map[string]string, error) {
 | |
| 	decoder := c.getDecoder()
 | |
| 	var result map[string]string
 | |
| 	err := decoder.Decode(&result)
 | |
| 	return result, err
 | |
| }
 | |
| 
 | |
| 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
 | |
| }
 |