use of com.serotonin.m2m2.vo.publish.PublishedPointVO in project ma-core-public by infiniteautomation.
the class EventHandlersDwr method getInitData.
@DwrPermission(user = true)
public Map<String, Object> getInitData() {
User user = Common.getHttpUser();
Permissions.ensureDataSourcePermission(user);
Map<String, Object> model = new HashMap<>();
// Get the data sources.
List<DataSourceVO<?>> dss = DataSourceDao.instance.getDataSources();
// Create a lookup of data sources to quickly determine data point permissions.
Map<Integer, DataSourceVO<?>> dslu = new HashMap<>();
for (DataSourceVO<?> ds : dss) dslu.put(ds.getId(), ds);
// Get the data points
List<DataPointBean> allPoints = new ArrayList<>();
List<EventSourceBean> dataPoints = new ArrayList<>();
List<DataPointVO> dps = DataPointDao.instance.getDataPoints(DataPointExtendedNameComparator.instance, true);
final boolean admin = Permissions.hasAdmin(user);
for (DataPointVO dp : dps) {
if (!admin && !Permissions.hasDataSourcePermission(user, dslu.get(dp.getDataSourceId())))
continue;
allPoints.add(new DataPointBean(dp));
if (dp.getEventDetectors().size() > 0) {
EventSourceBean source = new EventSourceBean();
source.setId(dp.getId());
source.setName(dp.getExtendedName());
for (AbstractPointEventDetectorVO<?> ped : dp.getEventDetectors()) {
EventTypeVO dpet = ped.getEventType();
dpet.setHandlers(EventHandlerDao.instance.getEventHandlers(dpet));
source.getEventTypes().add(dpet);
}
dataPoints.add(source);
}
}
// Get the data sources
List<EventSourceBean> dataSources = new ArrayList<>();
for (DataSourceVO<?> ds : dss) {
if (!admin && !Permissions.hasDataSourcePermission(user, ds))
continue;
if (ds.getEventTypes().size() > 0) {
EventSourceBean source = new EventSourceBean();
source.setId(ds.getId());
source.setName(ds.getName());
for (EventTypeVO dset : ds.getEventTypes()) {
dset.setHandlers(EventHandlerDao.instance.getEventHandlers(dset));
source.getEventTypes().add(dset);
}
dataSources.add(source);
}
}
Map<String, Map<String, Object>> userEventTypes = new LinkedHashMap<>();
model.put("userEventTypes", userEventTypes);
for (EventTypeDefinition def : ModuleRegistry.getDefinitions(EventTypeDefinition.class)) {
if (!def.getHandlersRequireAdmin()) {
List<EventTypeVO> vos = def.getEventTypeVOs();
for (EventTypeVO vo : vos) vo.setHandlers(EventHandlerDao.instance.getEventHandlers(vo));
Map<String, Object> info = new HashMap<>();
info.put("vos", vos);
info.put("iconPath", def.getIconPath());
info.put("description", translate(def.getDescriptionKey()));
userEventTypes.put(def.getTypeName(), info);
}
}
if (admin) {
// Get the publishers
List<EventSourceBean> publishers = new ArrayList<>();
for (PublisherVO<? extends PublishedPointVO> p : PublisherDao.instance.getPublishers(new PublisherDao.PublisherNameComparator())) {
if (p.getEventTypes().size() > 0) {
EventSourceBean source = new EventSourceBean();
source.setId(p.getId());
source.setName(p.getName());
for (EventTypeVO pet : p.getEventTypes()) {
pet.setHandlers(EventHandlerDao.instance.getEventHandlers(pet));
source.getEventTypes().add(pet);
}
publishers.add(source);
}
}
model.put(SchemaDefinition.PUBLISHERS_TABLE, publishers);
// Get the system events
List<EventTypeVO> systemEvents = new ArrayList<>();
for (EventTypeVO sets : SystemEventType.EVENT_TYPES) {
sets.setHandlers(EventHandlerDao.instance.getEventHandlers(sets));
systemEvents.add(sets);
}
model.put("systemEvents", systemEvents);
// Get the audit events
List<EventTypeVO> auditEvents = new ArrayList<>();
for (EventTypeVO aets : AuditEventType.EVENT_TYPES) {
aets.setHandlers(EventHandlerDao.instance.getEventHandlers(aets));
auditEvents.add(aets);
}
model.put("auditEvents", auditEvents);
Map<String, Map<String, Object>> adminEventTypes = new LinkedHashMap<>();
model.put("adminEventTypes", adminEventTypes);
for (EventTypeDefinition def : ModuleRegistry.getDefinitions(EventTypeDefinition.class)) {
if (def.getHandlersRequireAdmin()) {
List<EventTypeVO> vos = def.getEventTypeVOs();
for (EventTypeVO vo : vos) vo.setHandlers(EventHandlerDao.instance.getEventHandlers(vo));
Map<String, Object> info = new HashMap<>();
info.put("vos", vos);
info.put("iconPath", def.getIconPath());
info.put("description", translate(def.getDescriptionKey()));
adminEventTypes.put(def.getTypeName(), info);
}
}
}
model.put("userNewScriptPermissions", new ScriptPermissions(user));
// Get the mailing lists.
model.put(SchemaDefinition.MAILING_LISTS_TABLE, MailingListDao.instance.getMailingLists());
// Get the users.
model.put(SchemaDefinition.USERS_TABLE, UserDao.instance.getUsers());
model.put("allPoints", allPoints);
model.put(SchemaDefinition.DATAPOINTS_TABLE, dataPoints);
model.put(SchemaDefinition.DATASOURCES_TABLE, dataSources);
return model;
}
use of com.serotonin.m2m2.vo.publish.PublishedPointVO in project ma-core-public by infiniteautomation.
the class PublisherEditDwr method trySave.
protected ProcessResult trySave(PublisherVO<? extends PublishedPointVO> p) {
ProcessResult response = new ProcessResult();
p.validate(response);
if (!response.getHasMessages()) {
Common.runtimeManager.savePublisher(p);
response.addData("id", p.getId());
}
return response;
}
use of com.serotonin.m2m2.vo.publish.PublishedPointVO in project ma-core-public by infiniteautomation.
the class PublisherListDwr method togglePublisher.
@DwrPermission(admin = true)
public ProcessResult togglePublisher(int publisherId) {
ProcessResult response = new ProcessResult();
PublisherVO<? extends PublishedPointVO> publisher = Common.runtimeManager.getPublisher(publisherId);
publisher.setEnabled(!publisher.isEnabled());
publisher.validate(response);
if (!response.getHasMessages())
Common.runtimeManager.savePublisher(publisher);
else
publisher.setEnabled(!publisher.isEnabled());
response.addData("enabled", publisher.isEnabled());
response.addData("id", publisherId);
return response;
}
use of com.serotonin.m2m2.vo.publish.PublishedPointVO in project ma-modules-public by infiniteautomation.
the class PublishedPointsRestController method exportPublishedPoint.
@ApiOperation(value = "Export formatted for Configuration Import")
@RequestMapping(method = RequestMethod.GET, value = "/export/{xid}", produces = MediaTypes.SEROTONIN_JSON_VALUE)
public Map<String, Object> exportPublishedPoint(@ApiParam(value = "Valid published point XID", required = true) @PathVariable String xid, @AuthenticationPrincipal PermissionHolder user) {
PublishedPointVO vo = service.get(xid);
Map<String, Object> export = new LinkedHashMap<>();
export.put("publishedPoints", Collections.singletonList(vo));
return export;
}
use of com.serotonin.m2m2.vo.publish.PublishedPointVO in project ma-core-public by infiniteautomation.
the class PublishedPointGroupInitializer method processItem.
@Override
protected Void processItem(List<PublishedPointVO> subgroup, int itemId) throws Exception {
long startTs = 0L;
if (log.isInfoEnabled()) {
startTs = Common.timer.currentTimeMillis();
log.info("Initializing group {} of {} published points", itemId, subgroup.size());
}
// Now start them
int failedCount = 0;
for (PublishedPointVO point : subgroup) {
try {
Common.runtimeManager.startPublishedPoint(point);
} catch (Exception e) {
// Ensure only 1 can fail at a time
failedCount++;
log.error("Failed to start published point", e);
}
}
if (log.isInfoEnabled()) {
log.info("Group {} successfully initialized {} of {} published points in {} ms", itemId, subgroup.size() - failedCount, subgroup.size(), Common.timer.currentTimeMillis() - startTs);
}
return null;
}
Aggregations