package core import ( "fmt" "path" "path/filepath" "strings" "github.com/spf13/viper" ) // Core struct contains core specific config value type Config struct { // SecretKey is used to encrypt opaque values such as // the cursor. Auto-generated if not set SecretKey string `mapstructure:"secret_key"` // UseAllowList (aka production mode) when set to true ensures // only queries lists in the allow.list file can be used. All // queries are pre-prepared so no compiling happens and things are // very fast. UseAllowList bool `mapstructure:"use_allow_list"` // AllowListFile if the path to allow list file if not set the // path is assumed to tbe the same as the config path (allow.list) AllowListFile string `mapstructure:"allow_list_file"` // SetUserID forces the database session variable `user.id` to // be set to the user id. This variables can be used by triggers // or other database functions SetUserID bool `mapstructure:"set_user_id"` // DefaultBlock ensures only tables configured under the `anon` role // config can be queries if the `anon` role. For example if the table // `users` is not listed under the anon role then it will be filtered // out of any unauthenticated queries that mention it. DefaultBlock bool `mapstructure:"default_block"` // Vars is a map of hardcoded variables that can be leveraged in your // queries (eg variable admin_id will be $admin_id in the query) Vars map[string]string `mapstructure:"variables"` // Blocklist is a list of tables and columns that should be filtered // out from any and all queries Blocklist []string // Tables contains all table specific configuration such as aliased tables // creating relationships between tables, etc Tables []Table // RolesQuery if set enabled attributed based access control. This query // is use to fetch the user attributes that then dynamically define the users // role. RolesQuery string `mapstructure:"roles_query"` // Roles contains all the configuration for all the roles you want to support // `user` and `anon` are two default roles. User role is for when a user ID is // available and Anon when it's not. Roles []Role // Inflections is to add additionally singular to plural mappings // to the engine (eg. sheep: sheep) Inflections map[string]string `mapstructure:"inflections"` } // Table struct defines a database table type Table struct { Name string Table string Blocklist []string Remotes []Remote Columns []Column } // Column struct defines a database column type Column struct { Name string Type string ForeignKey string `mapstructure:"related_to"` } // Remote struct defines a remote API endpoint type Remote struct { Name string ID string Path string URL string Debug bool PassHeaders []string `mapstructure:"pass_headers"` SetHeaders []struct { Name string Value string } `mapstructure:"set_headers"` } // Role struct contains role specific access control values for for all database tables type Role struct { Name string Match string Tables []RoleTable tm map[string]*RoleTable } // RoleTable struct contains role specific access control values for a database table type RoleTable struct { Name string Query Query Insert Insert Update Update Delete Delete } // Query struct contains access control values for query operations type Query struct { Limit int Filters []string Columns []string DisableFunctions bool `mapstructure:"disable_functions"` Block bool } // Insert struct contains access control values for insert operations type Insert struct { Filters []string Columns []string Presets map[string]string Block bool } // Insert struct contains access control values for update operations type Update struct { Filters []string Columns []string Presets map[string]string Block bool } // Delete struct contains access control values for delete operations type Delete struct { Filters []string Columns []string Block bool } // ReadInConfig function reads in the config file for the environment specified in the GO_ENV // environment variable. This is the best way to create a new Super Graph config. func ReadInConfig(configFile string) (*Config, error) { cpath := path.Dir(configFile) cfile := path.Base(configFile) vi := newViper(cpath, cfile) if err := vi.ReadInConfig(); err != nil { return nil, err } inherits := vi.GetString("inherits") if len(inherits) != 0 { vi = newViper(cpath, inherits) if err := vi.ReadInConfig(); err != nil { return nil, err } if vi.IsSet("inherits") { return nil, fmt.Errorf("inherited config (%s) cannot itself inherit (%s)", inherits, vi.GetString("inherits")) } vi.SetConfigName(cfile) if err := vi.MergeInConfig(); err != nil { return nil, err } } c := &Config{} if err := vi.Unmarshal(&c); err != nil { return nil, fmt.Errorf("failed to decode config, %v", err) } if len(c.AllowListFile) == 0 { c.AllowListFile = path.Join(cpath, "allow.list") } return c, nil } func newViper(configPath, configFile string) *viper.Viper { vi := viper.New() vi.SetEnvPrefix("SG") vi.SetEnvKeyReplacer(strings.NewReplacer(".", "_")) vi.AutomaticEnv() if len(filepath.Ext(configFile)) != 0 { vi.SetConfigFile(configFile) } else { vi.SetConfigName(configFile) vi.AddConfigPath(configPath) vi.AddConfigPath("./config") } return vi }