2014-01-25 23:21:17 -03:00
|
|
|
package com.wisemapping.rest;
|
|
|
|
|
2014-01-28 02:28:16 -03:00
|
|
|
import com.wisemapping.exceptions.LabelCouldNotFoundException;
|
|
|
|
import com.wisemapping.exceptions.MapCouldNotFoundException;
|
2014-01-25 23:21:17 -03:00
|
|
|
import com.wisemapping.exceptions.WiseMappingException;
|
|
|
|
import com.wisemapping.model.Label;
|
2014-01-28 02:28:16 -03:00
|
|
|
import com.wisemapping.model.Mindmap;
|
2014-01-25 23:21:17 -03:00
|
|
|
import com.wisemapping.model.User;
|
|
|
|
import com.wisemapping.rest.model.RestLabel;
|
2014-01-26 18:21:01 -03:00
|
|
|
import com.wisemapping.rest.model.RestLabelList;
|
2014-01-28 02:28:16 -03:00
|
|
|
import com.wisemapping.rest.model.RestMindmapInfo;
|
|
|
|
import com.wisemapping.rest.model.RestMindmapList;
|
2014-01-25 23:21:17 -03:00
|
|
|
import com.wisemapping.security.Utils;
|
|
|
|
import com.wisemapping.service.LabelService;
|
2014-01-28 02:28:16 -03:00
|
|
|
import com.wisemapping.service.MindmapService;
|
2014-01-25 23:21:17 -03:00
|
|
|
import com.wisemapping.validator.LabelValidator;
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.beans.factory.annotation.Qualifier;
|
|
|
|
import org.springframework.http.HttpStatus;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
import org.springframework.validation.BeanPropertyBindingResult;
|
|
|
|
import org.springframework.validation.BindingResult;
|
2014-01-28 02:28:16 -03:00
|
|
|
import org.springframework.web.bind.annotation.PathVariable;
|
2014-01-25 23:21:17 -03:00
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
import org.springframework.web.bind.annotation.ResponseStatus;
|
|
|
|
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
2014-01-26 18:21:01 -03:00
|
|
|
import java.util.List;
|
2014-01-25 23:21:17 -03:00
|
|
|
|
|
|
|
@Controller
|
|
|
|
public class LabelController extends BaseController {
|
|
|
|
|
|
|
|
@Qualifier("labelService")
|
|
|
|
@Autowired
|
|
|
|
private LabelService labelService;
|
2014-01-28 02:28:16 -03:00
|
|
|
@Qualifier("mindmapService")
|
|
|
|
@Autowired
|
|
|
|
private MindmapService mindmapService;
|
2014-01-25 23:21:17 -03:00
|
|
|
|
|
|
|
|
|
|
|
@RequestMapping(method = RequestMethod.POST, value = "/labels", consumes = {"application/json"})
|
|
|
|
@ResponseStatus(value = HttpStatus.CREATED)
|
|
|
|
public void createLabel(@RequestBody RestLabel restLabel, @NotNull HttpServletResponse response, @RequestParam(required = false) String title) throws WiseMappingException {
|
|
|
|
// Overwrite title if it was specified by parameter.
|
|
|
|
if (title != null && !title.isEmpty()) {
|
|
|
|
restLabel.setTitle(title);
|
|
|
|
}
|
|
|
|
|
|
|
|
final Label label = restLabel.getDelegated();
|
|
|
|
|
|
|
|
// Validate ...
|
|
|
|
final BindingResult result = new BeanPropertyBindingResult(restLabel, "");
|
2014-01-28 02:28:16 -03:00
|
|
|
new LabelValidator(labelService).validate(label, result);
|
2014-01-25 23:21:17 -03:00
|
|
|
if (result.hasErrors()) {
|
|
|
|
throw new ValidationException(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add new label ...
|
|
|
|
final User user = Utils.getUser();
|
|
|
|
assert user != null;
|
|
|
|
labelService.addLabel(label, user);
|
|
|
|
|
|
|
|
// Return the new created map ...
|
|
|
|
response.setHeader("ResourceId", Integer.toString(label.getId()));
|
|
|
|
}
|
|
|
|
|
2014-01-26 18:21:01 -03:00
|
|
|
@RequestMapping(method = RequestMethod.GET, value = "/labels", produces = {"application/json"})
|
|
|
|
public RestLabelList retrieveList() {
|
|
|
|
final User user = Utils.getUser();
|
|
|
|
assert user != null;
|
|
|
|
final List<Label> all = labelService.getAll(user);
|
|
|
|
return new RestLabelList(all);
|
|
|
|
}
|
|
|
|
|
2014-01-29 02:56:09 -03:00
|
|
|
@RequestMapping(method = RequestMethod.PUT, value = "/labels/maps", consumes = {"application/json"})
|
2014-01-28 02:28:16 -03:00
|
|
|
@ResponseStatus(value = HttpStatus.NO_CONTENT)
|
2014-01-29 02:56:09 -03:00
|
|
|
public void linkToMindMaps(@RequestBody RestLabel restLabel, @RequestParam(required = true) String ids) throws WiseMappingException {
|
|
|
|
int id = restLabel.getId();
|
2014-01-28 02:28:16 -03:00
|
|
|
final Label label = labelService.getLabelById(id);
|
|
|
|
if (label == null) {
|
|
|
|
throw new LabelCouldNotFoundException("Label could not be found. Id: " + id);
|
|
|
|
}
|
|
|
|
for (String mindmapId : ids.split(",")) {
|
|
|
|
final Mindmap mindmap = mindmapService.findMindmapById(Integer.parseInt(mindmapId));
|
|
|
|
if (mindmap == null) {
|
|
|
|
throw new MapCouldNotFoundException("Map could not be found. Id:" + id);
|
|
|
|
}
|
|
|
|
mindmap.addLabel(label);
|
|
|
|
mindmapService.updateMindmap(mindmap, false);
|
|
|
|
}
|
|
|
|
}
|
2014-01-30 04:35:48 -03:00
|
|
|
|
|
|
|
@RequestMapping(method = RequestMethod.DELETE, value = "/labels/{id}")
|
|
|
|
@ResponseStatus(value = HttpStatus.NO_CONTENT)
|
|
|
|
public void deleteMapById(@PathVariable int id) throws WiseMappingException {
|
|
|
|
final User user = Utils.getUser();
|
|
|
|
final Label label = labelService.getLabelById(id);
|
|
|
|
if (label == null) {
|
|
|
|
throw new LabelCouldNotFoundException("Label could not be found. Id: " + id);
|
|
|
|
}
|
|
|
|
assert user != null;
|
|
|
|
labelService.removeLabel(label, user);
|
|
|
|
}
|
2014-01-25 23:21:17 -03:00
|
|
|
}
|