2014-11-06 11:15:54 +03:00
|
|
|
from six import string_types
|
2015-11-19 11:38:57 +03:00
|
|
|
from importlib import import_module
|
2014-10-09 13:41:52 +04:00
|
|
|
|
|
|
|
|
|
|
|
def import_callable(path_or_callable):
|
|
|
|
if hasattr(path_or_callable, '__call__'):
|
|
|
|
return path_or_callable
|
|
|
|
else:
|
2014-11-06 11:15:54 +03:00
|
|
|
assert isinstance(path_or_callable, string_types)
|
2014-10-09 13:41:52 +04:00
|
|
|
package, attr = path_or_callable.rsplit('.', 1)
|
|
|
|
return getattr(import_module(package), attr)
|
2016-01-01 00:10:52 +03:00
|
|
|
|
|
|
|
|
2016-01-08 00:45:28 +03:00
|
|
|
def default_create_token(token_model, user, serializer):
|
2016-01-01 00:10:52 +03:00
|
|
|
token, _ = token_model.objects.get_or_create(user=user)
|
|
|
|
return token
|