File size: 786 Bytes
6830eb0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from __future__ import annotations
import os
from pathlib import Path
import yaml
from typing import Dict

def load_auth_credentials() -> Dict[str, str]:
    """Load authentication credentials from YAML file."""
    auth_file = Path("config/credentials.yaml")
    
    if not auth_file.exists():
        # Create default credentials file if it doesn't exist
        default_auth = {
            "credentials": {
                "admin": os.environ.get("ADMIN_PASSWORD", "change_this_password"),
            }
        }
        auth_file.parent.mkdir(parents=True, exist_ok=True)
        with open(auth_file, "w") as f:
            yaml.dump(default_auth, f)
    
    with open(auth_file, "r") as f:
        auth_data = yaml.safe_load(f)
    
    return auth_data.get("credentials", {})