mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 08:46:22 +02:00
- Updated SlackHistory class to enforce the use of session and connector_id for token refresh, raising a ValueError for legacy token usage. - Simplified conditional checks for client initialization in SlackHistory. - Cleaned up unnecessary comments and whitespace in the codebase.
75 lines
2.6 KiB
Python
75 lines
2.6 KiB
Python
from datetime import UTC, datetime
|
|
|
|
from pydantic import BaseModel, field_validator
|
|
|
|
|
|
class SlackAuthCredentialsBase(BaseModel):
|
|
bot_token: str
|
|
refresh_token: str | None = None
|
|
token_type: str = "Bearer"
|
|
expires_in: int | None = None
|
|
expires_at: datetime | None = None
|
|
scope: str | None = None
|
|
bot_user_id: str | None = None
|
|
team_id: str | None = None
|
|
team_name: str | None = None
|
|
|
|
@property
|
|
def is_expired(self) -> bool:
|
|
"""Check if the credentials have expired."""
|
|
if self.expires_at is None:
|
|
return False # Long-lived token, treat as not expired
|
|
return self.expires_at <= datetime.now(UTC)
|
|
|
|
@property
|
|
def is_refreshable(self) -> bool:
|
|
"""Check if the credentials can be refreshed."""
|
|
return self.refresh_token is not None
|
|
|
|
def to_dict(self) -> dict:
|
|
"""Convert credentials to dictionary for storage."""
|
|
return {
|
|
"bot_token": self.bot_token,
|
|
"refresh_token": self.refresh_token,
|
|
"token_type": self.token_type,
|
|
"expires_in": self.expires_in,
|
|
"expires_at": self.expires_at.isoformat() if self.expires_at else None,
|
|
"scope": self.scope,
|
|
"bot_user_id": self.bot_user_id,
|
|
"team_id": self.team_id,
|
|
"team_name": self.team_name,
|
|
}
|
|
|
|
@classmethod
|
|
def from_dict(cls, data: dict) -> "SlackAuthCredentialsBase":
|
|
"""Create credentials from dictionary."""
|
|
expires_at = None
|
|
if data.get("expires_at"):
|
|
expires_at = datetime.fromisoformat(data["expires_at"])
|
|
|
|
return cls(
|
|
bot_token=data.get("bot_token", ""),
|
|
refresh_token=data.get("refresh_token"),
|
|
token_type=data.get("token_type", "Bearer"),
|
|
expires_in=data.get("expires_in"),
|
|
expires_at=expires_at,
|
|
scope=data.get("scope"),
|
|
bot_user_id=data.get("bot_user_id"),
|
|
team_id=data.get("team_id"),
|
|
team_name=data.get("team_name"),
|
|
)
|
|
|
|
@field_validator("expires_at", mode="before")
|
|
@classmethod
|
|
def ensure_aware_utc(cls, v):
|
|
# Strings like "2025-08-26T14:46:57.367184"
|
|
if isinstance(v, str):
|
|
# add +00:00 if missing tz info
|
|
if v.endswith("Z"):
|
|
return datetime.fromisoformat(v.replace("Z", "+00:00"))
|
|
dt = datetime.fromisoformat(v)
|
|
return dt if dt.tzinfo else dt.replace(tzinfo=UTC)
|
|
# datetime objects
|
|
if isinstance(v, datetime):
|
|
return v if v.tzinfo else v.replace(tzinfo=UTC)
|
|
return v
|