* feat(DB): rearranged queries feat(DB): ready for v1.15.0 * refactor(chalice): upgraded dependencies refactor(crons): upgraded dependencies refactor(alerts): upgraded dependencies * fix(chalice): return error when updating inexistant webhook * feat(chalice): fixed delete webhook response * feat(chalice): limit webhooks name length * feat(chalice): upgraded dependencies feat(alerts): upgraded dependencies feat(crons): upgraded dependencies * fix(chalice): remove urllib3 dependency * feat(chalice): remove FOSS to pydantic v2 * fix(chalice): freeze urllib3 to not have conflicts between boto3 and requests * feat(chalice): refactoring schema in progress * feat(chalice): refactoring schema in progress * feat(chalice): refactoring schema in progress * feat(chalice): refactoring schema in progress feat(chalice): upgraded dependencies * feat(chalice): refactored schema * fix(chalice): pull rebase dev * feat(DB): transfer size support * feat(chalice): support service account * feat(chalice): support service account * fix(chalice): fixed refactored PayloadSchema-name * feat(chalice): path analysis * feat(chalice): support service account 1/2 * feat(DB): timezone support * feat(chalice): upgraded dependencies feat(alerts): upgraded dependencies feat(crons): upgraded dependencies feat(assist): upgraded dependencies feat(sourcemaps): upgraded dependencies * feat(chalice): path analysis schema changes * feat(chalice): path analysis query change * feat(chalice): path analysis query change * feat(chalice): ios replay support * feat(chalice): ios replay support * feat(chalice): path analysis changes * feat(chalice): upgraded dependencies * feat(chalice): simple hide minor paths * feat(chalice): path analysis density * feat(chalice): session's replay ios events * feat(chalice): fixed typo * feat(chalice): support project's platform * feat(DB): support project's platform * feat(chalice): path analysis EE in progress * feat(chalice): project's platform API * feat(chalice): fixed create project * feat(chalice): EE path analysis in progress * feat(chalice): EE path analysis refactor(chalice): support specific database name for clickhouse-client * feat(chalice): upgraded dependencies feat(chalice): path analysis specific event type for startPoint feat(chalice): path analysis specific event type for endPoint feat(chalice): path analysis specific event type for exclude * refactoring(chalice): changed IOS click event type
39 lines
1.3 KiB
Python
39 lines
1.3 KiB
Python
from decouple import config
|
|
from fastapi.security import SecurityScopes
|
|
|
|
import schemas
|
|
from chalicelib.core import permissions
|
|
from chalicelib.utils.storage import StorageClient
|
|
|
|
SCOPES = SecurityScopes([schemas.Permissions.dev_tools])
|
|
|
|
|
|
def __get_devtools_keys(project_id, session_id):
|
|
params = {
|
|
"sessionId": session_id,
|
|
"projectId": project_id
|
|
}
|
|
return [
|
|
config("DEVTOOLS_MOB_PATTERN", default="%(sessionId)sdevtools") % params
|
|
]
|
|
|
|
|
|
def get_urls(session_id, project_id, context: schemas.CurrentContext, check_existence: bool = True):
|
|
if not permissions.check(security_scopes=SCOPES, context=context):
|
|
return []
|
|
results = []
|
|
for k in __get_devtools_keys(project_id=project_id, session_id=session_id):
|
|
if check_existence and not StorageClient.exists(bucket=config("sessions_bucket"), key=k):
|
|
continue
|
|
results.append(StorageClient.get_presigned_url_for_sharing(
|
|
bucket=config("sessions_bucket"),
|
|
expires_in=config("PRESIGNED_URL_EXPIRATION", cast=int, default=900),
|
|
key=k
|
|
))
|
|
return results
|
|
|
|
|
|
def delete_mobs(project_id, session_ids):
|
|
for session_id in session_ids:
|
|
for k in __get_devtools_keys(project_id=project_id, session_id=session_id):
|
|
StorageClient.tag_for_deletion(bucket=config("sessions_bucket"), key=k)
|