fcn-report 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. #!/usr/bin/python3
  2. # Style Guide: https://www.python.org/dev/peps/pep-0008/
  3. import argparse
  4. import configparser
  5. import pprint
  6. import psycopg2
  7. # fcntoolbox package
  8. import fcntoolbox.dolibarr as dolibarr
  9. import fcntoolbox.mail as mail
  10. import fcntoolbox.sympa as sympa
  11. # network imports
  12. import smtplib
  13. from email.mime.text import MIMEText
  14. parser = argparse.ArgumentParser()
  15. parser.add_argument("-c", "--config", type=str,
  16. default="/etc/fcntoolbox/config.ini",
  17. help="specify a configuration file")
  18. args = parser.parse_args()
  19. config = configparser.RawConfigParser()
  20. config.sections()
  21. config.read(args.config)
  22. confac = config['ac']
  23. confdoli = config['dolibarr']
  24. confsympa = config['sympa']
  25. conn = psycopg2.connect(host=confdoli['host'], database=confdoli['database'],
  26. user=confdoli['user'], password=confdoli['password'])
  27. doli = dolibarr.Instance(conn)
  28. fields = ["rowid", "firstname", "lastname", "email"]
  29. fieldsextra = ['email_second']
  30. # Filter out missing extra fields
  31. #cur.execute("SELECT * FROM llx_adherent_extrafields LIMIT 1")
  32. #columns_extra = map(lambda col : col.name, cur.description)
  33. #rows_extra = filter(lambda r : r in columns_extra, fieldsextra)
  34. cur = doli.get_adherent(fields, fieldsextra)
  35. aliases = mail.Aliases('/etc/aliases', 'franciliens.net')
  36. raliases = dict((val, key) for key, val in aliases.items())
  37. adherents = set() # set(email)
  38. adherents_alt = dict() # dict(email => set(email))
  39. radherents_alt = dict() # dict(email => email)
  40. for record in cur:
  41. columns = map(lambda col : col.name, cur.description)
  42. adh = dict(zip(columns, record))
  43. adh_email = adh['email'].lower()
  44. adherents.add(adh_email)
  45. adh_alt = set()
  46. if 'email_second' in adh and adh['email_second'] != None:
  47. adh_alt.add(adh['email_second'])
  48. radherents_alt[adh['email_second']] = adh_email
  49. if adh_email in aliases:
  50. adh_alt.add(aliases[adh_email])
  51. radherents_alt[aliases[adh_email]] = adh_email
  52. if adh_email in raliases:
  53. adh_alt.add(raliases[adh_email])
  54. radherents_alt[raliases[adh_email]] = adh_email
  55. adherents_alt[adh_email] = adh_alt
  56. sympaconn = psycopg2.connect(host=confsympa['host'], database=confsympa['database'],
  57. user=confsympa['user'], password=confsympa['password'])
  58. sympaIns = sympa.Instance(sympaconn)
  59. list = 'adherents'
  60. francisubs = set(sympaIns.get_subscribers(list, confsympa['robot']))
  61. tosubscribe = set()
  62. for adh in adherents:
  63. adh_alt = adherents_alt[adh]
  64. if adh in francisubs or len(adh_alt.intersection(francisubs)) > 0:
  65. pass
  66. else:
  67. tosubscribe.add(adh)
  68. tounsubscribe = set()
  69. for sub in francisubs:
  70. if sub in adherents \
  71. or (sub in radherents_alt and radherents_alt[sub] in adherents):
  72. pass
  73. else:
  74. tounsubscribe.add(sub)
  75. editors = set(sympaIns.get_editors(list, confsympa['robot']))
  76. remeditors = set()
  77. for editor in editors:
  78. if editor in adherents \
  79. or (editor in radherents_alt and radherents_alt[editor] in adherents):
  80. pass
  81. else:
  82. remeditors.add(editor)
  83. reportFormat = open('/etc/fcntoolbox/fcn-report.format', 'r').read()
  84. s = smtplib.SMTP('localhost')
  85. pp = pprint.PrettyPrinter()
  86. def sendReport(listname, tosubscribe, tounsubscribe, removeeditors):
  87. body = reportFormat.format(
  88. list = listname,
  89. tosubscribe = pp.pformat(tosubscribe),
  90. removesubscribers = pp.pformat(tounsubscribe),
  91. removeeditors = pp.pformat(removeeditors))
  92. msg = MIMEText(body)
  93. msg['Subject'] = "Rapport de la liste [%s]" % listname
  94. msg['From'] = confsympa['mail_from']
  95. if 'mail_cc' in confsympa:
  96. msg['Cc'] = confsympa['mail_cc']
  97. msg['To'] = "%s-request@%s" % (listname, confsympa['robot'])
  98. s.send_message(msg)
  99. if len(adherents) > 0 and (len(tosubscribe) > 0 or len(tounsubscribe) > 0) :
  100. sendReport(list, tosubscribe, tounsubscribe, remeditors)
  101. molists = confac['members_only_lists'].split(',')
  102. for list in molists:
  103. subs = set(sympaIns.get_subscribers(list, confsympa['robot']))
  104. tounsubscribe = set()
  105. for sub in subs:
  106. if sub in adherents \
  107. or (sub in radherents_alt and radherents_alt[sub] in adherents):
  108. pass
  109. else:
  110. tounsubscribe.add(sub)
  111. editors = set(sympaIns.get_editors(list, confsympa['robot']))
  112. remeditors = set()
  113. for editor in editors:
  114. if editor in adherents \
  115. or (editor in radherents_alt and radherents_alt[editor] in adherents):
  116. pass
  117. else:
  118. remeditors.add(editor)
  119. if len(adherents) > 0 and len(tounsubscribe) > 0 :
  120. sendReport(list, {}, tounsubscribe, remeditors)
  121. s.quit()