use of com.serotonin.m2m2.vo.DataPointVO in project ma-core-public by infiniteautomation.
the class DataPointDetailsDwr method getStatsChartData.
@DwrPermission(user = true)
public ProcessResult getStatsChartData(int periodType, int period, boolean includeSum) {
HttpServletRequest request = WebContextFactory.get().getHttpServletRequest();
DataPointVO pointVO = Common.getUser(request).getEditPoint();
Map<String, Object> model = new HashMap<String, Object>();
model.put("point", pointVO);
StatisticsChartRenderer r = new StatisticsChartRenderer(periodType, period, includeSum);
r.addDataToModel(model, pointVO);
ProcessResult response = new ProcessResult();
response.addData("stats", generateContent(request, "statsChart.jsp", model));
addAsof(response);
return response;
}
use of com.serotonin.m2m2.vo.DataPointVO in project ma-core-public by infiniteautomation.
the class DataPointDwr method enableDisable.
@DwrPermission(user = true)
public ProcessResult enableDisable(int dataPointId, boolean enabled) {
DataPointVO dataPoint = DataPointDao.instance.getDataPoint(dataPointId, false);
Permissions.ensureDataSourcePermission(Common.getUser(), dataPoint.getDataSourceId());
if (enabled)
DataPointDao.instance.setEventDetectors(dataPoint);
Common.runtimeManager.enableDataPoint(dataPoint, enabled);
ProcessResult response = new ProcessResult();
response.addData("id", dataPointId);
response.addData("enabled", dataPoint.isEnabled());
return response;
}
use of com.serotonin.m2m2.vo.DataPointVO in project ma-core-public by infiniteautomation.
the class DataPointDwr method getFull.
/*
* (non-Javadoc)
*
* @see com.deltamation.mango.downtime.web.AbstractBasicDwr#getFull(int)
*/
@DwrPermission(user = true)
@Override
public ProcessResult getFull(int id) {
DataPointVO vo;
User user = Common.getUser();
if (id == Common.NEW_ID) {
vo = dao.getNewVo();
// TODO Need to sort this out another way, this will wreck
// when users have mulitple tabs open in a browser
DataSourceVO<?> ds = user.getEditDataSource();
vo.setXid(dao.generateUniqueXid());
vo.setPointLocator(ds.createPointLocator());
vo.setDataSourceId(ds.getId());
vo.setDataSourceName(ds.getName());
vo.setDataSourceTypeName(ds.getDefinition().getDataSourceTypeName());
vo.setDataSourceXid(ds.getXid());
vo.setDeviceName(ds.getName());
vo.setEventDetectors(new ArrayList<AbstractPointEventDetectorVO<?>>(0));
vo.defaultTextRenderer();
} else {
vo = dao.getFull(id);
}
// Should check permissions?
// Permissions.ensureDataSourcePermission(user, vo.getDataSourceId());
user.setEditPoint(vo);
// TODO Need to deal with point value defaulter
ProcessResult response = new ProcessResult();
response.addData("vo", vo);
return response;
}
use of com.serotonin.m2m2.vo.DataPointVO in project ma-core-public by infiniteautomation.
the class DataPointDwr method jsonExportUsingFilter.
/**
* Export VOs based on a filter
*
* @param id
* @return
*/
@SuppressWarnings("unchecked")
@DwrPermission(user = true)
public String jsonExportUsingFilter(Map<String, String> query, List<SortOption> sort, Integer start, Integer count, boolean or) {
Map<String, Object> data = new LinkedHashMap<>();
List<DataPointVO> vos = new ArrayList<>();
ResultsWithTotal results = dao.dojoQuery(query, sort, start, count, or);
List<DataPointVO> filteredPoints = (List<DataPointVO>) results.getResults();
// Filter list on User Permissions
User user = Common.getUser();
for (DataPointVO vo : filteredPoints) {
if (Permissions.hasDataPointReadPermission(user, vo)) {
dao.loadRelationalData(vo);
vos.add(vo);
}
}
// Get the Full VO for the export
data.put(keyName, vos);
return EmportDwr.export(data, 3);
}
use of com.serotonin.m2m2.vo.DataPointVO in project ma-core-public by infiniteautomation.
the class DataPointDwr method toggle.
@DwrPermission(user = true)
public ProcessResult toggle(int dataPointId) {
DataPointVO dataPoint = DataPointDao.instance.getFull(dataPointId);
Permissions.ensureDataSourcePermission(Common.getUser(), dataPoint.getDataSourceId());
dataPoint.setEnabled(!dataPoint.isEnabled());
Common.runtimeManager.saveDataPoint(dataPoint);
ProcessResult response = new ProcessResult();
response.addData("id", dataPointId);
response.addData("enabled", dataPoint.isEnabled());
return response;
}
Aggregations