|
|
@ -40,13 +40,17 @@ public class SQLServerApplicationDAOImpl extends GenericApplicationDAOImpl {
|
|
|
|
private static final Log log = LogFactory.getLog(SQLServerApplicationDAOImpl.class);
|
|
|
|
private static final Log log = LogFactory.getLog(SQLServerApplicationDAOImpl.class);
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|
public List<ApplicationDTO> getApplications(Filter filter,int deviceTypeId, int tenantId) throws
|
|
|
|
public List<ApplicationDTO> getApplications(Filter filter, int deviceTypeId, int tenantId) throws
|
|
|
|
ApplicationManagementDAOException {
|
|
|
|
ApplicationManagementDAOException {
|
|
|
|
|
|
|
|
if (filter == null) {
|
|
|
|
|
|
|
|
String msg = "Filter is not instantiated for tenant " + tenantId;
|
|
|
|
|
|
|
|
log.error(msg);
|
|
|
|
|
|
|
|
throw new ApplicationManagementDAOException(msg);
|
|
|
|
|
|
|
|
}
|
|
|
|
if (log.isDebugEnabled()) {
|
|
|
|
if (log.isDebugEnabled()) {
|
|
|
|
log.debug("Getting application data from the database");
|
|
|
|
log.debug("Getting application data from the database");
|
|
|
|
log.debug(String.format("Filter: limit=%s, offset=%s", filter.getLimit(), filter.getOffset()));
|
|
|
|
log.debug(String.format("Filter: limit=%s, offset=%s", filter.getLimit(), filter.getOffset()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
int paramIndex = 1;
|
|
|
|
|
|
|
|
String sql = "SELECT "
|
|
|
|
String sql = "SELECT "
|
|
|
|
+ "AP_APP.ID AS APP_ID, "
|
|
|
|
+ "AP_APP.ID AS APP_ID, "
|
|
|
|
+ "AP_APP.NAME AS APP_NAME, "
|
|
|
|
+ "AP_APP.NAME AS APP_NAME, "
|
|
|
@ -79,73 +83,57 @@ public class SQLServerApplicationDAOImpl extends GenericApplicationDAOImpl {
|
|
|
|
+ "FROM AP_APP "
|
|
|
|
+ "FROM AP_APP "
|
|
|
|
+ "INNER JOIN AP_APP_RELEASE ON "
|
|
|
|
+ "INNER JOIN AP_APP_RELEASE ON "
|
|
|
|
+ "AP_APP.ID = AP_APP_RELEASE.AP_APP_ID "
|
|
|
|
+ "AP_APP.ID = AP_APP_RELEASE.AP_APP_ID "
|
|
|
|
+ "INNER JOIN (SELECT ID FROM AP_APP ORDER BY ID OFFSET ? ROWS FETCH NEXT ? ROWS ONLY) AS app_data ON app_data.ID = AP_APP.ID "
|
|
|
|
+ "INNER JOIN (SELECT AP_APP.ID FROM AP_APP ";
|
|
|
|
+ "WHERE AP_APP.TENANT_ID = ?";
|
|
|
|
if (!StringUtils.isEmpty(filter.getVersion()) || !StringUtils.isEmpty(filter.getAppReleaseState())
|
|
|
|
|
|
|
|
|| !StringUtils.isEmpty(filter.getAppReleaseType())) {
|
|
|
|
if (filter == null) {
|
|
|
|
sql += "INNER JOIN AP_APP_RELEASE ON AP_APP.ID = AP_APP_RELEASE.AP_APP_ID ";
|
|
|
|
String msg = "Filter is not instantiated.";
|
|
|
|
|
|
|
|
log.error(msg);
|
|
|
|
|
|
|
|
throw new ApplicationManagementDAOException(msg);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!StringUtils.isEmpty(filter.getAppType())) {
|
|
|
|
if (!StringUtils.isEmpty(filter.getAppType())) {
|
|
|
|
sql += " AND AP_APP.TYPE = ?";
|
|
|
|
sql += "AND AP_APP.TYPE = ? ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!StringUtils.isEmpty(filter.getAppName())) {
|
|
|
|
if (!StringUtils.isEmpty(filter.getAppName())) {
|
|
|
|
sql += " AND LOWER (AP_APP.NAME) ";
|
|
|
|
sql += " AND LOWER (AP_APP.NAME) ";
|
|
|
|
if (filter.isFullMatch()) {
|
|
|
|
if (filter.isFullMatch()) {
|
|
|
|
sql += "= ?";
|
|
|
|
sql += "= ? ";
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
sql += "LIKE ?";
|
|
|
|
sql += "LIKE ? ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!StringUtils.isEmpty(filter.getSubscriptionType())) {
|
|
|
|
if (!StringUtils.isEmpty(filter.getSubscriptionType())) {
|
|
|
|
sql += " AND AP_APP.SUB_TYPE = ?";
|
|
|
|
sql += "AND AP_APP.SUB_TYPE = ? ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (filter.getMinimumRating() > 0) {
|
|
|
|
if (filter.getMinimumRating() > 0) {
|
|
|
|
sql += " AND AP_APP.RATING >= ?";
|
|
|
|
sql += "AND AP_APP.RATING >= ? ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!StringUtils.isEmpty(filter.getVersion())) {
|
|
|
|
if (!StringUtils.isEmpty(filter.getVersion())) {
|
|
|
|
sql += " AND AP_APP_RELEASE.VERSION = ?";
|
|
|
|
sql += "AND AP_APP_RELEASE.VERSION = ? ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!StringUtils.isEmpty(filter.getAppReleaseType())) {
|
|
|
|
if (!StringUtils.isEmpty(filter.getAppReleaseType())) {
|
|
|
|
sql += " AND AP_APP_RELEASE.RELEASE_TYPE = ?";
|
|
|
|
sql += "AND AP_APP_RELEASE.RELEASE_TYPE = ? ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!StringUtils.isEmpty(filter.getAppReleaseState())) {
|
|
|
|
if (!StringUtils.isEmpty(filter.getAppReleaseState())) {
|
|
|
|
sql += " AND AP_APP_RELEASE.CURRENT_STATE = ?";
|
|
|
|
sql += "AND AP_APP_RELEASE.CURRENT_STATE = ? ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (deviceTypeId != -1) {
|
|
|
|
if (deviceTypeId != -1) {
|
|
|
|
sql += " AND AP_APP.DEVICE_TYPE_ID = ?";
|
|
|
|
sql += "AND AP_APP.DEVICE_TYPE_ID = ? ";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (filter.getLimit() == -1) {
|
|
|
|
|
|
|
|
sql = sql.replace("ORDER BY ID OFFSET ? ROWS FETCH NEXT ? ROWS ONLY", "");
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sql += "GROUP BY AP_APP.ID ";
|
|
|
|
String sortingOrder = "ASC";
|
|
|
|
|
|
|
|
if (!StringUtils.isEmpty(filter.getSortBy())) {
|
|
|
|
if (!StringUtils.isEmpty(filter.getSortBy())) {
|
|
|
|
sortingOrder = filter.getSortBy();
|
|
|
|
sql += "ORDER BY ID " + filter.getSortBy() + " ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sql += " ORDER BY APP_ID " + sortingOrder;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
Connection conn = this.getDBConnection();
|
|
|
|
|
|
|
|
try (PreparedStatement stmt = conn.prepareStatement(sql);
|
|
|
|
|
|
|
|
){
|
|
|
|
|
|
|
|
if (filter.getLimit() != -1) {
|
|
|
|
if (filter.getLimit() != -1) {
|
|
|
|
stmt.setInt(paramIndex++, filter.getOffset());
|
|
|
|
sql += "ORDER BY ID OFFSET ? ROWS FETCH NEXT ? ROWS ONLY ";
|
|
|
|
if (filter.getLimit() == 0) {
|
|
|
|
|
|
|
|
stmt.setInt(paramIndex++, 100);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
stmt.setInt(paramIndex++, filter.getLimit());
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sql += ") AS app_data ON app_data.ID = AP_APP.ID " +
|
|
|
|
stmt.setInt(paramIndex++, tenantId);
|
|
|
|
"WHERE AP_APP.TENANT_ID = ?";
|
|
|
|
|
|
|
|
try {
|
|
|
|
if (filter.getAppType() != null && !filter.getAppType().isEmpty()) {
|
|
|
|
Connection conn = this.getDBConnection();
|
|
|
|
|
|
|
|
try (PreparedStatement stmt = conn.prepareStatement(sql)) {
|
|
|
|
|
|
|
|
int paramIndex = 1;
|
|
|
|
|
|
|
|
if (!StringUtils.isEmpty(filter.getAppType())) {
|
|
|
|
stmt.setString(paramIndex++, filter.getAppType());
|
|
|
|
stmt.setString(paramIndex++, filter.getAppType());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (filter.getAppName() != null && !filter.getAppName().isEmpty()) {
|
|
|
|
if (!StringUtils.isEmpty(filter.getAppName())) {
|
|
|
|
if (filter.isFullMatch()) {
|
|
|
|
if (filter.isFullMatch()) {
|
|
|
|
stmt.setString(paramIndex++, filter.getAppName().toLowerCase());
|
|
|
|
stmt.setString(paramIndex++, filter.getAppName().toLowerCase());
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
@ -167,10 +155,15 @@ public class SQLServerApplicationDAOImpl extends GenericApplicationDAOImpl {
|
|
|
|
if (!StringUtils.isEmpty(filter.getAppReleaseState())) {
|
|
|
|
if (!StringUtils.isEmpty(filter.getAppReleaseState())) {
|
|
|
|
stmt.setString(paramIndex++, filter.getAppReleaseState());
|
|
|
|
stmt.setString(paramIndex++, filter.getAppReleaseState());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (deviceTypeId > 0 ) {
|
|
|
|
if (deviceTypeId > 0) {
|
|
|
|
stmt.setInt(paramIndex, deviceTypeId);
|
|
|
|
stmt.setInt(paramIndex++, deviceTypeId);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (filter.getLimit() != -1) {
|
|
|
|
|
|
|
|
stmt.setInt(paramIndex++, filter.getOffset());
|
|
|
|
|
|
|
|
stmt.setInt(paramIndex++, filter.getLimit());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
try (ResultSet rs = stmt.executeQuery() ) {
|
|
|
|
stmt.setInt(paramIndex, tenantId);
|
|
|
|
|
|
|
|
try (ResultSet rs = stmt.executeQuery()) {
|
|
|
|
return DAOUtil.loadApplications(rs);
|
|
|
|
return DAOUtil.loadApplications(rs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|