seitime-frappe/frappe/www/unsubscribe.py
Ankush Menat 2eec621e95 chore: db.get_all -> get_all
Reduces 1 pointless function call.
Function calls are also not "super cheap" in python.
2022-08-22 11:35:14 +05:30

47 lines
1.5 KiB
Python

import frappe
from frappe.email.doctype.newsletter.newsletter import confirmed_unsubscribe
from frappe.utils.verified_command import verify_request
no_cache = True
def get_context(context):
frappe.flags.ignore_permissions = True
# Called for confirmation.
if "email" in frappe.form_dict and frappe.request.method == "GET":
if verify_request():
user_email = frappe.form_dict["email"]
context.email = user_email
title = frappe.form_dict["name"]
context.email_groups = get_email_groups(user_email)
context.current_group = get_current_groups(title)
context.status = "waiting_for_confirmation"
# Called when form is submitted.
elif "user_email" in frappe.form_dict and frappe.request.method == "POST":
context.status = "unsubscribed"
email = frappe.form_dict["user_email"]
email_group = get_email_groups(email)
for group in email_group:
if group.email_group in frappe.form_dict:
confirmed_unsubscribe(email, group.email_group)
# Called on Invalid or unsigned request.
else:
context.status = "invalid"
def get_email_groups(user_email):
# Return the all email_groups in which the email has been registered.
return frappe.get_all(
"Email Group Member", fields=["email_group"], filters={"email": user_email, "unsubscribed": 0}
)
def get_current_groups(name):
# Return current group by which the mail has been sent.
return frappe.get_all(
"Newsletter Email Group",
fields=["email_group"],
filters={"parent": name, "parenttype": "Newsletter"},
)