View Javadoc
1   /*
2    * Copyright (c) 2002-2021, City of Paris
3    * All rights reserved.
4    *
5    * Redistribution and use in source and binary forms, with or without
6    * modification, are permitted provided that the following conditions
7    * are met:
8    *
9    *  1. Redistributions of source code must retain the above copyright notice
10   *     and the following disclaimer.
11   *
12   *  2. Redistributions in binary form must reproduce the above copyright notice
13   *     and the following disclaimer in the documentation and/or other materials
14   *     provided with the distribution.
15   *
16   *  3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
17   *     contributors may be used to endorse or promote products derived from
18   *     this software without specific prior written permission.
19   *
20   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21   * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23   * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
24   * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25   * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26   * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27   * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28   * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30   * POSSIBILITY OF SUCH DAMAGE.
31   *
32   * License 1.0
33   */
34  package fr.paris.lutece.plugins.blog.web;
35  
36  import fr.paris.lutece.plugins.blog.business.Blog;
37  import fr.paris.lutece.plugins.blog.business.TagHome;
38  import fr.paris.lutece.plugins.blog.business.portlet.BlogPublication;
39  import fr.paris.lutece.plugins.blog.business.portlet.BlogPublicationHome;
40  import fr.paris.lutece.plugins.blog.service.BlogService;
41  import fr.paris.lutece.portal.util.mvc.commons.annotations.View;
42  import fr.paris.lutece.portal.util.mvc.xpage.MVCApplication;
43  import fr.paris.lutece.portal.util.mvc.xpage.annotations.Controller;
44  import fr.paris.lutece.portal.web.xpages.XPage;
45  
46  import java.util.ArrayList;
47  import java.util.List;
48  import java.util.Map;
49  
50  import javax.servlet.http.HttpServletRequest;
51  
52  /**
53   * This class manages Blogs page.
54   *
55   */
56  @Controller( xpageName = BlogApp.XPAGE_NAME, pageTitleI18nKey = BlogApp.MESSAGE_PAGE_TITLE, pagePathI18nKey = BlogApp.MESSAGE_PATH )
57  public class BlogApp extends MVCApplication
58  {
59  
60      /**
61       * 
62       */
63      private static final long serialVersionUID = 1L;
64  
65      protected static final String XPAGE_NAME = "blog";
66  
67      // Messages
68      protected static final String MESSAGE_PAGE_TITLE = "blog.xpage.blog.view.pageTitle";
69      protected static final String MESSAGE_PATH = "blog.xpage.blog.view.pagePathLabel";
70      // Templates
71  
72      private static final String TEMPLATE_VIEW_BLOG = "skin/plugins/blog/view_blog.html";
73  
74      // Parameters
75      protected static final String PARAMETER_ID_BLOG = "id";
76      protected static final String PARAMETER_VERSION_BLOG = "version";
77      protected static final String PARAMETER_ID_PORTLET = "portlet_id";
78  
79      protected static final String PARAMETER_VIEW = "view";
80  
81      // Properties for page titles
82  
83      // Filter Marks
84      protected static final String MARK_BLOG = "blog";
85      protected static final String MARK_LIST_DOC = "blog_list";
86  
87      // Views
88      private static final String VIEW_DETAILS = "documentDetails";
89      protected static final String MARK_LIST_TAG = "list_tag";
90  
91      /**
92       * Gets the BLOG details view
93       * 
94       * @param request
95       *            The HTTP request
96       * @return The view
97       */
98      @View( value = VIEW_DETAILS, defaultView = true )
99      public XPage getBlogDetails( HttpServletRequest request )
100     {
101         int nVersion = -1;
102         List<BlogPublication> listBlogPub = new ArrayList<>( );
103 
104         int nId = Integer.parseInt( request.getParameter( PARAMETER_ID_BLOG ) );
105 
106         String strVersion = request.getParameter( PARAMETER_VERSION_BLOG );
107         if ( strVersion != null )
108         {
109             nVersion = Integer.parseInt( strVersion );
110         }
111 
112 
113         String idPortlet = request.getParameter( PARAMETER_ID_PORTLET );
114         if ( idPortlet != null && !idPortlet.isEmpty( ) )
115         {
116 
117             listBlogPub = BlogPublicationHome.getDocPublicationByPortlet( Integer.parseInt( idPortlet ) );
118         }
119         List<Blog> listBlogs = new ArrayList<>( );
120 
121         for ( Blog doc : BlogService.getInstance( ).getListBlogWithoutBinaries( ) )
122         {
123             for ( BlogPublication pub : listBlogPub )
124             {
125                 if ( doc.getId( ) == pub.getIdBlog( ) )
126                 {
127                     doc.setAttachedPortletId( Integer.parseInt( idPortlet ) );
128                     listBlogs.add( doc );
129 
130                 }
131             }
132 
133         }
134 
135         Blog blog;
136         if( nVersion > -1 )
137         {
138             blog = BlogService.getInstance( ).loadBlogByVersion( nId, nVersion );
139         }
140         else
141         {
142             blog = BlogService.getInstance( ).loadBlog( nId );
143         }
144         Map<String, Object> model = getModel( );
145         model.put( MARK_BLOG, blog );
146         model.put( MARK_LIST_DOC, listBlogs );
147         model.put( MARK_LIST_TAG, TagHome.getTagsReferenceList( ) );
148 
149         return getXPage( TEMPLATE_VIEW_BLOG, getLocale( request ), model );
150     }
151 
152 }