|
@@ -8,6 +8,16 @@
|
|
|
class Instance:
|
|
|
def __init__(self, conn):
|
|
|
self._conn = conn
|
|
|
+ def get_editors(self, list, robot):
|
|
|
+ """Get the list's moderators, aka editors"""
|
|
|
+ rows = ["editors_list"]
|
|
|
+ cur = self._conn.cursor()
|
|
|
+ cur.execute("""SELECT %s FROM list_table WHERE name_list LIKE %%s AND robot_list LIKE %%s""" % (",".join(rows)) , (list, robot))
|
|
|
+ editors = cur.fetchone()
|
|
|
+ if len(editors[0]) == 0:
|
|
|
+ return []
|
|
|
+ else:
|
|
|
+ return editors[0].split(',')
|
|
|
def get_subscribers(self, list, robot):
|
|
|
rows = ["user_subscriber", "list_subscriber"]
|
|
|
cur = self._conn.cursor()
|