mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
from typing import Optional
|
|
|
|
from synapse.storage._base import SQLBaseStore
|
|
|
|
|
|
class OpenIdStore(SQLBaseStore):
|
|
async def insert_open_id_token(
|
|
self, token: str, ts_valid_until_ms: int, user_id: str
|
|
) -> None:
|
|
await self.db_pool.simple_insert(
|
|
table="open_id_tokens",
|
|
values={
|
|
"token": token,
|
|
"ts_valid_until_ms": ts_valid_until_ms,
|
|
"user_id": user_id,
|
|
},
|
|
desc="insert_open_id_token",
|
|
)
|
|
|
|
async def get_user_id_for_open_id_token(
|
|
self, token: str, ts_now_ms: int
|
|
) -> Optional[str]:
|
|
def get_user_id_for_token_txn(txn):
|
|
sql = (
|
|
"SELECT user_id FROM open_id_tokens"
|
|
" WHERE token = ? AND ? <= ts_valid_until_ms"
|
|
)
|
|
|
|
txn.execute(sql, (token, ts_now_ms))
|
|
|
|
rows = txn.fetchall()
|
|
if not rows:
|
|
return None
|
|
else:
|
|
return rows[0][0]
|
|
|
|
return await self.db_pool.runInteraction(
|
|
"get_user_id_for_token", get_user_id_for_token_txn
|
|
)
|