Skip to content

Commit 8698d9f

Browse files
author
Franck Chastagnol
committed
Add ip2geo util and use it in mailing list logic
1 parent 59f43c4 commit 8698d9f

File tree

7 files changed

+26
-3
lines changed

7 files changed

+26
-3
lines changed

data/ip2geo/COPYRIGHT.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Database and Contents Copyright (c) 2019 MaxMind, Inc.

data/ip2geo/GeoLite2-Country.mmdb

3.85 MB
Binary file not shown.

data/ip2geo/LICENSE.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/4.0/.
2+
3+
This database incorporates GeoNames [http://www.geonames.org] geographical data, which is made available under the Creative Commons Attribution 3.0 License. To view a copy of this license, visit http://www.creativecommons.org/licenses/by/3.0/us/.

data/ip2geo/VERSION.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
GeoLite2 Country Database
2+
Date: 2019-12-24

requirements.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ flower==0.9.2
3333
FullContact.py==0.0.6
3434
funcsigs==1.0.2
3535
futures==3.2.0
36+
geoip2==3.0.0
3637
gnureadline==6.3.8
3738
google-api-python-client==1.7.8
3839
google-auth==1.6.2
@@ -83,7 +84,7 @@ pyuca==1.2
8384
ratelimit==2.2.1
8485
raven==6.6.0
8586
redis==3.1.0
86-
requests==2.20.0
87+
requests==2.22.0
8788
requests-oauthlib==1.2.0
8889
rsa==4.0
8990
scandir==1.6
@@ -99,7 +100,7 @@ text-unidecode==1.2
99100
tornado==5.1.1
100101
traitlets==4.3.2
101102
uritemplate==3.0.0
102-
urllib3==1.24.2
103+
urllib3==1.25.2
103104
vine==1.2.0
104105
wcwidth==0.1.7
105106
Werkzeug==0.14.1

util/ip2geo.py

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import geoip2.database
2+
3+
# Reader is a bit expensive to instantiate so create a singleton instance
4+
# initialized once at import time.
5+
reader = geoip2.database.Reader('./data/ip2geo/GeoLite2-Country.mmdb')
6+
7+
8+
# Resolves country based on an IP address.
9+
# Returns 2 letter ISO country code or None.
10+
def get_country(ip):
11+
try:
12+
data = reader.country(ip)
13+
except:
14+
return None
15+
return data.country.iso_code

views/web_views.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
from logic.views import social_stats
2020
import requests
2121

22+
from util.ip2geo import get_country
2223
from util.misc import sort_language_constants, get_real_ip, concat_asset_files, log
2324

2425
import google.oauth2.credentials
@@ -183,7 +184,7 @@ def join_mailing_list():
183184
full_name = ' '.join(filter(None, (first_name, last_name)))
184185
phone = request.form.get('phone') or None
185186
ip_addr = request.form.get('ip_addr') or get_real_ip()
186-
country_code = request.form.get('country_code') or None
187+
country_code = request.form.get('country_code') or get_country(ip_addr)
187188
dapp_user = 1 if 'dapp_user' in request.form else 0
188189
investor = 1 if 'investor' in request.form else 0
189190
backfill = request.form.get('backfill') or None # Indicates the request was made from an internal backfill script.

0 commit comments

Comments
 (0)