2023-06-21 18:56:22 +02:00
|
|
|
import base64
|
|
|
|
import binascii
|
|
|
|
import json
|
|
|
|
|
2020-02-10 17:17:05 +01:00
|
|
|
from flask import render_template, request, redirect, url_for, flash
|
|
|
|
from flask_login import login_required, current_user
|
|
|
|
from flask_wtf import FlaskForm
|
2023-01-12 12:34:14 +01:00
|
|
|
from itsdangerous import TimestampSigner
|
2023-01-17 11:55:34 +01:00
|
|
|
from wtforms import validators, IntegerField
|
2020-02-10 17:17:05 +01:00
|
|
|
from wtforms.fields.html5 import EmailField
|
|
|
|
|
2024-07-30 18:00:24 +02:00
|
|
|
from app import parallel_limiter, mailbox_utils, user_settings
|
2024-07-30 13:36:48 +02:00
|
|
|
from app.config import MAILBOX_SECRET
|
2020-02-10 17:17:05 +01:00
|
|
|
from app.dashboard.base import dashboard_bp
|
2021-10-12 14:36:47 +02:00
|
|
|
from app.db import Session
|
2023-05-09 18:04:04 +02:00
|
|
|
from app.log import LOG
|
2024-07-30 13:36:48 +02:00
|
|
|
from app.models import Mailbox
|
2022-10-27 10:04:47 +02:00
|
|
|
from app.utils import CSRFValidationForm
|
2020-02-10 17:17:05 +01:00
|
|
|
|
|
|
|
|
|
|
|
class NewMailboxForm(FlaskForm):
|
|
|
|
email = EmailField(
|
|
|
|
"email", validators=[validators.DataRequired(), validators.Email()]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2023-01-17 11:55:34 +01:00
|
|
|
class DeleteMailboxForm(FlaskForm):
|
|
|
|
mailbox_id = IntegerField(
|
|
|
|
validators=[validators.DataRequired()],
|
|
|
|
)
|
|
|
|
transfer_mailbox_id = IntegerField()
|
|
|
|
|
|
|
|
|
2020-02-10 17:17:05 +01:00
|
|
|
@dashboard_bp.route("/mailbox", methods=["GET", "POST"])
|
|
|
|
@login_required
|
2023-01-11 22:08:52 +01:00
|
|
|
@parallel_limiter.lock(only_when=lambda: request.method == "POST")
|
2020-02-10 17:17:05 +01:00
|
|
|
def mailbox_route():
|
2020-04-28 20:22:37 +02:00
|
|
|
mailboxes = (
|
2021-10-12 14:36:47 +02:00
|
|
|
Mailbox.filter_by(user_id=current_user.id)
|
2020-04-28 20:22:37 +02:00
|
|
|
.order_by(Mailbox.created_at.desc())
|
|
|
|
.all()
|
|
|
|
)
|
2020-02-10 17:17:05 +01:00
|
|
|
|
|
|
|
new_mailbox_form = NewMailboxForm()
|
2022-10-27 10:04:47 +02:00
|
|
|
csrf_form = CSRFValidationForm()
|
2023-01-17 11:55:34 +01:00
|
|
|
delete_mailbox_form = DeleteMailboxForm()
|
2020-02-10 17:17:05 +01:00
|
|
|
|
|
|
|
if request.method == "POST":
|
|
|
|
if request.form.get("form-name") == "delete":
|
2023-01-17 11:55:34 +01:00
|
|
|
if not delete_mailbox_form.validate():
|
|
|
|
flash("Invalid request", "warning")
|
|
|
|
return redirect(request.url)
|
2024-07-30 13:36:48 +02:00
|
|
|
try:
|
|
|
|
mailbox = mailbox_utils.delete_mailbox(
|
|
|
|
current_user,
|
|
|
|
delete_mailbox_form.mailbox_id.data,
|
|
|
|
delete_mailbox_form.transfer_mailbox_id.data,
|
|
|
|
)
|
|
|
|
except mailbox_utils.MailboxError as e:
|
|
|
|
flash(e.msg, "warning")
|
2020-02-23 09:41:53 +01:00
|
|
|
return redirect(url_for("dashboard.mailbox_route"))
|
2021-08-15 17:50:47 +02:00
|
|
|
flash(
|
|
|
|
f"Mailbox {mailbox.email} scheduled for deletion."
|
|
|
|
f"You will receive a confirmation email when the deletion is finished",
|
|
|
|
"success",
|
|
|
|
)
|
2020-02-23 09:51:26 +01:00
|
|
|
return redirect(url_for("dashboard.mailbox_route"))
|
2024-07-30 13:36:48 +02:00
|
|
|
|
2020-02-23 09:51:26 +01:00
|
|
|
if request.form.get("form-name") == "set-default":
|
2023-01-17 11:55:34 +01:00
|
|
|
if not csrf_form.validate():
|
|
|
|
flash("Invalid request", "warning")
|
|
|
|
return redirect(request.url)
|
2024-07-30 13:36:48 +02:00
|
|
|
try:
|
|
|
|
mailbox_id = request.form.get("mailbox_id")
|
2024-07-30 18:00:24 +02:00
|
|
|
mailbox = user_settings.set_default_mailbox(current_user, mailbox_id)
|
|
|
|
except user_settings.CannotSetMailbox as e:
|
2024-07-30 13:36:48 +02:00
|
|
|
flash(e.msg, "warning")
|
2020-02-23 09:51:26 +01:00
|
|
|
return redirect(url_for("dashboard.mailbox_route"))
|
|
|
|
|
|
|
|
flash(f"Mailbox {mailbox.email} is set as Default Mailbox", "success")
|
|
|
|
|
2020-02-10 17:17:05 +01:00
|
|
|
return redirect(url_for("dashboard.mailbox_route"))
|
|
|
|
|
|
|
|
elif request.form.get("form-name") == "create":
|
2024-07-30 13:36:48 +02:00
|
|
|
if not new_mailbox_form.validate():
|
|
|
|
flash("Invalid request", "warning")
|
|
|
|
return redirect(request.url)
|
|
|
|
mailbox_email = new_mailbox_form.email.data.lower().strip().replace(" ", "")
|
|
|
|
try:
|
2024-08-02 14:53:46 +02:00
|
|
|
mailbox = mailbox_utils.create_mailbox(
|
|
|
|
current_user, mailbox_email
|
|
|
|
).mailbox
|
2024-07-30 13:36:48 +02:00
|
|
|
except mailbox_utils.MailboxError as e:
|
|
|
|
flash(e.msg, "warning")
|
2020-02-29 12:12:55 +01:00
|
|
|
return redirect(url_for("dashboard.mailbox_route"))
|
2023-05-09 18:04:04 +02:00
|
|
|
|
2024-07-30 13:36:48 +02:00
|
|
|
flash(
|
|
|
|
f"You are going to receive an email to confirm {mailbox.email}.",
|
|
|
|
"success",
|
|
|
|
)
|
2023-05-09 18:04:04 +02:00
|
|
|
|
2024-07-30 13:36:48 +02:00
|
|
|
return redirect(
|
|
|
|
url_for(
|
|
|
|
"dashboard.mailbox_detail_route",
|
|
|
|
mailbox_id=mailbox.id,
|
|
|
|
)
|
|
|
|
)
|
2020-02-10 17:17:05 +01:00
|
|
|
|
|
|
|
return render_template(
|
|
|
|
"dashboard/mailbox.html",
|
|
|
|
mailboxes=mailboxes,
|
|
|
|
new_mailbox_form=new_mailbox_form,
|
2023-01-17 11:55:34 +01:00
|
|
|
delete_mailbox_form=delete_mailbox_form,
|
2022-10-27 10:04:47 +02:00
|
|
|
csrf_form=csrf_form,
|
2020-02-10 17:17:05 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@dashboard_bp.route("/mailbox_verify")
|
2024-07-30 15:43:32 +02:00
|
|
|
@login_required
|
2020-02-10 17:17:05 +01:00
|
|
|
def mailbox_verify():
|
2024-07-30 13:36:48 +02:00
|
|
|
mailbox_id = request.args.get("mailbox_id")
|
|
|
|
code = request.args.get("code")
|
|
|
|
if not code:
|
|
|
|
# Old way
|
|
|
|
return verify_with_signed_secret(mailbox_id)
|
2024-07-30 15:43:32 +02:00
|
|
|
mailbox = mailbox_utils.verify_mailbox_code(current_user, mailbox_id, code)
|
2024-07-30 13:36:48 +02:00
|
|
|
LOG.d("Mailbox %s is verified", mailbox)
|
|
|
|
return render_template("dashboard/mailbox_validation.html", mailbox=mailbox)
|
|
|
|
|
|
|
|
|
|
|
|
def verify_with_signed_secret(request: str):
|
2023-01-12 12:34:14 +01:00
|
|
|
s = TimestampSigner(MAILBOX_SECRET)
|
2023-06-21 18:56:22 +02:00
|
|
|
mailbox_verify_request = request.args.get("mailbox_id")
|
2020-02-10 17:17:05 +01:00
|
|
|
try:
|
2023-06-21 18:56:22 +02:00
|
|
|
mailbox_raw_data = s.unsign(mailbox_verify_request, max_age=900)
|
2020-03-09 09:17:40 +01:00
|
|
|
except Exception:
|
2020-02-10 17:17:05 +01:00
|
|
|
flash("Invalid link. Please delete and re-add your mailbox", "error")
|
2020-03-09 09:17:40 +01:00
|
|
|
return redirect(url_for("dashboard.mailbox_route"))
|
2023-06-21 18:56:22 +02:00
|
|
|
try:
|
|
|
|
decoded_data = base64.urlsafe_b64decode(mailbox_raw_data)
|
|
|
|
except binascii.Error:
|
|
|
|
flash("Invalid link. Please delete and re-add your mailbox", "error")
|
|
|
|
return redirect(url_for("dashboard.mailbox_route"))
|
|
|
|
mailbox_data = json.loads(decoded_data)
|
|
|
|
if not isinstance(mailbox_data, list) or len(mailbox_data) != 2:
|
|
|
|
flash("Invalid link. Please delete and re-add your mailbox", "error")
|
|
|
|
return redirect(url_for("dashboard.mailbox_route"))
|
|
|
|
mailbox_id = mailbox_data[0]
|
|
|
|
mailbox = Mailbox.get(mailbox_id)
|
|
|
|
if not mailbox:
|
|
|
|
flash("Invalid link", "error")
|
|
|
|
return redirect(url_for("dashboard.mailbox_route"))
|
|
|
|
mailbox_email = mailbox_data[1]
|
|
|
|
if mailbox_email != mailbox.email:
|
|
|
|
flash("Invalid link", "error")
|
|
|
|
return redirect(url_for("dashboard.mailbox_route"))
|
2020-05-06 10:06:05 +02:00
|
|
|
|
2023-06-21 18:56:22 +02:00
|
|
|
mailbox.verified = True
|
|
|
|
Session.commit()
|
2020-02-10 17:17:05 +01:00
|
|
|
|
2023-06-21 18:56:22 +02:00
|
|
|
LOG.d("Mailbox %s is verified", mailbox)
|
2020-03-14 14:45:37 +01:00
|
|
|
|
2023-06-21 18:56:22 +02:00
|
|
|
return render_template("dashboard/mailbox_validation.html", mailbox=mailbox)
|