argos/dmp-backend/src/main/java/eu/eudat/controllers/Registries.java

160 lines
5.6 KiB
Java
Raw Normal View History

2017-12-15 00:01:26 +01:00
package eu.eudat.controllers;
2017-10-06 19:20:05 +02:00
import java.util.List;
import java.util.Map;
2017-10-06 19:20:05 +02:00
import java.util.UUID;
2017-12-15 00:01:26 +01:00
import eu.eudat.entities.Registry;
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;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.PathVariable;
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.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
2017-12-15 00:01:26 +01:00
import eu.eudat.dao.entities.DMPDao;
import eu.eudat.dao.entities.DMPProfileDao;
import eu.eudat.dao.entities.DataRepositoryDao;
import eu.eudat.dao.entities.DatasetDao;
import eu.eudat.dao.entities.DatasetProfileDao;
import eu.eudat.dao.entities.DatasetProfileRulesetDao;
import eu.eudat.dao.entities.DatasetProfileViewstyleDao;
import eu.eudat.dao.entities.OrganisationDao;
import eu.eudat.dao.entities.ProjectDao;
import eu.eudat.dao.entities.RegistryDao;
import eu.eudat.dao.entities.ResearcherDao;
import eu.eudat.dao.entities.ServiceDao;
import eu.eudat.entities.responses.IDLabelPair;
import eu.eudat.proxy.config.exceptions.HugeResultSet;
import eu.eudat.proxy.config.exceptions.NoURLFound;
import eu.eudat.proxy.fetching.RemoteFetcher;
2017-10-06 19:20:05 +02:00
2017-12-15 00:01:26 +01:00
import javax.transaction.Transactional;
2017-10-06 19:20:05 +02:00
@RestController
@CrossOrigin
public class Registries {
@Autowired private DataRepositoryDao dataRepositoryDao;
@Autowired private DatasetDao datasetDao;
@Autowired private DatasetProfileDao datasetProfileDao;
@Autowired private DatasetProfileRulesetDao datasetProfileRulesetDao;
@Autowired private DatasetProfileViewstyleDao datasetProfileViewstyleDao;
@Autowired private DMPDao dMPDao;
@Autowired private DMPProfileDao dMPProfileDao;
@Autowired private OrganisationDao organisationDao;
@Autowired private ProjectDao projectDao;
@Autowired private RegistryDao registryDao;
@Autowired private ResearcherDao researcherDao;
@Autowired private ServiceDao serviceDao;
@Autowired private RemoteFetcher remoteFetcher;
2017-11-22 11:14:10 +01:00
@RequestMapping(method = RequestMethod.GET, value = { "/external/registries" }, produces="application/json")
2017-12-15 00:01:26 +01:00
public @ResponseBody ResponseEntity<List<Map<String,String>>> listExternalRegistries(@RequestParam(value="query", required=false) String query ){
try {
List<Map<String,String>> remoteRepos = remoteFetcher.getRegistries(query);
2017-12-15 00:01:26 +01:00
return ResponseEntity.status(HttpStatus.OK).body(remoteRepos);
}
catch(NoURLFound ex) {
2017-12-15 00:01:26 +01:00
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body(null);
}
catch(HugeResultSet ex) {
2017-12-15 00:01:26 +01:00
return ResponseEntity.status(HttpStatus.UNPROCESSABLE_ENTITY).body(null); //the ex.getMessage has the appropriate text description
}
}
2017-10-12 14:02:41 +02:00
2017-10-06 19:20:05 +02:00
// MANAGE REGISTRY(IES)
@RequestMapping(method = RequestMethod.GET, value = { "/registries" })
2017-12-15 00:01:26 +01:00
public @ResponseBody ResponseEntity<List<UUID>> listRegistries(){
2017-10-06 19:20:05 +02:00
try {
List<UUID> allIDs = registryDao.listAllIDs();
2017-12-15 00:01:26 +01:00
return ResponseEntity.status(HttpStatus.OK).body(allIDs);
2017-10-06 19:20:05 +02:00
}
catch(Exception ex) {
2017-12-15 00:01:26 +01:00
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body(null);
2017-10-06 19:20:05 +02:00
}
}
@RequestMapping(method = RequestMethod.GET, value = { "/registries/{id}" })
2017-12-15 00:01:26 +01:00
public @ResponseBody ResponseEntity<Registry> getRegistries(@PathVariable("id") String id) {
2017-10-06 19:20:05 +02:00
try {
Registry registry = registryDao.read(UUID.fromString(id));
2017-12-15 00:01:26 +01:00
return ResponseEntity.status(HttpStatus.OK).body(registry);
2017-10-06 19:20:05 +02:00
}
catch(Exception ex) {
2017-12-15 00:01:26 +01:00
return ResponseEntity.status(HttpStatus.BAD_REQUEST).body(null);
2017-10-06 19:20:05 +02:00
}
}
2017-10-12 14:02:41 +02:00
2017-10-06 19:20:05 +02:00
2017-10-12 14:02:41 +02:00
@RequestMapping(method = RequestMethod.GET, value = { "/registries/listAllLabelIDs" })
2017-12-15 00:01:26 +01:00
public @ResponseBody ResponseEntity<List<IDLabelPair>> listLabelIds(){
2017-10-12 14:02:41 +02:00
try {
List<IDLabelPair> allIDs = registryDao.listAllIDsLabels();
2017-12-15 00:01:26 +01:00
return ResponseEntity.status(HttpStatus.OK).body(allIDs);
2017-10-12 14:02:41 +02:00
}
catch(Exception ex) {
2017-12-15 00:01:26 +01:00
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body(null);
2017-10-12 14:02:41 +02:00
}
}
2017-10-06 19:20:05 +02:00
2017-10-12 14:02:41 +02:00
@RequestMapping(method = RequestMethod.GET, value = { "/registry/getAll" }, produces="application/json")
public @ResponseBody ResponseEntity<Object> getAllRegistries(){
2017-10-06 19:20:05 +02:00
try {
2017-10-12 14:02:41 +02:00
List<Registry> allRegistries = registryDao.getAll();
2017-12-15 00:01:26 +01:00
return ResponseEntity.status(HttpStatus.OK).body(allRegistries);
2017-10-12 14:02:41 +02:00
2017-10-06 19:20:05 +02:00
}
2017-10-12 14:02:41 +02:00
catch(Exception ex) {
return new ResponseEntity<>(null, HttpStatus.INTERNAL_SERVER_ERROR);
2017-10-06 19:20:05 +02:00
}
}
2017-10-12 14:02:41 +02:00
@Transactional
@RequestMapping(method = RequestMethod.POST, value = { "/registry/create" }, consumes = "application/json", produces="application/json")
2017-12-15 00:01:26 +01:00
public @ResponseBody ResponseEntity<Registry> setRegistry(@RequestBody Registry registry) {
2017-10-12 14:02:41 +02:00
Registry createdRegistry = registryDao.update(registry);
try {
2017-12-15 00:01:26 +01:00
return ResponseEntity.status(HttpStatus.CREATED).body(createdRegistry);
} catch (Exception e) {
2017-12-15 00:01:26 +01:00
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body(null);
2017-10-12 14:02:41 +02:00
}
}
@RequestMapping(method = RequestMethod.POST, value = { "/registry/delete" }, consumes = "application/json", produces="text/plain")
public @ResponseBody ResponseEntity<Object> delete(@RequestBody Registry registry) {
Registry r = new Registry();
r.setId(registry.getId());
try {
registryDao.delete(r);
2017-10-17 13:45:11 +02:00
return ResponseEntity.status(HttpStatus.CREATED).body("{\"msg\":\"Deleted registry!\"}");
2017-10-12 14:02:41 +02:00
} catch (Exception e) {
2017-10-17 13:45:11 +02:00
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body("{\"msg\":\"Could not Delete registry!\"}");
2017-10-12 14:02:41 +02:00
}
}
2017-10-06 19:20:05 +02:00
}