Fix for Penetration test _ Session and cookie management
[vid.git] / vid-app-common / src / main / java / org / onap / vid / dao / FnAppDoaImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.vid.dao;
22
23 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
24 import org.springframework.beans.factory.annotation.Autowired;
25 import org.springframework.stereotype.Repository;
26
27 import java.sql.*;
28
29 @Repository
30 public class FnAppDoaImpl {
31
32     static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(FnAppDoaImpl.class);
33
34     private ConnectionFactory connectionFactory;
35
36     @Autowired
37     public FnAppDoaImpl(ConnectionFactory connectionFactory) {
38         this.connectionFactory = connectionFactory;
39     }
40
41     public int getProfileCount(String URL, String username, String password) throws SQLException {
42         String q = "select count(*) from fn_app";
43         int count = 0;
44         try (Connection dbc = connectionFactory.getConnection(URL, username, password);
45              PreparedStatement pst = dbc.prepareStatement(q); ResultSet rs = pst.executeQuery()) {
46             logger.debug(EELFLoggerDelegate.debugLogger, "getConnection:::", dbc);
47             if (rs.next()) {
48                 count = rs.getInt(1);
49             }
50         } catch (SQLException ex) {
51             logger.error(EELFLoggerDelegate.errorLogger, "Failed to perform health check", ex);
52             throw ex;
53         }
54
55         logger.debug(EELFLoggerDelegate.debugLogger, "count:::", count);
56         return count;
57     }
58 }