use of com.infiniteautomation.mango.spring.service.maintenanceEvents.MaintenanceEventsService in project ma-modules-public by infiniteautomation.
the class MaintenanceEventEmportDefinition method doImport.
@Override
public void doImport(JsonValue jsonValue, ImportContext importContext, PermissionHolder importer) throws JsonException {
MaintenanceEventsService service = Common.getBean(MaintenanceEventsService.class);
JsonObject maintenanceEvent = jsonValue.toJsonObject();
String xid = maintenanceEvent.getString("xid");
if (StringUtils.isBlank(xid))
xid = service.generateUniqueXid();
MaintenanceEventVO vo = null;
if (StringUtils.isBlank(xid)) {
xid = service.generateUniqueXid();
} else {
try {
vo = service.get(xid);
} catch (NotFoundException e) {
}
}
if (vo == null) {
vo = new MaintenanceEventVO();
vo.setXid(xid);
}
try {
importContext.getReader().readInto(vo, maintenanceEvent);
// Ensure we have a default permission since null is valid in Mango 3.x
if (vo.getTogglePermission() == null) {
vo.setTogglePermission(new MangoPermission());
}
boolean isnew = vo.getId() == Common.NEW_ID;
if (isnew) {
service.insert(vo);
} else {
service.update(vo.getId(), vo);
}
importContext.addSuccessMessage(isnew, "emport.maintenanceEvent.prefix", xid);
} catch (ValidationException e) {
importContext.copyValidationMessages(e.getValidationResult(), "emport.maintenanceEvent.prefix", xid);
} catch (TranslatableJsonException e) {
importContext.getResult().addGenericMessage("emport.maintenanceEvent.prefix", xid, e.getMsg());
} catch (JsonException e) {
importContext.getResult().addGenericMessage("emport.maintenanceEvent.prefix", xid, importContext.getJsonExceptionMessage(e));
}
}
use of com.infiniteautomation.mango.spring.service.maintenanceEvents.MaintenanceEventsService in project ma-modules-public by infiniteautomation.
the class MaintenanceEventType method getEventPermission.
@Override
public MangoPermission getEventPermission(Map<String, Object> context, PermissionService service) {
DataSourceService dataSourceService = Common.getBean(DataSourceService.class);
DataPointService dataPointService = Common.getBean(DataPointService.class);
MaintenanceEventsService maintenanceEventService = Common.getBean(MaintenanceEventsService.class);
Set<Role> allRequired = new HashSet<>();
try {
MaintenanceEventVO vo = maintenanceEventService.get(maintenanceId);
try {
for (int dsId : vo.getDataSources()) {
MangoPermission read = dataSourceService.getReadPermission(dsId);
read.getRoles().forEach(allRequired::addAll);
}
} catch (NotFoundException e) {
// Ignore this item
}
try {
for (int dpId : vo.getDataPoints()) {
MangoPermission read = dataPointService.getReadPermission(dpId);
read.getRoles().forEach(allRequired::addAll);
}
} catch (NotFoundException e) {
// Ignore this item
}
} catch (NotFoundException e) {
// Ignore all of it
}
if (allRequired.size() == 0) {
return MangoPermission.superadminOnly();
} else {
return MangoPermission.requireAllRoles(allRequired);
}
}
Aggregations