2022-01-03 10:33:21 +01:00
|
|
|
from app.config import (
|
|
|
|
ALIAS_DOMAINS,
|
|
|
|
PREMIUM_ALIAS_DOMAINS,
|
|
|
|
)
|
2021-10-12 14:36:47 +02:00
|
|
|
from app.db import Session
|
2020-03-08 23:09:32 +01:00
|
|
|
from app.log import LOG
|
2022-03-14 09:33:31 +01:00
|
|
|
from app.models import Mailbox, Contact, SLDomain, Partner
|
2020-03-08 23:09:32 +01:00
|
|
|
from app.pgp_utils import load_public_key
|
2022-06-20 14:34:20 +02:00
|
|
|
from app.proton.utils import PROTON_PARTNER_NAME
|
2021-10-26 10:52:28 +02:00
|
|
|
from server import create_light_app
|
2020-03-08 23:09:32 +01:00
|
|
|
|
|
|
|
|
2020-06-07 12:46:59 +02:00
|
|
|
def load_pgp_public_keys():
|
2020-03-08 23:09:32 +01:00
|
|
|
"""Load PGP public key to keyring"""
|
2021-10-12 14:36:47 +02:00
|
|
|
for mailbox in Mailbox.filter(Mailbox.pgp_public_key.isnot(None)).all():
|
2020-06-07 12:46:59 +02:00
|
|
|
LOG.d("Load PGP key for mailbox %s", mailbox)
|
|
|
|
fingerprint = load_public_key(mailbox.pgp_public_key)
|
2020-03-08 23:09:32 +01:00
|
|
|
|
2020-06-07 12:46:59 +02:00
|
|
|
# sanity check
|
|
|
|
if fingerprint != mailbox.pgp_finger_print:
|
2021-09-08 11:29:55 +02:00
|
|
|
LOG.e("fingerprint %s different for mailbox %s", fingerprint, mailbox)
|
2020-06-07 12:46:59 +02:00
|
|
|
mailbox.pgp_finger_print = fingerprint
|
2021-10-12 14:36:47 +02:00
|
|
|
Session.commit()
|
2020-06-07 00:09:06 +02:00
|
|
|
|
2021-10-12 14:36:47 +02:00
|
|
|
for contact in Contact.filter(Contact.pgp_public_key.isnot(None)).all():
|
2020-06-07 00:09:06 +02:00
|
|
|
LOG.d("Load PGP key for %s", contact)
|
|
|
|
fingerprint = load_public_key(contact.pgp_public_key)
|
|
|
|
|
|
|
|
# sanity check
|
|
|
|
if fingerprint != contact.pgp_finger_print:
|
2021-09-08 11:29:55 +02:00
|
|
|
LOG.e("fingerprint %s different for contact %s", fingerprint, contact)
|
2020-06-07 00:09:06 +02:00
|
|
|
contact.pgp_finger_print = fingerprint
|
2020-03-08 23:09:32 +01:00
|
|
|
|
2021-10-12 14:36:47 +02:00
|
|
|
Session.commit()
|
2020-03-08 23:09:32 +01:00
|
|
|
|
2020-03-14 22:24:02 +01:00
|
|
|
LOG.d("Finish load_pgp_public_keys")
|
|
|
|
|
2020-03-08 23:09:32 +01:00
|
|
|
|
2020-10-15 16:51:07 +02:00
|
|
|
def add_sl_domains():
|
2020-07-04 23:18:30 +02:00
|
|
|
for alias_domain in ALIAS_DOMAINS:
|
2020-10-15 16:51:07 +02:00
|
|
|
if SLDomain.get_by(domain=alias_domain):
|
2020-10-15 18:38:39 +02:00
|
|
|
LOG.d("%s is already a SL domain", alias_domain)
|
2020-07-04 23:18:30 +02:00
|
|
|
else:
|
2021-09-08 11:29:55 +02:00
|
|
|
LOG.i("Add %s to SL domain", alias_domain)
|
2023-04-20 12:14:53 +02:00
|
|
|
SLDomain.create(domain=alias_domain, use_as_reverse_alias=True)
|
2020-07-04 23:18:30 +02:00
|
|
|
|
2020-10-15 16:21:31 +02:00
|
|
|
for premium_domain in PREMIUM_ALIAS_DOMAINS:
|
2020-10-15 16:51:07 +02:00
|
|
|
if SLDomain.get_by(domain=premium_domain):
|
2020-10-15 18:38:39 +02:00
|
|
|
LOG.d("%s is already a SL domain", premium_domain)
|
2020-10-15 16:21:31 +02:00
|
|
|
else:
|
2021-09-08 11:29:55 +02:00
|
|
|
LOG.i("Add %s to SL domain", premium_domain)
|
2023-04-20 12:14:53 +02:00
|
|
|
SLDomain.create(
|
|
|
|
domain=premium_domain, premium_only=True, use_as_reverse_alias=True
|
|
|
|
)
|
2020-10-15 16:21:31 +02:00
|
|
|
|
2021-10-12 14:36:47 +02:00
|
|
|
Session.commit()
|
2020-07-04 23:18:30 +02:00
|
|
|
|
|
|
|
|
2022-03-14 09:33:31 +01:00
|
|
|
def add_proton_partner():
|
|
|
|
proton_partner = Partner.get_by(name=PROTON_PARTNER_NAME)
|
|
|
|
if not proton_partner:
|
|
|
|
Partner.create(
|
|
|
|
name=PROTON_PARTNER_NAME,
|
|
|
|
contact_email="simplelogin@protonmail.com",
|
|
|
|
)
|
|
|
|
Session.commit()
|
|
|
|
|
|
|
|
|
2020-03-08 23:09:32 +01:00
|
|
|
if __name__ == "__main__":
|
2021-10-26 10:52:28 +02:00
|
|
|
# wrap in an app context to benefit from app setup like database cleanup, sentry integration, etc
|
|
|
|
with create_light_app().app_context():
|
|
|
|
load_pgp_public_keys()
|
|
|
|
add_sl_domains()
|