- debugging - smtp status - session's issues - session's issue_types as array - changed Slack error message
83 lines
2.7 KiB
Python
83 lines
2.7 KiB
Python
from chalicelib.utils import pg_client
|
|
from chalicelib.utils import helper
|
|
from chalicelib.core import users
|
|
|
|
|
|
def get_by_tenant_id(tenant_id):
|
|
with pg_client.PostgresClient() as cur:
|
|
cur.execute(
|
|
cur.mogrify(
|
|
f"""SELECT
|
|
tenant_id,
|
|
name,
|
|
api_key,
|
|
created_at,
|
|
edition,
|
|
version_number,
|
|
opt_out
|
|
FROM public.tenants
|
|
LIMIT 1;""",
|
|
{"tenantId": tenant_id})
|
|
)
|
|
return helper.dict_to_camel_case(cur.fetchone())
|
|
|
|
|
|
def get_by_api_key(api_key):
|
|
with pg_client.PostgresClient() as cur:
|
|
cur.execute(
|
|
cur.mogrify(
|
|
f"""SELECT
|
|
1 AS tenant_id,
|
|
name,
|
|
created_at
|
|
FROM public.tenants
|
|
WHERE api_key = %(api_key)s
|
|
LIMIT 1;""",
|
|
{"api_key": api_key})
|
|
)
|
|
return helper.dict_to_camel_case(cur.fetchone())
|
|
|
|
|
|
def generate_new_api_key(tenant_id):
|
|
with pg_client.PostgresClient() as cur:
|
|
cur.execute(
|
|
cur.mogrify(
|
|
f"""UPDATE public.tenants
|
|
SET api_key=generate_api_key(20)
|
|
RETURNING api_key;""",
|
|
{"tenant_id": tenant_id})
|
|
)
|
|
return helper.dict_to_camel_case(cur.fetchone())
|
|
|
|
|
|
def edit_client(tenant_id, changes):
|
|
with pg_client.PostgresClient() as cur:
|
|
cur.execute(
|
|
cur.mogrify(f"""\
|
|
UPDATE public.tenants
|
|
SET {", ".join([f"{helper.key_to_snake_case(k)} = %({k})s" for k in changes.keys()])}
|
|
RETURNING name, opt_out;""",
|
|
{"tenantId": tenant_id, **changes})
|
|
)
|
|
return helper.dict_to_camel_case(cur.fetchone())
|
|
|
|
|
|
def update(tenant_id, user_id, data):
|
|
admin = users.get(user_id=user_id, tenant_id=tenant_id)
|
|
|
|
if not admin["admin"] and not admin["superAdmin"]:
|
|
return {"error": "unauthorized"}
|
|
if "name" not in data and "optOut" not in data:
|
|
return {"errors": ["please provide 'name' of 'optOut' attribute for update"]}
|
|
changes = {}
|
|
if "name" in data:
|
|
changes["name"] = data["name"]
|
|
if "optOut" in data:
|
|
changes["optOut"] = data["optOut"]
|
|
return edit_client(tenant_id=tenant_id, changes=changes)
|
|
|
|
|
|
def get_tenants():
|
|
with pg_client.PostgresClient() as cur:
|
|
cur.execute(f"SELECT name FROM public.tenants")
|
|
return helper.list_to_camel_case(cur.fetchall())
|