Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

role aliases #660

Merged
merged 3 commits into from
Feb 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .configref
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18915
18934
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reactmap",
"version": "1.9.8",
"version": "1.9.9",
"description": "React based frontend map.",
"main": "ReactMap.js",
"author": "TurtIeSocks <[email protected]>",
Expand Down
4 changes: 4 additions & 0 deletions server/src/configs/custom-environment-variables.json
Original file line number Diff line number Diff line change
Expand Up @@ -1135,6 +1135,10 @@
"__name": "AUTHENTICATION_ALWAYS_ENABLED_PERMS",
"__format": "json"
},
"aliases": {
"__name": "AUTHENTICATION_ALIASES",
"__format": "json"
},
"perms": {
"map": {
"enabled": {
Expand Down
1 change: 1 addition & 0 deletions server/src/configs/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -630,6 +630,7 @@
"areaRestrictions": [],
"excludeFromTutorial": [],
"alwaysEnabledPerms": [],
"aliases": [],
"perms": {
"map": {
"enabled": true,
Expand Down
11 changes: 11 additions & 0 deletions server/src/configs/local.example.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"READ_ME": "https://github.com/WatWowMap/ReactMap/wiki/04.-Full-Config-Explanation",
"interface": "0.0.0.0",
"port": 8080,
"packageSource": "git/docker",
Expand Down Expand Up @@ -137,6 +138,16 @@
"areas": []
}
],
"aliases": [
{
"role": "123415123541",
"name": "verified"
},
{
"role": "897581458191",
"name": "supporter"
}
],
"alwaysEnabledPerms": [],
"perms": {
"map": {
Expand Down
35 changes: 35 additions & 0 deletions server/src/services/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,41 @@ if (hasLittle) {
: { little: false, cap: 500 }
}

const aliasObj = Object.fromEntries(
config.authentication.aliases.map((alias) => [alias.name, alias.role]),
)

const replaceAliases = (role) => aliasObj[role] ?? role

Object.keys(config.authentication.perms).forEach((perm) => {
config.authentication.perms[perm].roles =
config.authentication.perms[perm].roles.map(replaceAliases)
})

config.authentication.areaRestrictions =
config.authentication.areaRestrictions.map(({ roles, areas }) => ({
roles: roles.map(replaceAliases),
areas,
}))

config.authentication.strategies = config.authentication.strategies.map(
(strategy) => ({
...strategy,
allowedGuilds: Array.isArray(strategy.allowedGuilds)
? strategy.allowedGuilds.map(replaceAliases)
: undefined,
blockedGuilds: Array.isArray(strategy.blockedGuilds)
? strategy.blockedGuilds.map(replaceAliases)
: undefined,
groups: Array.isArray(strategy.groups)
? strategy.groups.map(replaceAliases)
: undefined,
allowedUsers: Array.isArray(strategy.allowedUsers)
? strategy.allowedUsers.map(replaceAliases)
: undefined,
}),
)

if (
!config.authentication.strategies.length ||
!config.authentication.strategies.find((strategy) => strategy.enabled)
Expand Down