Skip to content
Snippets Groups Projects
views.py 857 B
Newer Older
  • Learn to ignore specific revisions
  • from rest_framework.views import APIView
    from rest_framework.response import Response
    from funkwhale_api.common.permissions import ConditionalAuthentication
    
    from .client import client
    
    
    class APISearch(APIView):
        permission_classes = [ConditionalAuthentication]
    
        def get(self, request, *args, **kwargs):
            results = client.search(request.GET['query'])
    
            return Response([
                client.to_funkwhale(result)
                for result in results
            ])
    
    
    
    class APISearchs(APIView):
        permission_classes = [ConditionalAuthentication]
    
        def post(self, request, *args, **kwargs):
            results = client.search_multiple(request.data)
    
            return Response({
                key: [
                    client.to_funkwhale(result)
                    for result in group
                ]
                for key, group in results.items()
            })