use of com.infiniteautomation.mango.permission.MangoPermission in project ma-modules-public by infiniteautomation.
the class MangoPermissionModelDeserializer method nodeToModel.
@SuppressWarnings("unchecked")
public MangoPermissionModel nodeToModel(JsonNode tree, ObjectMapper mapper) throws JsonProcessingException {
Set<Set<Role>> roles = new HashSet<>();
if (tree instanceof ArrayNode) {
Set<Object> outerSet = mapper.treeToValue(tree, Set.class);
for (Object o : outerSet) {
Set<Role> innerRoles = new HashSet<>();
roles.add(innerRoles);
if (o instanceof Iterable) {
for (String xid : (Iterable<String>) o) {
Role role = permissionService.getRole(xid);
if (role != null) {
innerRoles.add(role);
} else {
// Let validation pick this up
innerRoles.add(new Role(Common.NEW_ID, xid));
}
}
} else {
String xid = (String) o;
Role role = permissionService.getRole(xid);
if (role != null) {
innerRoles.add(role);
} else {
// Let validation pick this up
innerRoles.add(new Role(Common.NEW_ID, xid));
}
}
}
} else if (tree instanceof TextNode) {
Set<String> xids = PermissionService.explodeLegacyPermissionGroups(tree.asText());
for (String xid : xids) {
Role role = permissionService.getRole(xid);
if (role != null) {
roles.add(Collections.singleton(role));
} else {
// Let validation pick this up
roles.add(Collections.singleton(new Role(Common.NEW_ID, xid)));
}
}
}
return new MangoPermissionModel(new MangoPermission(roles));
}
use of com.infiniteautomation.mango.permission.MangoPermission in project ma-modules-public by infiniteautomation.
the class SystemMetricsRestController method get.
@ApiOperation(value = "Get the current value for one System Metric by its ID", notes = "")
@RequestMapping(method = RequestMethod.GET, value = "/{id}")
public ValueMonitorModel get(@ApiParam(value = "Valid Monitor id", required = true, allowMultiple = false) @PathVariable String id, @AuthenticationPrincipal PermissionHolder user) {
MangoPermission permission = definition.getPermission();
service.ensurePermission(user, permission);
List<ValueMonitor<?>> values = Common.MONITORED_VALUES.getMonitors();
for (ValueMonitor<?> v : values) {
if (v.getId().equals(id)) {
return new ValueMonitorModel(v);
}
}
throw new NotFoundException();
}
use of com.infiniteautomation.mango.permission.MangoPermission 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.permission.MangoPermission 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);
}
}
use of com.infiniteautomation.mango.permission.MangoPermission in project ma-modules-public by infiniteautomation.
the class MaintenanceEventModel method toVO.
@Override
public MaintenanceEventVO toVO() {
MaintenanceEventVO vo = super.toVO();
ProcessResult result = new ProcessResult();
if (dataSources != null) {
Set<Integer> ids = new HashSet<>();
for (String xid : dataSources) {
Integer id = DataSourceDao.getInstance().getIdByXid(xid);
if (id != null)
ids.add(id);
else
result.addContextualMessage("dataSources", "maintenanceEvents.validate.missingDataSource", xid);
}
vo.setDataSources(new ArrayList<>(ids));
}
if (dataPoints != null) {
Set<Integer> ids = new HashSet<>();
for (String xid : dataPoints) {
Integer id = DataPointDao.getInstance().getIdByXid(xid);
if (id != null)
ids.add(id);
else
result.addContextualMessage("dataPoints", "maintenanceEvents.validate.missingDataPoint", xid);
}
vo.setDataPoints(new ArrayList<>(ids));
}
if (result.getHasMessages())
throw new ValidationException(result);
vo.setAlarmLevel(alarmLevel);
vo.setScheduleType(MaintenanceEventVO.TYPE_CODES.getId(scheduleType));
vo.setDisabled(disabled == null ? false : disabled);
vo.setActiveYear(activeYear == null ? 0 : activeYear);
vo.setActiveMonth(activeMonth == null ? 0 : activeMonth);
vo.setActiveDay(activeDay == null ? 0 : activeDay);
vo.setActiveHour(activeHour == null ? 0 : activeHour);
vo.setActiveMinute(activeMinute == null ? 0 : activeMinute);
vo.setActiveSecond(activeSecond == null ? 0 : activeSecond);
vo.setActiveCron(activeCron);
vo.setInactiveYear(inactiveYear == null ? 0 : inactiveYear);
vo.setInactiveMonth(inactiveMonth == null ? 0 : inactiveMonth);
vo.setInactiveDay(inactiveDay == null ? 0 : inactiveDay);
vo.setInactiveHour(inactiveHour == null ? 0 : inactiveHour);
vo.setInactiveMinute(inactiveMinute == null ? 0 : inactiveMinute);
vo.setInactiveSecond(inactiveSecond == null ? 0 : inactiveSecond);
vo.setInactiveCron(inactiveCron);
vo.setTimeoutPeriods(timeoutPeriods == null ? 0 : timeoutPeriods);
vo.setTimeoutPeriodType(Common.TIME_PERIOD_CODES.getId(timeoutPeriodType));
vo.setTogglePermission(togglePermission != null ? togglePermission.getPermission() : new MangoPermission());
return vo;
}
Aggregations