8bdcd100d1796b5e3c5369488b14dbde6ee3f6ee
[aaf/authz.git] / auth / auth-batch / src / main / java / org / onap / aaf / auth / batch / helpers / X509.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 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
22 package org.onap.aaf.auth.batch.helpers;
23
24 import java.io.IOException;
25 import java.nio.ByteBuffer;
26 import java.security.cert.X509Certificate;
27 import java.util.Iterator;
28 import java.util.List;
29
30 import org.onap.aaf.cadi.Hash;
31 import org.onap.aaf.cadi.util.CSV;
32 import org.onap.aaf.misc.env.Env;
33 import org.onap.aaf.misc.env.TimeTaken;
34 import org.onap.aaf.misc.env.Trans;
35 import org.onap.aaf.misc.env.util.Chrono;
36
37 import com.datastax.driver.core.ResultSet;
38 import com.datastax.driver.core.Row;
39 import com.datastax.driver.core.Session;
40 import com.datastax.driver.core.SimpleStatement;
41 import com.datastax.driver.core.Statement;
42
43 public class X509 {
44     public final String ca,id,x500,x509;
45     public ByteBuffer serial;
46     
47     public X509(String ca, String id, String x500, String x509, ByteBuffer serial) {
48         this.ca = ca;
49         this.id = id;
50         this.x500 = x500;
51         this.x509 = x509;
52         this.serial = serial;
53     }
54     
55
56     public static void load(Trans trans, Session session, Visitor<X509> visitor) {
57         load(trans,session,"select ca, id, x500, x509, serial from authz.x509;", visitor);
58     }
59
60     private static void load(Trans trans, Session session, String query, Visitor<X509> visitor) {
61         trans.info().log( "query: " + query );
62         TimeTaken tt = trans.start("Read Roles", Env.REMOTE);
63        
64         ResultSet results;
65         try {
66             Statement stmt = new SimpleStatement( query );
67             results = session.execute(stmt);
68         } finally {
69             tt.done();
70         }
71
72         int count = 0;
73         try {
74             Iterator<Row> iter = results.iterator();
75             Row row;
76             tt = trans.start("Load X509s", Env.SUB);
77             try {
78                 while (iter.hasNext()) {
79                         ++count;
80                     row = iter.next();
81                     visitor.visit(new X509(row.getString(0),row.getString(1), row.getString(2),row.getString(3),row.getBytes(4)));
82                 }
83             } finally {
84                 tt.done();
85             }
86         } finally {
87             trans.info().log("Found",count,"X509 Certificates");
88         }
89     }
90     
91     public static long count(Trans trans, Session session) {
92         String query = "select count(*) from authz.x509 LIMIT 1000000;";
93         trans.info().log( "query: " + query );
94         TimeTaken tt = trans.start("Count x509s", Env.REMOTE);
95         ResultSet results;
96         try {
97             Statement stmt = new SimpleStatement(query).setReadTimeoutMillis(12000);
98             results = session.execute(stmt);
99             return results.one().getLong(0);
100         } finally {
101             tt.done();
102         }
103     }
104     
105
106         public void row(CSV.Writer cw, X509Certificate x509Cert) throws IOException {
107                 cw.row("x509",ca,Hash.toHex(serial.array()),Chrono.dateOnlyStamp(x509Cert.getNotAfter()),x500);
108         }
109
110
111         public static void row(StringBuilder sb, List<String> row) throws IOException {
112         sb.append("DELETE from authz.x509 WHERE ca='");
113         sb.append(row.get(1));
114         sb.append("' AND serial=");
115         sb.append(row.get(2));
116         sb.append(";\n");
117         }
118
119 }