You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

321 lines
10 KiB

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models
from django.utils import six
from django.utils.functional import lazy
from django.utils.translation import ugettext_lazy as _
from aldryn_segmentation.models import SegmentBasePluginModel
class CountrySegmentPluginModel(SegmentBasePluginModel):
class Meta:
app_label = 'country_segment'
#
# NOTE: This list is derived from MaxMind's datasets
# (http://dev.maxmind.com/geoip/legacy/codes/iso3166/), so contains non-
# country entities such as "A1", "A2", "O1" as well pseudo-countries such as
# "EU", "AP" etc. These are very relevant to this implementation.
#
# MaxMind also state: “Please note that "EU" and "AP" codes are only used
# when a specific country code has not been designated (see FAQ). Blocking
# or re-directing by "EU" or "AP" will only affect a small portion of IP
# addresses. Instead, you should list the countries you want to block/re-
# direct individually.”
#
COUNTRY_CODES = [
('A1', _('Anonymous Proxy')),
('A2', _('Satellite Provider')),
('O1', _('Other Country')),
('AD', _('Andorra')),
('AE', _('United Arab Emirates')),
('AF', _('Afghanistan')),
('AG', _('Antigua and Barbuda')),
('AI', _('Anguilla')),
('AL', _('Albania')),
('AM', _('Armenia')),
('AO', _('Angola')),
('AP', _('Asia/Pacific Region')),
('AQ', _('Antarctica')),
('AR', _('Argentina')),
('AS', _('American Samoa')),
('AT', _('Austria')),
('AU', _('Australia')),
('AW', _('Aruba')),
('AX', _('Aland Islands')),
('AZ', _('Azerbaijan')),
('BA', _('Bosnia and Herzegovina')),
('BB', _('Barbados')),
('BD', _('Bangladesh')),
('BE', _('Belgium')),
('BF', _('Burkina Faso')),
('BG', _('Bulgaria')),
('BH', _('Bahrain')),
('BI', _('Burundi')),
('BJ', _('Benin')),
('BL', _('Saint Bartelemey')),
('BM', _('Bermuda')),
('BN', _('Brunei Darussalam')),
('BO', _('Bolivia')),
('BQ', _('Bonaire, Saint Eustatius and Saba')),
('BR', _('Brazil')),
('BS', _('Bahamas')),
('BT', _('Bhutan')),
('BV', _('Bouvet Island')),
('BW', _('Botswana')),
('BY', _('Belarus')),
('BZ', _('Belize')),
('CA', _('Canada')),
('CC', _('Cocos (Keeling) Islands')),
('CD', _('Congo, The Democratic Republic of the')),
('CF', _('Central African Republic')),
('CG', _('Congo')),
('CH', _('Switzerland')),
('CI', _('Cote d’Ivoire')),
('CK', _('Cook Islands')),
('CL', _('Chile')),
('CM', _('Cameroon')),
('CN', _('China')),
('CO', _('Colombia')),
('CR', _('Costa Rica')),
('CU', _('Cuba')),
('CV', _('Cape Verde')),
('CW', _('Curacao')),
('CX', _('Christmas Island')),
('CY', _('Cyprus')),
('CZ', _('Czech Republic')),
('DE', _('Germany')),
('DJ', _('Djibouti')),
('DK', _('Denmark')),
('DM', _('Dominica')),
('DO', _('Dominican Republic')),
('DZ', _('Algeria')),
('EC', _('Ecuador')),
('EE', _('Estonia')),
('EG', _('Egypt')),
('EH', _('Western Sahara')),
('ER', _('Eritrea')),
('ES', _('Spain')),
('ET', _('Ethiopia')),
('EU', _('Europe')),
('FI', _('Finland')),
('FJ', _('Fiji')),
('FK', _('Falkland Islands (Malvinas)')),
('FM', _('Micronesia, Federated States of')),
('FO', _('Faroe Islands')),
('FR', _('France')),
('GA', _('Gabon')),
('GB', _('United Kingdom')),
('GD', _('Grenada')),
('GE', _('Georgia')),
('GF', _('French Guiana')),
('GG', _('Guernsey')),
('GH', _('Ghana')),
('GI', _('Gibraltar')),
('GL', _('Greenland')),
('GM', _('Gambia')),
('GN', _('Guinea')),
('GP', _('Guadeloupe')),
('GQ', _('Equatorial Guinea')),
('GR', _('Greece')),
('GS', _('South Georgia and the South Sandwich Islands')),
('GT', _('Guatemala')),
('GU', _('Guam')),
('GW', _('Guinea-Bissau')),
('GY', _('Guyana')),
('HK', _('Hong Kong')),
('HM', _('Heard Island and McDonald Islands')),
('HN', _('Honduras')),
('HR', _('Croatia')),
('HT', _('Haiti')),
('HU', _('Hungary')),
('ID', _('Indonesia')),
('IE', _('Ireland')),
('IL', _('Israel')),
('IM', _('Isle of Man')),
('IN', _('India')),
('IO', _('British Indian Ocean Territory')),
('IQ', _('Iraq')),
('IR', _('Iran, Islamic Republic of')),
('IS', _('Iceland')),
('IT', _('Italy')),
('JE', _('Jersey')),
('JM', _('Jamaica')),
('JO', _('Jordan')),
('JP', _('Japan')),
('KE', _('Kenya')),
('KG', _('Kyrgyzstan')),
('KH', _('Cambodia')),
('KI', _('Kiribati')),
('KM', _('Comoros')),
('KN', _('Saint Kitts and Nevis')),
('KP', _('Korea, Democratic People’s Republic of')),
('KR', _('Korea, Republic of')),
('KW', _('Kuwait')),
('KY', _('Cayman Islands')),
('KZ', _('Kazakhstan')),
('LA', _('Lao, People’s Democratic Republic of')),
('LB', _('Lebanon')),
('LC', _('Saint Lucia')),
('LI', _('Liechtenstein')),
('LK', _('Sri Lanka')),
('LR', _('Liberia')),
('LS', _('Lesotho')),
('LT', _('Lithuania')),
('LU', _('Luxembourg')),
('LV', _('Latvia')),
('LY', _('Libyan Arab Jamahiriya')),
('MA', _('Morocco')),
('MC', _('Monaco')),
('MD', _('Moldova, Republic of')),
('ME', _('Montenegro')),
('MF', _('Saint Martin')),
('MG', _('Madagascar')),
('MH', _('Marshall Islands')),
('MK', _('Macedonia')),
('ML', _('Mali')),
('MM', _('Myanmar')),
('MN', _('Mongolia')),
('MO', _('Macao')),
('MP', _('Northern Mariana Islands')),
('MQ', _('Martinique')),
('MR', _('Mauritania')),
('MS', _('Montserrat')),
('MT', _('Malta')),
('MU', _('Mauritius')),
('MV', _('Maldives')),
('MW', _('Malawi')),
('MX', _('Mexico')),
('MY', _('Malaysia')),
('MZ', _('Mozambique')),
('NA', _('Namibia')),
('NC', _('New Caledonia')),
('NE', _('Niger')),
('NF', _('Norfolk Island')),
('NG', _('Nigeria')),
('NI', _('Nicaragua')),
('NL', _('Netherlands')),
('NO', _('Norway')),
('NP', _('Nepal')),
('NR', _('Nauru')),
('NU', _('Niue')),
('NZ', _('New Zealand')),
('OM', _('Oman')),
('PA', _('Panama')),
('PE', _('Peru')),
('PF', _('French Polynesia')),
('PG', _('Papua New Guinea')),
('PH', _('Philippines')),
('PK', _('Pakistan')),
('PL', _('Poland')),
('PM', _('Saint Pierre and Miquelon')),
('PN', _('Pitcairn')),
('PR', _('Puerto Rico')),
('PS', _('Palestinian Territory')),
('PT', _('Portugal')),
('PW', _('Palau')),
('PY', _('Paraguay')),
('QA', _('Qatar')),
('RE', _('Reunion')),
('RO', _('Romania')),
('RS', _('Serbia')),
('RU', _('Russian Federation')),
('RW', _('Rwanda')),
('SA', _('Saudi Arabia')),
('SB', _('Solomon Islands')),
('SC', _('Seychelles')),
('SD', _('Sudan')),
('SE', _('Sweden')),
('SG', _('Singapore')),
('SH', _('Saint Helena')),
('SI', _('Slovenia')),
('SJ', _('Svalbard and Jan Mayen')),
('SK', _('Slovakia')),
('SL', _('Sierra Leone')),
('SM', _('San Marino')),
('SN', _('Senegal')),
('SO', _('Somalia')),
('SR', _('Suriname')),
('SS', _('South Sudan')),
('ST', _('Sao Tome and Principe')),
('SV', _('El Salvador')),
('SX', _('Sint Maarten')),
('SY', _('Syrian Arab Republic')),
('SZ', _('Swaziland')),
('TC', _('Turks and Caicos Islands')),
('TD', _('Chad')),
('TF', _('French Southern Territories')),
('TG', _('Togo')),
('TH', _('Thailand')),
('TJ', _('Tajikistan')),
('TK', _('Tokelau')),
('TL', _('Timor-Leste')),
('TM', _('Turkmenistan')),
('TN', _('Tunisia')),
('TO', _('Tonga')),
('TR', _('Turkey')),
('TT', _('Trinidad and Tobago')),
('TV', _('Tuvalu')),
('TW', _('Taiwan')),
('TZ', _('Tanzania, United Republic of')),
('UA', _('Ukraine')),
('UG', _('Uganda')),
('UM', _('United States Minor Outlying Islands')),
('US', _('United States')),
('UY', _('Uruguay')),
('UZ', _('Uzbekistan')),
('VA', _('Holy See (Vatican City State)')),
('VC', _('Saint Vincent and the Grenadines')),
('VE', _('Venezuela')),
('VG', _('Virgin Islands, British')),
('VI', _('Virgin Islands, U.S.')),
('VN', _('Vietnam')),
('VU', _('Vanuatu')),
('WF', _('Wallis and Futuna')),
('WS', _('Samoa')),
('YE', _('Yemen')),
('YT', _('Mayotte')),
('ZA', _('South Africa')),
('ZM', _('Zambia')),
('ZW', _('Zimbabwe')),
('XX', _('- Country Not Found -')),
('XA', _('- GeoIP not initialized -')),
('XB', _('- Error trying to determine country -')),
]
#
# Since the user's locale may make these country names in non-alpha order,
# We prepend the country code to the country name string for the field
# choices.
#
COUNTRY_CODES_CHOICES = [ (code, _('{code}: {name}').format(
code=code, name=name
)) for (code, name) in COUNTRY_CODES ]
# This is so we can perform look-ups too.
country_code_names = dict(COUNTRY_CODES)
country_code = models.CharField(_('country'),
blank=False,
choices=COUNTRY_CODES_CHOICES,
default='O1', # 'Other Country'
max_length=2,
)
@property
def configuration_string(self):
def wrapper():
return _('{name} ({code})').format(
name=self.country_code_names[self.country_code],
code=self.country_code
)
return lazy(
wrapper,
six.text_type
)()