2020-02-03 07:11:11 +01:00
|
|
|
"""
|
|
|
|
Run scheduled jobs.
|
|
|
|
Not meant for running job at precise time (+- 1h)
|
|
|
|
"""
|
|
|
|
import time
|
|
|
|
|
|
|
|
import arrow
|
|
|
|
|
2020-04-02 23:26:17 +02:00
|
|
|
from app.config import (
|
|
|
|
JOB_ONBOARDING_1,
|
|
|
|
JOB_ONBOARDING_2,
|
|
|
|
JOB_ONBOARDING_4,
|
2020-09-10 20:14:55 +02:00
|
|
|
JOB_BATCH_IMPORT,
|
|
|
|
)
|
|
|
|
from app.email_utils import (
|
|
|
|
send_email,
|
|
|
|
render,
|
2020-04-02 23:26:17 +02:00
|
|
|
)
|
2021-03-10 23:08:33 +01:00
|
|
|
from app.import_utils import handle_batch_import
|
2020-02-03 07:11:11 +01:00
|
|
|
from app.extensions import db
|
|
|
|
from app.log import LOG
|
2021-03-13 15:46:12 +01:00
|
|
|
from app.models import User, Job, BatchImport
|
2020-02-03 07:11:11 +01:00
|
|
|
from server import create_app
|
|
|
|
|
|
|
|
|
|
|
|
# fix the database connection leak issue
|
|
|
|
# use this method instead of create_app
|
|
|
|
def new_app():
|
|
|
|
app = create_app()
|
|
|
|
|
|
|
|
@app.teardown_appcontext
|
|
|
|
def shutdown_session(response_or_exc):
|
|
|
|
# same as shutdown_session() in flask-sqlalchemy but this is not enough
|
|
|
|
db.session.remove()
|
|
|
|
|
|
|
|
# dispose the engine too
|
|
|
|
db.engine.dispose()
|
|
|
|
|
|
|
|
return app
|
|
|
|
|
|
|
|
|
2020-03-24 21:01:38 +01:00
|
|
|
def onboarding_send_from_alias(user):
|
2020-10-22 10:44:05 +02:00
|
|
|
to_email, unsubscribe_link, via_email = user.get_communication_email()
|
2020-09-12 14:33:27 +02:00
|
|
|
if not to_email:
|
|
|
|
return
|
|
|
|
|
2020-02-03 07:11:11 +01:00
|
|
|
send_email(
|
2020-09-12 14:33:27 +02:00
|
|
|
to_email,
|
2020-12-06 11:25:41 +01:00
|
|
|
"SimpleLogin Tip: Send emails from your alias",
|
2020-09-12 15:51:43 +02:00
|
|
|
render("com/onboarding/send-from-alias.txt", user=user, to_email=to_email),
|
|
|
|
render("com/onboarding/send-from-alias.html", user=user, to_email=to_email),
|
2020-10-22 10:44:05 +02:00
|
|
|
unsubscribe_link,
|
|
|
|
via_email,
|
2020-02-03 07:11:11 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-03-24 21:01:38 +01:00
|
|
|
def onboarding_pgp(user):
|
2020-10-22 10:44:05 +02:00
|
|
|
to_email, unsubscribe_link, via_email = user.get_communication_email()
|
2020-09-12 14:33:27 +02:00
|
|
|
if not to_email:
|
|
|
|
return
|
|
|
|
|
2020-03-24 21:01:38 +01:00
|
|
|
send_email(
|
2020-09-12 14:33:27 +02:00
|
|
|
to_email,
|
2020-12-06 11:25:41 +01:00
|
|
|
"SimpleLogin Tip: Secure your emails with PGP",
|
2020-09-12 15:51:43 +02:00
|
|
|
render("com/onboarding/pgp.txt", user=user, to_email=to_email),
|
|
|
|
render("com/onboarding/pgp.html", user=user, to_email=to_email),
|
2020-10-22 10:44:05 +02:00
|
|
|
unsubscribe_link,
|
|
|
|
via_email,
|
2020-03-24 21:01:38 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-04-02 23:26:17 +02:00
|
|
|
def onboarding_browser_extension(user):
|
2020-10-22 10:44:05 +02:00
|
|
|
to_email, unsubscribe_link, via_email = user.get_communication_email()
|
2020-09-12 14:33:27 +02:00
|
|
|
if not to_email:
|
|
|
|
return
|
|
|
|
|
2020-04-02 23:26:17 +02:00
|
|
|
send_email(
|
2020-09-12 14:33:27 +02:00
|
|
|
to_email,
|
2020-12-06 11:25:41 +01:00
|
|
|
"SimpleLogin Tip: Chrome/Firefox/Safari extensions and Android/iOS apps",
|
2020-09-12 15:51:43 +02:00
|
|
|
render("com/onboarding/browser-extension.txt", user=user, to_email=to_email),
|
|
|
|
render("com/onboarding/browser-extension.html", user=user, to_email=to_email),
|
2020-10-22 10:44:05 +02:00
|
|
|
unsubscribe_link,
|
|
|
|
via_email,
|
2020-04-02 23:26:17 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-03-24 21:19:45 +01:00
|
|
|
def onboarding_mailbox(user):
|
2020-10-22 10:44:05 +02:00
|
|
|
to_email, unsubscribe_link, via_email = user.get_communication_email()
|
2020-09-12 14:33:27 +02:00
|
|
|
if not to_email:
|
|
|
|
return
|
|
|
|
|
2020-03-24 21:19:45 +01:00
|
|
|
send_email(
|
2020-09-12 14:33:27 +02:00
|
|
|
to_email,
|
2020-12-06 11:25:41 +01:00
|
|
|
"SimpleLogin Tip: Multiple mailboxes",
|
2020-09-12 15:51:43 +02:00
|
|
|
render("com/onboarding/mailbox.txt", user=user, to_email=to_email),
|
|
|
|
render("com/onboarding/mailbox.html", user=user, to_email=to_email),
|
2020-10-22 10:44:05 +02:00
|
|
|
unsubscribe_link,
|
|
|
|
via_email,
|
2020-03-24 21:19:45 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-02-03 07:11:11 +01:00
|
|
|
if __name__ == "__main__":
|
|
|
|
while True:
|
|
|
|
# run a job 1h earlier or later is not a big deal ...
|
|
|
|
min_dt = arrow.now().shift(hours=-1)
|
|
|
|
max_dt = arrow.now().shift(hours=1)
|
|
|
|
|
|
|
|
app = new_app()
|
|
|
|
|
|
|
|
with app.app_context():
|
|
|
|
for job in Job.query.filter(
|
2020-12-06 11:25:41 +01:00
|
|
|
Job.taken.is_(False), Job.run_at > min_dt, Job.run_at <= max_dt
|
2020-02-03 07:11:11 +01:00
|
|
|
).all():
|
|
|
|
LOG.d("Take job %s", job)
|
|
|
|
|
|
|
|
# mark the job as taken, whether it will be executed successfully or not
|
|
|
|
job.taken = True
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
if job.name == JOB_ONBOARDING_1:
|
|
|
|
user_id = job.payload.get("user_id")
|
|
|
|
user = User.get(user_id)
|
|
|
|
|
2020-02-15 11:10:49 +01:00
|
|
|
# user might delete their account in the meantime
|
2020-03-24 21:01:38 +01:00
|
|
|
# or disable the notification
|
|
|
|
if user and user.notification and user.activated:
|
|
|
|
LOG.d("send onboarding send-from-alias email to user %s", user)
|
|
|
|
onboarding_send_from_alias(user)
|
|
|
|
elif job.name == JOB_ONBOARDING_2:
|
|
|
|
user_id = job.payload.get("user_id")
|
|
|
|
user = User.get(user_id)
|
|
|
|
|
|
|
|
# user might delete their account in the meantime
|
|
|
|
# or disable the notification
|
|
|
|
if user and user.notification and user.activated:
|
2020-03-24 21:23:26 +01:00
|
|
|
LOG.d("send onboarding mailbox email to user %s", user)
|
|
|
|
onboarding_mailbox(user)
|
2020-04-02 23:26:17 +02:00
|
|
|
elif job.name == JOB_ONBOARDING_4:
|
|
|
|
user_id = job.payload.get("user_id")
|
|
|
|
user = User.get(user_id)
|
|
|
|
|
|
|
|
# user might delete their account in the meantime
|
|
|
|
# or disable the notification
|
|
|
|
if user and user.notification and user.activated:
|
2020-09-09 22:16:10 +02:00
|
|
|
LOG.d("send onboarding pgp email to user %s", user)
|
|
|
|
onboarding_pgp(user)
|
2020-04-02 23:26:17 +02:00
|
|
|
|
2020-09-10 20:14:55 +02:00
|
|
|
elif job.name == JOB_BATCH_IMPORT:
|
|
|
|
batch_import_id = job.payload.get("batch_import_id")
|
|
|
|
batch_import = BatchImport.get(batch_import_id)
|
|
|
|
handle_batch_import(batch_import)
|
|
|
|
|
2020-02-03 07:11:11 +01:00
|
|
|
else:
|
2020-07-17 12:59:07 +02:00
|
|
|
LOG.exception("Unknown job name %s", job.name)
|
2020-02-03 07:11:11 +01:00
|
|
|
|
|
|
|
time.sleep(10)
|