Browse Source

ajoute fcn-ispdb, renomme la section 'database' en 'dolibarr' dans config.ini

Guillaume 7 years ago
parent
commit
cbff103d0c
6 changed files with 114 additions and 4 deletions
  1. 4 0
      README.md
  2. 3 2
      conf/config.ini.example
  3. 54 0
      conf/ispdb-template.json
  4. 10 0
      conf/ispdb.geojson
  5. 1 2
      fcn-dolibarr
  6. 42 0
      fcn-ispdb

+ 4 - 0
README.md

@@ -26,6 +26,10 @@ Commande disponibles: get-subscribers
 
 Dépendances: python3, psycopg2
 
+### fcn-dolibarr
+
+Génére un fichier au [format ISP](https://db.ffdn.org/format) en utilisant les données présentes dans Dolibarr.
+
 ### fcn-sympa
 
 Intéragit avec Sympa.

+ 3 - 2
conf/config.ini.example

@@ -1,10 +1,11 @@
-[database]
+[dolibarr]
 database = dolibarr
 user = dolibarr_user
 password = dolibarr_password
+host = localhost
 
 [sympa]
 database = sympa
 user = sympa_user
 password = sympa_password
-
+host = localhost

+ 54 - 0
conf/ispdb-template.json

@@ -0,0 +1,54 @@
+{
+    "shortname": "MDN",
+    "name": "Middle-earth Data Network",
+    "description": "Non-profit ISP located in the Middle-earth",
+    "logoURL": "https://www.mdn.net/logo.png",
+    "website": "https://www.mdn.net/",
+    "otherWebsites": {
+        "wiki": "http://wiki.mdn.net"
+    },
+    "email": "contact@mdn.net",
+    "mainMailingList": "public@lists.mdn.net",
+    "creationDate": "1892-01-03",
+    "progressStatus": 7,
+    "memberCount": 600,
+    "subscriberCount": 86,
+    "chatrooms": [
+        "irc://irc.freenode.net/#mdn",
+        "xmpp:members@chat.mdn.net?join"
+    ],
+    "registeredOffice": {
+        "extended-addess": "third hobbit-hole on the left",
+        "street-address": "1 Main Street",
+        "locality": "Hobbiton",
+        "region": "Westfarthing",
+        "postal-code": "??",
+        "country-name": "The Shire"
+    },
+    "coordinates": {
+        "latitude": 3.14159265,
+        "longitude": 1.57079632
+    },
+    "coveredAreas": [
+        {
+            "name": "Mordor",
+            "technologies": ["wifi"],
+            "area": {
+                "type": "Polygon",
+                "coordinates": [[
+                    [ -35.5078125, 18.646245142670608 ],
+                    [ -35.5078125, 56.559482483762245 ],
+                    [ 63.984375, 56.559482483762245 ],
+                    [ 63.984375, 18.646245142670608 ],
+                    [ -35.5078125, 18.646245142670608 ]
+                ]]
+            }
+        },
+        {
+            "name": "The Shire",
+            "technologies": ["dsl"]
+        }
+    ],
+    "version": 0.1
+}
+

+ 10 - 0
conf/ispdb.geojson

@@ -0,0 +1,10 @@
+{
+                "type": "Polygon",
+                "coordinates": [[
+                    [ -35.5078125, 18.646245142670608 ],
+                    [ -35.5078125, 56.559482483762245 ],
+                    [ 63.984375, 56.559482483762245 ],
+                    [ 63.984375, 18.646245142670608 ],
+                    [ -35.5078125, 18.646245142670608 ]
+                ]]
+}

+ 1 - 2
fcn-dolibarr

@@ -18,9 +18,8 @@ parser.add_argument("--product", type=str,
 args = parser.parse_args()
 
 config = configparser.RawConfigParser()
-config.sections()
 config.read(args.config)
-configdb = config['database']
+configdb = config['dolibarr']
 
 conn = psycopg2.connect(database=configdb['database'],
   user=configdb['user'], password=configdb['password'], host=configdb['host'])

+ 42 - 0
fcn-ispdb

@@ -0,0 +1,42 @@
+#!/usr/bin/python3
+
+import configparser
+import json
+import psycopg2
+
+config = configparser.RawConfigParser()
+config.read('/etc/fcntoolbox/config.ini')
+configdb = config['dolibarr']
+
+conn = psycopg2.connect(database=configdb['database'],
+  user=configdb['user'], password=configdb['password'])
+
+cur = conn.cursor()
+
+def getMemberCount():
+  cur.execute("SELECT count(*) FROM llx_adherent WHERE statut = '1'")
+  return cur.fetchone()[0]
+
+def getSubscriberCount(product):
+  cur.execute("""SELECT COUNT(*)
+FROM llx_contratdet d 
+JOIN llx_product p on d.fk_product = p.rowid 
+WHERE d.date_ouverture IS NOT null
+  AND d.date_cloture IS null
+  AND p.ref LIKE %s""", (product,))
+  return cur.fetchone()[0]
+
+subscribersADSL = getSubscriberCount('ADSL-%')
+subscibersVPN = getSubscriberCount('VPN-%')
+members = getMemberCount()
+
+f = open('/etc/fcntoolbox/ispdb-template.json', 'r')
+isp = json.load(f)
+f = open('/etc/fcntoolbox/ispdb.geojson', 'r')
+ispgeo = json.load(f)
+isp['coveredAreas'][0]['area'] = ispgeo
+isp["memberCount"] = members
+isp["subscriberCount"] = subscribersADSL + subscibersVPN
+isp["_DSL_subscriberCount"] = subscribersADSL
+isp["_VPN_subscriberCount"] = subscibersVPN
+print(json.dumps(isp, indent=True))