Compare commits
10 Commits
python-0.1
...
python-0.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d9c569881a | ||
|
|
244d579f6f | ||
|
|
c90859e58b | ||
|
|
f216b6d922 | ||
|
|
573a304bd2 | ||
|
|
f5cbc195cc | ||
|
|
e324afd77f | ||
|
|
0196292093 | ||
|
|
f652a52a8d | ||
|
|
b279fafbc5 |
7
NEWS.md
7
NEWS.md
@@ -1,4 +1,11 @@
|
|||||||
|
|
||||||
|
March 14th, 2018
|
||||||
|
================
|
||||||
|
* Version `0.17.4` of the python library
|
||||||
|
* Fix bug with previous version when checking quotas
|
||||||
|
* Version `0.17.3` of the python library
|
||||||
|
* Fix bug with Mapbox routing not using the proper quota value
|
||||||
|
|
||||||
February 22th, 2018
|
February 22th, 2018
|
||||||
==================
|
==================
|
||||||
* Version `0.17.2` of the python library
|
* Version `0.17.2` of the python library
|
||||||
|
|||||||
@@ -153,7 +153,7 @@ class RoutingConfig(ServiceConfig):
|
|||||||
elif self._routing_provider == self.MAPBOX_PROVIDER:
|
elif self._routing_provider == self.MAPBOX_PROVIDER:
|
||||||
self._mapbox_api_keys = self._db_config.mapbox_routing_api_keys
|
self._mapbox_api_keys = self._db_config.mapbox_routing_api_keys
|
||||||
self._mapbox_service_params = self._db_config.mapbox_routing_service_params
|
self._mapbox_service_params = self._db_config.mapbox_routing_service_params
|
||||||
self._set_monthly_quota()
|
self._routing_quota = self._get_effective_monthly_quota(self.QUOTA_KEY)
|
||||||
self._set_soft_limit()
|
self._set_soft_limit()
|
||||||
self._period_end_date = date_parse(self._redis_config[self.PERIOD_END_DATE])
|
self._period_end_date = date_parse(self._redis_config[self.PERIOD_END_DATE])
|
||||||
|
|
||||||
@@ -192,9 +192,13 @@ class RoutingConfig(ServiceConfig):
|
|||||||
def mapbox_service_params(self):
|
def mapbox_service_params(self):
|
||||||
return self._mapbox_service_params
|
return self._mapbox_service_params
|
||||||
|
|
||||||
|
@property
|
||||||
|
def routing_quota(self):
|
||||||
|
return self._routing_quota
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def monthly_quota(self):
|
def monthly_quota(self):
|
||||||
return self._monthly_quota
|
return self._routing_quota
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def period_end_date(self):
|
def period_end_date(self):
|
||||||
@@ -204,9 +208,6 @@ class RoutingConfig(ServiceConfig):
|
|||||||
def soft_limit(self):
|
def soft_limit(self):
|
||||||
return self._soft_limit
|
return self._soft_limit
|
||||||
|
|
||||||
def _set_monthly_quota(self):
|
|
||||||
self._monthly_quota = self._get_effective_monthly_quota(self.QUOTA_KEY)
|
|
||||||
|
|
||||||
def _set_soft_limit(self):
|
def _set_soft_limit(self):
|
||||||
if self.SOFT_LIMIT_KEY in self._redis_config and self._redis_config[self.SOFT_LIMIT_KEY].lower() == 'true':
|
if self.SOFT_LIMIT_KEY in self._redis_config and self._redis_config[self.SOFT_LIMIT_KEY].lower() == 'true':
|
||||||
self._soft_limit = True
|
self._soft_limit = True
|
||||||
|
|||||||
@@ -122,7 +122,7 @@ class QuotaChecker:
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
def __check_routing_quota(self):
|
def __check_routing_quota(self):
|
||||||
user_quota = self._user_service_config.monthly_quota
|
user_quota = self._user_service_config.routing_quota
|
||||||
today = date.today()
|
today = date.today()
|
||||||
service_type = self._user_service_config.service_type
|
service_type = self._user_service_config.service_type
|
||||||
current_used = self._user_service.used_quota(service_type, today)
|
current_used = self._user_service.used_quota(service_type, today)
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ from setuptools import setup, find_packages
|
|||||||
setup(
|
setup(
|
||||||
name='cartodb_services',
|
name='cartodb_services',
|
||||||
|
|
||||||
version='0.17.2',
|
version='0.17.4',
|
||||||
|
|
||||||
description='CartoDB Services API Python Library',
|
description='CartoDB Services API Python Library',
|
||||||
|
|
||||||
|
|||||||
@@ -301,7 +301,7 @@ class TestRoutingConfig(TestCase):
|
|||||||
self._redis_conn.hset(self._user_key, 'mapzen_routing_quota', 1000)
|
self._redis_conn.hset(self._user_key, 'mapzen_routing_quota', 1000)
|
||||||
orgname = None
|
orgname = None
|
||||||
config = RoutingConfig(self._redis_conn, self._db_conn, self._username, orgname)
|
config = RoutingConfig(self._redis_conn, self._db_conn, self._username, orgname)
|
||||||
assert config.monthly_quota == 1000
|
assert config.routing_quota == 1000
|
||||||
|
|
||||||
def test_org_quota_overrides_user_quota(self):
|
def test_org_quota_overrides_user_quota(self):
|
||||||
self._redis_conn.hset(self._user_key, 'mapzen_routing_quota', 1000)
|
self._redis_conn.hset(self._user_key, 'mapzen_routing_quota', 1000)
|
||||||
@@ -315,7 +315,7 @@ class TestRoutingConfig(TestCase):
|
|||||||
self._redis_conn.hset(orgname_key, 'here_isolines_quota', 0)
|
self._redis_conn.hset(orgname_key, 'here_isolines_quota', 0)
|
||||||
|
|
||||||
config = RoutingConfig(self._redis_conn, self._db_conn, self._username, orgname)
|
config = RoutingConfig(self._redis_conn, self._db_conn, self._username, orgname)
|
||||||
assert config.monthly_quota == 5000
|
assert config.routing_quota == 5000
|
||||||
|
|
||||||
def test_should_have_soft_limit_false_by_default(self):
|
def test_should_have_soft_limit_false_by_default(self):
|
||||||
orgname = None
|
orgname = None
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ class TestQuotaChecker(TestCase):
|
|||||||
username = self.username,
|
username = self.username,
|
||||||
organization = None,
|
organization = None,
|
||||||
service_type = self.service_type,
|
service_type = self.service_type,
|
||||||
monthly_quota = 1000,
|
routing_quota = 1000,
|
||||||
period_end_date = datetime.today(),
|
period_end_date = datetime.today(),
|
||||||
soft_limit = False
|
soft_limit = False
|
||||||
)
|
)
|
||||||
@@ -43,7 +43,7 @@ class TestQuotaChecker(TestCase):
|
|||||||
username = self.username,
|
username = self.username,
|
||||||
organization = None,
|
organization = None,
|
||||||
service_type = self.service_type,
|
service_type = self.service_type,
|
||||||
monthly_quota = 1000,
|
routing_quota = 1000,
|
||||||
period_end_date = datetime.today(),
|
period_end_date = datetime.today(),
|
||||||
soft_limit = False
|
soft_limit = False
|
||||||
)
|
)
|
||||||
@@ -61,7 +61,7 @@ class TestQuotaChecker(TestCase):
|
|||||||
username = self.username,
|
username = self.username,
|
||||||
organization = None,
|
organization = None,
|
||||||
service_type = self.service_type,
|
service_type = self.service_type,
|
||||||
monthly_quota = 1000,
|
routing_quota = 1000,
|
||||||
period_end_date = datetime.today(),
|
period_end_date = datetime.today(),
|
||||||
soft_limit = False
|
soft_limit = False
|
||||||
)
|
)
|
||||||
@@ -75,7 +75,7 @@ class TestQuotaChecker(TestCase):
|
|||||||
username = self.username,
|
username = self.username,
|
||||||
organization = None,
|
organization = None,
|
||||||
service_type = self.service_type,
|
service_type = self.service_type,
|
||||||
monthly_quota = 1000,
|
routing_quota = 1000,
|
||||||
period_end_date = datetime.today(),
|
period_end_date = datetime.today(),
|
||||||
soft_limit = True
|
soft_limit = True
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user