2016-08-12 15:45:28 +02:00
|
|
|
import json
|
|
|
|
import requests
|
|
|
|
|
|
|
|
misperrors = {'error': 'Error'}
|
2016-08-12 18:40:00 +02:00
|
|
|
mispattributes = {'input': ['hostname', 'domain']}
|
2016-08-12 15:45:28 +02:00
|
|
|
|
|
|
|
# possible module-types: 'expansion', 'hover' or both
|
|
|
|
moduleinfo = {'version': '1', 'author': 'Hannah Ward',
|
|
|
|
'description': 'Expand Country Codes',
|
2016-08-15 12:09:40 +02:00
|
|
|
'module-type': ['hover']}
|
2016-08-12 15:45:28 +02:00
|
|
|
|
|
|
|
# config fields that your code expects from the site admin
|
|
|
|
moduleconfig = []
|
|
|
|
|
|
|
|
common_tlds = {"com":"Commercial (Worldwide)",
|
|
|
|
"org":"Organisation (Worldwide)",
|
|
|
|
"net":"Network (Worldwide)",
|
|
|
|
"int":"International (Worldwide)",
|
|
|
|
"edu":"Education (Usually USA)",
|
|
|
|
"gov":"Government (USA)"
|
|
|
|
}
|
|
|
|
|
2016-08-17 10:51:16 +02:00
|
|
|
codes = requests.get("http://www.geognos.com/api/en/countries/info/all.json").json()
|
|
|
|
|
2016-08-12 15:45:28 +02:00
|
|
|
def handler(q=False):
|
2016-08-17 10:51:16 +02:00
|
|
|
global codes
|
2016-08-12 15:45:28 +02:00
|
|
|
if q is False:
|
|
|
|
return False
|
|
|
|
request = json.loads(q)
|
|
|
|
domain = request["domain"]
|
|
|
|
|
|
|
|
# Get the extension
|
|
|
|
ext = domain.split(".")[-1]
|
|
|
|
|
|
|
|
# Check if if's a common, non country one
|
|
|
|
if ext in common_tlds.keys():
|
|
|
|
val = common_tlds[ext]
|
|
|
|
else:
|
|
|
|
# Retrieve a json full of country info
|
|
|
|
if not codes["StatusMsg"] == "OK":
|
|
|
|
val = "Unknown"
|
|
|
|
else:
|
|
|
|
# Find our code based on TLD
|
|
|
|
codes = codes["Results"]
|
|
|
|
for code in codes.keys():
|
|
|
|
if codes[code]["CountryCodes"]["tld"] == ext:
|
|
|
|
val = codes[code]["Name"]
|
|
|
|
r = {'results': [{'types':['text'], 'values':[val]}]}
|
|
|
|
return r
|
|
|
|
|
|
|
|
|
|
|
|
def introspection():
|
|
|
|
return mispattributes
|
|
|
|
|
|
|
|
|
|
|
|
def version():
|
|
|
|
moduleinfo['config'] = moduleconfig
|
|
|
|
return moduleinfo
|
|
|
|
|