2019-05-30 14:04:08 +00:00
|
|
|
# coding: utf8
|
|
|
|
|
|
|
|
# toutes les chaines sont en unicode (même les docstrings)
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from pprint import pprint
|
|
|
|
from rocketchat_API.rocketchat import RocketChat
|
|
|
|
import json
|
|
|
|
import dev_config as cfg
|
2019-06-05 10:18:42 +00:00
|
|
|
import os
|
2019-06-07 16:59:06 +00:00
|
|
|
import re
|
2019-05-30 14:04:08 +00:00
|
|
|
|
|
|
|
def getNodesOrigin(channel):
|
|
|
|
nodes = []
|
|
|
|
if 'description' not in channel:
|
|
|
|
nodes.append("global")
|
|
|
|
return nodes
|
|
|
|
|
|
|
|
if channel['description'].find("#projet") != -1:
|
|
|
|
nodes.append("project")
|
|
|
|
if channel['description'].find("#democratie") != -1:
|
|
|
|
nodes.append("democratie")
|
|
|
|
if channel['description'].find("#ecologie") != -1:
|
|
|
|
nodes.append("ecologie")
|
|
|
|
if channel['description'].find("#technologie") != -1:
|
|
|
|
nodes.append("technologie")
|
|
|
|
|
|
|
|
if not nodes:
|
|
|
|
nodes.append("global")
|
|
|
|
|
|
|
|
return nodes
|
|
|
|
|
|
|
|
colorInfo = {
|
|
|
|
'global': 'orange',
|
|
|
|
'technologie': 'gray',
|
|
|
|
'democratie': 'red',
|
|
|
|
'ecologie': 'green',
|
|
|
|
'project': 'blue'
|
|
|
|
}
|
|
|
|
|
|
|
|
rocket = RocketChat(cfg.rocket['user'], cfg.rocket['password'], server_url='https://coa.crapaud-fou.org')
|
|
|
|
|
|
|
|
edge_index = 0
|
2019-06-06 16:43:53 +00:00
|
|
|
sizebase = 100
|
2019-05-30 14:04:08 +00:00
|
|
|
datas = []
|
2019-06-06 16:43:53 +00:00
|
|
|
datas.append( { 'data':{'id':'mare', 'label': 'mare', 'size': sizebase, 'color': 'black', 'href': 'https://coa.crapaud-fou.org/'}})
|
|
|
|
datas.append( { 'data':{'id':'global', 'label': 'global', 'size': sizebase, 'color': colorInfo['global'], 'href': 'https://coa.crapaud-fou.org/'}})
|
|
|
|
datas.append( { 'data':{'id':'ecologie', 'label': 'ecologie', 'size': sizebase, 'color': colorInfo['ecologie'], 'href': 'https://coa.crapaud-fou.org/'}})
|
|
|
|
datas.append( { 'data':{'id':'democratie', 'label': 'democratie', 'size': sizebase, 'color': colorInfo['democratie'], 'href': 'https://coa.crapaud-fou.org/'}})
|
|
|
|
datas.append( { 'data':{'id':'technologie', 'label': 'technologie', 'size': sizebase, 'color': colorInfo['technologie'], 'href': 'https://coa.crapaud-fou.org/'}})
|
|
|
|
datas.append( { 'data':{'id':'project', 'label': 'projet', 'size': sizebase, 'color': colorInfo['project'], 'href': 'https://coa.crapaud-fou.org/'}})
|
2019-05-30 14:04:08 +00:00
|
|
|
datas.append( { 'data':{'id': 'edge_' + str(edge_index), 'source': 'mare', 'target': 'global', 'color': colorInfo['global']}})
|
|
|
|
edge_index += 1
|
|
|
|
datas.append( { 'data':{'id': 'edge_' + str(edge_index), 'source': 'mare', 'target': 'ecologie', 'color': colorInfo['ecologie']}})
|
|
|
|
edge_index += 1
|
|
|
|
datas.append( { 'data':{'id': 'edge_' + str(edge_index), 'source': 'mare', 'target': 'democratie', 'color': colorInfo['democratie']}})
|
|
|
|
edge_index += 1
|
|
|
|
datas.append( { 'data':{'id': 'edge_' + str(edge_index), 'source': 'mare', 'target': 'technologie', 'color': colorInfo['technologie']}})
|
|
|
|
edge_index += 1
|
|
|
|
datas.append( { 'data':{'id': 'edge_' + str(edge_index), 'source': 'mare', 'target': 'project', 'color': colorInfo['project']}})
|
|
|
|
edge_index += 1
|
|
|
|
|
2019-06-07 16:59:06 +00:00
|
|
|
cohortes = { 'fr': { 'updateMap': 'france_fr'}}
|
|
|
|
cohortescolor = { 'fr': 'green' }
|
2019-05-30 14:04:08 +00:00
|
|
|
index = 0
|
|
|
|
nbChannels = 0
|
|
|
|
nbCohorte = 0
|
|
|
|
totalChannels = 0
|
|
|
|
while True:
|
|
|
|
channels = rocket.channels_list(offset= index).json()
|
|
|
|
totalChannels = channels['total']
|
|
|
|
|
|
|
|
for channel in channels['channels']:
|
|
|
|
if channel['name'].find('cohorte') != -1:
|
2019-06-07 16:59:06 +00:00
|
|
|
if 'description' in channel:
|
|
|
|
m = re.findall('#([\w-]+)', channel['description'])
|
|
|
|
for region in m:
|
|
|
|
cohortescolor.update( { region: 'green' } )
|
|
|
|
cohortes.update( { region: { 'link': channel['name']}})
|
2019-05-30 14:04:08 +00:00
|
|
|
nbCohorte += 1
|
|
|
|
continue
|
|
|
|
|
2019-06-06 16:43:53 +00:00
|
|
|
size = channel['usersCount']
|
|
|
|
|
|
|
|
if (channel['_id'] == 'GENERAL') or (channel['_id'] == 'rp5gdRrZubMKic3Nk') :
|
|
|
|
size = sizebase
|
|
|
|
|
2019-05-30 14:04:08 +00:00
|
|
|
node = {
|
|
|
|
'data' : {
|
|
|
|
'id': channel['_id'],
|
|
|
|
'label': channel['fname'] if 'fname' in channel else channel['name'],
|
2019-06-06 16:43:53 +00:00
|
|
|
'size': size,
|
2019-05-30 14:04:08 +00:00
|
|
|
'color': 'grey',
|
|
|
|
'href': 'https://coa.crapaud-fou.org/channel/'+channel['name']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
datas.append(node)
|
|
|
|
|
|
|
|
nodesOrigin = getNodesOrigin(channel)
|
|
|
|
for nodeOrigin in nodesOrigin:
|
|
|
|
if nodeOrigin is not None:
|
|
|
|
datas.append( { 'data':{'id': 'edge_' + str(edge_index), 'source': nodeOrigin, 'target': channel['_id'], 'color': colorInfo[nodeOrigin]}})
|
|
|
|
edge_index += 1
|
|
|
|
|
|
|
|
nbChannels += 1
|
|
|
|
|
|
|
|
if channels['count'] + channels['offset'] >= channels['total']:
|
|
|
|
break
|
|
|
|
index += channels['count']
|
|
|
|
|
2019-06-05 14:57:23 +00:00
|
|
|
# Récupération du répertoire racine du repo
|
|
|
|
rootFolder = os.path.join(os.path.dirname(__file__), '..')
|
2019-06-05 10:18:42 +00:00
|
|
|
# Répertoire pour stocker le fichier de sortie
|
2019-06-05 14:57:23 +00:00
|
|
|
dataFolder = os.path.join(rootFolder, 'public','data')
|
2019-06-05 10:18:42 +00:00
|
|
|
# Faut il essayer de le créer au cas ou?
|
|
|
|
# os.makedirs(dataFolderPath, exist_ok=True)
|
2019-06-05 14:57:23 +00:00
|
|
|
channelsFilePath = os.path.abspath(os.path.join(dataFolder,'channelslist.json'))
|
|
|
|
|
|
|
|
#print("Ecriture dans : "+channelsFilePath)
|
2019-06-05 10:18:42 +00:00
|
|
|
|
2019-06-05 14:57:23 +00:00
|
|
|
with open(channelsFilePath, "w") as file_write:
|
2019-05-30 14:04:08 +00:00
|
|
|
json.dump(datas, file_write)
|
|
|
|
|
2019-06-07 16:59:06 +00:00
|
|
|
cohortecolorFilePath = os.path.abspath(os.path.join(dataFolder,'cohortescolor.json'))
|
|
|
|
with open(cohortecolorFilePath, "w") as file_write:
|
|
|
|
json.dump(cohortescolor, file_write)
|
|
|
|
|
|
|
|
cohorteFilePath = os.path.abspath(os.path.join(dataFolder,'cohorteslist.json'))
|
|
|
|
with open(cohorteFilePath, "w") as file_write:
|
|
|
|
json.dump(cohortes, file_write)
|
|
|
|
|
2019-05-30 14:04:08 +00:00
|
|
|
pprint("Nb displayed channels : " + str(nbChannels))
|
|
|
|
pprint("Nb cohorte channels : " + str(nbCohorte))
|
2019-06-05 08:30:55 +00:00
|
|
|
pprint("Nb total channels : " + str(totalChannels))
|