forked from osm-fr/osmose-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.py
170 lines (148 loc) · 6.05 KB
/
utils.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
#! /usr/bin/env python
#-*- coding: utf-8 -*-
import os
import datetime, urllib.request
from collections import OrderedDict
import pwd
from io import StringIO
from . import OsmSax
################################################################################
languages_name = OrderedDict()
languages_name["en"] = {"name": "English"}
# language names from http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
# _direction_rtl = ['fa', 'ar', 'he', 'ff', 'yi', 'ur', 'rgh', 'man', 'syc', 'mid', 'dv']
languages_name["ca"] = {"name": "Català"}
languages_name["cs"] = {"name": "Čeština"}
languages_name["da"] = {"name": "Dansk"}
languages_name["de"] = {"name": "Deutsch"}
languages_name["el"] = {"name": "Ελληνικά"}
languages_name["es"] = {"name": "Español"}
languages_name["eu"] = {"name": "Euskara"}
languages_name["fa"] = {"name": "فارسی", "direction": "rtl"}
languages_name["fi"] = {"name": "Suomi"}
languages_name["fr"] = {"name": "Français"}
languages_name["gl"] = {"name": "Galego"}
languages_name["hu"] = {"name": "Magyar"}
languages_name["it"] = {"name": "Italiano"}
languages_name["ja"] = {"name": "日本語"}
languages_name["lt"] = {"name": "Lietuvių"}
languages_name["nb"] = {"name": "Norsk bokmål"}
languages_name["nl"] = {"name": "Nederlands"}
languages_name["pl"] = {"name": "Polski"}
languages_name["pt"] = {"name": "Português"}
languages_name["pt_BR"] ={"name": u"Português (Brasil)"}
languages_name["ro"] = {"name": "Română"}
languages_name["ru"] = {"name": "Русский"}
languages_name["sv"] = {"name": "Svenska"}
languages_name["uk"] = {"name": "Українська"}
languages_name["vi"] = {"name": "Tiếng Việt"}
languages_name["zh_CN"] ={"name": u"中文 (简体)"}
languages_name["zh_TW"] ={"name": u"中文 (繁體)"}
allowed_languages = list(languages_name.keys())
pg_host = os.environ.get("DB_HOST", "") # Use socket by default
pg_port = os.environ.get("DB_PORT", "5432")
pg_user = os.environ.get("DB_USER", "osmose")
pg_pass = os.environ.get("DB_PASS", "clostAdtoi")
pg_base = os.environ.get("DB_NAME", "osmose_frontend")
db_string = "host='%s' port='%s' dbname='%s' user='%s' password='%s'" % (pg_host, pg_port, pg_base, pg_user, pg_pass)
website = os.environ.get('URL_FRONTEND') or "osmose.openstreetmap.fr"
main_project = "OpenStreetMap"
main_website = "https://www.openstreetmap.org/"
remote_url = "https://www.openstreetmap.org/"
remote_url_read = "https://www.openstreetmap.org/"
remote_url_write = "https://www.openstreetmap.org/"
#main_project = "OpenGeoFiction"
#main_website = "http://opengeofiction.net/"
#remote_url = "http://opengeofiction.net/"
#remote_url_read = "http://opengeofiction.net/"
#remote_url_write = "http://opengeofiction.net/"
#main_website = "http://opengeofiction.net/"
username = pwd.getpwuid(os.getuid())[0]
dir_results = "/data/work/%s/results" % (username)
################################################################################
def get_dbconn():
import psycopg2.extras
# return psycopg2.connect(host="localhost", database = pg_base, user = pg_user, password = pg_pass)
psycopg2.extensions.register_type(psycopg2.extensions.UNICODE)
psycopg2.extensions.register_type(psycopg2.extensions.UNICODEARRAY)
psycopg2.extensions.register_adapter(dict, psycopg2.extras.Json)
conn = psycopg2.extras.DictConnection(db_string)
psycopg2.extras.register_default_jsonb(conn)
return conn
def pg_escape(text):
if text is None:
return None
if type(text) == int:
return str(text)
return text.replace(u"'", u"''").replace(u'\\',u'\\\\')
def get_sources():
conn = get_dbconn()
curs = conn.cursor()
curs.execute("SELECT id, password, country, analyser FROM sources JOIN sources_password ON sources.id = source_id;")
config = {}
for res in curs.fetchall():
src = {}
src["id"] = str(res["id"])
src["password"] = set([res["password"]])
src["country"] = res["country"]
src["analyser"] = res["analyser"]
src["comment"] = res["analyser"] + "-" + res["country"]
if (src["id"] in config and
config[src["id"]]["country"] == src["country"] and
config[src["id"]]["analyser"] == src["analyser"]):
config[src["id"]]["password"].update(src["password"])
else:
config[src["id"]] = src
return config
def show(s):
print(s.encode("utf8"))
def str_to_datetime(s):
patterns = [
"%Y-%m-%d",
"%Y-%m",
"%Y"
]
for p in patterns:
try:
return datetime.datetime.strptime(s, p)
except ValueError:
pass
raise ValueError
###########################################################################
## translation
def i10n_select(translations, langs):
if not translations:
return None
elif langs is None:
return translations
else:
for lang in langs:
if lang in translations:
return {'auto': translations[lang]}
if 'en' in translations:
return {'auto': translations['en']}
else:
return {'auto': list(translations.values())[0]}
def i10n_select_auto(translations, langs):
if translations:
return i10n_select(translations, langs)['auto']
###########################################################################
## API
def fetch_osm_data(type, id, full=True):
elem_url = os.path.join(remote_url_read + 'api/0.6/', type, str(id))
if type == "way" and full:
elem_url = os.path.join(elem_url, "full")
try:
elem_io = StringIO(urllib.request.urlopen(elem_url).read().decode('utf-8'))
osm_read = OsmSax.OsmSaxReader(elem_io)
return osm_read
except:
pass
def fetch_osm_elem(type, id):
osmdw = OsmSax.OsmDictWriter()
osm_read = fetch_osm_data(type, id, full=False)
if osm_read:
osm_read.CopyTo(osmdw)
elem = osmdw.data[type]
if len(elem) > 0:
return elem[0]