Search in sources :

Example 1 with ExcelFieldContentsHandler

use of net.geoprism.registry.excel.ExcelFieldContentsHandler in project geoprism-registry by terraframe.

the class ExcelService method getExcelConfiguration.

public JSONObject getExcelConfiguration(String type, Date startDate, Date endDate, String fileName, InputStream fileStream, ImportStrategy strategy, Boolean copyBlank) {
    // Save the file to the file system
    try {
        ServerGeoObjectType geoObjectType = ServerGeoObjectType.get(type);
        VaultFile vf = VaultFile.createAndApply(fileName, fileStream);
        try (InputStream is = vf.openNewStream()) {
            SimpleDateFormat format = new SimpleDateFormat(GeoObjectImportConfiguration.DATE_FORMAT);
            format.setTimeZone(GeoRegistryUtil.SYSTEM_TIMEZONE);
            ExcelFieldContentsHandler handler = new ExcelFieldContentsHandler();
            ExcelDataFormatter formatter = new ExcelDataFormatter();
            ExcelSheetReader reader = new ExcelSheetReader(handler, formatter);
            reader.process(is);
            JSONObject object = new JSONObject();
            object.put(GeoObjectImportConfiguration.TYPE, this.getType(geoObjectType));
            object.put(GeoObjectImportConfiguration.SHEET, handler.getSheets().getJSONObject(0));
            object.put(ImportConfiguration.VAULT_FILE_ID, vf.getOid());
            object.put(ImportConfiguration.FILE_NAME, fileName);
            object.put(GeoObjectImportConfiguration.HAS_POSTAL_CODE, PostalCodeFactory.isAvailable(geoObjectType));
            object.put(ImportConfiguration.IMPORT_STRATEGY, strategy.name());
            object.put(ImportConfiguration.FORMAT_TYPE, FormatImporterType.EXCEL.name());
            object.put(ImportConfiguration.OBJECT_TYPE, ObjectImporterFactory.ObjectImportType.GEO_OBJECT.name());
            object.put(ImportConfiguration.COPY_BLANK, copyBlank);
            if (startDate != null) {
                object.put(GeoObjectImportConfiguration.START_DATE, format.format(startDate));
            }
            if (endDate != null) {
                object.put(GeoObjectImportConfiguration.END_DATE, format.format(endDate));
            }
            return object;
        }
    } catch (InvalidFormatException e) {
        InvalidExcelFileException ex = new InvalidExcelFileException(e);
        ex.setFileName(fileName);
        throw ex;
    } catch (RunwayException | SmartException e) {
        throw e;
    } catch (Exception e) {
        throw new ProgrammingErrorException(e);
    }
}
Also used : SmartException(com.runwaysdk.business.SmartException) ServerGeoObjectType(net.geoprism.registry.model.ServerGeoObjectType) InputStream(java.io.InputStream) InvalidExcelFileException(net.geoprism.data.etl.excel.InvalidExcelFileException) ExcelSheetReader(net.geoprism.data.etl.excel.ExcelSheetReader) ExcelFieldContentsHandler(net.geoprism.registry.excel.ExcelFieldContentsHandler) InvalidFormatException(org.apache.poi.openxml4j.exceptions.InvalidFormatException) RunwayException(com.runwaysdk.RunwayException) SmartException(com.runwaysdk.business.SmartException) ProgrammingErrorException(com.runwaysdk.dataaccess.ProgrammingErrorException) RunwayException(com.runwaysdk.RunwayException) InvalidFormatException(org.apache.poi.openxml4j.exceptions.InvalidFormatException) InvalidExcelFileException(net.geoprism.data.etl.excel.InvalidExcelFileException) ProgrammingErrorException(com.runwaysdk.dataaccess.ProgrammingErrorException) ExcelDataFormatter(net.geoprism.data.etl.excel.ExcelDataFormatter) JSONObject(org.json.JSONObject) VaultFile(com.runwaysdk.system.VaultFile) SimpleDateFormat(java.text.SimpleDateFormat)

Example 2 with ExcelFieldContentsHandler

use of net.geoprism.registry.excel.ExcelFieldContentsHandler in project geoprism-registry by terraframe.

the class ExcelService method getBusinessTypeConfiguration.

public JSONObject getBusinessTypeConfiguration(String type, Date date, String fileName, InputStream fileStream, ImportStrategy strategy, Boolean copyBlank) {
    // Save the file to the file system
    try {
        BusinessType businessType = BusinessType.getByCode(type);
        VaultFile vf = VaultFile.createAndApply(fileName, fileStream);
        try (InputStream is = vf.openNewStream()) {
            SimpleDateFormat format = new SimpleDateFormat(GeoObjectImportConfiguration.DATE_FORMAT);
            format.setTimeZone(GeoRegistryUtil.SYSTEM_TIMEZONE);
            ExcelFieldContentsHandler handler = new ExcelFieldContentsHandler();
            ExcelDataFormatter formatter = new ExcelDataFormatter();
            ExcelSheetReader reader = new ExcelSheetReader(handler, formatter);
            reader.process(is);
            JSONObject object = new JSONObject();
            object.put(BusinessObjectImportConfiguration.TYPE, this.getType(businessType));
            object.put(BusinessObjectImportConfiguration.SHEET, handler.getSheets().getJSONObject(0));
            object.put(BusinessObjectImportConfiguration.VAULT_FILE_ID, vf.getOid());
            object.put(BusinessObjectImportConfiguration.FILE_NAME, fileName);
            object.put(BusinessObjectImportConfiguration.IMPORT_STRATEGY, strategy.name());
            object.put(BusinessObjectImportConfiguration.FORMAT_TYPE, FormatImporterType.EXCEL.name());
            object.put(BusinessObjectImportConfiguration.OBJECT_TYPE, ObjectImporterFactory.ObjectImportType.BUSINESS_OBJECT.name());
            object.put(BusinessObjectImportConfiguration.COPY_BLANK, copyBlank);
            if (date != null) {
                object.put(BusinessObjectImportConfiguration.DATE, format.format(date));
            }
            return object;
        }
    } catch (InvalidFormatException e) {
        InvalidExcelFileException ex = new InvalidExcelFileException(e);
        ex.setFileName(fileName);
        throw ex;
    } catch (RunwayException | SmartException e) {
        throw e;
    } catch (Exception e) {
        throw new ProgrammingErrorException(e);
    }
}
Also used : SmartException(com.runwaysdk.business.SmartException) InputStream(java.io.InputStream) InvalidExcelFileException(net.geoprism.data.etl.excel.InvalidExcelFileException) BusinessType(net.geoprism.registry.BusinessType) ExcelSheetReader(net.geoprism.data.etl.excel.ExcelSheetReader) ExcelFieldContentsHandler(net.geoprism.registry.excel.ExcelFieldContentsHandler) InvalidFormatException(org.apache.poi.openxml4j.exceptions.InvalidFormatException) RunwayException(com.runwaysdk.RunwayException) SmartException(com.runwaysdk.business.SmartException) ProgrammingErrorException(com.runwaysdk.dataaccess.ProgrammingErrorException) RunwayException(com.runwaysdk.RunwayException) InvalidFormatException(org.apache.poi.openxml4j.exceptions.InvalidFormatException) InvalidExcelFileException(net.geoprism.data.etl.excel.InvalidExcelFileException) ProgrammingErrorException(com.runwaysdk.dataaccess.ProgrammingErrorException) ExcelDataFormatter(net.geoprism.data.etl.excel.ExcelDataFormatter) JSONObject(org.json.JSONObject) VaultFile(com.runwaysdk.system.VaultFile) SimpleDateFormat(java.text.SimpleDateFormat)

Aggregations

RunwayException (com.runwaysdk.RunwayException)2 SmartException (com.runwaysdk.business.SmartException)2 ProgrammingErrorException (com.runwaysdk.dataaccess.ProgrammingErrorException)2 VaultFile (com.runwaysdk.system.VaultFile)2 InputStream (java.io.InputStream)2 SimpleDateFormat (java.text.SimpleDateFormat)2 ExcelDataFormatter (net.geoprism.data.etl.excel.ExcelDataFormatter)2 ExcelSheetReader (net.geoprism.data.etl.excel.ExcelSheetReader)2 InvalidExcelFileException (net.geoprism.data.etl.excel.InvalidExcelFileException)2 ExcelFieldContentsHandler (net.geoprism.registry.excel.ExcelFieldContentsHandler)2 InvalidFormatException (org.apache.poi.openxml4j.exceptions.InvalidFormatException)2 JSONObject (org.json.JSONObject)2 BusinessType (net.geoprism.registry.BusinessType)1 ServerGeoObjectType (net.geoprism.registry.model.ServerGeoObjectType)1