2019-12-31 20:20:17 +01:00
|
|
|
import arrow
|
|
|
|
from flask import render_template, flash, redirect, url_for
|
2019-11-16 18:45:23 +01:00
|
|
|
from flask_login import login_required, current_user
|
|
|
|
|
2020-02-04 17:28:05 +01:00
|
|
|
from app.config import PAGE_LIMIT
|
2019-11-16 18:45:23 +01:00
|
|
|
from app.dashboard.base import dashboard_bp
|
2021-10-12 14:36:47 +02:00
|
|
|
from app.db import Session
|
2020-03-17 11:51:40 +01:00
|
|
|
from app.models import Alias, EmailLog, Contact
|
2019-11-16 18:45:23 +01:00
|
|
|
|
|
|
|
|
|
|
|
class AliasLog:
|
2019-12-31 20:20:17 +01:00
|
|
|
website_email: str
|
2020-04-04 19:18:07 +02:00
|
|
|
reverse_alias: str
|
2019-12-31 20:20:17 +01:00
|
|
|
alias: str
|
|
|
|
when: arrow.Arrow
|
|
|
|
is_reply: bool
|
|
|
|
blocked: bool
|
2020-02-22 07:27:22 +01:00
|
|
|
bounced: bool
|
2020-05-10 18:41:22 +02:00
|
|
|
email_log: EmailLog
|
2020-11-17 09:27:30 +01:00
|
|
|
contact: Contact
|
2019-12-31 11:22:18 +01:00
|
|
|
|
|
|
|
def __init__(self, **kwargs):
|
|
|
|
for k, v in kwargs.items():
|
|
|
|
setattr(self, k, v)
|
2019-11-16 18:45:23 +01:00
|
|
|
|
|
|
|
|
2020-01-11 21:48:21 +01:00
|
|
|
@dashboard_bp.route(
|
|
|
|
"/alias_log/<int:alias_id>", methods=["GET"], defaults={"page_id": 0}
|
|
|
|
)
|
|
|
|
@dashboard_bp.route("/alias_log/<int:alias_id>/<int:page_id>")
|
2019-11-16 18:45:23 +01:00
|
|
|
@login_required
|
2020-01-11 21:48:21 +01:00
|
|
|
def alias_log(alias_id, page_id):
|
2020-03-17 11:51:40 +01:00
|
|
|
alias = Alias.get(alias_id)
|
2019-11-16 18:45:23 +01:00
|
|
|
|
|
|
|
# sanity check
|
2020-03-17 11:51:40 +01:00
|
|
|
if not alias:
|
2019-11-16 18:45:23 +01:00
|
|
|
flash("You do not have access to this page", "warning")
|
|
|
|
return redirect(url_for("dashboard.index"))
|
|
|
|
|
2020-03-17 11:51:40 +01:00
|
|
|
if alias.user_id != current_user.id:
|
2019-11-16 18:45:23 +01:00
|
|
|
flash("You do not have access to this page", "warning")
|
|
|
|
return redirect(url_for("dashboard.index"))
|
|
|
|
|
2020-03-17 11:51:40 +01:00
|
|
|
logs = get_alias_log(alias, page_id)
|
2020-01-05 22:49:48 +01:00
|
|
|
base = (
|
2021-10-12 14:36:47 +02:00
|
|
|
Session.query(Contact, EmailLog)
|
2020-03-17 11:10:50 +01:00
|
|
|
.filter(Contact.id == EmailLog.contact_id)
|
2020-03-17 12:01:18 +01:00
|
|
|
.filter(Contact.alias_id == alias.id)
|
2020-01-05 22:49:48 +01:00
|
|
|
)
|
|
|
|
total = base.count()
|
2020-01-07 00:02:12 +01:00
|
|
|
email_forwarded = (
|
2020-12-06 22:00:01 +01:00
|
|
|
base.filter(EmailLog.is_reply.is_(False))
|
|
|
|
.filter(EmailLog.blocked.is_(False))
|
2020-01-07 00:02:12 +01:00
|
|
|
.count()
|
|
|
|
)
|
2020-12-06 22:00:01 +01:00
|
|
|
email_replied = base.filter(EmailLog.is_reply.is_(True)).count()
|
|
|
|
email_blocked = base.filter(EmailLog.blocked.is_(True)).count()
|
2019-12-31 20:08:59 +01:00
|
|
|
last_page = (
|
2020-02-04 17:28:05 +01:00
|
|
|
len(logs) < PAGE_LIMIT
|
2019-12-31 20:08:59 +01:00
|
|
|
) # lightweight pagination without counting all objects
|
2019-12-31 11:11:06 +01:00
|
|
|
|
2019-12-31 11:22:18 +01:00
|
|
|
return render_template("dashboard/alias_log.html", **locals())
|
2019-11-16 18:45:23 +01:00
|
|
|
|
|
|
|
|
2020-04-05 16:32:38 +02:00
|
|
|
def get_alias_log(alias: Alias, page_id=0) -> [AliasLog]:
|
2019-11-16 18:45:23 +01:00
|
|
|
logs: [AliasLog] = []
|
|
|
|
|
|
|
|
q = (
|
2021-10-12 14:36:47 +02:00
|
|
|
Session.query(Contact, EmailLog)
|
2020-03-17 11:10:50 +01:00
|
|
|
.filter(Contact.id == EmailLog.contact_id)
|
2020-03-17 12:01:18 +01:00
|
|
|
.filter(Contact.alias_id == alias.id)
|
2020-03-17 11:10:50 +01:00
|
|
|
.order_by(EmailLog.id.desc())
|
2020-02-04 17:28:05 +01:00
|
|
|
.limit(PAGE_LIMIT)
|
|
|
|
.offset(page_id * PAGE_LIMIT)
|
2019-11-16 18:45:23 +01:00
|
|
|
)
|
|
|
|
|
2020-04-04 19:11:10 +02:00
|
|
|
for contact, email_log in q:
|
2019-11-16 18:45:23 +01:00
|
|
|
al = AliasLog(
|
2020-04-04 19:11:10 +02:00
|
|
|
website_email=contact.website_email,
|
2020-04-04 19:18:07 +02:00
|
|
|
reverse_alias=contact.website_send_to(),
|
2020-03-17 11:51:40 +01:00
|
|
|
alias=alias.email,
|
2020-04-04 19:11:10 +02:00
|
|
|
when=email_log.created_at,
|
|
|
|
is_reply=email_log.is_reply,
|
|
|
|
blocked=email_log.blocked,
|
|
|
|
bounced=email_log.bounced,
|
2020-05-10 18:41:22 +02:00
|
|
|
email_log=email_log,
|
2020-11-17 09:27:45 +01:00
|
|
|
contact=contact,
|
2019-11-16 18:45:23 +01:00
|
|
|
)
|
|
|
|
logs.append(al)
|
2023-11-21 16:42:18 +01:00
|
|
|
logs = sorted(logs, key=lambda log: log.when, reverse=True)
|
2019-11-16 18:45:23 +01:00
|
|
|
|
|
|
|
return logs
|