This repository has been archived by the owner on Mar 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Read claim handlers from Django settings
- Loading branch information
Showing
5 changed files
with
65 additions
and
13 deletions.
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
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,33 @@ | ||
""" Misc Utilities. """ | ||
|
||
from importlib import import_module | ||
import sys | ||
|
||
from django.utils import six | ||
|
||
|
||
# NOTE: be careful not to create an import loop when extending this | ||
# file, corrently `import_string` is used by `oauth2_provider.constants`. | ||
|
||
|
||
def import_string(dotted_path): | ||
""" | ||
Import a dotted module path and return the attribute/class designated by the | ||
last name in the path. Raise ImportError if the import failed. | ||
Borrowed from Django 1.7 | ||
""" | ||
try: | ||
module_path, class_name = dotted_path.rsplit('.', 1) | ||
except ValueError: | ||
msg = "%s doesn't look like a module path" % dotted_path | ||
six.reraise(ImportError, ImportError(msg), sys.exc_info()[2]) | ||
|
||
module = import_module(module_path) | ||
|
||
try: | ||
return getattr(module, class_name) | ||
except AttributeError: | ||
msg = 'Module "%s" does not define a "%s" attribute/class' % ( | ||
dotted_path, class_name) | ||
six.reraise(ImportError, ImportError(msg), sys.exc_info()[2]) |