mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
App-mgt store mapping validation
This commit is contained in:
parent
83f300ae2d
commit
ae80bd8ba8
@ -30,26 +30,40 @@ public class GenericSubscriptionDAOImpl extends AbstractDAOImpl implements Subsc
|
|||||||
private static Log log = LogFactory.getLog(GenericSubscriptionDAOImpl.class);
|
private static Log log = LogFactory.getLog(GenericSubscriptionDAOImpl.class);
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int addDeviceApplicationMapping(String deviceIdentifier, String applicationUUID, boolean installed) throws ApplicationManagementException {
|
public int addDeviceApplicationMapping(String deviceIdentifier, String applicationUUID, boolean installed) throws
|
||||||
|
ApplicationManagementException {
|
||||||
Connection conn;
|
Connection conn;
|
||||||
PreparedStatement stmt = null;
|
PreparedStatement stmt = null;
|
||||||
ResultSet rs = null;
|
ResultSet rs = null;
|
||||||
int mappingId = -1;
|
int mappingId = -1;
|
||||||
try {
|
try {
|
||||||
conn = this.getDBConnection();
|
conn = this.getDBConnection();
|
||||||
String sql = "INSERT INTO APPM_DEVICE_APPLICATION_MAPPING (DEVICE_IDENTIFIER, APPLICATION_UUID, " +
|
String sql = "SELECT ID FROM APPM_DEVICE_APPLICATION_MAPPING WHERE DEVICE_IDENTIFIER = ? AND " +
|
||||||
"INSTALLED) VALUES (?, ?, ?)";
|
"APPLICATION_UUID = ?";
|
||||||
stmt = conn.prepareStatement(sql, new String[] {"id"});
|
stmt = conn.prepareStatement(sql);
|
||||||
stmt.setString(1, deviceIdentifier);
|
stmt.setString(1, deviceIdentifier);
|
||||||
stmt.setString(2, applicationUUID);
|
stmt.setString(2, applicationUUID);
|
||||||
stmt.setBoolean(3, installed);
|
rs = stmt.executeQuery();
|
||||||
stmt.executeUpdate();
|
|
||||||
|
|
||||||
rs = stmt.getGeneratedKeys();
|
if (!rs.next()) {
|
||||||
if (rs.next()) {
|
sql = "INSERT INTO APPM_DEVICE_APPLICATION_MAPPING (DEVICE_IDENTIFIER, APPLICATION_UUID, " +
|
||||||
mappingId = rs.getInt(1);
|
"INSTALLED) VALUES (?, ?, ?)";
|
||||||
|
stmt = conn.prepareStatement(sql, new String[]{"id"});
|
||||||
|
stmt.setString(1, deviceIdentifier);
|
||||||
|
stmt.setString(2, applicationUUID);
|
||||||
|
stmt.setBoolean(3, installed);
|
||||||
|
stmt.executeUpdate();
|
||||||
|
|
||||||
|
rs = stmt.getGeneratedKeys();
|
||||||
|
if (rs.next()) {
|
||||||
|
mappingId = rs.getInt(1);
|
||||||
|
}
|
||||||
|
return mappingId;
|
||||||
|
} else {
|
||||||
|
log.warn("Device[" + deviceIdentifier + "] application[" + applicationUUID + "] mapping already " +
|
||||||
|
"exists in the DB");
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
return mappingId;
|
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
throw new ApplicationManagementException("Error occurred while adding device application mapping to DB", e);
|
throw new ApplicationManagementException("Error occurred while adding device application mapping to DB", e);
|
||||||
} finally {
|
} finally {
|
||||||
|
|||||||
@ -400,8 +400,9 @@ CREATE TABLE IF NOT EXISTS `APPM_DEVICE_APPLICATION_MAPPING` (
|
|||||||
`INSTALLED` BOOLEAN NOT NULL,
|
`INSTALLED` BOOLEAN NOT NULL,
|
||||||
`SENT_AT` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
`SENT_AT` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||||
PRIMARY KEY (ID),
|
PRIMARY KEY (ID),
|
||||||
CONSTRAINT fk_appm_application FOREIGN KEY (`APPLICATION_UUID`) REFERENCES
|
CONSTRAINT `fk_appm_application` FOREIGN KEY (`APPLICATION_UUID`) REFERENCES
|
||||||
APPM_APPLICATION (`UUID`) ON DELETE NO ACTION ON UPDATE NO ACTION
|
APPM_APPLICATION (`UUID`) ON DELETE NO ACTION ON UPDATE NO ACTION,
|
||||||
|
UNIQUE KEY `device_app_mapping` (`DEVICE_IDENTIFIER`, `APPLICATION_UUID`)
|
||||||
) ENGINE = InnoDB;
|
) ENGINE = InnoDB;
|
||||||
|
|
||||||
SET SQL_MODE=@OLD_SQL_MODE;
|
SET SQL_MODE=@OLD_SQL_MODE;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user