2017-12-15 00:01:26 +01:00
|
|
|
package eu.eudat.controllers;
|
2017-10-06 19:20:05 +02:00
|
|
|
|
2018-09-04 11:36:18 +02:00
|
|
|
import eu.eudat.data.entities.Registry;
|
|
|
|
import eu.eudat.logic.managers.RegistryManager;
|
2018-06-27 12:29:21 +02:00
|
|
|
import eu.eudat.logic.proxy.config.exceptions.HugeResultSet;
|
|
|
|
import eu.eudat.logic.proxy.config.exceptions.NoURLFound;
|
|
|
|
import eu.eudat.logic.services.ApiContext;
|
2018-08-31 16:12:31 +02:00
|
|
|
import eu.eudat.models.data.helpers.responses.ResponseItem;
|
2018-09-04 11:36:18 +02:00
|
|
|
import eu.eudat.models.data.registries.RegistryModel;
|
|
|
|
import eu.eudat.models.data.security.Principal;
|
2018-01-23 16:21:38 +01:00
|
|
|
import eu.eudat.types.ApiMessageCode;
|
2017-10-06 19:20:05 +02:00
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.http.HttpStatus;
|
|
|
|
import org.springframework.http.ResponseEntity;
|
2018-09-04 11:36:18 +02:00
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
2018-02-16 11:34:02 +01:00
|
|
|
import org.springframework.web.bind.annotation.*;
|
2017-10-06 19:20:05 +02:00
|
|
|
|
2018-02-16 11:34:02 +01:00
|
|
|
import java.util.List;
|
2017-10-06 19:20:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
@RestController
|
|
|
|
@CrossOrigin
|
2018-02-09 16:54:41 +01:00
|
|
|
@RequestMapping(value = {"/api"})
|
2018-02-16 11:34:02 +01:00
|
|
|
public class Registries extends BaseController {
|
|
|
|
|
2019-02-01 17:56:55 +01:00
|
|
|
private RegistryManager registryManager;
|
|
|
|
|
2018-02-16 11:34:02 +01:00
|
|
|
@Autowired
|
2019-02-01 17:56:55 +01:00
|
|
|
public Registries(ApiContext apiContext, RegistryManager registryManager) {
|
2018-02-16 11:34:02 +01:00
|
|
|
super(apiContext);
|
2019-02-01 17:56:55 +01:00
|
|
|
this.registryManager = registryManager;
|
2018-02-16 11:34:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@RequestMapping(method = RequestMethod.GET, value = {"/external/registries"}, produces = "application/json")
|
|
|
|
public @ResponseBody
|
2019-09-25 17:31:41 +02:00
|
|
|
ResponseEntity<ResponseItem<List<RegistryModel>>> listExternalRegistries(@RequestParam(value = "query", required = false) String query
|
|
|
|
, @RequestParam(value = "type", required = false) String type, Principal principal) throws HugeResultSet, NoURLFound {
|
|
|
|
List<RegistryModel> registryModels = this.registryManager.getRegistries(query, type, principal);
|
|
|
|
return ResponseEntity.status(HttpStatus.OK).body(new ResponseItem<List<RegistryModel>>().payload(registryModels).status(ApiMessageCode.NO_MESSAGE));
|
2018-02-16 11:34:02 +01:00
|
|
|
}
|
|
|
|
|
2018-09-04 11:36:18 +02:00
|
|
|
@Transactional
|
2019-02-01 17:56:55 +01:00
|
|
|
@RequestMapping(method = RequestMethod.POST, value = {"/registries"}, consumes = "application/json", produces = "application/json")
|
2018-09-04 11:36:18 +02:00
|
|
|
public @ResponseBody
|
2019-12-13 16:10:21 +01:00
|
|
|
ResponseEntity<ResponseItem<RegistryModel>> create(@RequestBody RegistryModel registryModel, Principal principal) throws Exception {
|
2019-09-25 12:43:17 +02:00
|
|
|
Registry registry = this.registryManager.create(registryModel, principal);
|
2019-12-13 16:10:21 +01:00
|
|
|
RegistryModel registryModel1 = new RegistryModel().fromDataModel(registry);
|
|
|
|
return ResponseEntity.status(HttpStatus.OK).body(new ResponseItem<RegistryModel>().payload(registryModel1).status(ApiMessageCode.SUCCESS_MESSAGE));
|
2018-09-04 11:36:18 +02:00
|
|
|
}
|
2017-10-06 19:20:05 +02:00
|
|
|
}
|
|
|
|
|