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
|
|
|
|
from itsdangerous import Signer, BadSignature
|
|
|
|
from wtforms import validators
|
|
|
|
from wtforms.fields.html5 import EmailField
|
|
|
|
|
2020-02-29 12:18:52 +01:00
|
|
|
from app.config import EMAIL_DOMAIN, ALIAS_DOMAINS, MAILBOX_SECRET, URL
|
2020-02-10 17:17:05 +01:00
|
|
|
from app.dashboard.base import dashboard_bp
|
|
|
|
from app.email_utils import (
|
|
|
|
can_be_used_as_personal_email,
|
|
|
|
email_already_used,
|
2020-03-08 10:05:13 +01:00
|
|
|
mailbox_already_used,
|
|
|
|
render,
|
|
|
|
send_email,
|
2020-02-10 17:17:05 +01:00
|
|
|
)
|
|
|
|
from app.extensions import db
|
|
|
|
from app.log import LOG
|
|
|
|
from app.models import Mailbox
|
|
|
|
|
|
|
|
|
|
|
|
class NewMailboxForm(FlaskForm):
|
|
|
|
email = EmailField(
|
|
|
|
"email", validators=[validators.DataRequired(), validators.Email()]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@dashboard_bp.route("/mailbox", methods=["GET", "POST"])
|
|
|
|
@login_required
|
|
|
|
def mailbox_route():
|
|
|
|
mailboxes = Mailbox.query.filter_by(user_id=current_user.id).all()
|
|
|
|
|
|
|
|
new_mailbox_form = NewMailboxForm()
|
|
|
|
|
|
|
|
if request.method == "POST":
|
|
|
|
if request.form.get("form-name") == "delete":
|
|
|
|
mailbox_id = request.form.get("mailbox-id")
|
|
|
|
mailbox = Mailbox.get(mailbox_id)
|
|
|
|
|
|
|
|
if not mailbox or mailbox.user_id != current_user.id:
|
|
|
|
flash("Unknown error. Refresh the page", "warning")
|
|
|
|
return redirect(url_for("dashboard.mailbox_route"))
|
|
|
|
|
2020-02-23 09:41:53 +01:00
|
|
|
if mailbox.id == current_user.default_mailbox_id:
|
|
|
|
flash("You cannot delete default mailbox", "error")
|
|
|
|
return redirect(url_for("dashboard.mailbox_route"))
|
|
|
|
|
2020-02-10 17:17:05 +01:00
|
|
|
email = mailbox.email
|
|
|
|
Mailbox.delete(mailbox_id)
|
|
|
|
db.session.commit()
|
|
|
|
flash(f"Mailbox {email} has been deleted", "success")
|
|
|
|
|
2020-02-23 09:51:26 +01:00
|
|
|
return redirect(url_for("dashboard.mailbox_route"))
|
|
|
|
if request.form.get("form-name") == "set-default":
|
|
|
|
mailbox_id = request.form.get("mailbox-id")
|
|
|
|
mailbox = Mailbox.get(mailbox_id)
|
|
|
|
|
|
|
|
if not mailbox or mailbox.user_id != current_user.id:
|
|
|
|
flash("Unknown error. Refresh the page", "warning")
|
|
|
|
return redirect(url_for("dashboard.mailbox_route"))
|
|
|
|
|
|
|
|
if mailbox.id == current_user.default_mailbox_id:
|
|
|
|
flash("This mailbox is already default one", "error")
|
|
|
|
return redirect(url_for("dashboard.mailbox_route"))
|
|
|
|
|
|
|
|
if not mailbox.verified:
|
|
|
|
flash("Cannot set unverified mailbox as default", "error")
|
|
|
|
return redirect(url_for("dashboard.mailbox_route"))
|
|
|
|
|
|
|
|
current_user.default_mailbox_id = mailbox.id
|
|
|
|
db.session.commit()
|
|
|
|
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":
|
2020-02-29 12:12:55 +01:00
|
|
|
if not current_user.is_premium():
|
|
|
|
flash("Only premium plan can add additional mailbox", "warning")
|
|
|
|
return redirect(url_for("dashboard.mailbox_route"))
|
2020-02-10 17:17:05 +01:00
|
|
|
|
|
|
|
if new_mailbox_form.validate():
|
|
|
|
mailbox_email = new_mailbox_form.email.data.lower()
|
|
|
|
|
2020-03-08 10:05:13 +01:00
|
|
|
if mailbox_already_used(mailbox_email, current_user):
|
2020-02-10 17:17:05 +01:00
|
|
|
flash(f"{mailbox_email} already used", "error")
|
|
|
|
elif not can_be_used_as_personal_email(mailbox_email):
|
2020-03-05 11:00:58 +01:00
|
|
|
flash(f"You cannot use {mailbox_email}.", "error")
|
2020-02-10 17:17:05 +01:00
|
|
|
else:
|
|
|
|
new_mailbox = Mailbox.create(
|
|
|
|
email=mailbox_email, user_id=current_user.id
|
|
|
|
)
|
|
|
|
db.session.commit()
|
|
|
|
|
2020-02-29 12:18:52 +01:00
|
|
|
s = Signer(MAILBOX_SECRET)
|
2020-02-10 17:17:05 +01:00
|
|
|
mailbox_id_signed = s.sign(str(new_mailbox.id)).decode()
|
|
|
|
verification_url = (
|
|
|
|
URL
|
|
|
|
+ "/dashboard/mailbox_verify"
|
|
|
|
+ f"?mailbox_id={mailbox_id_signed}"
|
|
|
|
)
|
|
|
|
send_email(
|
2020-02-10 17:50:18 +01:00
|
|
|
mailbox_email,
|
2020-02-10 17:17:05 +01:00
|
|
|
f"Please confirm your email {mailbox_email}",
|
|
|
|
render(
|
|
|
|
"transactional/verify-mailbox.txt",
|
|
|
|
user=current_user,
|
|
|
|
link=verification_url,
|
|
|
|
mailbox_email=mailbox_email,
|
|
|
|
),
|
|
|
|
render(
|
|
|
|
"transactional/verify-mailbox.html",
|
|
|
|
user=current_user,
|
|
|
|
link=verification_url,
|
|
|
|
mailbox_email=mailbox_email,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
flash(
|
|
|
|
f"You are going to receive an email to confirm {mailbox_email}.",
|
|
|
|
"success",
|
|
|
|
)
|
|
|
|
|
2020-03-08 22:59:19 +01:00
|
|
|
return redirect(
|
|
|
|
url_for(
|
|
|
|
"dashboard.mailbox_detail_route", mailbox_id=new_mailbox.id
|
|
|
|
)
|
|
|
|
)
|
2020-02-10 17:17:05 +01:00
|
|
|
|
|
|
|
return render_template(
|
|
|
|
"dashboard/mailbox.html",
|
|
|
|
mailboxes=mailboxes,
|
|
|
|
new_mailbox_form=new_mailbox_form,
|
|
|
|
EMAIL_DOMAIN=EMAIL_DOMAIN,
|
|
|
|
ALIAS_DOMAINS=ALIAS_DOMAINS,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@dashboard_bp.route("/mailbox_verify")
|
|
|
|
def mailbox_verify():
|
2020-02-29 12:18:52 +01:00
|
|
|
s = Signer(MAILBOX_SECRET)
|
2020-02-10 17:17:05 +01:00
|
|
|
mailbox_id = request.args.get("mailbox_id")
|
|
|
|
|
|
|
|
try:
|
|
|
|
r_id = int(s.unsign(mailbox_id))
|
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"))
|
2020-02-10 17:17:05 +01:00
|
|
|
else:
|
|
|
|
mailbox = Mailbox.get(r_id)
|
|
|
|
mailbox.verified = True
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
LOG.d("Mailbox %s is verified", mailbox)
|
|
|
|
flash(
|
|
|
|
f"The {mailbox.email} is now verified, you can start creating alias with it",
|
|
|
|
"success",
|
|
|
|
)
|
2020-03-08 22:59:19 +01:00
|
|
|
return redirect(
|
|
|
|
url_for("dashboard.mailbox_detail_route", mailbox_id=mailbox.id)
|
|
|
|
)
|