-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add grants, custom domains, rules_configs to API #177
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
9ad279b
Added method and unit test for Guardian SNS factor provider configura…
37fded1
Added another function and unit tests for Twileo factor provider conf…
428ba58
Add class for grants
8ce34e6
Added delete grant and unit test
570bcf4
Added custom_domain and unit tests
23173d9
Removed Guardian changes - functionality already exists.
729abed
Fix typo in custom domain unit test
7124614
Fix typo
15cb775
Added rotate secret and unit test to client
e65b872
Added configure new custom domain and unit test
cd81d3b
Added get custom domain configuration and unit test
a2795ee
Added verify custom domain and unit test
050d77e
Added job results search and unit test
35b3964
Added rulesconfigs and unit test
cc447b6
address comments from original PR (#160)
sagnew-dg 9f46976
small code review fixes
sagnew-dg 57c79ae
code review comments; name rules configs methods set / unset because …
sagnew-dg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,7 @@ nosetests.xml | |
coverage.xml | ||
*,cover | ||
.hypothesis/ | ||
.pytest_cache | ||
|
||
# Translations | ||
*.mo | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
from .rest import RestClient | ||
|
||
|
||
class CustomDomains(object): | ||
|
||
"""Auth0 custom domains endpoints | ||
|
||
Args: | ||
domain (str): Your Auth0 domain, e.g: 'username.auth0.com' | ||
|
||
token (str): Management API v2 Token | ||
|
||
telemetry (bool, optional): Enable or disable Telemetry | ||
(defaults to True) | ||
""" | ||
|
||
def __init__(self, domain, token, telemetry=True): | ||
self.domain = domain | ||
self.client = RestClient(jwt=token, telemetry=telemetry) | ||
|
||
def _url(self, id=None): | ||
url = 'https://%s/api/v2/custom-domains' % self.domain | ||
if id is not None: | ||
return url + '/' + id | ||
return url | ||
|
||
def all(self): | ||
"""Retrieves all custom domains. | ||
|
||
See: https://auth0.com/docs/api/management/v2#!/Custom_Domains/get_custom_domains | ||
""" | ||
return self.client.get(self._url()) | ||
|
||
def get(self, id): | ||
"""Retrieves custom domain. | ||
|
||
See: https://auth0.com/docs/api/management/v2#!/Custom_Domains/get_custom_domains_by_id | ||
""" | ||
url = self._url('%s' % (id)) | ||
return self.client.get(url) | ||
|
||
def delete(self, id): | ||
"""Deletes a grant. | ||
|
||
Args: | ||
id (str): The id of the custom domain to delete | ||
|
||
|
||
See: https://auth0.com/docs/api/management/v2#!/Custom_Domains/delete_custom_domains_by_id | ||
""" | ||
url = self._url('%s' % (id)) | ||
return self.client.delete(url) | ||
|
||
def create_new(self, body): | ||
"""Configure a new custom domain | ||
|
||
Args: | ||
body (str): The domain, tye and verification method in json | ||
|
||
|
||
See: https://auth0.com/docs/api/management/v2#!/Custom_Domains/post_custom_domains | ||
""" | ||
return self.client.post(self._url(), data=body) | ||
|
||
def verify(self, id): | ||
"""Verify a custom domain | ||
|
||
Args: | ||
id (str): The id of the custom domain to delete | ||
|
||
|
||
See: https://auth0.com/docs/api/management/v2#!/Custom_Domains/post_verify | ||
""" | ||
url = self._url('%s/verify' % (id)) | ||
return self.client.post(url) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
from .rest import RestClient | ||
|
||
|
||
class Grants(object): | ||
|
||
"""Auth0 grants endpoints | ||
|
||
Args: | ||
domain (str): Your Auth0 domain, e.g: 'username.auth0.com' | ||
|
||
token (str): Management API v2 Token | ||
|
||
telemetry (bool, optional): Enable or disable Telemetry | ||
(defaults to True) | ||
""" | ||
|
||
def __init__(self, domain, token, telemetry=True): | ||
self.domain = domain | ||
self.client = RestClient(jwt=token, telemetry=telemetry) | ||
|
||
def _url(self, id=None): | ||
url = 'https://%s/api/v2/grants' % self.domain | ||
if id is not None: | ||
return url + '/' + id | ||
return url | ||
|
||
def all(self, page=None, per_page=None, include_totals=False, extra_params=None): | ||
"""Retrieves all grants. | ||
|
||
Args: | ||
page (int, optional): The result's page number (zero based). | ||
|
||
per_page (int, optional): The amount of entries per page. | ||
|
||
include_totals (bool, optional): True if the query summary is | ||
to be included in the result, False otherwise. | ||
|
||
extra_params (dictionary, optional): The extra parameters to add to | ||
the request. The page, per_page, and include_totals values | ||
specified as parameters take precedence over the ones defined here. | ||
|
||
See: https://auth0.com/docs/api/management/v2#!/Grants/get_grants | ||
""" | ||
params = extra_params or {} | ||
params.update({ | ||
'page': page, | ||
'per_page': per_page, | ||
'include_totals': str(include_totals).lower() | ||
}) | ||
|
||
return self.client.get(self._url(), params=params) | ||
|
||
def delete(self, id): | ||
"""Deletes a grant. | ||
|
||
Args: | ||
id (str): The id of the grant to delete | ||
|
||
|
||
See: https://auth0.com/docs/api/management/v2#!/Grants/delete_grants_by_id | ||
""" | ||
url = self._url('%s' % (id)) | ||
return self.client.delete(url) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
from .rest import RestClient | ||
|
||
|
||
class RulesConfigs(object): | ||
|
||
"""RulesConfig endpoint implementation. | ||
|
||
Args: | ||
domain (str): Your Auth0 domain, e.g: 'username.auth0.com' | ||
|
||
token (str): Management API v2 Token | ||
|
||
telemetry (bool, optional): Enable or disable Telemetry | ||
(defaults to True) | ||
""" | ||
|
||
def __init__(self, domain, token, telemetry=True): | ||
self.domain = domain | ||
self.client = RestClient(jwt=token, telemetry=telemetry) | ||
|
||
def _url(self, id=None): | ||
url = 'https://%s/api/v2/rules-configs' % self.domain | ||
if id is not None: | ||
return url + '/' + id | ||
return url | ||
|
||
def all(self): | ||
"""Lists the config variable keys for rules. | ||
|
||
See: https://auth0.com/docs/api/management/v2#!/Rules_Configs/get_rules_configs | ||
""" | ||
return self.client.get(self._url()) | ||
|
||
def unset(self, key): | ||
"""Removes the rules config for a given key. | ||
|
||
Args: | ||
key (str): rules config key to remove | ||
|
||
See: https://auth0.com/docs/api/management/v2#!/Rules_Configs/delete_rules_configs_by_key | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's missing the |
||
""" | ||
params = { | ||
'key': key | ||
} | ||
return self.client.delete(self._url(), params=params) | ||
|
||
def set(self, key, value): | ||
"""Sets the rules config for a given key. | ||
|
||
Args: | ||
key (str): rules config key to set | ||
|
||
value (str): value to set for the rules config key | ||
|
||
See: https://auth0.com/docs/api/management/v2#!/Rules_Configs/put_rules_configs_by_key | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's missing the |
||
""" | ||
url = self._url('{}'.format(key)) | ||
body = {'value': value} | ||
return self.client.put(url, data=body) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import unittest | ||
import mock | ||
from ...management.custom_domains import CustomDomains | ||
|
||
|
||
class TestCustomDomains(unittest.TestCase): | ||
|
||
@mock.patch('auth0.v3.management.custom_domains.RestClient') | ||
def test_get_all(self, mock_rc): | ||
mock_instance = mock_rc.return_value | ||
|
||
g = CustomDomains(domain='domain', token='jwttoken') | ||
g.all() | ||
|
||
mock_instance.get.assert_called_with( | ||
'https://domain/api/v2/custom-domains' | ||
) | ||
|
||
@mock.patch('auth0.v3.management.custom_domains.RestClient') | ||
def test_create_new(self, mock_rc): | ||
mock_instance = mock_rc.return_value | ||
|
||
g = CustomDomains(domain='domain', token='jwttoken') | ||
g.create_new(body={'a': 'b', 'c': 'd','e': 'f'}) | ||
|
||
args, kwargs = mock_instance.post.call_args | ||
|
||
self.assertEqual('https://domain/api/v2/custom-domains',args[0]) | ||
self.assertEqual(kwargs['data'], {'a': 'b', 'c': 'd','e': 'f'}) | ||
|
||
@mock.patch('auth0.v3.management.custom_domains.RestClient') | ||
def test_get_domain_by_id(self, mock_rc): | ||
mock_instance = mock_rc.return_value | ||
|
||
g = CustomDomains(domain='domain', token='jwttoken') | ||
g.get('an-id') | ||
|
||
mock_instance.get.assert_called_with('https://domain/api/v2/custom-domains/an-id') | ||
|
||
|
||
@mock.patch('auth0.v3.management.custom_domains.RestClient') | ||
def test_verify(self, mock_rc): | ||
mock_instance = mock_rc.return_value | ||
|
||
g = CustomDomains(domain='domain', token='jwttoken') | ||
g.verify('an-id') | ||
|
||
args, kwargs = mock_instance.post.call_args | ||
|
||
self.assertEqual('https://domain/api/v2/custom-domains/an-id/verify', args[0]) | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Custom Domains
andGrants
also should be added here. Please try to keep the alphabetical order 💯