2020-10-08 15:42:52 +00:00
|
|
|
from zeep.client import Client as ZeepClient, Settings as ZeepSettings
|
2020-10-08 19:48:11 +00:00
|
|
|
from zeep.exceptions import Fault
|
2020-10-08 15:42:52 +00:00
|
|
|
|
2020-10-08 19:49:08 +00:00
|
|
|
from .lists import MailingList, MLUser
|
|
|
|
from .constants import SUBTOPICS, TOPICS, TEMPLATES
|
2020-10-08 19:48:11 +00:00
|
|
|
|
2020-10-08 15:42:52 +00:00
|
|
|
|
|
|
|
class Client:
|
|
|
|
def __init__(self, sympa_url: str):
|
|
|
|
self.sympa_url = sympa_url
|
2020-10-08 16:27:33 +00:00
|
|
|
self.zeep = ZeepClient(sympa_url + "/wsdl", settings=ZeepSettings(strict=False))
|
2020-10-08 18:59:19 +00:00
|
|
|
self.cookie = None
|
2020-10-08 15:42:52 +00:00
|
|
|
|
2020-10-08 16:27:33 +00:00
|
|
|
def login(self, email: str, password: str) -> None:
|
2020-10-08 15:42:52 +00:00
|
|
|
"""
|
|
|
|
Login into the API. Set a cookie for future connexions.
|
|
|
|
"""
|
|
|
|
result = self.zeep.service.login(email, password)
|
|
|
|
element = result._raw_elements[0]
|
|
|
|
self.cookie = element.text
|
|
|
|
self.zeep.settings.extra_http_headers = [("Cookie", f"sympa_session={element.text}")]
|
2020-10-08 18:47:28 +00:00
|
|
|
if self.check_cookie() != email:
|
2020-10-08 15:42:52 +00:00
|
|
|
# FIXME Better exception
|
|
|
|
raise Exception("Unknown error: given cookie is invalid")
|
2020-10-08 18:59:19 +00:00
|
|
|
self.email = email
|
2020-10-08 15:42:52 +00:00
|
|
|
print("Successfully authenticated!")
|
|
|
|
|
2020-10-08 18:59:19 +00:00
|
|
|
def logout(self):
|
|
|
|
"""
|
|
|
|
Clear cookie
|
|
|
|
"""
|
|
|
|
self.cookie = None
|
|
|
|
self.email = None
|
|
|
|
self.zeep.settings.extra_http_headers = []
|
|
|
|
|
2020-10-08 18:47:28 +00:00
|
|
|
def check_cookie(self) -> str:
|
2020-10-08 15:42:52 +00:00
|
|
|
"""
|
|
|
|
From the current cookie, retrieve the email address.
|
|
|
|
"""
|
|
|
|
result = self.zeep.service.checkCookie()
|
|
|
|
element = result._raw_elements[0]
|
|
|
|
return element.text
|
2020-10-08 16:27:33 +00:00
|
|
|
|
2020-10-08 18:47:28 +00:00
|
|
|
def is_subscriber(self, email: str, mailing_list: str, function: str = "subscriber") -> bool:
|
2020-10-08 16:27:33 +00:00
|
|
|
"""
|
|
|
|
Check if the given `email` is a member of type `function` in the `mailing_list`.
|
|
|
|
The function parameter is one between subscriber, editor or owner.
|
|
|
|
"""
|
|
|
|
if function not in ["subscriber", "editor", "owner"]:
|
|
|
|
raise ValueError("function of a mailing list member must be subscriber, editor or owner.")
|
|
|
|
result = self.zeep.service.amI(mailing_list, function, email)
|
|
|
|
element = result._raw_elements[0]
|
|
|
|
return element.text == "true"
|
2020-10-08 17:23:01 +00:00
|
|
|
|
2020-10-08 18:47:28 +00:00
|
|
|
def get_subscribers(self, mailing_list: str, emails_only: bool = True) -> list:
|
2020-10-08 17:23:01 +00:00
|
|
|
"""
|
|
|
|
Get the list of all subscribers of a list, including the administrators and the editors.
|
2020-10-08 18:47:28 +00:00
|
|
|
If emails_only == True, retrieve the list of email addresses only.
|
|
|
|
Else, retrieve MLUser object, with the name of the user and the role.
|
2020-10-08 17:23:01 +00:00
|
|
|
"""
|
2020-10-08 18:47:28 +00:00
|
|
|
if not emails_only:
|
2020-10-08 17:23:01 +00:00
|
|
|
users = list()
|
|
|
|
elements = self.zeep.service.fullReview(mailing_list)
|
|
|
|
for element in elements:
|
|
|
|
children = element.getchildren()
|
|
|
|
kwargs = dict(mailing_list=mailing_list)
|
|
|
|
for child in children:
|
|
|
|
tag = child.tag
|
|
|
|
if "gecos" in tag:
|
|
|
|
kwargs["name"] = child.text
|
|
|
|
elif "email" in tag:
|
|
|
|
kwargs["email"] = child.text
|
|
|
|
elif "isSubscriber" in tag:
|
|
|
|
kwargs["subscriber"] = child.text == "true"
|
|
|
|
elif "isEditor" in tag:
|
|
|
|
kwargs["editor"] = child.text == "true"
|
|
|
|
elif "isOwner" in tag:
|
|
|
|
kwargs["owner"] = child.text == "true"
|
|
|
|
else:
|
|
|
|
print("Unknown child tag:", tag)
|
|
|
|
user = MLUser(**kwargs)
|
|
|
|
users.append(user)
|
|
|
|
return users
|
|
|
|
return self.zeep.service.review(mailing_list)
|
2020-10-08 18:17:15 +00:00
|
|
|
|
|
|
|
def lists(self, topic: str, subtopic: str) -> list:
|
|
|
|
"""
|
|
|
|
Get all the (visible) lists that match the given topic and the given subtopic.
|
|
|
|
See TOPICS and SUBTOPICS for valid topics and subtopics.
|
|
|
|
"""
|
|
|
|
if topic not in TOPICS:
|
|
|
|
raise ValueError(f"'{topic}' is not a valid topic.")
|
|
|
|
if subtopic and f"{topic}/{subtopic}" not in SUBTOPICS:
|
|
|
|
raise ValueError(f"'{topic}/{subtopic}' is not a valid subtopic.")
|
|
|
|
result = self.zeep.service.lists(topic, subtopic)._value_1
|
|
|
|
if result is None:
|
|
|
|
return list()
|
|
|
|
lists = list()
|
|
|
|
for list_info in result:
|
|
|
|
split = list_info.split(';')
|
|
|
|
kwargs = dict()
|
|
|
|
for data in split:
|
|
|
|
key, value = data.split("=", 2)
|
|
|
|
if key == "listAddress":
|
|
|
|
key = "list_address"
|
|
|
|
kwargs[key] = value
|
|
|
|
ml = MailingList(**kwargs)
|
|
|
|
lists.append(ml)
|
|
|
|
return lists
|
|
|
|
|
2020-10-08 18:47:28 +00:00
|
|
|
def all_lists(self) -> list:
|
2020-10-08 18:17:15 +00:00
|
|
|
"""
|
2020-10-08 18:47:28 +00:00
|
|
|
Retrieve all lists.
|
2020-10-08 18:17:15 +00:00
|
|
|
"""
|
2020-10-08 18:47:28 +00:00
|
|
|
elem = self.zeep.service.complexLists()._raw_elements[0]
|
2020-10-08 18:17:15 +00:00
|
|
|
lists = list()
|
2020-10-08 18:47:28 +00:00
|
|
|
for list_info in elem.getchildren():
|
|
|
|
kwargs = dict()
|
|
|
|
for child in list_info.getchildren():
|
|
|
|
if "listAddress" in child.tag:
|
|
|
|
key = "list_address"
|
|
|
|
elif "subject" in child.tag:
|
|
|
|
key = "subject"
|
|
|
|
elif "homepage" in child.tag:
|
|
|
|
key = "homepage"
|
|
|
|
else:
|
|
|
|
raise ValueError(f"Tag {child.tag} is unknown")
|
|
|
|
kwargs[key] = child.text
|
|
|
|
ml = MailingList(**kwargs)
|
|
|
|
lists.append(ml)
|
2020-10-08 18:17:15 +00:00
|
|
|
return lists
|
2020-10-08 19:48:11 +00:00
|
|
|
|
|
|
|
def create_list(self, list_name: str, subject: str, template: str, description: str, topic: str,
|
|
|
|
use_custom_template: bool = False) -> bool:
|
|
|
|
if topic not in TOPICS and topic not in SUBTOPICS:
|
|
|
|
raise ValueError(f"Topic '{topic}' does not exist.")
|
|
|
|
if template not in TEMPLATES and not use_custom_template:
|
|
|
|
raise ValueError(f"Template '{template}' does not exist.")
|
|
|
|
try:
|
|
|
|
result = self.zeep.service.createList(list_name, subject, template, description, topic)
|
|
|
|
return result._raw_elements[0].text == "true"
|
|
|
|
except Fault:
|
|
|
|
raise Fault(f"An unknown error occured while creating the list {list_name}. Maybe the list already exists?")
|