-
Notifications
You must be signed in to change notification settings - Fork 4
/
server.py
275 lines (224 loc) · 10.5 KB
/
server.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
from flask import Flask, request
import requests
import yaml, json
import credentials
import re
from geopy.geocoders import Nominatim
geolocator = Nominatim(user_agent="Covid19Italia.help")
with open('italy_geo.json') as f:
italy_geo = json.load(f)
with open('comuni.json') as f:
comuni = json.load(f)
comuni = sorted(comuni, key=lambda k: k['popolazione'], reverse=True)
app = Flask(__name__)
# Authentication for user filing issue (must have read/write access to
# repository to add issue to)
USERNAME = credentials.user
PASSWORD = credentials.password
# The repository to add this issue to
REPO_OWNER = 'emergenzeHack'
REPO_NAME = 'covid19italia_segnalazioni'
repo_names = {
'it': 'covid19italia_segnalazioni',
'pt': 'covid19pt_issues',
'gr': 'covid19gr_issues'
}
@app.route('/')
def paynoattention():
return 'Pay no attention to that man behind the curtain!'
@app.route('/report', methods=['POST'])
def report():
process_report(request.json, request.headers)
return "OK", 200
def process_report(payload, headers_pre, additional_labels=[],issue_title=None):
print(payload)
# Key names to lowercase
# not sure why this is needed
headers = {k.lower(): v for k, v in headers_pre.items()}
print("Processing %s with headers %s .." % (payload, headers))
# Create an authenticated session to create the issue
session = requests.Session()
session.auth = (USERNAME, PASSWORD)
labels = []
#payload = request.json
# Rimuovi nome gruppo dal nome delle chiavi
# e.g. datibancari/IBAN -> datibancari
for key_name in list(payload):
if "datibancari/" in key_name:
new_key_name = key_name.replace("datibancari/","")
payload[new_key_name] = payload[key_name]
payload.pop(key_name)
if 'label' in list(headers):
label = headers['label']
# If country is not specified, IT is default
if 'country' in list(headers):
country = headers['country']
else:
country = 'it'
location = False
location_geo = False
comment_body = None
if issue_title == None:
# Prepare the issue title
meaningful_fields = {
'it' : ["Titolo", "Cosa", "Testo", "Descrizione"],
'pt' : ["Nome", "Finalidade"],
'gr' : []
}
for field in meaningful_fields[country]:
if field in list(payload):
issue_title=payload[field][0:100]
if "Chi" in list(payload) and label == "Raccolte fondi":
issue_title = "Raccolta fondi %s" % (payload["Chi"])
if not issue_title:
issue_title=label
if country == "it":
# Assegna le label in base alle selezioni sul form "Iniziative"
if label == "iniziativa":
if "Natura" in list(payload):
if payload["Natura"] == "culturale-ricr":
label = "Attivita culturali e ricreative"
elif payload["Natura"] == "solidale":
label = "Servizi e iniziative solidali "
if "Tipo_di_soggetto" in list(payload):
if payload["Tipo_di_soggetto"] == "privato":
label += "private"
else:
label += "pubbliche"
elif payload["Natura"] == "didattica":
label = "Didattica a distanza e-learning"
elif payload["Natura"] == "sostegno-lavor":
label = "Sostegno lavoro e imprese"
# Se trovi riferimenti a psicologi o psicoterapeuti,
# aggiungi la label "Supporto Psicologico"
if "Titolo" in list(payload):
if "psicolog" in payload["Titolo"].lower() or "psicoter" in payload["Titolo"].lower():
labels.append("Supporto Psicologico")
else:
if "Descrizione" in list(payload):
if "psicolog" in payload["Descrizione"].lower() or "psicoter" in payload["Descrizione"].lower():
labels.append("Supporto Psicologico")
# Suggerisci una posizione
if "Indirizzo" not in list(payload) and "Posizione" not in list(payload):
location = False
if "Titolo" in list(payload):
location = extract_location(payload["Titolo"])
elif "Da_chi_offerta" in list(payload):
location = extract_location(payload["Da_chi_offerta"])
elif "Cosa" in list(payload) and not location:
location = extract_location(payload["Cosa"])
elif "Testo" in list(payload) and not location:
location = extract_location(payload["Testo"])
elif "Descrizione" in list(payload) and not location:
location = extract_location(payload["Descrizione"])
if "location" in list(payload) and "Posizione" not in list(payload):
location_geo = None
tries = 0
while location_geo is None:
tries += 1
if tries < 10:
try:
print("Getting coordinates. (%s)" % (tries))
location_input = payload["location"]
location_geo = geolocator.geocode(payload["location"])
except:
pass
else:
location_geo = 0
if location_geo is not 0:
payload["Posizione"] = str(location_geo.latitude) +" "+str(location_geo.longitude)
payload.pop("location")
if location_geo:
coords = payload["Posizione"].split(" ")
comment_message = "Sembra che questa segnalazione non sia geolocalizzata. Ho automaticamente aggiunto %s (%s) come coordinate. Per favore, controlla <a href='https://nominatim.openstreetmap.org/search.php?q=%s+%s&polygon_geojson=1&viewbox='>qui</a> se sono corrette. In caso positivo, rimuovi pure la label 'Posizione da verificare' da questa Issue, altrimenti, procedi a correggere o rimuovere la posizione come spiegato <a href='https://github.com/emergenzeHack/covid19italia/wiki/Lavorare-sulle-segnalazioni#aggiungere-geolocalizzazione'>qui</a>." % (payload["Posizione"], location_input, coords[0], coords[1])
comment_body = {
"body": comment_message
}
labels.append("Posizione da verificare")
# Commenta con il suggerimento
if location:
#payload["Indirizzo"] = location[0]
coords = location[0].split(" ")
comment_message = "Sembra che questa segnalazione non sia geolocalizzata. Ho automaticamente aggiunto %s (%s) come coordinate. Per favore, controlla <a href='https://nominatim.openstreetmap.org/search.php?q=%s+%s&polygon_geojson=1&viewbox='>qui</a> se sono corrette. In caso positivo, rimuovi pure la label 'Posizione da verificare' da questa Issue, altrimenti, procedi a correggere o rimuovere la posizione come spiegato <a href='https://github.com/emergenzeHack/covid19italia/wiki/Lavorare-sulle-segnalazioni#aggiungere-geolocalizzazione'>qui</a>." % (location[0], location[1], coords[0], coords[1])
comment_body = {
"body": comment_message
}
labels.append("Posizione da verificare")
positionFound = None
positionLabels = ["Posizione", "location", "Indirizzo"]
for labelname in positionLabels:
# Aggiungi label posizione mancante
if labelname in list(payload):
positionFound = True
if not positionFound and not location and not location_geo:
if country == "it":
labels.append("Posizione mancante")
else:
labels.append("Missing position")
# Aggiungi sempre la label "form" per le issue provenienti da questo script
#labels.append("form")
# Aggiungi le label preparate
labels.append(label)
for label in additional_labels:
labels.append(label)
# Rimuovi metavalori
stripped_payload = strip_meta(payload)
blacklist = ["promozioniltaliane.com", "vuedc.info"]
for word in blacklist:
for field in list(payload):
if word in payload[field]:
labels.append("spam")
# Prepara il payload in YAML
yaml_payload = "<pre><yamldata>\n"+yaml.dump(stripped_payload, allow_unicode=True)+"</yamldata></pre>"
# Apri issue su GitHub
comment_url = open_github_issue(session, title=issue_title, body=yaml_payload, labels=labels, country=country)
if comment_body:
add_comment(session, url=comment_url, body=comment_body)
return
def strip_meta(payload):
excludelist = ["end", "start", "formhub/uuid", "meta/instanceID", "meta/deprecatedID", "Informativa"]
# Rimuovi tutti i campi meta che iniziano con _
for k in list(payload):
if k.startswith('_'):
payload.pop(k)
# Rimuovi anche le chiavi specificate nella lista
elif k in excludelist:
payload.pop(k)
return payload
def extract_location(text):
for comune in comuni[0:150]:
if len(comune["nome"]) > 3 and "%s" % (comune["nome"].lower()) in text.lower():
for com_geo in italy_geo:
if com_geo["comune"].lower() == comune["nome"].lower():
print("Trovato riferimento a comune", comune["nome"])
location = com_geo["lat"] + " " + com_geo["lng"]
print("Aggiungo", location)
return [location, comune["nome"]]
return False
def add_comment(session, url, body):
r = session.post(url, json.dumps(body))
if r.status_code == 201:
print('Successfully created Comment on Issue')
else:
print('Could not create Comment', title)
print('Response:', r.content)
def open_github_issue(session, title, body=None, assignee=None, milestone=None, labels=[], country='it'):
'''Create an issue on github.com using the given parameters.'''
# Create our issue
issue = {'title': title,
'body': body,
'assignee': assignee,
'milestone': milestone,
'labels': labels}
# Our url to create issues via POST
url = 'https://api.github.com/repos/%s/%s/issues' % (REPO_OWNER, repo_names[country])
# Add the issue to our repository
r = session.post(url, json.dumps(issue))
if r.status_code == 201:
print('Successfully created Issue', title)
response = r.json()
return response["comments_url"]
else:
print('Could not create Issue', title)
print('Response:', r.content)
#app.run(host='0.0.0.0');