/** * ============LICENSE_START==================================================== * org.onap.aaf * =========================================================================== * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved. * =========================================================================== * Licensed 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. * ============LICENSE_END==================================================== * */ package org.onap.aaf.auth.dao.cass; import java.io.ByteArrayOutputStream; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; import java.nio.ByteBuffer; import java.util.Date; import java.util.HashSet; import java.util.List; import java.util.Set; import org.onap.aaf.auth.dao.Bytification; import org.onap.aaf.auth.dao.CassDAOImpl; import org.onap.aaf.auth.dao.Loader; import org.onap.aaf.auth.dao.Streamer; import org.onap.aaf.auth.env.AuthzTrans; import org.onap.aaf.auth.layer.Result; import org.onap.aaf.misc.env.util.Chrono; import com.datastax.driver.core.Cluster; import com.datastax.driver.core.Row; /** * CredDAO manages credentials. * @author Jonathan * Date: 7/19/13 */ public class ArtiDAO extends CassDAOImpl { public static final String TABLE = "artifact"; private HistoryDAO historyDAO; private PSInfo psByMechID,psByMachine, psByNs; public ArtiDAO(AuthzTrans trans, Cluster cluster, String keyspace) { super(trans, ArtiDAO.class.getSimpleName(),cluster, keyspace, Data.class,TABLE, readConsistency(trans,TABLE), writeConsistency(trans,TABLE)); init(trans); } public ArtiDAO(AuthzTrans trans, HistoryDAO hDao, CacheInfoDAO ciDao) { super(trans, ArtiDAO.class.getSimpleName(),hDao, Data.class,TABLE, readConsistency(trans,TABLE), writeConsistency(trans,TABLE)); historyDAO = hDao; init(trans); } public static final int KEYLIMIT = 2; public static class Data implements Bytification { public String mechid; public String machine; private Set type; public String sponsor; public String ca; public String dir; public String ns; public String os_user; public String notify; public Date expires; public int renewDays; public Set sans; // // Getters public Set type(boolean mutable) { if (type == null) { type = new HashSet<>(); } else if (mutable && !(type instanceof HashSet)) { type = new HashSet<>(type); } return type; } public Set sans(boolean mutable) { if (sans == null) { sans = new HashSet<>(); } else if (mutable && !(sans instanceof HashSet)) { sans = new HashSet<>(sans); } return sans; } @Override public ByteBuffer bytify() throws IOException { ByteArrayOutputStream baos = new ByteArrayOutputStream(); ArtifactLoader.deflt.marshal(this,new DataOutputStream(baos)); return ByteBuffer.wrap(baos.toByteArray()); } @Override public void reconstitute(ByteBuffer bb) throws IOException { ArtifactLoader.deflt.unmarshal(this, toDIS(bb)); } public String toString() { return mechid + ' ' + machine + ' ' + Chrono.dateTime(expires); } } private static class ArtifactLoader extends Loader implements Streamer{ public static final int MAGIC=95829343; public static final int VERSION=1; public static final int BUFF_SIZE=48; // Note: public static final ArtifactLoader deflt = new ArtifactLoader(KEYLIMIT); public ArtifactLoader(int keylimit) { super(keylimit); } @Override public Data load(Data data, Row row) { data.mechid = row.getString(0); data.machine = row.getString(1); data.type = row.getSet(2, String.class); data.sponsor = row.getString(3); data.ca = row.getString(4); data.dir = row.getString(5); data.ns = row.getString(6); data.os_user = row.getString(7); data.notify = row.getString(8); data.expires = row.getTimestamp(9); data.renewDays = row.getInt(10); data.sans = row.getSet(11, String.class); return data; } @Override protected void key(final Data data, final int idx, Object[] obj) { int i; obj[i=idx] = data.mechid; obj[++i] = data.machine; } @Override protected void body(final Data data, final int idx, Object[] obj) { int i; obj[i=idx] = data.type; obj[++i] = data.sponsor; obj[++i] = data.ca; obj[++i] = data.dir; obj[++i] = data.ns; obj[++i] = data.os_user; obj[++i] = data.notify; obj[++i] = data.expires; obj[++i] = data.renewDays; obj[++i] = data.sans; } @Override public void marshal(Data data, DataOutputStream os) throws IOException { writeHeader(os,MAGIC,VERSION); writeString(os, data.mechid); writeString(os, data.machine); os.writeInt(data.type.size()); for(String s : data.type) { writeString(os, s); } writeString(os, data.sponsor); writeString(os, data.ca); writeString(os, data.dir); writeString(os, data.ns); writeString(os, data.os_user); writeString(os, data.notify); os.writeLong(data.expires==null?-1:data.expires.getTime()); os.writeInt(data.renewDays); if(data.sans!=null) { os.writeInt(data.sans.size()); for(String s : data.sans) { writeString(os, s); } } else { os.writeInt(0); } } @Override public void unmarshal(Data data, DataInputStream is) throws IOException { /*int version = */readHeader(is,MAGIC,VERSION); // If Version Changes between Production runs, you'll need to do a switch Statement, and adequately read in fields byte[] buff = new byte[BUFF_SIZE]; data.mechid = readString(is,buff); data.machine = readString(is,buff); int size = is.readInt(); data.type = new HashSet<>(size); for(int i=0;i(size); for(int i=0;i> readByMechID(AuthzTrans trans, String mechid) { return psByMechID.read(trans, R_TEXT, new Object[]{mechid}); } public Result> readByMachine(AuthzTrans trans, String machine) { return psByMachine.read(trans, R_TEXT, new Object[]{machine}); } public Result> readByNs(AuthzTrans trans, String ns) { return psByNs.read(trans, R_TEXT, new Object[]{ns}); } /** * Log Modification statements to History * * @param modified which CRUD action was done * @param data entity data that needs a log entry * @param overrideMessage if this is specified, we use it rather than crafting a history message based on data */ @Override protected void wasModified(AuthzTrans trans, CRUD modified, Data data, String ... override) { boolean memo = override.length>0 && override[0]!=null; boolean subject = override.length>1 && override[1]!=null; HistoryDAO.Data hd = HistoryDAO.newInitedData(); hd.user = trans.user(); hd.action = modified.name(); hd.target = TABLE; hd.subject = subject?override[1]: data.mechid; hd.memo = memo ? String.format("%s by %s", override[0], hd.user) : String.format("%sd %s for %s",modified.name(),data.mechid,data.machine); // Detail? if(modified==CRUD.delete) { try { hd.reconstruct = data.bytify(); } catch (IOException e) { trans.error().log(e,"Could not serialize CredDAO.Data"); } } if(historyDAO.create(trans, hd).status!=Status.OK) { trans.error().log("Cannot log to History"); } } }