View Javadoc
1   /**
2    * Copyright 2011-2014 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   */
15  
16  package org.kuali.mobility.icons.controllers;
17  
18  import org.apache.commons.io.IOUtils;
19  import org.kuali.mobility.icons.entity.WebIcon;
20  import org.kuali.mobility.icons.service.IconsService;
21  import org.slf4j.Logger;
22  import org.slf4j.LoggerFactory;
23  import org.springframework.beans.factory.annotation.Autowired;
24  import org.springframework.beans.factory.annotation.Qualifier;
25  import org.springframework.stereotype.Controller;
26  import org.springframework.ui.Model;
27  import org.springframework.web.bind.annotation.PathVariable;
28  import org.springframework.web.bind.annotation.RequestMapping;
29  
30  import javax.servlet.http.HttpServletRequest;
31  import javax.servlet.http.HttpServletResponse;
32  import java.io.File;
33  import java.io.FileInputStream;
34  import java.io.IOException;
35  import java.io.InputStream;
36  import java.util.List;
37  
38  /**
39   * Controller for Icons
40   * @author Kuali Mobility Team (mobility.collab@kuali.org)
41   * @since 3.1
42   */
43  @Controller
44  public class WebIconsController {
45  
46  	private static final Logger LOG = LoggerFactory.getLogger(WebIconsController.class);
47  
48  	/**
49  	 * A reference to the icon service
50  	 */
51      @Autowired
52      @Qualifier("iconsService")
53      private IconsService iconService;
54  
55     // TODO this is only appropriate for home screen
56  	@RequestMapping("css/icons.css")
57  	public String getIconsCss(Model uiModel){
58  		List<WebIcon> icons = iconService.getIcons();
59  
60  		uiModel.addAttribute("icons", icons);
61  		return "icons/icons";
62  	}
63  
64      /**
65       * Controller for a test page that displays all the icons
66       * @param uiModel
67       * @return
68       */
69  	@RequestMapping("iconTest")
70  	public String iconTest(Model uiModel){
71  		List<WebIcon> icons = iconService.getIcons();
72  
73  		uiModel.addAttribute("icons", icons);
74  		return "icons/iconTest";
75  	}
76  	
77  	// getIcon/news-114
78  
79      /**
80       * Controller to get an icon for a specific size.
81       * Example URL: getIcon/news-114
82       * The above will get the news icon, in 144x144 pixels.
83       *
84       * @param iconName Name of the icon to get.
85       * @param size Size to get the icon in
86       * @param request The HttpServletRequest being handled
87       * @param response The HttpServletResponse that will reply.
88       * @throws IOException Thrown when there is an IOException while converting the icon
89       */
90  	@RequestMapping("getIcon/{iconName:[a-zA-Z]+}-{size:\\d+}")
91  	public void getImageSize(
92              @PathVariable("iconName") String iconName,
93              @PathVariable("size") int size,
94              HttpServletRequest request,
95              HttpServletResponse response) throws IOException {
96  		
97  		writeIconToHttpResponse(iconName, null, size, request, response);
98  	}
99  	
100     /**
101      * Controller to get an icon for a specific size, as well as for a specific theme.
102      * Example URL: getIcon/news-themeB-114
103      * The above will get the news icon, in 144x144 pixels, for the themeB theme.
104      *
105      * @param iconName Name of the icon to get.
106      * @param theme The theme to get the icon in
107      * @param size Size to get the icon in
108      * @param request The HttpServletRequest being handled
109      * @param response The HttpServletResponse that will reply.
110      * @throws IOException Thrown when there is an IOException while converting the icon
111      */
112 	@RequestMapping("getIcon/{iconName:[a-zA-Z]+}-{theme:[a-zA-Z]+}-{size:\\d+}")
113 	public void getImageThemeSize(
114 			@PathVariable("iconName") String iconName,
115 			@PathVariable("theme") String theme,
116 			@PathVariable("size") int size,
117 			HttpServletRequest request,
118 			HttpServletResponse response) throws IOException {
119 		
120 		writeIconToHttpResponse(iconName, theme, size, request, response);
121 	}
122 	
123     /**
124      * Controller to get an icon for a specific size while applying a multiplier.
125      * Example URL: getIcon/news-114@2
126      * The above will get the news icon, in 288x288 pixels (a 2 times multiplier is added to the 144 size).
127      *
128      * @param iconName Name of the icon to get.
129      * @param size Size to get the icon in
130      * @param multiplier The multiplier to apply to the icon.
131      * @param request The HttpServletRequest being handled
132      * @param response The HttpServletResponse that will reply.
133      * @throws IOException Thrown when there is an IOException while converting the icon
134      */
135 	@RequestMapping("getIcon/{iconName:[a-zA-Z]+}-{size:\\d+}@{multiplier:\\d+}")
136 	public void getIconWithMultiplier(
137 			@PathVariable("iconName") String iconName,
138 			@PathVariable("size") int size,
139 			@PathVariable("multiplier") int multiplier,
140 			HttpServletRequest request,
141 			HttpServletResponse response) throws IOException {
142 		
143 		writeIconToHttpResponse(iconName, null, (size * multiplier), request, response);
144 	}
145 	
146     /**
147      * Controller to get an icon for a specific size (applying a multiplier) and a specified theme.
148      * Example URL: getIcon/news-themeB-114@2
149      * The above will get the news icon in themeB theme, with a size of
150      * 288x288 pixels (a 2 times multiplier is added to the 144 size).
151      *
152      * @param iconName Name of the icon to get.
153      * @param theme The theme to get the icon in
154      * @param size Size to get the icon in
155      * @param multiplier The multiplier to apply to the icon.
156      * @param request The HttpServletRequest being handled
157      * @param response The HttpServletResponse that will reply.
158      * @throws IOException Thrown when there is an IOException while converting the icon
159      */
160     @RequestMapping("getIcon/{iconName:[a-zA-Z]+}-{theme:[a-zA-Z]+}-{size:\\d+}@{multiplier:\\d+}")
161     public void getImageThemeWithMultiplier(
162             @PathVariable("iconName") String iconName,
163             @PathVariable("theme") String theme,
164             @PathVariable("size") int size,
165             @PathVariable("multiplier") int multiplier,
166             HttpServletRequest request,
167             HttpServletResponse response) throws IOException {
168 
169         writeIconToHttpResponse(iconName, theme, (size * multiplier), request, response);
170     }
171 
172     /**
173      * Get the icon matching all the criteria of the request and write it the the HttpServletResponse.
174      *
175      * @param iconName Name of the icon to get.
176      * @param theme The theme to get the icon in.
177      * @param size Size to get the icon in.
178      * @param request The HttpServletRequest being handled.
179      * @param response The HttpServletResponse that will reply.
180      * @throws IOException Thrown if there is an exception creating the icon or writing it to the response.
181      */
182 	private void writeIconToHttpResponse(String iconName, String theme, int size, HttpServletRequest request, HttpServletResponse response) throws IOException{
183 		long dateChanged = request.getDateHeader("If-Modified-Since") / 1000;
184 		File imageFile = iconService.getImageFile(iconName, theme, size);
185 		
186 		long mediaChanged = imageFile.lastModified() / 1000;
187 		if (dateChanged == mediaChanged){
188 			response.setStatus(HttpServletResponse.SC_NOT_MODIFIED);
189 			return;
190 		}
191 		response.setContentType("image/png");
192 		InputStream imageInput = new FileInputStream(imageFile);
193 		response.setDateHeader("Last-Modified", imageFile.lastModified());
194 
195 		int bytesWritten = IOUtils.copy(imageInput, response.getOutputStream());
196 		response.setContentLength(bytesWritten);
197         response.flushBuffer();
198 	}
199 
200 
201 
202 }