# # Copyright (C) 2026 GNS3 Technologies Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . from sqlalchemy import Column, String, Boolean, DateTime, ForeignKey, func from .base import BaseTable, GUID class ApiKey(BaseTable): __tablename__ = "api_keys" api_key_id = Column(GUID, primary_key=True) user_id = Column(GUID, ForeignKey("users.user_id", ondelete="CASCADE"), nullable=False, index=True) name = Column(String(128), nullable=False) key_hash = Column(String(128), nullable=False) key_prefix = Column(String(8), nullable=False) last_used_at = Column(DateTime, nullable=True) created_at = Column(DateTime, server_default=func.current_timestamp(), nullable=False) revoked = Column(Boolean, default=False, nullable=False)