Skip to content

Commit 823d763

Browse files
committed
Backport elasticsearch mapping fix for v1.0.0a8
Signed-off-by: Harri Hirvonsalo <[email protected]>
1 parent 74b2730 commit 823d763

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

invenio_stats/processors.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def anonymize_user(doc):
4545
"""Preprocess an event by anonymizing user information."""
4646
ip = doc.pop('ip_address', None)
4747
if ip:
48-
doc.update(get_geoip(ip))
48+
doc.update({'country': get_geoip(ip)})
4949

5050
uid = doc.pop('user_id', '')
5151
ua = doc.pop('user_agent', '')

invenio_stats/utils.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,8 @@
3636
def get_geoip(ip):
3737
"""Lookup country for IP address."""
3838
reader = geolite2.reader()
39-
ip_data = reader.get(ip)
40-
if ip_data is not None:
41-
return dict(country=ip_data['country'])
42-
return {}
39+
ip_data = reader.get(ip) or {}
40+
return ip_data.get('country', {}).get('iso_code')
4341

4442

4543
def get_user():

tests/test_utils.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ def test_get_user(app, mock_users, request_headers):
5252

5353
def test_get_geoip():
5454
"""Test looking up IP address."""
55-
assert get_geoip("74.125.67.100")['country']['names']['en'] == \
56-
"United States"
55+
assert get_geoip("74.125.67.100") == 'US'
5756

5857

5958
def test_obj_or_import_string(app):

0 commit comments

Comments
 (0)