use of net.geoprism.registry.MasterListVersion in project geoprism-registry by terraframe.
the class FhirExportJob method toJson.
public JsonObject toJson() {
SimpleDateFormat format = new SimpleDateFormat(GeoObjectImportConfiguration.DATE_FORMAT);
format.setTimeZone(GeoRegistryUtil.SYSTEM_TIMEZONE);
final MasterListVersion version = this.getVersion();
final MasterList masterlist = version.getMasterlist();
final ServerGeoObjectType type = masterlist.getGeoObjectType();
final JobHistory history = this.getAllJobHistory().getAll().get(0);
final GeoprismUser user = GeoprismUser.get(this.getRunAsUser().getOid());
try {
final JsonObject object = new JsonObject();
object.addProperty(FhirExportJob.OID, this.getOid());
object.add(FhirExportJob.VERSION, this.getVersion().toJSON(false));
object.addProperty(FhirExportJob.IMPLEMENTATION, this.getImplementation());
object.addProperty(FhirExportJob.TYPE, type.getLabel().getValue());
object.addProperty(JobHistory.STATUS, history.getStatus().get(0).getDisplayLabel());
object.addProperty("date", format.format(version.getPublishDate()));
object.addProperty("author", user.getUsername());
object.addProperty("createDate", format.format(history.getCreateDate()));
object.addProperty("lastUpdateDate", format.format(history.getLastUpdateDate()));
object.addProperty("workProgress", history.getWorkProgress());
object.addProperty("workTotal", history.getWorkTotal());
object.addProperty("historyoryId", history.getOid());
if (history.getErrorJson() != null && history.getErrorJson().length() > 0) {
object.addProperty("message", history.getLocalizedError(Session.getCurrentLocale()));
}
return object;
} catch (JSONException e) {
throw new ProgrammingErrorException(e);
}
}
use of net.geoprism.registry.MasterListVersion in project geoprism-registry by terraframe.
the class PublishShapefileJob method toJson.
public JsonObject toJson() {
SimpleDateFormat format = new SimpleDateFormat(GeoObjectImportConfiguration.DATE_FORMAT);
format.setTimeZone(GeoRegistryUtil.SYSTEM_TIMEZONE);
final MasterListVersion version = this.getVersion();
final MasterList masterlist = version.getMasterlist();
final ServerGeoObjectType type = masterlist.getGeoObjectType();
final JobHistory history = this.getAllJobHistory().getAll().get(0);
final GeoprismUser user = GeoprismUser.get(this.getRunAsUser().getOid());
try {
final JsonObject object = new JsonObject();
object.addProperty(PublishShapefileJob.OID, this.getOid());
object.add(PublishShapefileJob.VERSION, this.getVersion().toJSON(false));
object.addProperty(PublishShapefileJob.TYPE, type.getLabel().getValue());
object.addProperty(JobHistory.STATUS, history.getStatus().get(0).getDisplayLabel());
object.addProperty("date", format.format(version.getPublishDate()));
object.addProperty("author", user.getUsername());
object.addProperty("createDate", format.format(history.getCreateDate()));
object.addProperty("lastUpdateDate", format.format(history.getLastUpdateDate()));
object.addProperty("workProgress", history.getWorkProgress());
object.addProperty("workTotal", history.getWorkTotal());
object.addProperty("historyoryId", history.getOid());
return object;
} catch (JSONException e) {
throw new ProgrammingErrorException(e);
}
}
use of net.geoprism.registry.MasterListVersion in project geoprism-registry by terraframe.
the class PatchExistsAndInvalid method patchMasterlistVersions.
private void patchMasterlistVersions() {
final Collection<Locale> locales = LocalizationFacade.getInstalledLocales();
MasterListVersionQuery query = new MasterListVersionQuery(new QueryFactory());
try (OIterator<? extends MasterListVersion> it = query.getIterator()) {
for (MasterListVersion version : it) {
// ServerGeoObjectType type = version.getMasterlist().getGeoObjectType();
// We are accessing it in this weird way because MasterList was changed to have new localized attributes. If we run this patch
// before masterlist is patched then simply instantiating a MasterList object will throw an error when it tries to load the structs.
BusinessDAO versionDAO = (BusinessDAO) BusinessDAO.get(version.getOid());
String masterListOid = versionDAO.getValue(MasterListVersion.MASTERLIST);
BusinessDAO masterListDAO = (BusinessDAO) BusinessDAO.get(masterListOid);
String universalOid = masterListDAO.getValue(MasterList.UNIVERSAL);
ServerGeoObjectType type = ServerGeoObjectType.get(Universal.get(universalOid));
// Patch metadata
// AttributeType existsAttr = type.getAttribute(DefaultAttribute.EXISTS.getName()).get();
// MasterListVersion.createMdAttributeFromAttributeType(version, type, existsAttr, locales);
AttributeType invalidAttr = type.getAttribute(DefaultAttribute.INVALID.getName()).get();
MasterListVersion.createMdAttributeFromAttributeType(version, type, invalidAttr, locales);
// Instance data is too hard to patch. We're just going to republish all the lists
logger.info("Master list version [" + version.getKey() + "] has been queued for republishing.");
PublishMasterListVersionJob job = new PublishMasterListVersionJob();
job.setMasterListVersion(version);
job.setMasterListId(masterListOid);
job.apply();
// job.start();
// JobHistory history = job.createNewHistory();
JobHistory history = new JobHistory();
history.setStartTime(new Date());
history.addStatus(AllJobStatus.QUEUED);
history.apply();
JobHistoryRecord record = new JobHistoryRecord(job, history);
record.apply();
}
}
}
Aggregations