|
@@ -3,13 +3,14 @@
|
|
import argparse
|
|
import argparse
|
|
import configparser
|
|
import configparser
|
|
import psycopg2
|
|
import psycopg2
|
|
|
|
+import fcntoolbox.dolibarr as dolibarr
|
|
|
|
|
|
parser = argparse.ArgumentParser()
|
|
parser = argparse.ArgumentParser()
|
|
|
|
|
|
parser.add_argument("selection", type=str,
|
|
parser.add_argument("selection", type=str,
|
|
- choices=["get-subscribers"])
|
|
|
|
|
|
+ choices=["get-adherents", "get-subscribers"])
|
|
parser.add_argument("-c", "--config", type=str,
|
|
parser.add_argument("-c", "--config", type=str,
|
|
- default="/etc/fcn-toolbox/config.ini",
|
|
|
|
|
|
+ default="/etc/fcntoolbox/config.ini",
|
|
help="specify a configuration file")
|
|
help="specify a configuration file")
|
|
parser.add_argument("--product", type=str,
|
|
parser.add_argument("--product", type=str,
|
|
default="%",
|
|
default="%",
|
|
@@ -22,28 +23,13 @@ config.read(args.config)
|
|
configdb = config['database']
|
|
configdb = config['database']
|
|
|
|
|
|
conn = psycopg2.connect(database=configdb['database'],
|
|
conn = psycopg2.connect(database=configdb['database'],
|
|
- user=configdb['user'], password=configdb['password'])
|
|
|
|
|
|
+ user=configdb['user'], password=configdb['password'], host=configdb['host'])
|
|
|
|
|
|
-cur = conn.cursor()
|
|
|
|
|
|
+doli = dolibarr.Instance(conn)
|
|
|
|
|
|
-def getMemberCount():
|
|
|
|
- cur.execute("SELECT count(*) FROM llx_adherent WHERE statut = '1'")
|
|
|
|
- return cur.fetchone()[0]
|
|
|
|
-
|
|
|
|
-def getSubscriberInfo(product, fields):
|
|
|
|
- fieldsel = ','.join(fields)
|
|
|
|
- cur.execute("""SELECT %s
|
|
|
|
- FROM llx_societe, llx_contrat, llx_contratdet, llx_product
|
|
|
|
- WHERE llx_societe.rowid=llx_contrat.fk_soc
|
|
|
|
- AND llx_contrat.rowid=llx_contratdet.fk_contrat
|
|
|
|
- AND llx_product.rowid=llx_contratdet.fk_product
|
|
|
|
- AND llx_product.ref LIKE %s
|
|
|
|
- AND llx_contrat.statut=1
|
|
|
|
- AND llx_contratdet.statut=4
|
|
|
|
- ORDER BY llx_product.ref, llx_contrat.rowid ASC;""" % (fieldsel, '%s'), (product, ))
|
|
|
|
- return cur.fetchall()
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-if args.selection == "get-subscribers":
|
|
|
|
- subscribers = getSubscriberInfo(args.product, ['llx_societe.email'])
|
|
|
|
|
|
+if args.selection == "get-adherents":
|
|
|
|
+ adherents = doli.get_adherent(fields = ['email'])
|
|
|
|
+ print("\n".join(map(lambda x: x[0], adherents)))
|
|
|
|
+elif args.selection == "get-subscribers":
|
|
|
|
+ subscribers = doli.get_subscriber(args.product, ['email'])
|
|
print("\n".join(map(lambda x: x[0], subscribers)))
|
|
print("\n".join(map(lambda x: x[0], subscribers)))
|