use of com.serotonin.m2m2.i18n.ProcessResult in project ma-core-public by infiniteautomation.
the class DataSourceDwr method finishCopy.
@DwrPermission(user = true)
public ProcessResult finishCopy(int copyFromId, int newId) {
ProcessResult result = new ProcessResult();
if (!result.getHasMessages()) {
this.dao.copyDataSourcePoints(copyFromId, newId);
result.addData("vo", dao.get(newId));
}
return result;
}
use of com.serotonin.m2m2.i18n.ProcessResult in project ma-core-public by infiniteautomation.
the class DataSourceDwr method get.
@DwrPermission(user = true)
@Override
public ProcessResult get(int id) {
ProcessResult response;
try {
if (id > 0) {
response = super.get(id);
// Kludge for modules to be able to use a default edit point for some of their tools (Bacnet for example needs this for adding lots of points)
// This is an issue for opening AllDataPoints Point because it opens the Datasource too.
// TODO to fix this we need to fix DataSourceEditDwr to not save the editing DataPoint state in the User, this will propogate into existing modules...
DataSourceVO<?> vo = (DataSourceVO<?>) response.getData().get("vo");
// Quick fix to ensure we don't keep the edit point around if we have switched data sources
if ((Common.getUser().getEditPoint() == null) || (Common.getUser().getEditPoint().getDataSourceId() != vo.getId()) || (Common.getUser().getEditPoint().getDataSourceTypeName() != vo.getDefinition().getDataSourceTypeName())) {
DataPointVO dp = new DataPointVO();
dp.setXid(DataPointDao.instance.generateUniqueXid());
dp.setDataSourceId(vo.getId());
dp.setDataSourceTypeName(vo.getDefinition().getDataSourceTypeName());
dp.setDeviceName(vo.getName());
dp.setEventDetectors(new ArrayList<AbstractPointEventDetectorVO<?>>(0));
dp.defaultTextRenderer();
dp.setXid(DataPointDao.instance.generateUniqueXid());
dp.setPointLocator(vo.createPointLocator());
Common.getUser().setEditPoint(dp);
}
} else {
throw new ShouldNeverHappenException("Unable to get a new DataSource.");
}
// Setup the page info
response.addData("editPagePath", ((DataSourceVO<?>) response.getData().get("vo")).getDefinition().getModule().getWebPath() + "/" + ((DataSourceVO<?>) response.getData().get("vo")).getDefinition().getEditPagePath());
response.addData("statusPagePath", ((DataSourceVO<?>) response.getData().get("vo")).getDefinition().getModule().getWebPath() + "/" + ((DataSourceVO<?>) response.getData().get("vo")).getDefinition().getStatusPagePath());
} catch (Exception e) {
LOG.error(e.getMessage());
response = new ProcessResult();
response.addMessage(new TranslatableMessage("table.error.dwr", e.getMessage()));
}
return response;
}
use of com.serotonin.m2m2.i18n.ProcessResult in project ma-core-public by infiniteautomation.
the class DataSourceEditDwr method validatePoint.
protected ProcessResult validatePoint(int id, String xid, String name, PointLocatorVO<?> locator, DataPointDefaulter defaulter, boolean includePointList) {
ProcessResult response = new ProcessResult();
// This saving of the point into the User is a bad idea, need to rework to
// pass the point back and forth to page.
DataPointVO dp = getPoint(id, defaulter);
dp.setXid(xid);
dp.setName(name);
dp.setPointLocator(locator);
// Confirm that we are assinging a point to the correct data source
DataSourceVO<?> ds = DataSourceDao.instance.get(dp.getDataSourceId());
PointLocatorVO<?> plvo = ds.createPointLocator();
if (plvo.getClass() != locator.getClass()) {
response.addGenericMessage("validate.invalidType");
return response;
}
// If we are a new point then only validate the basics
if (id == Common.NEW_ID) {
if (StringUtils.isBlank(xid))
response.addContextualMessage("xid", "validate.required");
else if (StringValidation.isLengthGreaterThan(xid, 50))
response.addMessage("xid", new TranslatableMessage("validate.notLongerThan", 50));
else if (!DataPointDao.instance.isXidUnique(xid, id))
response.addContextualMessage("xid", "validate.xidUsed");
if (StringUtils.isBlank(name))
response.addContextualMessage("name", "validate.required");
// Load in the default Template
DataPointPropertiesTemplateVO template = TemplateDao.instance.getDefaultDataPointTemplate(locator.getDataTypeId());
if (template != null) {
template.updateDataPointVO(dp);
}
// Should really be done elsewhere
dp.setEventDetectors(new ArrayList<AbstractPointEventDetectorVO<?>>());
} else if (id == DataPointDwr.COPY_ID) {
dp.setId(Common.NEW_ID);
if (StringUtils.isBlank(xid))
response.addContextualMessage("xid", "validate.required");
else if (StringValidation.isLengthGreaterThan(xid, 50))
response.addMessage("xid", new TranslatableMessage("validate.notLongerThan", 50));
else if (!DataPointDao.instance.isXidUnique(xid, id))
response.addContextualMessage("xid", "validate.xidUsed");
if (StringUtils.isBlank(name))
response.addContextualMessage("name", "validate.required");
} else {
// New validation on save for all settings on existing points
dp.validate(response);
if (dp.getChartRenderer() != null)
dp.getChartRenderer().validate(response);
if (dp.getTextRenderer() != null)
dp.getTextRenderer().validate(response);
}
// Validate Locator
locator.validate(response, dp);
if (!response.getHasMessages()) {
try {
Common.runtimeManager.saveDataPoint(dp);
} catch (DuplicateKeyException e) {
response.addGenericMessage("pointEdit.detectors.duplicateXid");
return response;
} catch (LicenseViolatedException e) {
response.addMessage(e.getErrorMessage());
return response;
}
if (defaulter != null)
defaulter.postSave(dp);
response.addData("id", dp.getId());
response.addData("vo", dp);
if (includePointList)
response.addData("points", getPoints());
// Set the User Point
Common.getUser().setEditPoint(dp);
}
return response;
}
use of com.serotonin.m2m2.i18n.ProcessResult in project ma-core-public by infiniteautomation.
the class DataSourceEditDwr method togglePoint.
@DwrPermission(user = true)
public ProcessResult togglePoint(int dataPointId) {
ProcessResult response = super.toggleDataPoint(dataPointId);
response.addData("points", getPoints());
return response;
}
use of com.serotonin.m2m2.i18n.ProcessResult in project ma-core-public by infiniteautomation.
the class DataSourceEditDwr method tryDataSourceSave.
protected ProcessResult tryDataSourceSave(DataSourceVO<?> ds) {
ProcessResult response = new ProcessResult();
User user = Common.getUser();
if (!Permissions.hasPermission(user, ds.getEditPermission())) {
response.addContextualMessage("dataSource.editPermission", "validate.mustHaveEditPermission");
return response;
}
ds.validate(response);
if (!response.getHasMessages()) {
Common.runtimeManager.saveDataSource(ds);
response.addData("id", ds.getId());
// For new table method
response.addData("vo", ds);
user.setEditDataSource(ds);
}
return response;
}
Aggregations