forked from sass/tipibot
Divider placement matched the divider role by its exact Discord name, so renaming the role in Discord silently broke positioning. Switch the TEAM_DIVIDER_<SUFFIX> config to hold a role ID; resolve the ID to the role's current name in apply_team_role_positions and keep the existing name-based ordering maths downstream unchanged. - config._parse_team_dividers now parses values as ints (rejects non-ints) - resolve_divider / _team_divider cache / get_team_dividers return IDs - apply_team_role_positions resolves each ID via guild.get_role once - .env.example documents IDs and ships the CS2/LoL divider role IDs - resolve_divider tests updated to assert IDs Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01XPRsW4tazVtYi2jNzVQkre
125 lines
4.7 KiB
Python
125 lines
4.7 KiB
Python
import os
|
|
from dotenv import load_dotenv
|
|
|
|
load_dotenv()
|
|
|
|
BOT_PROFILE = os.getenv("BOT_PROFILE", "dev").strip().lower() or "dev"
|
|
if BOT_PROFILE not in {"dev", "economy"}:
|
|
raise SystemExit("BOT_PROFILE must be either 'dev' or 'economy'.")
|
|
|
|
|
|
def _env_int(name: str, default: int) -> int:
|
|
raw = os.getenv(name)
|
|
if raw is None or not raw.strip():
|
|
return default
|
|
return int(raw)
|
|
|
|
|
|
_LEGACY_DISCORD_TOKEN = os.getenv("DISCORD_TOKEN", "")
|
|
DISCORD_TOKEN_DEV = os.getenv("DISCORD_TOKEN_DEV", "")
|
|
DISCORD_TOKEN_ECONOMY = os.getenv("DISCORD_TOKEN_ECONOMY", "")
|
|
DISCORD_TOKEN = (
|
|
DISCORD_TOKEN_ECONOMY if BOT_PROFILE == "economy" else DISCORD_TOKEN_DEV
|
|
) or _LEGACY_DISCORD_TOKEN
|
|
|
|
SHEET_ID = os.getenv("SHEET_ID")
|
|
# Separate spreadsheet holding the tournament team registrations (Team Name +
|
|
# lineup of Discord usernames). Optional: when unset, team-role sync is a no-op.
|
|
TEAM_SHEET_ID = os.getenv("TEAM_SHEET_ID")
|
|
GOOGLE_CREDS_PATH = os.getenv("GOOGLE_CREDS_PATH", "credentials.json")
|
|
|
|
_LEGACY_GUILD_ID = _env_int("GUILD_ID", 0)
|
|
GUILD_ID_DEV = _env_int("GUILD_ID_DEV", _LEGACY_GUILD_ID)
|
|
GUILD_ID_ECONOMY = _env_int("GUILD_ID_ECONOMY", _LEGACY_GUILD_ID)
|
|
GUILD_ID = GUILD_ID_ECONOMY if BOT_PROFILE == "economy" else GUILD_ID_DEV
|
|
|
|
_LEGACY_BIRTHDAY_CHANNEL_ID = _env_int("BIRTHDAY_CHANNEL_ID", 0)
|
|
BIRTHDAY_CHANNEL_ID_DEV = _env_int("BIRTHDAY_CHANNEL_ID_DEV", _LEGACY_BIRTHDAY_CHANNEL_ID)
|
|
BIRTHDAY_CHANNEL_ID_ECONOMY = _env_int("BIRTHDAY_CHANNEL_ID_ECONOMY", 0)
|
|
BIRTHDAY_CHANNEL_ID = (
|
|
BIRTHDAY_CHANNEL_ID_ECONOMY
|
|
if BOT_PROFILE == "economy"
|
|
else BIRTHDAY_CHANNEL_ID_DEV
|
|
)
|
|
|
|
BIRTHDAY_WINDOW_DAYS = int(os.getenv("BIRTHDAY_WINDOW_DAYS", "7"))
|
|
BASE_ROLE_IDS: list[int] = [1478304631930228779, 1478302278862766190]
|
|
|
|
|
|
def _parse_admin_roles(raw: str) -> dict[int, set[int]]:
|
|
"""Parse DISCORD_ADMIN_ROLES env var as "guild_id:role_id[:role_id...],guild_id:role_id...".
|
|
|
|
Multiple admin roles per guild are colon-separated; guild entries are comma-separated.
|
|
Repeating a guild_id across entries merges its roles.
|
|
"""
|
|
result: dict[int, set[int]] = {}
|
|
for entry in raw.split(","):
|
|
entry = entry.strip()
|
|
if not entry:
|
|
continue
|
|
parts = entry.split(":")
|
|
if len(parts) < 2 or not all(p.strip() for p in parts):
|
|
raise SystemExit(
|
|
f"DISCORD_ADMIN_ROLES: expected 'guild_id:role_id[:role_id...]', got {entry!r}"
|
|
)
|
|
guild_id = int(parts[0].strip())
|
|
result.setdefault(guild_id, set()).update(int(p.strip()) for p in parts[1:])
|
|
return result
|
|
|
|
|
|
BOT_ADMIN_ROLES: dict[int, set[int]] = _parse_admin_roles(os.getenv("DISCORD_ADMIN_ROLES", ""))
|
|
|
|
_TEAM_DIVIDER_PREFIX = "TEAM_DIVIDER_"
|
|
|
|
|
|
def _parse_team_dividers() -> dict[str, int]:
|
|
"""Collect TEAM_DIVIDER_<SUFFIX> env vars into {suffix: divider role ID}.
|
|
|
|
The suffix says which sheet sections the divider covers, the value is the
|
|
Discord role ID their teams get positioned under:
|
|
|
|
TEAM_DIVIDER_CS2_2026=1498736834656604251
|
|
|
|
Matching by ID (not name) means renaming the divider role in Discord never
|
|
breaks positioning. Every underscore-separated part of the suffix must appear
|
|
in the section's title row, so `CS2_2026` matches only "TipiLAN 2026 CS2
|
|
Registration Log" while a plain `CS2` would match that section in any year.
|
|
Defining a var is what switches positioning on for those sections; teams
|
|
whose section matches nothing are still granted their role, just never moved.
|
|
"""
|
|
dividers: dict[str, int] = {}
|
|
for key, value in os.environ.items():
|
|
if not key.startswith(_TEAM_DIVIDER_PREFIX):
|
|
continue
|
|
suffix = key[len(_TEAM_DIVIDER_PREFIX):].strip().lower()
|
|
raw = value.strip()
|
|
if not suffix or not raw:
|
|
continue
|
|
try:
|
|
dividers[suffix] = int(raw)
|
|
except ValueError:
|
|
raise SystemExit(
|
|
f"{key}: expected a Discord role ID (integer), got {raw!r}"
|
|
)
|
|
return dividers
|
|
|
|
|
|
TEAM_DIVIDERS: dict[str, int] = _parse_team_dividers()
|
|
|
|
PB_URL = os.getenv("PB_URL", "http://127.0.0.1:8090")
|
|
PB_ADMIN_EMAIL = os.getenv("PB_ADMIN_EMAIL", "")
|
|
PB_ADMIN_PASSWORD = os.getenv("PB_ADMIN_PASSWORD", "")
|
|
|
|
_LEGACY_PB_COLLECTION = os.getenv("PB_ECONOMY_COLLECTION", "").strip()
|
|
PB_ECONOMY_COLLECTION_DEV = (
|
|
os.getenv("PB_ECONOMY_COLLECTION_DEV", "").strip()
|
|
or (_LEGACY_PB_COLLECTION if _LEGACY_PB_COLLECTION else "economy_users_dev")
|
|
)
|
|
PB_ECONOMY_COLLECTION_ECONOMY = (
|
|
os.getenv("PB_ECONOMY_COLLECTION_ECONOMY", "").strip()
|
|
or (_LEGACY_PB_COLLECTION if _LEGACY_PB_COLLECTION else "economy_users_prod")
|
|
)
|
|
PB_ECONOMY_COLLECTION = (
|
|
PB_ECONOMY_COLLECTION_ECONOMY if BOT_PROFILE == "economy" else PB_ECONOMY_COLLECTION_DEV
|
|
)
|