Browse Source

fcn-report: support sending reports for multiple list, read lists from
config

root 7 years ago
parent
commit
8e0c90b8d5
2 changed files with 38 additions and 13 deletions
  1. 3 0
      conf/config.ini.example
  2. 35 13
      fcn-report

+ 3 - 0
conf/config.ini.example

@@ -9,3 +9,6 @@ database = sympa
 user = sympa_user
 user = sympa_user
 password = sympa_password
 password = sympa_password
 host = localhost
 host = localhost
+
+[ac] # access control
+members_only_lists = members,admins,illuminati

+ 35 - 13
fcn-report

@@ -25,6 +25,7 @@ args = parser.parse_args()
 config = configparser.RawConfigParser()
 config = configparser.RawConfigParser()
 config.sections()
 config.sections()
 config.read(args.config)
 config.read(args.config)
+confac = config['ac']
 confdoli = config['dolibarr']
 confdoli = config['dolibarr']
 confsympa = config['sympa']
 confsympa = config['sympa']
 
 
@@ -71,8 +72,6 @@ sympaconn = psycopg2.connect(host=confsympa['host'], database=confsympa['databas
 sympaIns = sympa.Instance(sympaconn)
 sympaIns = sympa.Instance(sympaconn)
 list = 'adherents'
 list = 'adherents'
 francisubs = set(sympaIns.get_subscribers(list, confsympa['robot']))
 francisubs = set(sympaIns.get_subscribers(list, confsympa['robot']))
-list2 = 'admin'
-adminsubs = set(sympaIns.get_subscribers(list2, confsympa['robot']))
 
 
 tosubscribe = set()
 tosubscribe = set()
 for adh in adherents:
 for adh in adherents:
@@ -90,13 +89,14 @@ for sub in francisubs:
   else:
   else:
     tounsubscribe.add(sub)
     tounsubscribe.add(sub)
 
 
-tounsubscribe2 = set()
-for sub in adminsubs:
-  if sub in adherents \
-      or (sub in radherents_alt and radherents_alt[sub] in adherents):
+editors = set(sympaIns.get_editors(list, confsympa['robot']))
+remeditors = set()
+for editor in editors:
+  if editor in adherents \
+      or (editor in radherents_alt and radherents_alt[editor] in adherents):
     pass
     pass
   else:
   else:
-    tounsubscribe2.add(sub)
+    remeditors.add(editor)
 
 
 reportFormat = open('/etc/fcntoolbox/fcn-report.format', 'r').read()
 reportFormat = open('/etc/fcntoolbox/fcn-report.format', 'r').read()
 
 
@@ -104,11 +104,12 @@ s = smtplib.SMTP('localhost')
 
 
 pp = pprint.PrettyPrinter()
 pp = pprint.PrettyPrinter()
 
 
-def sendReport(listname, tosubscribe, tounsubscribe):
+def sendReport(listname, tosubscribe, tounsubscribe, removeeditors):
   body = reportFormat.format(
   body = reportFormat.format(
     list = listname,
     list = listname,
     tosubscribe = pp.pformat(tosubscribe),
     tosubscribe = pp.pformat(tosubscribe),
-    tounsubscribe = pp.pformat(tounsubscribe))
+    removesubscribers = pp.pformat(tounsubscribe),
+    removeeditors = pp.pformat(removeeditors))
   msg = MIMEText(body)
   msg = MIMEText(body)
   msg['Subject'] = "Rapport de la liste [%s]" % listname
   msg['Subject'] = "Rapport de la liste [%s]" % listname
   msg['From'] = confsympa['mail_from']
   msg['From'] = confsympa['mail_from']
@@ -118,9 +119,30 @@ def sendReport(listname, tosubscribe, tounsubscribe):
   s.send_message(msg)
   s.send_message(msg)
 
 
 if len(adherents) > 0 and (len(tosubscribe) > 0 or len(tounsubscribe) > 0) :
 if len(adherents) > 0 and (len(tosubscribe) > 0 or len(tounsubscribe) > 0) :
-  sendReport(list, tosubscribe, tounsubscribe)
-
-if len(adherents) > 0 and len(tounsubscribe2) > 0 :
-  sendReport(list2, {}, tounsubscribe2)
+  sendReport(list, tosubscribe, tounsubscribe, remeditors)
+
+molists = confac['members_only_lists'].split(',')
+for list in molists:
+  subs = set(sympaIns.get_subscribers(list, confsympa['robot']))
+
+  tounsubscribe = set()
+  for sub in subs:
+    if sub in adherents \
+        or (sub in radherents_alt and radherents_alt[sub] in adherents):
+      pass
+    else:
+      tounsubscribe.add(sub)
+
+  editors = set(sympaIns.get_editors(list, confsympa['robot']))
+  remeditors = set()
+  for editor in editors:
+    if editor in adherents \
+        or (editor in radherents_alt and radherents_alt[editor] in adherents):
+      pass
+    else:
+      remeditors.add(editor)
+
+  if len(adherents) > 0 and len(tounsubscribe) > 0 :
+    sendReport(list, {}, tounsubscribe, remeditors)
 
 
 s.quit()
 s.quit()