app-MAIL-temp/app/dashboard/views/alias_log.py

93 lines
2.6 KiB
Python
Raw Normal View History

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
from app.db import Session
from app.models import Alias, EmailLog, Contact
2019-11-16 18:45:23 +01:00
class AliasLog:
website_email: str
reverse_alias: str
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
contact: Contact
def __init__(self, **kwargs):
for k, v in kwargs.items():
setattr(self, k, v)
2019-11-16 18:45:23 +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
def alias_log(alias_id, page_id):
alias = Alias.get(alias_id)
2019-11-16 18:45:23 +01:00
# sanity check
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"))
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"))
logs = get_alias_log(alias, page_id)
2020-01-05 22:49:48 +01:00
base = (
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
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 = (
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,
reverse_alias=contact.website_send_to(),
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)
logs = sorted(logs, key=lambda log: log.when, reverse=True)
2019-11-16 18:45:23 +01:00
return logs