2012-06-09 22:55:55 -03:00
|
|
|
/*
|
|
|
|
* Copyright [2011] [wisemapping]
|
|
|
|
*
|
|
|
|
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
|
|
|
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
|
|
|
* "powered by wisemapping" text requirement on every single page;
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the license at
|
|
|
|
*
|
|
|
|
* http://www.wisemapping.org/license
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2012-04-02 14:11:28 -03:00
|
|
|
package com.wisemapping.ncontroller;
|
|
|
|
|
|
|
|
|
2012-06-17 19:16:39 -03:00
|
|
|
import com.wisemapping.exceptions.WiseMappingException;
|
2012-06-17 12:24:09 -03:00
|
|
|
import com.wisemapping.model.CollaborationRole;
|
2012-04-02 14:11:28 -03:00
|
|
|
import com.wisemapping.model.MindMap;
|
2012-06-17 19:16:39 -03:00
|
|
|
import com.wisemapping.model.MindMapHistory;
|
2012-04-02 14:11:28 -03:00
|
|
|
import com.wisemapping.security.Utils;
|
|
|
|
import com.wisemapping.service.MindmapService;
|
|
|
|
import com.wisemapping.view.MindMapBean;
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
2012-06-09 22:49:54 -03:00
|
|
|
import org.springframework.beans.factory.annotation.Qualifier;
|
2012-06-18 00:40:42 -03:00
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
2012-04-02 14:11:28 -03:00
|
|
|
import org.springframework.stereotype.Controller;
|
2012-06-17 02:51:01 -03:00
|
|
|
import org.springframework.ui.Model;
|
2012-04-02 14:11:28 -03:00
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
import org.springframework.web.servlet.ModelAndView;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
|
|
|
@Controller
|
|
|
|
public class MindmapController {
|
2012-06-03 20:23:31 -03:00
|
|
|
|
2012-06-18 00:40:42 -03:00
|
|
|
|
2012-06-09 22:49:54 -03:00
|
|
|
@Qualifier("mindmapService")
|
2012-04-02 14:11:28 -03:00
|
|
|
@Autowired
|
|
|
|
private MindmapService mindmapService;
|
|
|
|
|
2012-06-18 00:40:42 -03:00
|
|
|
@Value("${site.baseurl}")
|
|
|
|
String siteBaseUrl;
|
|
|
|
|
|
|
|
|
2012-06-17 02:51:01 -03:00
|
|
|
@RequestMapping(value = "maps/import")
|
|
|
|
public String showImportPage() {
|
|
|
|
return "mindmapImport";
|
2012-04-02 14:11:28 -03:00
|
|
|
}
|
|
|
|
|
2012-06-17 02:51:01 -03:00
|
|
|
@RequestMapping(value = "maps/{id}/details")
|
|
|
|
public String showDetails(@PathVariable int id, @NotNull Model model) {
|
|
|
|
final MindMapBean mindmap = findMindmapBean(id);
|
|
|
|
model.addAttribute("mindmap", mindmap);
|
|
|
|
return "mindmapDetail";
|
2012-06-03 19:19:48 -03:00
|
|
|
}
|
|
|
|
|
2012-06-17 02:51:01 -03:00
|
|
|
@RequestMapping(value = "maps/{id}/print")
|
|
|
|
public String showPrintPage(@PathVariable int id, @NotNull Model model) {
|
2012-06-18 00:40:42 -03:00
|
|
|
final MindMapBean mindmap = findMindmapBean(id);
|
2012-06-17 02:51:01 -03:00
|
|
|
model.addAttribute("mindmap", mindmap);
|
|
|
|
return "mindmapPrint";
|
2012-06-03 11:16:38 -03:00
|
|
|
}
|
|
|
|
|
2012-06-17 02:51:01 -03:00
|
|
|
@RequestMapping(value = "maps/{id}/export")
|
|
|
|
public String showExportPage(@PathVariable int id, @NotNull Model model) throws IOException {
|
2012-04-14 18:46:07 -03:00
|
|
|
final MindMap mindmap = findMindmap(id);
|
2012-06-17 02:51:01 -03:00
|
|
|
model.addAttribute("mindmap", mindmap);
|
|
|
|
return "mindmapExport";
|
|
|
|
}
|
|
|
|
|
|
|
|
@RequestMapping(value = "maps/{id}/exportf")
|
|
|
|
public String showExportPageFull(@PathVariable int id, @NotNull Model model) throws IOException {
|
|
|
|
showExportPage(id, model);
|
|
|
|
return "mindmapExportFull";
|
2012-04-14 18:46:07 -03:00
|
|
|
}
|
|
|
|
|
2012-06-03 11:16:38 -03:00
|
|
|
@RequestMapping(value = "maps/{id}/share")
|
2012-06-17 02:51:01 -03:00
|
|
|
public String showSharePage(@PathVariable int id, @NotNull Model model) {
|
2012-06-03 11:16:38 -03:00
|
|
|
final MindMap mindmap = findMindmap(id);
|
2012-06-17 02:51:01 -03:00
|
|
|
model.addAttribute("mindmap", mindmap);
|
|
|
|
return "mindmapShare";
|
2012-06-03 11:16:38 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
@RequestMapping(value = "maps/{id}/sharef")
|
2012-06-17 02:51:01 -03:00
|
|
|
public String showSharePageFull(@PathVariable int id, @NotNull Model model) {
|
|
|
|
showSharePage(id, model);
|
|
|
|
return "mindmapShareFull";
|
2012-06-03 11:16:38 -03:00
|
|
|
}
|
|
|
|
|
2012-05-27 18:15:46 -03:00
|
|
|
@RequestMapping(value = "maps/{id}/publish")
|
2012-06-17 02:51:01 -03:00
|
|
|
public String showPublishPage(@PathVariable int id, @NotNull Model model) {
|
2012-05-20 21:46:55 -03:00
|
|
|
final MindMap mindmap = findMindmap(id);
|
2012-06-17 02:51:01 -03:00
|
|
|
model.addAttribute("mindmap", mindmap);
|
2012-06-18 00:40:42 -03:00
|
|
|
model.addAttribute("baseUrl", siteBaseUrl);
|
2012-06-17 02:51:01 -03:00
|
|
|
return "mindmapPublish";
|
2012-05-27 18:15:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
@RequestMapping(value = "maps/{id}/publishf")
|
2012-06-17 02:51:01 -03:00
|
|
|
public String showPublishPageFull(@PathVariable int id, @NotNull Model model) {
|
|
|
|
showPublishPage(id, model);
|
|
|
|
return "mindmapPublishFull";
|
|
|
|
}
|
|
|
|
|
|
|
|
@RequestMapping(value = "maps/{id}/history", method = RequestMethod.GET)
|
|
|
|
public String showHistoryPage(@PathVariable int id, @NotNull Model model) {
|
|
|
|
model.addAttribute("mindmapId", id);
|
|
|
|
return "mindmapHistory";
|
|
|
|
}
|
|
|
|
|
|
|
|
@RequestMapping(value = "maps/{id}/historyf", method = RequestMethod.GET)
|
|
|
|
public String showHistoryPageFull(@PathVariable int id, @NotNull Model model) {
|
|
|
|
showHistoryPage(id, model);
|
|
|
|
return "mindmapHistoryFull";
|
|
|
|
}
|
|
|
|
|
|
|
|
@RequestMapping(value = "maps/")
|
|
|
|
public String showListPage() {
|
|
|
|
return "mindmapList";
|
2012-05-20 21:46:55 -03:00
|
|
|
}
|
|
|
|
|
2012-06-17 12:24:09 -03:00
|
|
|
@RequestMapping(value = "maps/{id}/edit", method = RequestMethod.GET)
|
|
|
|
public String showMindmapEditorPage(@PathVariable int id, @NotNull Model model) {
|
|
|
|
final MindMapBean mindmapBean = findMindmapBean(id);
|
|
|
|
final MindMap mindmap = mindmapBean.getDelegated();
|
2012-04-14 18:46:07 -03:00
|
|
|
|
2012-06-17 12:24:09 -03:00
|
|
|
String result;
|
|
|
|
if (mindmap.hasPermissions(Utils.getUser(), CollaborationRole.EDITOR)) {
|
|
|
|
model.addAttribute("mindmap", mindmapBean);
|
|
|
|
result = "mindmapEditor";
|
|
|
|
} else {
|
|
|
|
result = "redirect:view";
|
2012-04-14 18:46:07 -03:00
|
|
|
}
|
2012-06-17 12:24:09 -03:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
@RequestMapping(value = "maps/{id}/view", method = RequestMethod.GET)
|
|
|
|
public String showMindmapViewerPage(@PathVariable int id, @NotNull Model model) {
|
|
|
|
final MindMapBean mindmapBean = findMindmapBean(id);
|
|
|
|
model.addAttribute("mindmap", mindmapBean);
|
|
|
|
model.addAttribute("readOnlyMode", true);
|
|
|
|
return "mindmapEditor";
|
2012-04-14 18:46:07 -03:00
|
|
|
}
|
|
|
|
|
2012-06-17 19:16:39 -03:00
|
|
|
@RequestMapping(value = "maps/{id}/{hid}/view", method = RequestMethod.GET)
|
|
|
|
public String showMindmapViewerRevPage(@PathVariable int id, @PathVariable int hid, @NotNull Model model) throws WiseMappingException {
|
|
|
|
final MindMapBean mindmapBean = findMindmapBean(id);
|
|
|
|
|
|
|
|
final MindMapHistory mindmapHistory = mindmapService.findMindmapHistory(id, hid);
|
|
|
|
mindmapBean.getDelegated().setXml(mindmapHistory.getXml());
|
|
|
|
model.addAttribute("mindmap", mindmapBean);
|
|
|
|
model.addAttribute("readOnlyMode", true);
|
|
|
|
|
|
|
|
return "mindmapEditor";
|
|
|
|
}
|
|
|
|
|
2012-06-03 20:23:31 -03:00
|
|
|
@RequestMapping(value = "maps/{id}/embed")
|
2012-06-18 00:40:42 -03:00
|
|
|
public ModelAndView showEmbeddedPage(@PathVariable int id, @RequestParam(required = false) Float zoom) {
|
2012-06-03 20:23:31 -03:00
|
|
|
ModelAndView view;
|
2012-06-18 00:40:42 -03:00
|
|
|
final MindMapBean mindmap = findMindmapBean(id);
|
2012-06-03 20:23:31 -03:00
|
|
|
view = new ModelAndView("mindmapEmbedded", "mindmap", mindmap);
|
|
|
|
view.addObject("zoom", zoom == null ? 1 : zoom);
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
2012-06-18 00:40:42 -03:00
|
|
|
@RequestMapping(value = "maps/{id}/public", method = RequestMethod.GET)
|
|
|
|
public String showPublicViewPage(@PathVariable int id, @NotNull Model model) throws WiseMappingException {
|
|
|
|
return this.showPrintPage(id, model);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Deprecated
|
|
|
|
@RequestMapping(value = "publicView", method = RequestMethod.GET)
|
2012-06-18 01:15:46 -03:00
|
|
|
public String showPublicViewPageLegacy(@RequestParam(required = true) int mapId) {
|
2012-06-18 00:40:42 -03:00
|
|
|
return "redirect:maps/" + mapId + "/public";
|
|
|
|
}
|
|
|
|
|
|
|
|
@Deprecated
|
|
|
|
@RequestMapping(value = "embeddedView", method = RequestMethod.GET)
|
2012-06-18 01:15:46 -03:00
|
|
|
public String showPublicViewLegacyPage(@RequestParam(required = true) int mapId, @RequestParam(required = false) int zoom) {
|
2012-06-18 00:40:42 -03:00
|
|
|
return "redirect:maps/" + mapId + "/embed?zoom=" + zoom;
|
|
|
|
}
|
2012-04-02 14:11:28 -03:00
|
|
|
|
|
|
|
private MindMap findMindmap(long mapId) {
|
2012-06-17 19:16:39 -03:00
|
|
|
final MindMap mindmap = mindmapService.findMindmapById((int) mapId);
|
2012-04-02 14:11:28 -03:00
|
|
|
if (mindmap == null) {
|
|
|
|
throw new IllegalArgumentException("Mindmap could not be found");
|
|
|
|
}
|
|
|
|
return mindmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
private MindMapBean findMindmapBean(long mapId) {
|
2012-06-17 21:43:34 -03:00
|
|
|
return new MindMapBean(findMindmap(mapId), Utils.getUser());
|
2012-04-02 14:11:28 -03:00
|
|
|
}
|
|
|
|
|
2012-06-17 02:51:01 -03:00
|
|
|
private boolean isWelcomeMap(MindMapBean map) {
|
2012-04-14 18:46:07 -03:00
|
|
|
return map.getTitle().startsWith("Welcome ");
|
|
|
|
}
|
2012-04-02 14:11:28 -03:00
|
|
|
}
|