2020-02-04 17:26:59 +01:00
|
|
|
from flask import g
|
|
|
|
from flask import jsonify, request
|
|
|
|
from flask_cors import cross_origin
|
|
|
|
|
|
|
|
from app.api.base import api_bp, verify_api_key
|
2020-03-14 12:22:43 +01:00
|
|
|
from app.config import PAGE_LIMIT
|
2020-02-05 12:57:11 +01:00
|
|
|
from app.dashboard.views.alias_log import get_alias_log
|
2020-02-04 17:26:59 +01:00
|
|
|
from app.dashboard.views.index import get_alias_info, AliasInfo
|
|
|
|
from app.extensions import db
|
2020-03-14 12:22:43 +01:00
|
|
|
from app.models import GenEmail, ForwardEmail, ForwardEmailLog
|
2020-02-04 17:26:59 +01:00
|
|
|
|
|
|
|
|
|
|
|
@api_bp.route("/aliases")
|
|
|
|
@cross_origin()
|
|
|
|
@verify_api_key
|
|
|
|
def get_aliases():
|
|
|
|
"""
|
|
|
|
Get aliases
|
|
|
|
Input:
|
|
|
|
page_id: in query
|
|
|
|
Output:
|
|
|
|
- aliases: list of alias:
|
|
|
|
- id
|
|
|
|
- email
|
|
|
|
- creation_date
|
|
|
|
- creation_timestamp
|
|
|
|
- nb_forward
|
|
|
|
- nb_block
|
|
|
|
- nb_reply
|
2020-03-11 12:13:38 +01:00
|
|
|
- note
|
2020-02-04 17:26:59 +01:00
|
|
|
|
|
|
|
"""
|
|
|
|
user = g.user
|
|
|
|
try:
|
|
|
|
page_id = int(request.args.get("page_id"))
|
|
|
|
except (ValueError, TypeError):
|
|
|
|
return jsonify(error="page_id must be provided in request query"), 400
|
|
|
|
|
2020-02-10 17:20:25 +01:00
|
|
|
aliases: [AliasInfo] = get_alias_info(user, page_id=page_id)
|
2020-02-04 17:26:59 +01:00
|
|
|
|
|
|
|
return (
|
|
|
|
jsonify(
|
|
|
|
aliases=[
|
|
|
|
{
|
|
|
|
"id": alias.id,
|
|
|
|
"email": alias.gen_email.email,
|
|
|
|
"creation_date": alias.gen_email.created_at.format(),
|
|
|
|
"creation_timestamp": alias.gen_email.created_at.timestamp,
|
|
|
|
"nb_forward": alias.nb_forward,
|
|
|
|
"nb_block": alias.nb_blocked,
|
|
|
|
"nb_reply": alias.nb_reply,
|
2020-02-05 12:23:13 +01:00
|
|
|
"enabled": alias.gen_email.enabled,
|
2020-03-11 12:13:38 +01:00
|
|
|
"note": alias.note,
|
2020-02-04 17:26:59 +01:00
|
|
|
}
|
|
|
|
for alias in aliases
|
|
|
|
]
|
|
|
|
),
|
|
|
|
200,
|
|
|
|
)
|
2020-02-05 12:21:17 +01:00
|
|
|
|
|
|
|
|
|
|
|
@api_bp.route("/aliases/<int:alias_id>", methods=["DELETE"])
|
|
|
|
@cross_origin()
|
|
|
|
@verify_api_key
|
|
|
|
def delete_alias(alias_id):
|
|
|
|
"""
|
|
|
|
Delete alias
|
|
|
|
Input:
|
|
|
|
alias_id: in url
|
|
|
|
Output:
|
|
|
|
200 if deleted successfully
|
|
|
|
|
|
|
|
"""
|
|
|
|
user = g.user
|
|
|
|
gen_email = GenEmail.get(alias_id)
|
|
|
|
|
|
|
|
if gen_email.user_id != user.id:
|
|
|
|
return jsonify(error="Forbidden"), 403
|
|
|
|
|
|
|
|
GenEmail.delete(alias_id)
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
return jsonify(deleted=True), 200
|
2020-02-05 12:28:54 +01:00
|
|
|
|
|
|
|
|
|
|
|
@api_bp.route("/aliases/<int:alias_id>/toggle", methods=["POST"])
|
|
|
|
@cross_origin()
|
|
|
|
@verify_api_key
|
|
|
|
def toggle_alias(alias_id):
|
|
|
|
"""
|
|
|
|
Enable/disable alias
|
|
|
|
Input:
|
|
|
|
alias_id: in url
|
|
|
|
Output:
|
|
|
|
200 along with new status:
|
|
|
|
- enabled
|
|
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
user = g.user
|
|
|
|
gen_email: GenEmail = GenEmail.get(alias_id)
|
|
|
|
|
|
|
|
if gen_email.user_id != user.id:
|
|
|
|
return jsonify(error="Forbidden"), 403
|
|
|
|
|
|
|
|
gen_email.enabled = not gen_email.enabled
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
return jsonify(enabled=gen_email.enabled), 200
|
2020-02-05 12:57:11 +01:00
|
|
|
|
|
|
|
|
|
|
|
@api_bp.route("/aliases/<int:alias_id>/activities")
|
|
|
|
@cross_origin()
|
|
|
|
@verify_api_key
|
|
|
|
def get_alias_activities(alias_id):
|
|
|
|
"""
|
|
|
|
Get aliases
|
|
|
|
Input:
|
|
|
|
page_id: in query
|
|
|
|
Output:
|
|
|
|
- activities: list of activity:
|
|
|
|
- from
|
|
|
|
- to
|
|
|
|
- timestamp
|
|
|
|
- action: forward|reply|block
|
|
|
|
|
|
|
|
"""
|
|
|
|
user = g.user
|
|
|
|
try:
|
|
|
|
page_id = int(request.args.get("page_id"))
|
|
|
|
except (ValueError, TypeError):
|
|
|
|
return jsonify(error="page_id must be provided in request query"), 400
|
|
|
|
|
|
|
|
gen_email: GenEmail = GenEmail.get(alias_id)
|
|
|
|
|
|
|
|
if gen_email.user_id != user.id:
|
|
|
|
return jsonify(error="Forbidden"), 403
|
|
|
|
|
|
|
|
alias_logs = get_alias_log(gen_email, page_id)
|
|
|
|
|
|
|
|
activities = []
|
|
|
|
for alias_log in alias_logs:
|
|
|
|
activity = {"timestamp": alias_log.when.timestamp}
|
|
|
|
if alias_log.is_reply:
|
|
|
|
activity["from"] = alias_log.alias
|
|
|
|
activity["to"] = alias_log.website_from or alias_log.website_email
|
|
|
|
activity["action"] = "reply"
|
|
|
|
else:
|
|
|
|
activity["to"] = alias_log.alias
|
|
|
|
activity["from"] = alias_log.website_from or alias_log.website_email
|
|
|
|
|
2020-02-22 07:27:22 +01:00
|
|
|
if alias_log.bounced:
|
|
|
|
activity["action"] = "bounced"
|
|
|
|
elif alias_log.blocked:
|
2020-02-05 12:57:11 +01:00
|
|
|
activity["action"] = "block"
|
|
|
|
else:
|
|
|
|
activity["action"] = "forward"
|
|
|
|
|
|
|
|
activities.append(activity)
|
|
|
|
|
2020-03-14 12:22:43 +01:00
|
|
|
return jsonify(activities=activities), 200
|
2020-03-14 11:38:39 +01:00
|
|
|
|
|
|
|
|
|
|
|
@api_bp.route("/aliases/<int:alias_id>", methods=["PUT"])
|
|
|
|
@cross_origin()
|
|
|
|
@verify_api_key
|
|
|
|
def update_alias(alias_id):
|
|
|
|
"""
|
|
|
|
Update alias note
|
|
|
|
Input:
|
|
|
|
alias_id: in url
|
|
|
|
note: in body
|
|
|
|
Output:
|
|
|
|
200
|
|
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
data = request.get_json()
|
|
|
|
if not data:
|
|
|
|
return jsonify(error="request body cannot be empty"), 400
|
|
|
|
|
|
|
|
user = g.user
|
|
|
|
gen_email: GenEmail = GenEmail.get(alias_id)
|
|
|
|
|
|
|
|
if gen_email.user_id != user.id:
|
|
|
|
return jsonify(error="Forbidden"), 403
|
|
|
|
|
|
|
|
new_note = data.get("note")
|
|
|
|
gen_email.note = new_note
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
return jsonify(note=new_note), 200
|
2020-03-14 12:22:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
def serialize_forward_email(fe: ForwardEmail) -> dict:
|
|
|
|
|
|
|
|
res = {
|
|
|
|
"creation_date": fe.created_at.format(),
|
|
|
|
"creation_timestamp": fe.created_at.timestamp,
|
|
|
|
"last_email_sent_date": None,
|
|
|
|
"last_email_sent_timestamp": None,
|
|
|
|
"contact": fe.website_from or fe.website_email,
|
|
|
|
"reverse_alias": fe.website_send_to(),
|
|
|
|
}
|
|
|
|
|
|
|
|
fel: ForwardEmailLog = fe.last_reply()
|
|
|
|
if fel:
|
|
|
|
res["last_email_sent_date"] = fel.created_at.format()
|
|
|
|
res["last_email_sent_timestamp"] = fel.created_at.timestamp
|
|
|
|
|
|
|
|
return res
|
|
|
|
|
|
|
|
|
|
|
|
def get_alias_contacts(gen_email, page_id: int) -> [dict]:
|
|
|
|
q = (
|
|
|
|
ForwardEmail.query.filter_by(gen_email_id=gen_email.id)
|
|
|
|
.order_by(ForwardEmail.id.desc())
|
|
|
|
.limit(PAGE_LIMIT)
|
|
|
|
.offset(page_id * PAGE_LIMIT)
|
|
|
|
)
|
|
|
|
|
|
|
|
res = []
|
|
|
|
for fe in q.all():
|
|
|
|
res.append(serialize_forward_email(fe))
|
|
|
|
|
|
|
|
return res
|
|
|
|
|
|
|
|
|
|
|
|
@api_bp.route("/aliases/<int:alias_id>/contacts")
|
|
|
|
@cross_origin()
|
|
|
|
@verify_api_key
|
|
|
|
def get_alias_contacts_route(alias_id):
|
|
|
|
"""
|
|
|
|
Get alias contacts
|
|
|
|
Input:
|
|
|
|
page_id: in query
|
|
|
|
Output:
|
|
|
|
- contacts: list of contacts:
|
|
|
|
- creation_date
|
|
|
|
- creation_timestamp
|
|
|
|
- last_email_sent_date
|
|
|
|
- last_email_sent_timestamp
|
|
|
|
- contact
|
|
|
|
- reverse_alias
|
|
|
|
|
|
|
|
"""
|
|
|
|
user = g.user
|
|
|
|
try:
|
|
|
|
page_id = int(request.args.get("page_id"))
|
|
|
|
except (ValueError, TypeError):
|
|
|
|
return jsonify(error="page_id must be provided in request query"), 400
|
|
|
|
|
|
|
|
gen_email: GenEmail = GenEmail.get(alias_id)
|
|
|
|
|
|
|
|
if gen_email.user_id != user.id:
|
|
|
|
return jsonify(error="Forbidden"), 403
|
|
|
|
|
|
|
|
contacts = get_alias_contacts(gen_email, page_id)
|
|
|
|
|
|
|
|
return jsonify(contacts=contacts), 200
|