diff --git a/api/account/common.go b/api/account/common.go
index 9c9102f..9fc79d4 100644
--- a/api/account/common.go
+++ b/api/account/common.go
@@ -37,6 +37,11 @@ const (
UUIDSize = 16
TokenSize = 32
+
+ // feature access groups
+ DEV_STAFF = "DEV_STAFF"
+ CONTRIBUTOR = "CONTRIBUTOR"
+ EVERYONE = "EVERYONE"
)
var (
diff --git a/api/account/discord.go b/api/account/discord.go
index 792afe6..271868f 100644
--- a/api/account/discord.go
+++ b/api/account/discord.go
@@ -106,3 +106,19 @@ func RetrieveDiscordId(code string) (string, error) {
return user.Id, nil
}
+
+// TODO: fetch these instead of hardcoding them
+var devsAndStaff = map[string]bool{}
+var contributors = map[string]bool{}
+
+func GetAccessGroupByDiscordRole(discordId string) (group string) {
+ if devsAndStaff[discordId] {
+ return DEV_STAFF
+ }
+
+ if contributors[discordId] {
+ return CONTRIBUTOR
+ }
+
+ return ""
+}
diff --git a/api/account/info.go b/api/account/info.go
index 6802238..bb905dc 100644
--- a/api/account/info.go
+++ b/api/account/info.go
@@ -22,20 +22,54 @@ import (
)
type InfoResponse struct {
- Username string `json:"username"`
- DiscordId string `json:"discordId"`
- GoogleId string `json:"googleId"`
- LastSessionSlot int `json:"lastSessionSlot"`
+ Username string `json:"username"`
+ DiscordId string `json:"discordId"`
+ GoogleId string `json:"googleId"`
+ LastSessionSlot int `json:"lastSessionSlot"`
+ FeatureFlags []string `json:"featureFlags"`
}
// /account/info - get account info
func Info(username string, discordId string, googleId string, uuid []byte) (InfoResponse, error) {
slot, _ := db.GetLatestSessionSaveDataSlot(uuid)
+ featureFlags := getFeatureFlags(discordId)
response := InfoResponse{
Username: username,
LastSessionSlot: slot,
DiscordId: discordId,
GoogleId: googleId,
+ FeatureFlags: featureFlags,
}
return response, nil
}
+
+func getFeatureFlags(discordId string) []string {
+ var flags []string
+
+ enabledFlags, err := db.GetEnabledFeatureFlags()
+ if err != nil {
+ return flags
+ }
+
+ for _, flag := range enabledFlags {
+ var hasAccess = false
+
+ if flag.AccessLevel == EVERYONE {
+ hasAccess = true
+ } else {
+ accessGroup := GetAccessGroupByDiscordRole(discordId)
+
+ if flag.AccessLevel == DEV_STAFF {
+ hasAccess = accessGroup == DEV_STAFF
+ } else if flag.AccessLevel == CONTRIBUTOR {
+ hasAccess = accessGroup == CONTRIBUTOR || accessGroup == DEV_STAFF
+ }
+ }
+
+ if hasAccess {
+ flags = append(flags, flag.Name)
+ }
+ }
+
+ return flags
+}
diff --git a/db/db.go b/db/db.go
index 885c3b7..1eb0b21 100644
--- a/db/db.go
+++ b/db/db.go
@@ -103,6 +103,10 @@ func setupDb(tx *sql.Tx) error {
`ALTER TABLE accounts ADD COLUMN IF NOT EXISTS discordId VARCHAR(32) UNIQUE DEFAULT NULL`,
`ALTER TABLE accounts ADD COLUMN IF NOT EXISTS googleId VARCHAR(32) UNIQUE DEFAULT NULL`,
+
+ // ----------------------------------
+ // MIGRATION 004
+ `CREATE TABLE IF NOT EXISTS featureFlags (id INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(64) UNIQUE NOT NULL, accessLevel VARCHAR(16), CONSTRAINT chk_featureFlags_accessLevel CHECK(accessLevel IN ('DEV_STAFF', 'CONTRIBUTOR', 'EVERYONE')))`,
}
for _, q := range queries {
diff --git a/db/featureflags.go b/db/featureflags.go
new file mode 100644
index 0000000..cb38605
--- /dev/null
+++ b/db/featureflags.go
@@ -0,0 +1,48 @@
+/*
+ Copyright (C) 2024 Pagefault Games
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see .
+*/
+
+package db
+
+import (
+ "github.com/pagefaultgames/rogueserver/defs"
+)
+
+func GetEnabledFeatureFlags() ([]defs.FeatureFlag, error) {
+ var activeFlags []defs.FeatureFlag
+
+ results, err := handle.Query("SELECT name, accessLevel FROM featureFlags WHERE enabled = 1")
+
+ if err != nil {
+ return activeFlags, err
+ }
+
+ defer results.Close()
+
+ for results.Next() {
+ var flag defs.FeatureFlag
+
+ err = results.Scan(&flag.Name, &flag.AccessLevel)
+
+ if err != nil {
+ return activeFlags, err
+ }
+
+ activeFlags = append(activeFlags, flag)
+ }
+
+ return activeFlags, nil
+}
diff --git a/defs/featureflags.go b/defs/featureflags.go
new file mode 100644
index 0000000..5b595da
--- /dev/null
+++ b/defs/featureflags.go
@@ -0,0 +1,23 @@
+/*
+ Copyright (C) 2024 Pagefault Games
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see .
+*/
+
+package defs
+
+type FeatureFlag struct {
+ Name string
+ AccessLevel string // DEV_STAFF | CONTRIBUTOR | EVERYONE
+}