mirror of
https://github.com/vale981/outlook-oauth-hack
synced 2025-03-04 16:41:38 -05:00
23 lines
797 B
Python
23 lines
797 B
Python
from pathlib import Path
|
|
import tomllib
|
|
from types import SimpleNamespace
|
|
import sys
|
|
|
|
|
|
def get_config(profile):
|
|
with open(Path.home() / ".o365-auth-config.toml", "rb") as f:
|
|
toplevel_data = tomllib.load(f)
|
|
|
|
|
|
default_data = toplevel_data["default"]
|
|
config_data = default_data | toplevel_data.get(profile, {})
|
|
cache_path = Path.home() / ".cache/o365-oauth" / profile
|
|
cache_path.mkdir(parents=True, exist_ok=True)
|
|
|
|
return SimpleNamespace(
|
|
ClientId = config_data["ClientId"],
|
|
ClientSecret = config_data["ClientSecret"],
|
|
Scopes = config_data["Scopes"],
|
|
RefreshTokenFileName = cache_path / "imap_smtp_refresh_token",
|
|
AccessTokenFileName = cache_path / "imap_smtp_access_token",
|
|
Authority = config_data["Authority"] or None)
|