mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 17:08:30 +01:00
35f6e67053
* feat: set up UserAuditLog * refactor: extract payment callbacks into their own files + handle subscription user_audit_log * feat: handle account linking for user audit log * chore: user_audit_log for mailboxes * chore: user_audit_log for custom domains * chore: user_audit_log for contacts * chore: user_audit_log for directories * fix: do not enforce cronjob being defined in choices + enable user deletion * chore: user_audit_log for user deletion * refactor: change emit_user_audit_log function to receive the full user object * feat: add user_audit_log migration * test: fix tests * test: add some tests for user_audit_log * fix: spf record verification user_audit_log * chore: add missing index to user_audit_log.created_at * chore: add missing index to alias_audit_log.created_at
43 lines
1.5 KiB
Python
43 lines
1.5 KiB
Python
from newrelic import agent
|
|
from typing import Optional
|
|
|
|
from app.db import Session
|
|
from app.log import LOG
|
|
from app.errors import ProtonPartnerNotSetUp
|
|
from app.models import Partner, PartnerUser, User
|
|
from app.user_audit_log_utils import emit_user_audit_log, UserAuditLogAction
|
|
|
|
PROTON_PARTNER_NAME = "Proton"
|
|
_PROTON_PARTNER: Optional[Partner] = None
|
|
|
|
|
|
def get_proton_partner() -> Partner:
|
|
global _PROTON_PARTNER
|
|
if _PROTON_PARTNER is None:
|
|
partner = Partner.get_by(name=PROTON_PARTNER_NAME)
|
|
if partner is None:
|
|
raise ProtonPartnerNotSetUp
|
|
Session.expunge(partner)
|
|
_PROTON_PARTNER = partner
|
|
return _PROTON_PARTNER
|
|
|
|
|
|
def is_proton_partner(partner: Partner) -> bool:
|
|
return partner.name == PROTON_PARTNER_NAME
|
|
|
|
|
|
def perform_proton_account_unlink(current_user: User):
|
|
proton_partner = get_proton_partner()
|
|
partner_user = PartnerUser.get_by(
|
|
user_id=current_user.id, partner_id=proton_partner.id
|
|
)
|
|
if partner_user is not None:
|
|
LOG.info(f"User {current_user} has unlinked the account from {partner_user}")
|
|
emit_user_audit_log(
|
|
user=current_user,
|
|
action=UserAuditLogAction.UnlinkAccount,
|
|
message=f"User has unlinked the account (email={partner_user.partner_email} | external_user_id={partner_user.external_user_id})",
|
|
)
|
|
PartnerUser.delete(partner_user.id)
|
|
Session.commit()
|
|
agent.record_custom_event("AccountUnlinked", {"partner": proton_partner.name})
|