Elaborate search endpoint
This commit is contained in:
parent
d4429c3a86
commit
4642948638
3 changed files with 16 additions and 11 deletions
|
@ -218,17 +218,22 @@ def get_server_configuration():
|
||||||
mwm_size_thr=config.MWM_SIZE_THRESHOLD)
|
mwm_size_thr=config.MWM_SIZE_THRESHOLD)
|
||||||
|
|
||||||
|
|
||||||
|
def prepare_sql_search_string(string):
|
||||||
|
if string.startswith('^'):
|
||||||
|
string = string[1:]
|
||||||
|
else:
|
||||||
|
string = f"%{string}"
|
||||||
|
if string.endswith('$'):
|
||||||
|
string = string[:-1]
|
||||||
|
else:
|
||||||
|
string = f"{string}%"
|
||||||
|
return string
|
||||||
|
|
||||||
|
|
||||||
@app.route('/search')
|
@app.route('/search')
|
||||||
def search():
|
def search():
|
||||||
query = request.args.get('q')
|
query = request.args.get('q')
|
||||||
if query.startswith('^'):
|
sql_search_string = prepare_sql_search_string(query)
|
||||||
query = query[1:]
|
|
||||||
else:
|
|
||||||
query = f"%{query}"
|
|
||||||
if query.endswith('$'):
|
|
||||||
query = query[:-1]
|
|
||||||
else:
|
|
||||||
query = f"{query}%"
|
|
||||||
|
|
||||||
with g.conn.cursor() as cursor:
|
with g.conn.cursor() as cursor:
|
||||||
cursor.execute(f"""
|
cursor.execute(f"""
|
||||||
|
@ -236,7 +241,7 @@ def search():
|
||||||
FROM {config.BORDERS_TABLE}
|
FROM {config.BORDERS_TABLE}
|
||||||
WHERE name ILIKE %s
|
WHERE name ILIKE %s
|
||||||
ORDER BY (ST_Area(geography(geom)))
|
ORDER BY (ST_Area(geography(geom)))
|
||||||
LIMIT 1""", (query,)
|
LIMIT 1""", (sql_search_string,)
|
||||||
)
|
)
|
||||||
if cursor.rowcount > 0:
|
if cursor.rowcount > 0:
|
||||||
rec = cursor.fetchone()
|
rec = cursor.fetchone()
|
||||||
|
|
|
@ -43,7 +43,7 @@ def create_countries_initial_structure(conn):
|
||||||
with conn.cursor() as cursor:
|
with conn.cursor() as cursor:
|
||||||
# TODO: process overlapping countries, like Ukraine and Russia with common Crimea
|
# TODO: process overlapping countries, like Ukraine and Russia with common Crimea
|
||||||
cursor.execute(f"""
|
cursor.execute(f"""
|
||||||
SELECT osm_id, name
|
SELECT osm_id
|
||||||
FROM {osm_table}
|
FROM {osm_table}
|
||||||
WHERE admin_level = 2
|
WHERE admin_level = 2
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -210,7 +210,7 @@
|
||||||
<span id="wait_start_over">ожидайте...</span>
|
<span id="wait_start_over">ожидайте...</span>
|
||||||
</div>
|
</div>
|
||||||
<div id="search">
|
<div id="search">
|
||||||
Поиск <input type="text" id="fsearch">
|
Поиск <input type="text" id="fsearch" placeholder="Use ^/$ for start/end">
|
||||||
<button id="b_search" onclick="doSearch()">🔍</button>
|
<button id="b_search" onclick="doSearch()">🔍</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue