* feat(chalice): upgraded dependencies * feat(chalice): changed path analysis schema * feat(DB): click coordinate support * feat(chalice): changed path analysis issues schema feat(chalice): upgraded dependencies * fix(chalice): fixed pydantic issue * refactor(chalice): refresh token validator * feat(chalice): role restrictions * feat(chalice): EE path analysis changes * refactor(DB): changed creation queries refactor(DB): changed delte queries feat(DB): support new path analysis payload * feat(chalice): save path analysis card * feat(chalice): restrict access * feat(chalice): restrict access * feat(chalice): EE save new path analysis card * refactor(chalice): path analysis * feat(chalice): path analysis new query * fix(chalice): configurable CH config * fix(chalice): assist autocomplete * refactor(chalice): refactored permissions * refactor(chalice): changed log level * refactor(chalice): upgraded dependencies * refactor(chalice): changed path analysis query * refactor(chalice): changed path analysis query * refactor(chalice): upgraded dependencies refactor(alerts): upgraded dependencies refactor(crons): upgraded dependencies * feat(chalice): path analysis ignore start point * feat(chalice): path analysis in progress * refactor(chalice): path analysis changed link sort * refactor(chalice): path analysis changed link sort * refactor(chalice): path analysis changed link sort * refactor(chalice): path analysis new query refactor(chalice): authorizers * refactor(chalice): refactored authorizer * fix(chalice): fixed create card of PathAnalysis * refactor(chalice): compute link-percentage for Path Analysis * refactor(chalice): remove null starting point from Path Analysis * feat(chalice): path analysis CH query * refactor(chalice): changed Path Analysis links-value fix(chalice): fixed search notes for EE * feat(chalice): path analysis enhanced query results * feat(chalice): include timezone in search sessions response * refactor(chalice): refactored logs * refactor(chalice): refactored logs feat(chalice): get path analysis issues * fix(chalice): fixed path analysis issues pagination * fix(chalice): sessions-search handle null values * feat(chalice): PathAnalysis start event support middle-event matching * feat(chalice): PathAnalysis start event support middle-event matching * feat(chalice): PathAnalysis support mixed events with start-point * fix(chalice): PathAnalysis fixed eventType value when metricValue is missing * fix(chalice): PathAnalysis fixed wrong super-class model for update card * fix(chalice): PathAnalysis fixed search issues refactor(chalice): upgraded dependencies * fix(chalice): enforce isEvent if missing * fix(chalice): enforce isEvent if missing * refactor(chalice): refactored custom-metrics * refactor(chalice): small changes * feat(chalice): path analysis EE new query * fix(chalice): fixed hide-excess state for Path Analysis * fix(chalice): fixed update start point and excludes for Path Analysis * fix(chalice): fix payload validation fix(chalice): fix update widget endpoint * fix(chalice): fix payload validation fix(chalice): fix update widget endpoint * fix(chalice): fix add member * refactor(chalice): upgraded dependencies refactor!(chalice): upgraded SAML dependencies * feat(chalice): ios-project support 1/5 * refactor(chalice): changed logs handling * fix(chalice): fix path analysis issues list * Api v1.15.0 (#1542) * refactor(chalice): changed default dev env vars * refactor(chalice): changes * refactor(chalice): changed payload fixer * refactor(chalice): changed payload fixer refactor(chalice): support duplicate filters * Api v1.15.0 no merge (#1546) * refactor(chalice): changed default dev env vars * refactor(chalice): changes * refactor(chalice): changed payload fixer * refactor(chalice): changed payload fixer refactor(chalice): support duplicate filters * refactor(chalice): changes * feature(chalice): mobile sessions search * Api v1.15.0 no merge (#1549) * refactor(chalice): changed default dev env vars * refactor(chalice): changes * refactor(chalice): changed payload fixer * refactor(chalice): changed payload fixer refactor(chalice): support duplicate filters * refactor(chalice): changes * feature(chalice): mobile sessions search * refactor(chalice): fix EE refactored schema
158 lines
4.7 KiB
Python
158 lines
4.7 KiB
Python
from typing import Optional, List, Union, Literal
|
|
|
|
from pydantic import Field, EmailStr, field_validator, model_validator
|
|
|
|
from . import schemas
|
|
from chalicelib.utils.TimeUTC import TimeUTC
|
|
from .overrides import BaseModel, Enum, ORUnion
|
|
from .transformers_validators import remove_whitespace, remove_duplicate_values
|
|
|
|
|
|
class Permissions(str, Enum):
|
|
session_replay = "SESSION_REPLAY"
|
|
dev_tools = "DEV_TOOLS"
|
|
# errors = "ERRORS"
|
|
metrics = "METRICS"
|
|
assist_live = "ASSIST_LIVE"
|
|
assist_call = "ASSIST_CALL"
|
|
feature_flags = "FEATURE_FLAGS"
|
|
|
|
|
|
class ServicePermissions(str, Enum):
|
|
session_replay = "SERVICE_SESSION_REPLAY"
|
|
dev_tools = "SERVICE_DEV_TOOLS"
|
|
assist_live = "SERVICE_ASSIST_LIVE"
|
|
assist_call = "SERVICE_ASSIST_CALL"
|
|
|
|
|
|
class CurrentContext(schemas.CurrentContext):
|
|
permissions: List[Union[Permissions, ServicePermissions]] = Field(...)
|
|
service_account: bool = Field(default=False)
|
|
|
|
@model_validator(mode="before")
|
|
def remove_unsupported_perms(cls, values):
|
|
if values.get("permissions") is not None:
|
|
perms = []
|
|
for p in values["permissions"]:
|
|
if Permissions.has_value(p):
|
|
perms.append(p)
|
|
values["permissions"] = perms
|
|
return values
|
|
|
|
|
|
class RolePayloadSchema(BaseModel):
|
|
name: str = Field(..., min_length=1, max_length=40)
|
|
description: Optional[str] = Field(default=None)
|
|
permissions: List[Permissions] = Field(...)
|
|
all_projects: bool = Field(default=True)
|
|
projects: List[int] = Field(default=[])
|
|
_transform_name = field_validator('name', mode="before")(remove_whitespace)
|
|
|
|
|
|
class SignalsSchema(BaseModel):
|
|
timestamp: int = Field(...)
|
|
action: str = Field(...)
|
|
source: str = Field(...)
|
|
category: str = Field(...)
|
|
data: dict = Field(default={})
|
|
|
|
|
|
class InsightCategories(str, Enum):
|
|
errors = "errors"
|
|
network = "network"
|
|
rage = "rage"
|
|
resources = "resources"
|
|
|
|
|
|
class GetInsightsSchema(schemas._TimedSchema):
|
|
startTimestamp: int = Field(default=TimeUTC.now(-7))
|
|
endTimestamp: int = Field(default=TimeUTC.now())
|
|
metricValue: List[InsightCategories] = Field(default=[])
|
|
series: List[schemas.CardSeriesSchema] = Field(default=[])
|
|
|
|
|
|
class CreateMemberSchema(schemas.CreateMemberSchema):
|
|
roleId: Optional[int] = Field(None)
|
|
|
|
|
|
class EditMemberSchema(BaseModel):
|
|
name: str = Field(...)
|
|
email: EmailStr = Field(...)
|
|
admin: bool = Field(False)
|
|
roleId: int = Field(...)
|
|
|
|
|
|
class TrailSearchPayloadSchema(schemas._PaginatedSchema):
|
|
limit: int = Field(default=200, gt=0)
|
|
startDate: int = Field(default=TimeUTC.now(-7))
|
|
endDate: int = Field(default=TimeUTC.now(1))
|
|
user_id: Optional[int] = Field(default=None)
|
|
query: Optional[str] = Field(default=None)
|
|
action: Optional[str] = Field(default=None)
|
|
order: schemas.SortOrderType = Field(default=schemas.SortOrderType.desc)
|
|
|
|
@model_validator(mode="before")
|
|
def transform_order(cls, values):
|
|
if values.get("order") is None:
|
|
values["order"] = schemas.SortOrderType.desc
|
|
else:
|
|
values["order"] = values["order"].upper()
|
|
return values
|
|
|
|
|
|
class SessionModel(BaseModel):
|
|
viewed: bool = Field(default=False)
|
|
userId: Optional[str]
|
|
userOs: str
|
|
duration: int
|
|
favorite: bool = Field(default=False)
|
|
platform: str
|
|
startTs: int
|
|
userUuid: str
|
|
projectId: int
|
|
sessionId: str
|
|
issueScore: int
|
|
issueTypes: List[schemas.IssueType] = Field(default=[])
|
|
pagesCount: int
|
|
userDevice: Optional[str]
|
|
errorsCount: int
|
|
eventsCount: int
|
|
userBrowser: str
|
|
userCountry: str
|
|
userCity: str
|
|
userState: str
|
|
userDeviceType: str
|
|
userAnonymousId: Optional[str]
|
|
metadata: dict = Field(default={})
|
|
|
|
|
|
class AssistRecordUpdatePayloadSchema(BaseModel):
|
|
name: str = Field(..., min_length=1)
|
|
_transform_name = field_validator('name', mode="before")(remove_whitespace)
|
|
|
|
|
|
class AssistRecordPayloadSchema(AssistRecordUpdatePayloadSchema):
|
|
duration: int = Field(...)
|
|
session_id: int = Field(...)
|
|
|
|
|
|
class AssistRecordSavePayloadSchema(AssistRecordPayloadSchema):
|
|
key: str = Field(...)
|
|
|
|
|
|
class AssistRecordSearchPayloadSchema(schemas._PaginatedSchema, schemas._TimedSchema):
|
|
user_id: Optional[int] = Field(default=None)
|
|
query: Optional[str] = Field(default=None)
|
|
order: Literal["asc", "desc"] = Field(default="desc")
|
|
|
|
|
|
# TODO: move these to schema when Insights is supported on PG
|
|
class CardInsights(schemas.CardInsights):
|
|
metric_value: List[InsightCategories] = Field(default=[])
|
|
|
|
@model_validator(mode='after')
|
|
def restrictions(cls, values):
|
|
return values
|
|
|
|
|
|
CardSchema = ORUnion(Union[schemas.__cards_union_base, CardInsights], discriminator='metric_type')
|