14 lines
465 B
Python
14 lines
465 B
Python
"""Windows image-render worker → NAS image-lab internal webhook 인증."""
|
|
from __future__ import annotations
|
|
|
|
import os
|
|
from fastapi import Header, HTTPException
|
|
|
|
|
|
def verify_internal_key(x_internal_key: str = Header(...)):
|
|
expected = os.getenv("INTERNAL_API_KEY")
|
|
if not expected:
|
|
raise HTTPException(401, "INTERNAL_API_KEY not configured on server")
|
|
if x_internal_key != expected:
|
|
raise HTTPException(401, "Invalid X-Internal-Key")
|