Giter VIP home page Giter VIP logo

Comments (4)

marcgibbons avatar marcgibbons commented on May 18, 2024

Thanks for the message. It's hard to say what is happening. Can you confirm that both your views are instances of APIView ?

from django-rest-swagger.

ivanzaguirre avatar ivanzaguirre commented on May 18, 2024

Hey Marc, thanks for the quick response. I confirm all the views are APIView instances. Concretely, this:

(urls.py)

url(r'^user-(?P<user_id>[a-zA-Z0-9]+)/profile$', user.UserProfileView.as_view() ),

is declared like:

(views.py)

class UserProfileView(APIView):
"""Returns a xmpp user profile object. Now, only user-me is supported"""
authentication_classes = (authentication.SessionAuthentication,)
permission_classes = (permissions.IsAuthenticated,)
serializer_class = UserProfileSerializer

As i mentioned, this is only happen when resources are declared like this. We've other resources declared like:

url(r'^rooms/room-(?P[a-zA-Z0-9-]+)$', room.RoomView.as_view() ),

(RoomView is a RetrieveAPIView instance)

That are not being affected and are properly being displayed in the swagger html page.

I've tried to check what could be wrong in your code but it's a non trivial issue. Please, feel free to request any other info can help you find the issue

from django-rest-swagger.

marctc avatar marctc commented on May 18, 2024

Same problem here. I have a url with this format:
regex=r'^colony/nearby/(?P[0-9]+)/(?P[0-9]+)/$'

but don't appear in the api list. If I put 'user' instead of 'colony', swagger inspects it
propperly.

I'm using Django 1.5.5.

from django-rest-swagger.

craigteegarden avatar craigteegarden commented on May 18, 2024

I believe I have a similar issue, and it appears to originate with the get_top_level_apis method found here: https://github.com/marcgibbons/django-rest-swagger/blob/master/rest_framework_swagger/urlparser.py#L67-L70

def get_top_level_apis(self, apis):
        """
        Returns the 'top level' APIs (ie. swagger 'resources')

        apis -- list of APIs as returned by self.get_apis
        """
        root_paths = set()

        api_paths = [endpoint['path'].strip("/") for endpoint in apis]

        for path in api_paths:
            if '{' in path:
                continue
            root_paths.add(path)

        return root_paths

For example, if you have an analytics endpoint, with URLs such as /analytics/{pk}/, but do not have a /analytics/ endpoint (no parameters) then the for loop in get_top_level_apis will not record /analytics/ in the root_paths list, causing it to not show up in the list of available APIs.

I temporarily solved this by creating an empty APIView that maps to /analytics/ which lets django-rest-swagger detect it:

views.py:

class Analytics(APIView):
    pass

urls.py:

url(r'^analytics/$', views.Analytics.as_view()),

from django-rest-swagger.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.