2020-01-18 23:30:09 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
|
|
|
|
|
|
|
type WebSocket struct {
|
|
|
|
Password string
|
|
|
|
AdminPassword string
|
2020-04-06 20:14:30 +00:00
|
|
|
Proxy bool
|
2021-11-16 23:00:24 +01:00
|
|
|
Locks []string
|
2021-11-16 23:48:40 +01:00
|
|
|
|
|
|
|
ControlProtection bool
|
2020-01-18 23:30:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (WebSocket) Init(cmd *cobra.Command) error {
|
2020-01-29 01:27:59 +00:00
|
|
|
cmd.PersistentFlags().String("password", "neko", "password for connecting to stream")
|
2020-01-18 23:30:09 +00:00
|
|
|
if err := viper.BindPFlag("password", cmd.PersistentFlags().Lookup("password")); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-04-05 01:24:54 +00:00
|
|
|
cmd.PersistentFlags().String("password_admin", "admin", "admin password for connecting to stream")
|
|
|
|
if err := viper.BindPFlag("password_admin", cmd.PersistentFlags().Lookup("password_admin")); err != nil {
|
2020-01-18 23:30:09 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-04-06 20:14:30 +00:00
|
|
|
cmd.PersistentFlags().Bool("proxy", false, "enable reverse proxy mode")
|
|
|
|
if err := viper.BindPFlag("proxy", cmd.PersistentFlags().Lookup("proxy")); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-16 23:00:24 +01:00
|
|
|
cmd.PersistentFlags().StringSlice("locks", []string{}, "resources, that will be locked when starting (control, login)")
|
|
|
|
if err := viper.BindPFlag("locks", cmd.PersistentFlags().Lookup("locks")); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-17 17:33:52 +01:00
|
|
|
cmd.PersistentFlags().Bool("control_protection", false, "control protection means, users can gain control only if at least one admin is in the room")
|
2021-11-16 23:48:40 +01:00
|
|
|
if err := viper.BindPFlag("control_protection", cmd.PersistentFlags().Lookup("control_protection")); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-01-18 23:30:09 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *WebSocket) Set() {
|
|
|
|
s.Password = viper.GetString("password")
|
2020-04-05 01:24:54 +00:00
|
|
|
s.AdminPassword = viper.GetString("password_admin")
|
2020-04-06 20:14:30 +00:00
|
|
|
s.Proxy = viper.GetBool("proxy")
|
2021-11-16 23:00:24 +01:00
|
|
|
s.Locks = viper.GetStringSlice("locks")
|
2021-11-16 23:48:40 +01:00
|
|
|
|
|
|
|
s.ControlProtection = viper.GetBool("control_protection")
|
2020-01-18 23:30:09 +00:00
|
|
|
}
|