2014-02-02 01:56:23 +04:00
|
|
|
import os
|
2015-06-18 16:38:29 +03:00
|
|
|
import binascii
|
2014-12-04 04:50:25 +03:00
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
from django.db import models
|
2015-06-18 16:38:29 +03:00
|
|
|
from django.conf import settings
|
2014-12-04 04:50:25 +03:00
|
|
|
from django.utils.encoding import python_2_unicode_compatible
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2012-11-17 20:46:16 +04:00
|
|
|
|
2013-12-16 12:59:10 +04:00
|
|
|
# Prior to Django 1.5, the AUTH_USER_MODEL setting does not exist.
|
|
|
|
# Note that we don't perform this code in the compat module due to
|
|
|
|
# bug report #1297
|
|
|
|
# See: https://github.com/tomchristie/django-rest-framework/issues/1297
|
|
|
|
AUTH_USER_MODEL = getattr(settings, 'AUTH_USER_MODEL', 'auth.User')
|
|
|
|
|
|
|
|
|
2014-12-04 04:50:25 +03:00
|
|
|
@python_2_unicode_compatible
|
2012-09-20 16:06:27 +04:00
|
|
|
class Token(models.Model):
|
|
|
|
"""
|
|
|
|
The default authorization token model.
|
|
|
|
"""
|
|
|
|
key = models.CharField(max_length=40, primary_key=True)
|
2013-06-26 20:56:42 +04:00
|
|
|
user = models.OneToOneField(AUTH_USER_MODEL, related_name='auth_token')
|
2012-09-20 16:06:27 +04:00
|
|
|
created = models.DateTimeField(auto_now_add=True)
|
|
|
|
|
2013-03-09 00:56:30 +04:00
|
|
|
class Meta:
|
|
|
|
# Work around for a bug in Django:
|
|
|
|
# https://code.djangoproject.com/ticket/19422
|
|
|
|
#
|
|
|
|
# Also see corresponding ticket:
|
|
|
|
# https://github.com/tomchristie/django-rest-framework/issues/705
|
|
|
|
abstract = 'rest_framework.authtoken' not in settings.INSTALLED_APPS
|
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
def save(self, *args, **kwargs):
|
|
|
|
if not self.key:
|
|
|
|
self.key = self.generate_key()
|
|
|
|
return super(Token, self).save(*args, **kwargs)
|
|
|
|
|
|
|
|
def generate_key(self):
|
2014-04-28 15:35:55 +04:00
|
|
|
return binascii.hexlify(os.urandom(20)).decode()
|
2012-10-09 12:57:31 +04:00
|
|
|
|
2014-12-04 04:50:25 +03:00
|
|
|
def __str__(self):
|
2012-10-09 12:57:31 +04:00
|
|
|
return self.key
|