2022-03-17 18:47:34 -03:00
|
|
|
/*
|
|
|
|
* Copyright [2022] [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.
|
|
|
|
*/
|
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;
|
2023-08-01 04:32:51 +00:00
|
|
|
import com.wisemapping.exceptions.ValidationException;
|
2014-01-25 23:21:17 -03:00
|
|
|
import com.wisemapping.exceptions.WiseMappingException;
|
|
|
|
import com.wisemapping.model.Label;
|
|
|
|
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-25 23:21:17 -03:00
|
|
|
import com.wisemapping.security.Utils;
|
|
|
|
import com.wisemapping.service.LabelService;
|
|
|
|
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;
|
2023-08-01 04:32:51 +00:00
|
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
2014-01-25 23:21:17 -03:00
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
import org.springframework.validation.BeanPropertyBindingResult;
|
|
|
|
import org.springframework.validation.BindingResult;
|
2021-12-24 18:03:23 -08:00
|
|
|
import org.springframework.web.bind.annotation.*;
|
2014-01-25 23:21:17 -03:00
|
|
|
|
2023-08-01 04:32:51 +00:00
|
|
|
import jakarta.servlet.http.HttpServletResponse;
|
2014-01-26 18:21:01 -03:00
|
|
|
import java.util.List;
|
2014-01-25 23:21:17 -03:00
|
|
|
|
|
|
|
@Controller
|
2023-08-01 04:32:51 +00:00
|
|
|
@PreAuthorize("isAuthenticated() and hasRole('ROLE_USER')")
|
2014-01-25 23:21:17 -03:00
|
|
|
public class LabelController extends BaseController {
|
|
|
|
|
|
|
|
@Qualifier("labelService")
|
|
|
|
@Autowired
|
|
|
|
private LabelService labelService;
|
|
|
|
|
|
|
|
|
2022-04-02 12:59:54 -03:00
|
|
|
@RequestMapping(method = RequestMethod.POST, value = "/labels", consumes = {"application/json"})
|
2014-01-25 23:21:17 -03:00
|
|
|
@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);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate ...
|
2014-02-01 16:23:09 -03:00
|
|
|
validate(restLabel);
|
2014-01-25 23:21:17 -03:00
|
|
|
|
2014-02-01 16:23:09 -03:00
|
|
|
final Label label = createLabel(restLabel);
|
2014-01-25 23:21:17 -03:00
|
|
|
|
2014-02-01 16:23:09 -03:00
|
|
|
// Return the new created label ...
|
2014-02-10 00:58:42 -03:00
|
|
|
response.setHeader("Location", "/service/labels/" + label.getId());
|
2022-01-16 20:01:56 -08:00
|
|
|
response.setHeader("ResourceId", Long.toString(label.getId()));
|
2014-01-25 23:21:17 -03:00
|
|
|
}
|
|
|
|
|
2023-08-01 04:32:51 +00:00
|
|
|
@RequestMapping(method = RequestMethod.GET, value = "/labels/", produces = {"application/json"})
|
2014-01-26 18:21:01 -03:00
|
|
|
public RestLabelList retrieveList() {
|
|
|
|
final User user = Utils.getUser();
|
|
|
|
assert user != null;
|
|
|
|
final List<Label> all = labelService.getAll(user);
|
|
|
|
return new RestLabelList(all);
|
|
|
|
}
|
|
|
|
|
2014-01-30 04:35:48 -03:00
|
|
|
@RequestMapping(method = RequestMethod.DELETE, value = "/labels/{id}")
|
|
|
|
@ResponseStatus(value = HttpStatus.NO_CONTENT)
|
2014-02-01 16:22:54 -03:00
|
|
|
public void deleteLabelById(@PathVariable int id) throws WiseMappingException {
|
2014-01-30 04:35:48 -03:00
|
|
|
final User user = Utils.getUser();
|
2022-01-18 13:16:39 -08:00
|
|
|
final Label label = labelService.findLabelById(id, user);
|
2014-01-30 04:35:48 -03:00
|
|
|
if (label == null) {
|
|
|
|
throw new LabelCouldNotFoundException("Label could not be found. Id: " + id);
|
|
|
|
}
|
|
|
|
assert user != null;
|
|
|
|
labelService.removeLabel(label, user);
|
|
|
|
}
|
2014-02-01 16:23:09 -03:00
|
|
|
|
|
|
|
@NotNull private Label createLabel(@NotNull final RestLabel restLabel) throws WiseMappingException {
|
|
|
|
final Label label = restLabel.getDelegated();
|
|
|
|
// Add new label ...
|
|
|
|
final User user = Utils.getUser();
|
|
|
|
assert user != null;
|
|
|
|
labelService.addLabel(label, user);
|
|
|
|
return label;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void validate(@NotNull final RestLabel restLabel) throws ValidationException {
|
|
|
|
final BindingResult result = new BeanPropertyBindingResult(restLabel, "");
|
|
|
|
new LabelValidator(labelService).validate(restLabel.getDelegated(), result);
|
|
|
|
if (result.hasErrors()) {
|
|
|
|
throw new ValidationException(result);
|
|
|
|
}
|
|
|
|
}
|
2014-01-25 23:21:17 -03:00
|
|
|
}
|