app-MAIL-temp/init_app.py

74 lines
2.4 KiB
Python
Raw Normal View History

from app.config import (
ALIAS_DOMAINS,
PREMIUM_ALIAS_DOMAINS,
)
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
from app.proton.utils import PROTON_PARTNER_NAME
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"""
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
Session.commit()
for contact in Contact.filter(Contact.pgp_public_key.isnot(None)).all():
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)
contact.pgp_finger_print = fingerprint
2020-03-08 23:09:32 +01: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():
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)
else:
2021-09-08 11:29:55 +02:00
LOG.i("Add %s to SL domain", alias_domain)
SLDomain.create(domain=alias_domain, use_as_reverse_alias=True)
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)
SLDomain.create(
domain=premium_domain, premium_only=True, use_as_reverse_alias=True
)
2020-10-15 16:21:31 +02:00
Session.commit()
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__":
# 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()