1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.mobility.shared.controllers;
17
18 import java.io.IOException;
19 import java.io.OutputStream;
20 import java.util.List;
21 import java.sql.Timestamp;
22
23 import javax.servlet.http.HttpServletRequest;
24 import javax.servlet.http.HttpServletResponse;
25
26 import org.kuali.mobility.file.entity.File;
27 import org.kuali.mobility.file.service.FileService;
28 import org.springframework.beans.factory.annotation.Autowired;
29 import org.springframework.stereotype.Controller;
30 import org.springframework.ui.Model;
31 import org.springframework.web.bind.annotation.PathVariable;
32 import org.springframework.web.bind.annotation.RequestMapping;
33 import org.springframework.web.bind.annotation.RequestMethod;
34 import org.springframework.web.bind.annotation.ResponseBody;
35 import org.springframework.web.multipart.MultipartFile;
36 import org.springframework.web.multipart.MultipartHttpServletRequest;
37
38 @Controller
39 @RequestMapping("/files")
40 public class FileController {
41
42 private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(FileController.class);
43
44 @Autowired
45 private FileService fileService;
46
47 @RequestMapping(value = "/get/{id}", method = RequestMethod.GET)
48 public void getFile(@PathVariable("id") Long id, HttpServletRequest request, HttpServletResponse response) {
49
50 File file = fileService.findFileById(id);
51 LOG.info("--- Retrieve File ---");
52 LOG.info(file);
53
54 response.setContentType(file.getContentType());
55 response.setContentLength(file.getBytes().length);
56 try {
57 OutputStream out = response.getOutputStream();
58 out.write(file.getBytes());
59 } catch (IOException e) {
60 e.printStackTrace();
61 }
62
63
64 }
65
66 @RequestMapping(method = RequestMethod.GET)
67 public String index(HttpServletRequest request, Model uiModel) {
68 List<File> files = fileService.findAllFiles();
69 uiModel.addAttribute("files", files);
70 uiModel.addAttribute("fileCount", files.size());
71
72 return "files";
73 }
74
75 @SuppressWarnings("unchecked")
76 @RequestMapping(value = "/remove/{fileHash}", method = RequestMethod.GET)
77 public String removeFile(Model uiModel, HttpServletRequest request, @PathVariable("fileHash") Long fileHash) {
78 File fileToDelete = fileService.findFileById(fileHash);
79 if(fileToDelete != null){
80 LOG.info("Will delete file with Id: " + fileToDelete.getId());
81 if(fileService.removeFile(fileToDelete)){
82 LOG.info("Did delete file.");
83 }
84 }
85
86 return "files";
87 }
88
89 @RequestMapping(value = "/save", method = RequestMethod.POST)
90 @ResponseBody
91 public String handleFormUpload(MultipartHttpServletRequest request) {
92
93 MultipartFile mfile = request.getFile("file");
94
95 File file = new File(mfile);
96 file.setPostedTimestamp(new Timestamp(System.currentTimeMillis()));
97 Long fileId = fileService.saveFile(file);
98
99 LOG.info("--- Saving File ---");
100 LOG.info(file);
101
102 return "{\"name\":\"" + file.getFileName() + "\",\"fileid\":\"" + file.getId() + "\",\"size\":\"" + file.getBytes().length + "\"}";
103 }
104 }