Skip to content

Commit

Permalink
add optional type
Browse files Browse the repository at this point in the history
  • Loading branch information
axiomofjoy committed Sep 20, 2024
1 parent fe8399b commit 71525dc
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
3 changes: 1 addition & 2 deletions src/phoenix/db/facilitator.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
)
from phoenix.db import models
from phoenix.db.enums import COLUMN_ENUMS, UserRole
from phoenix.db.models import SYSTEM_USER_EMAIL
from phoenix.server.types import DbSessionFactory


Expand Down Expand Up @@ -85,7 +84,7 @@ async def _ensure_user_roles(session: AsyncSession) -> None:
) is not None:
system_user = models.User(
user_role_id=system_role_id,
email=SYSTEM_USER_EMAIL,
email="system@localhost",
reset_password=False,
)
session.add(system_user)
Expand Down
23 changes: 11 additions & 12 deletions src/phoenix/db/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
func,
insert,
not_,
or_,
select,
text,
)
Expand All @@ -40,8 +39,6 @@
from phoenix.config import get_env_database_schema
from phoenix.datetime_utils import normalize_datetime

SYSTEM_USER_EMAIL = "system@localhost"


class AuthMethod(Enum):
LOCAL = "LOCAL"
Expand Down Expand Up @@ -670,24 +667,26 @@ class User(Base):
api_keys: Mapped[List["ApiKey"]] = relationship("ApiKey", back_populates="user")

@hybrid_property
def auth_method(self) -> str:
if (self.email == SYSTEM_USER_EMAIL) or self.password_hash is not None:
def auth_method(self) -> Optional[str]:
if self.password_hash is not None:
return AuthMethod.LOCAL.value
else:
elif self.oauth2_client_id is not None:
return AuthMethod.OAUTH2.value
return None

@auth_method.inplace.expression
@classmethod
def _auth_method_expression(cls) -> ColumnElement[str]:
def _auth_method_expression(cls) -> ColumnElement[Optional[str]]:
return case(
(
or_(
cls.email == SYSTEM_USER_EMAIL,
not_(cls.password_hash.is_(None)),
),
not_(cls.password_hash.is_(None)),
AuthMethod.LOCAL.value,
),
else_=AuthMethod.OAUTH2.value,
(
not_(cls.oauth2_client_id.is_(None)),
AuthMethod.OAUTH2.value,
),
else_=None,
)

__table_args__ = (
Expand Down
1 change: 1 addition & 0 deletions src/phoenix/server/api/types/User.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ def to_gql_user(user: models.User, api_keys: Optional[List[models.ApiKey]] = Non
"""
Converts an ORM user to a GraphQL user.
"""
assert user.auth_method is not None
return User(
id_attr=user.id,
password_needs_reset=user.reset_password,
Expand Down

0 comments on commit 71525dc

Please sign in to comment.