Skip to content
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 17 commits into from
Jan 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ nosetests.xml
coverage.xml
*,cover
.hypothesis/
.pytest_cache

# Translations
*.mo
Expand Down
3 changes: 3 additions & 0 deletions auth0/v3/management/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,17 @@
from .clients import Clients
from .client_grants import ClientGrants
from .connections import Connections
from .custom_domains import CustomDomains
from .device_credentials import DeviceCredentials
from .emails import Emails
from .email_templates import EmailTemplates
from .grants import Grants
from .guardian import Guardian
from .jobs import Jobs
from .logs import Logs
from .resource_servers import ResourceServers
from .rules import Rules
from .rules_configs import RulesConfigs
from .stats import Stats
from .tenants import Tenants
from .tickets import Tickets
Expand Down
6 changes: 6 additions & 0 deletions auth0/v3/management/auth0.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from .grants import Grants
from .custom_domains import CustomDomains
from .blacklists import Blacklists
from .clients import Clients
from .client_grants import ClientGrants
Expand All @@ -10,6 +12,7 @@
from .logs import Logs
from .resource_servers import ResourceServers
from .rules import Rules
from .rules_configs import RulesConfigs
from .stats import Stats
from .tenants import Tenants
from .tickets import Tickets
Expand All @@ -31,15 +34,18 @@ def __init__(self, domain, token):
self.blacklists = Blacklists(domain, token)
self.clients = Clients(domain, token)
self.client_grants = ClientGrants(domain, token)
self.custom_domains = CustomDomains(domain, token)
self.connections = Connections(domain, token)
self.device_credentials = DeviceCredentials(domain, token)
self.emails = Emails(domain, token)
self.email_templates = EmailTemplates(domain, token)
self.grants = Grants(domain.token)
self.guardian = Guardian(domain, token)
self.jobs = Jobs(domain, token)
self.logs = Logs(domain, token)
self.resource_servers = ResourceServers(domain, token)
self.rules = Rules(domain, token)
self.rules_configs = RulesConfigs(domain, token)
self.stats = Stats(domain, token)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Custom Domains and Grants also should be added here. Please try to keep the alphabetical order 💯

self.tenants = Tenants(domain, token)
self.tickets = Tickets(domain, token)
Expand Down
16 changes: 15 additions & 1 deletion auth0/v3/management/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,25 @@ def update(self, id, body):
attributes can only be updated with the update:client_keys scope.

Args:
id (str): Client id of the application.
id (str): Client ID of the application.

body (dict): Attributes to modify.
See: https://auth0.com/docs/api/management/v2#!/Clients/patch_clients_by_id
"""

return self.client.patch(self._url(id), data=body)

def rotate_secret(self, id):
"""Rotate a client secret. The generated secret is NOT base64 encoded.

Args:
id (str): Client ID of the application.

body (dict): Attributes to modify.
See: https://auth0.com/docs/api/management/v2#!/Clients/post_rotate_secret
"""

params = {'id': id }

url = self._url('%s/rotate-secret' % id)
return self.client.get(url, params=params)
75 changes: 75 additions & 0 deletions auth0/v3/management/custom_domains.py
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)
63 changes: 63 additions & 0 deletions auth0/v3/management/grants.py
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)
11 changes: 11 additions & 0 deletions auth0/v3/management/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,17 @@ def get_failed_job(self, id):
url = self._url('{}/errors'.format(id))
return self.client.get(url)

def get_results(self, job_id):
"""Get results of a job

Args:
job_id (str): The ID of the job.

See: https://auth0.com/docs/api/management/v2#!/Jobs/get_results
"""
url = self._url('%s/results' % job_id)
return self.client.get(url)

def export_users(self, body):
"""Export all users to a file using a long running job.

Expand Down
60 changes: 60 additions & 0 deletions auth0/v3/management/rules_configs.py
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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's missing the key parameter doc line

"""
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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's missing the key and value parameters doc line

"""
url = self._url('{}'.format(key))
body = {'value': value}
return self.client.put(url, data=body)

14 changes: 14 additions & 0 deletions auth0/v3/test/management/test_clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,17 @@ def test_update(self, mock_rc):

self.assertEqual('https://domain/api/v2/clients/this-id', args[0])
self.assertEqual(kwargs['data'], {'a': 'b', 'c': 'd'})

@mock.patch('auth0.v3.management.clients.RestClient')
def test_rotate_secret(self, mock_rc):
mock_instance = mock_rc.return_value

c = Clients(domain='domain', token='jwttoken')
c.rotate_secret('this-id')

mock_instance.get.assert_called_with(
'https://domain/api/v2/clients/this-id/rotate-secret', params={'id': 'this-id'}
)



52 changes: 52 additions & 0 deletions auth0/v3/test/management/test_custom_domains.py
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])


Loading