Deletes the global_map_sources, global_overlay_refresh, global_map_cache, and global_overlays service modules and their tests. Removes the refresh-global-overlays CLI command, the /admin/global-overlays/refresh route, and the GlobalOverlaySource view in overlay_detail rendering. Drops py7zr from dependencies — was only used by the deleted subsystem. The job_worker scheduler still tracks refresh_global_overlays; that cleanup is Task 4. Deploy/README references are Task 8. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
46 lines
1.5 KiB
Python
46 lines
1.5 KiB
Python
import os
|
|
|
|
import click
|
|
from sqlalchemy.exc import IntegrityError
|
|
from sqlalchemy import select
|
|
|
|
from l4d2web.auth import hash_password
|
|
from l4d2web.db import session_scope
|
|
from l4d2web.models import User
|
|
|
|
|
|
@click.command("promote-admin")
|
|
@click.argument("username")
|
|
def promote_admin(username: str) -> None:
|
|
with session_scope() as db:
|
|
user = db.scalar(select(User).where(User.username == username))
|
|
if user is None:
|
|
raise click.ClickException("user not found")
|
|
user.admin = True
|
|
|
|
|
|
@click.command("create-user")
|
|
@click.argument("username")
|
|
@click.option("--admin", is_flag=True, default=False)
|
|
def create_user(username: str, admin: bool) -> None:
|
|
password = os.getenv("LEFT4ME_ADMIN_PASSWORD")
|
|
if password is None:
|
|
password = click.prompt("Password", hide_input=True, confirmation_prompt=True)
|
|
if password == "":
|
|
raise click.ClickException("password must not be empty")
|
|
|
|
try:
|
|
with session_scope() as db:
|
|
existing = db.scalar(select(User).where(User.username == username))
|
|
if existing is not None:
|
|
raise click.ClickException("user already exists")
|
|
db.add(User(username=username, password_digest=hash_password(password), admin=admin))
|
|
except IntegrityError as exc:
|
|
raise click.ClickException("user already exists") from exc
|
|
|
|
click.echo(f"created user {username}")
|
|
|
|
|
|
def register_cli(app) -> None:
|
|
app.cli.add_command(promote_admin)
|
|
app.cli.add_command(create_user)
|