@RequestMapping( method = RequestMethod.GET, value = "/mapaTablaFuente/{esquema}/{tabla}/{id}/{tipo}") public ResponseEntity<AtributosMapDto> mapaTablaFuente( @PathVariable("esquema") String esquema, @PathVariable("tabla") String tabla, @PathVariable("id") Long id, @PathVariable("tipo") String tipo, HttpServletRequest request) { String path; if (tipo.equals(TiposFuente.CSV.getId())) path = getServicioConfiguracionGeneral().getPathCsv(); else if (tipo.equals(TiposFuente.GML.getId())) path = getServicioConfiguracionGeneral().getPathGml(); else if (tipo.equals(TiposFuente.SHAPEFILE.getId())) path = getServicioConfiguracionGeneral().getPathShapefile(); else path = null; String caracterSeparador = getServicioConfiguracionGeneral().getCaracterSeparadorCSV(); String realPath = getPathRealAplicacion(request, path); ResponseEntity<AtributosMapDto> respuesta = new ResponseEntity<AtributosMapDto>( gestorCUFuente.obtenerMapaTablaFuenteExterna(id, esquema, tabla, realPath), responseHeaders, HttpStatus.OK); return respuesta; }
@RequestMapping(method = RequestMethod.GET, value = "/obtenerFichero/{id}/{tipo}") public ResponseEntity<EncapsuladorFileSW> obtenerFichero( @PathVariable("id") Long id, @PathVariable("tipo") String tipo, HttpServletRequest request) { String path; String caracterSeparador = getServicioConfiguracionGeneral().getCaracterSeparadorCSV(); FuenteDto fuenteDto = gestorCUFuente.carga(id); String fich = ""; if (tipo.equals(TiposFuente.CSV.getId())) { path = getServicioConfiguracionGeneral().getPathCsv(); fich = fuenteDto.getFich_csv_gml(); } else if (tipo.equals(TiposFuente.GML.getId())) { path = getServicioConfiguracionGeneral().getPathGml(); fich = fuenteDto.getFich_csv_gml(); } else if (tipo.equals(TiposFuente.SHAPEFILE.getId())) { path = getServicioConfiguracionGeneral().getPathShapefile(); fich = fuenteDto.getFich_shp(); } else { path = null; fich = ""; } String realPath = getPathRealAplicacion(request, path); RandomAccessFile f = null; try { File file = new File(realPath + fuenteDto.getId() + "/" + fich); f = new RandomAccessFile(file, "r"); byte[] contenido = new byte[(int) f.length()]; f.read(contenido); EncapsuladorFileSW encapsuladorFich = new EncapsuladorFileSW(); encapsuladorFich.setFich(contenido); encapsuladorFich.setNombre(fich); ResponseEntity<EncapsuladorFileSW> respuesta = new ResponseEntity<EncapsuladorFileSW>(encapsuladorFich, HttpStatus.OK); return respuesta; } catch (FileNotFoundException e) { log.error("Fichero: " + fich + " no encontrado para descarga"); return new ResponseEntity<EncapsuladorFileSW>(new EncapsuladorFileSW(), HttpStatus.OK); } catch (Exception e) { log.error("Se ha producido un error al acceder al fichero: " + fich); return new ResponseEntity<EncapsuladorFileSW>(new EncapsuladorFileSW(), HttpStatus.OK); } finally { try { if (f != null) f.close(); } catch (IOException e) { log.error("No se pudo cerrar la conexion con el fichero"); } } }
@RequestMapping(method = RequestMethod.GET, value = "/tablasFuente/{id}/{tipo}") public ResponseEntity<EncapsuladorListSW<TablaFuenteDatosDto>> listaTablas( @PathVariable("id") Long id, @PathVariable("tipo") String tipo, HttpServletRequest request) { String path; if (tipo.equals(TiposFuente.CSV.getId())) path = getServicioConfiguracionGeneral().getPathCsv(); else if (tipo.equals(TiposFuente.GML.getId())) path = getServicioConfiguracionGeneral().getPathGml(); else if (tipo.equals(TiposFuente.SHAPEFILE.getId())) path = getServicioConfiguracionGeneral().getPathShapefile(); else path = null; String realPath = getPathRealAplicacion(request, path); return new ResponseEntity<EncapsuladorListSW<TablaFuenteDatosDto>>( gestorCUFuente.listarTablasFuenteExterna(id, realPath), responseHeaders, HttpStatus.OK); }
@RequestMapping(method = RequestMethod.GET, value = "/probarFuente/{id}/{tipo}") public ResponseEntity<EncapsuladorBooleanSW> probarFuente( @PathVariable("id") Long id, @PathVariable("tipo") String tipo, HttpServletRequest request) { String path; String caracterSeparador = getServicioConfiguracionGeneral().getCaracterSeparadorCSV(); if (tipo.equals(TiposFuente.CSV.getId())) path = getServicioConfiguracionGeneral().getPathCsv(); else if (tipo.equals(TiposFuente.GML.getId())) path = getServicioConfiguracionGeneral().getPathGml(); else if (tipo.equals(TiposFuente.SHAPEFILE.getId())) path = getServicioConfiguracionGeneral().getPathShapefile(); else path = null; String realPath = getPathRealAplicacion(request, path); return new ResponseEntity<EncapsuladorBooleanSW>( gestorCUFuente.probarFuente(id, realPath, caracterSeparador), responseHeaders, HttpStatus.OK); }
@RequestMapping(method = RequestMethod.POST, value = "/borraFuente/{id}/{tipo}") public ResponseEntity<EncapsuladorPOSTSW> borrar( @PathVariable("id") Long id, @PathVariable("tipo") String tipo, HttpServletRequest request) { String path; if (tipo.equals(TiposFuente.CSV.getId())) path = getServicioConfiguracionGeneral().getPathCsv(); else if (tipo.equals(TiposFuente.GML.getId())) path = getServicioConfiguracionGeneral().getPathGml(); else if (tipo.equals(TiposFuente.SHAPEFILE.getId())) path = getServicioConfiguracionGeneral().getPathShapefile(); else path = null; String realPath = getPathRealAplicacion(request, path); EncapsuladorErroresSW errores = new EncapsuladorErroresSW(); EncapsuladorPOSTSW<FuenteDto> encapsulador = new EncapsuladorPOSTSW<FuenteDto>(gestorCUFuente.borra(id, realPath, errores), errores); ResponseEntity<EncapsuladorPOSTSW> respuesta = new ResponseEntity<EncapsuladorPOSTSW>(encapsulador, HttpStatus.OK); return respuesta; }