blob: 7254baffcb24621eab1ecfd19c204f7079d20b6d [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.fineract.infrastructure.codes.service;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Collection;
import org.apache.fineract.infrastructure.codes.data.CodeData;
import org.apache.fineract.infrastructure.codes.exception.CodeNotFoundException;
import org.apache.fineract.infrastructure.core.service.RoutingDataSource;
import org.apache.fineract.infrastructure.security.service.PlatformSecurityContext;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.dao.EmptyResultDataAccessException;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.RowMapper;
import org.springframework.stereotype.Service;
@Service
public class CodeReadPlatformServiceImpl implements CodeReadPlatformService {
private final JdbcTemplate jdbcTemplate;
private final PlatformSecurityContext context;
@Autowired
public CodeReadPlatformServiceImpl(final PlatformSecurityContext context, final RoutingDataSource dataSource) {
this.context = context;
this.jdbcTemplate = new JdbcTemplate(dataSource);
}
private static final class CodeMapper implements RowMapper<CodeData> {
public String schema() {
return " c.id as id, c.code_name as code_name, c.is_system_defined as systemDefined from m_code c ";
}
@Override
public CodeData mapRow(final ResultSet rs, @SuppressWarnings("unused") final int rowNum) throws SQLException {
final Long id = rs.getLong("id");
final String code_name = rs.getString("code_name");
final boolean systemDefined = rs.getBoolean("systemDefined");
return CodeData.instance(id, code_name, systemDefined);
}
}
@Override
@Cacheable(value = "codes", key = "T(org.apache.fineract.infrastructure.core.service.ThreadLocalContextUtil).getTenant().getTenantIdentifier().concat('CD')")
public Collection<CodeData> retrieveAllCodes() {
this.context.authenticatedUser();
final CodeMapper rm = new CodeMapper();
final String sql = "select " + rm.schema() + " order by c.code_name";
return this.jdbcTemplate.query(sql, rm, new Object[] {});
}
@Override
public CodeData retrieveCode(final Long codeId) {
try {
this.context.authenticatedUser();
final CodeMapper rm = new CodeMapper();
final String sql = "select " + rm.schema() + " where c.id = ?";
return this.jdbcTemplate.queryForObject(sql, rm, new Object[] { codeId });
} catch (final EmptyResultDataAccessException e) {
throw new CodeNotFoundException(codeId);
}
}
@Override
public CodeData retriveCode(final String codeName) {
try {
this.context.authenticatedUser();
final CodeMapper rm = new CodeMapper();
final String sql = "select " + rm.schema() + " where c.code_name = ?";
return this.jdbcTemplate.queryForObject(sql, rm, new Object[] { codeName });
} catch (final EmptyResultDataAccessException e) {
throw new CodeNotFoundException(codeName);
}
}
}