django-orchestra-test/orchestra/api/actions.py

22 lines
793 B
Python
Raw Normal View History

2014-05-08 16:59:35 +00:00
from rest_framework import status
from rest_framework.decorators import action
from rest_framework.response import Response
from .serializers import SetPasswordSerializer
class SetPasswordApiMixin(object):
@action(serializer_class=SetPasswordSerializer)
def set_password(self, request, pk):
obj = self.get_object()
2014-10-07 13:08:59 +00:00
data = request.DATA
if isinstance(data, basestring):
data = {'password': data}
serializer = SetPasswordSerializer(data=data)
2014-05-08 16:59:35 +00:00
if serializer.is_valid():
obj.set_password(serializer.data['password'])
2014-10-07 13:08:59 +00:00
obj.save(update_fields=['password'])
2014-05-08 16:59:35 +00:00
return Response({'status': 'password changed'})
else:
return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)