示例#1
0
 def from_path(self, complete_path, lang, exclude_drafts=True):
     """Return a :class:`Page <pages.models.Page>` according to
     the page's path."""
     slug, path, lang = get_slug_and_relative_path(complete_path, lang)
     page_ids = ContentManager().get_page_ids_by_slug(slug)
     pages_list = self.on_site().filter(id__in=page_ids)
     if exclude_drafts:
         pages_list = pages_list.exclude(status=self.model.DRAFT)
     current_page = None
     # We need to use the full URL to ensure we don't load an nonexistent page
     for page in pages_list:
         if (page.get_complete_slug(lang) + "/" == complete_path) or (page.get_complete_slug(lang) == complete_path):                
             return page
     return None
示例#2
0
 def from_path(self, complete_path, lang, exclude_drafts=True):
     """Return a :class:`Page <pages.models.Page>` according to
     the page's path."""
     slug, path, lang = get_slug_and_relative_path(complete_path, lang)
     page_ids = ContentManager().get_page_ids_by_slug(slug)
     pages_list = self.on_site().filter(id__in=page_ids)
     if exclude_drafts:
         pages_list = pages_list.exclude(status=self.model.DRAFT)
     current_page = None
     if len(pages_list) == 1:
         return pages_list[0]
     # if more than one page is matching the slug,
     # we need to use the full URL
     if len(pages_list) > 1:
         for page in pages_list:
             if page.get_complete_slug(lang) == complete_path:
                 return page
     return None
示例#3
0
 def from_path(self, path, lang, exclude_drafts=True):
     """Get a page according to the page's path."""
     from pages.models import Content, Page
     from pages.http import get_slug_and_relative_path
     slug, rpath = get_slug_and_relative_path(path)
     page_ids = Content.objects.get_page_ids_by_slug(slug)
     pages_list = self.filter(id__in=page_ids)
     if exclude_drafts:
         pages_list = pages_list.exclude(status=Page.DRAFT)
     current_page = None
     if len(pages_list) == 1:
         return pages_list[0]
     # more than one page matching the slug, let's use the full url
     if len(pages_list) > 1:
         for page in pages_list:
             if page.get_url(lang) == path:
                 return page
     return None
示例#4
0
def details(request, path=None, lang=None, delegation=True, **kwargs):
    """This view get the root pages for navigation
    and the current page to display if there is any.

    All is rendered with the current page's template.

    This view use the auto_render decorator. It means
    that you can use the only_context extra parameter to get
    only the local variables of this view without rendering
    the template.

    >>> from pages.views import details
    >>> context = details(request, only_context=True)

    This can be usefull if you want to write your own
    view. You can reuse the following code without having to
    copy and paste it."""
    
    pages_navigation = Page.objects.navigation().order_by("tree_id")
    current_page = False
    template_name = settings.PAGE_DEFAULT_TEMPLATE

    if path is None:
        slug, path, lang = get_slug_and_relative_path(request.path, lang)

    # Can be an empty string or None
    if not lang:
        lang = get_language_from_request(request)

    context = {
        'path': path,
        'pages_navigation': pages_navigation,
        'lang': lang,
    }

    if lang not in [key for (key, value) in settings.PAGE_LANGUAGES]:
        raise Http404

    is_user_staff = request.user.is_authenticated() and request.user.is_staff
    if path:
        current_page = Page.objects.from_path(path, lang,
            exclude_drafts=(not is_user_staff))
    elif pages_navigation:
        current_page = Page.objects.root()[0]

    # if no pages has been found, we will try to find it via an Alias
    if not current_page:
        alias = PageAlias.objects.from_path(request, path, lang)
        if alias:
            url = alias.page.get_url_path(lang)
            return HttpResponsePermanentRedirect(url)
        raise Http404

    if ((not is_user_staff) and
            current_page.calculated_status in (Page.DRAFT, Page.EXPIRED)):
        raise Http404

    if current_page.redirect_to_url:
        return HttpResponsePermanentRedirect(current_page.redirect_to_url)
    
    if current_page.redirect_to:
        return HttpResponsePermanentRedirect(
            current_page.redirect_to.get_url_path(lang))
    
    template_name = current_page.get_template()
    
    if request.is_ajax():
        template_name = "body_%s" % template_name

    if current_page:
        context['current_page'] = current_page

    if settings.PAGE_EXTRA_CONTEXT:
        context.update(settings.PAGE_EXTRA_CONTEXT())

    if delegation and current_page.delegate_to:
        urlconf = get_urlconf(current_page.delegate_to)
        result = resolve('/', urlconf)
        if len(result):
            view, args, kwargs = result
            kwargs['current_page'] = current_page
            kwargs['path'] = path
            kwargs['lang'] = lang
            kwargs['pages_navigation'] = pages_navigation
            return view(
                request,
                *args,
                **kwargs
            )

    return template_name, context