Skip to content

Instantly share code, notes, and snippets.

@mkubenka
Forked from marteinn/api.py
Created March 12, 2013 11:52
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save mkubenka/5142319 to your computer and use it in GitHub Desktop.
Save mkubenka/5142319 to your computer and use it in GitHub Desktop.
from tastypie.exceptions import NotFound
from tastypie.resources import ModelResource
from tastypie.authentication import BasicAuthentication, ApiKeyAuthentication
from tastypie.models import ApiKey
from django.contrib.auth.models import User
__author__ = 'martinsandstrom'
class ApiTokenResource(ModelResource):
class Meta:
queryset = ApiKey.objects.all()
resource_name = "token"
include_resource_uri = False
fields = ["key"]
list_allowed_methods = []
detail_allowed_methods = ["get"]
authentication = BasicAuthentication()
def get_detail(self, request, **kwargs):
if kwargs["pk"] != "auth":
raise NotImplementedError("Resource not found")
obj = ApiKey.objects.get(user=request.user)
bundle = self.build_bundle(obj=obj, request=request)
bundle = self.full_dehydrate(bundle)
bundle = self.alter_detail_data_to_serialize(request, bundle)
return self.create_response(request, bundle)
@marteinn
Copy link

Nice work!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment