New top-nav section with a CSV-based license calculator. Upload an Azure AD user export to see license counts (M365 Standard/Basic, Defender P1, PBI Pro, PBI Premium) grouped by QWE Client. QWE Client and IsRestaurant are editable per user, saved to SQLite, and restored on the next upload. Department-based defaults pre-populate QWE Client (AT→QWE AT, SK→QWE SK) when no saved value exists. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
46 lines
1.4 KiB
Python
46 lines
1.4 KiB
Python
import os
|
|
import datetime
|
|
from sqlalchemy import create_engine, Column, Integer, String, DateTime, Boolean
|
|
from sqlalchemy.orm import declarative_base, sessionmaker
|
|
|
|
DATABASE_URL = f"sqlite:///{os.getenv('DB_PATH', '/data/audit.db')}"
|
|
|
|
engine = create_engine(DATABASE_URL, connect_args={"check_same_thread": False})
|
|
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
|
|
Base = declarative_base()
|
|
|
|
|
|
class M365UserOverride(Base):
|
|
__tablename__ = "m365_user_overrides"
|
|
|
|
username = Column(String, primary_key=True) # User principal name
|
|
qwe_client = Column(String, default="", nullable=False)
|
|
is_restaurant = Column(Boolean, default=False, nullable=False)
|
|
updated_at = Column(DateTime, default=datetime.datetime.utcnow)
|
|
|
|
|
|
class RebootLog(Base):
|
|
__tablename__ = "reboot_log"
|
|
|
|
id = Column(Integer, primary_key=True, index=True)
|
|
timestamp = Column(DateTime, default=datetime.datetime.utcnow, nullable=False)
|
|
username = Column(String, nullable=False)
|
|
user_email = Column(String, nullable=False)
|
|
ap_name = Column(String, nullable=False)
|
|
ap_mac = Column(String, nullable=False)
|
|
ap_ip = Column(String, nullable=True)
|
|
result = Column(String, nullable=False) # "success" | "error"
|
|
error_message = Column(String, nullable=True)
|
|
|
|
|
|
def init_db():
|
|
Base.metadata.create_all(bind=engine)
|
|
|
|
|
|
def get_db():
|
|
db = SessionLocal()
|
|
try:
|
|
yield db
|
|
finally:
|
|
db.close()
|