sympa.py 1.1 KB

1234567891011121314151617181920212223242526272829
  1. #!/usr/bin/python3
  2. # Style Guide for Python Code https://www.python.org/dev/peps/pep-0008/
  3. # Docstring Conventions https://www.python.org/dev/peps/pep-0257/
  4. # Based upon:
  5. # https://www.sympa.org/distribution/contrib/sympa_extract.pl
  6. class Instance:
  7. def __init__(self, conn):
  8. self._conn = conn
  9. def get_editors(self, list, robot):
  10. """Get the list's moderators, aka editors"""
  11. rows = ["editors_list"]
  12. cur = self._conn.cursor()
  13. cur.execute("""SELECT %s FROM list_table WHERE name_list LIKE %%s AND robot_list LIKE %%s""" % (",".join(rows)) , (list, robot))
  14. editors = cur.fetchone()
  15. if len(editors[0]) == 0:
  16. return []
  17. else:
  18. return editors[0].split(',')
  19. def get_subscribers(self, list, robot):
  20. rows = ["user_subscriber", "list_subscriber"]
  21. cur = self._conn.cursor()
  22. cur.execute("""SELECT %s FROM subscriber_table WHERE list_subscriber LIKE %%s AND robot_subscriber LIKE %%s""" % (",".join(rows)) , (list, robot))
  23. subscribers = []
  24. for item in cur:
  25. email = item[0].lower()
  26. subscribers.append(email)
  27. return subscribers