/*! ****************************************************************************** * * Pentaho Data Integration * * Copyright (C) 2002-2016 by Pentaho : http://www.pentaho.com * ******************************************************************************* * * 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. * ******************************************************************************/ package org.pentaho.di.trans.steps.pgpencryptstream; import org.pentaho.di.core.exception.KettleException; import org.pentaho.di.core.row.RowDataUtil; import org.pentaho.di.core.util.Utils; import org.pentaho.di.i18n.BaseMessages; import org.pentaho.di.job.entries.pgpencryptfiles.GPG; import org.pentaho.di.trans.Trans; import org.pentaho.di.trans.TransMeta; import org.pentaho.di.trans.step.BaseStep; import org.pentaho.di.trans.step.StepDataInterface; import org.pentaho.di.trans.step.StepInterface; import org.pentaho.di.trans.step.StepMeta; import org.pentaho.di.trans.step.StepMetaInterface; /** * Encrypt a stream with GPG * * * @author Samatar * @since 03-Juin-2008 * */ public class PGPEncryptStream extends BaseStep implements StepInterface { private static Class<?> PKG = PGPEncryptStreamMeta.class; // for i18n purposes, needed by Translator2!! private PGPEncryptStreamMeta meta; private PGPEncryptStreamData data; public PGPEncryptStream( StepMeta stepMeta, StepDataInterface stepDataInterface, int copyNr, TransMeta transMeta, Trans trans ) { super( stepMeta, stepDataInterface, copyNr, transMeta, trans ); } public boolean processRow( StepMetaInterface smi, StepDataInterface sdi ) throws KettleException { meta = (PGPEncryptStreamMeta) smi; data = (PGPEncryptStreamData) sdi; boolean sendToErrorRow = false; String errorMessage = null; Object[] r = getRow(); // Get row from input rowset & set row busy! if ( r == null ) { // no more input to be expected... setOutputDone(); return false; } try { if ( first ) { first = false; // get the RowMeta data.previousRowMeta = getInputRowMeta().clone(); data.NrPrevFields = data.previousRowMeta.size(); data.outputRowMeta = data.previousRowMeta; meta.getFields( data.outputRowMeta, getStepname(), null, null, this, repository, metaStore ); // Check is stream data field is provided if ( Utils.isEmpty( meta.getStreamField() ) ) { throw new KettleException( BaseMessages.getString( PKG, "PGPEncryptStream.Error.DataStreamFieldMissing" ) ); } if ( meta.isKeynameInField() ) { // keyname will be extracted from a field String keyField = meta.getKeynameFieldName(); if ( Utils.isEmpty( keyField ) ) { throw new KettleException( BaseMessages.getString( PKG, "PGPEncryptStream.Error.KeyNameFieldMissing" ) ); } data.indexOfKeyName = data.previousRowMeta.indexOfValue( keyField ); if ( data.indexOfKeyName < 0 ) { // The field is unreachable ! throw new KettleException( BaseMessages.getString( PKG, "PGPEncryptStream.Exception.CouldnotFindField", meta.getStreamField() ) ); } } else { // Check is keyname is provided data.keyName = environmentSubstitute( meta.getKeyName() ); if ( Utils.isEmpty( data.keyName ) ) { throw new KettleException( BaseMessages.getString( PKG, "PGPEncryptStream.Error.KeyNameMissing" ) ); } } // cache the position of the field if ( data.indexOfField < 0 ) { data.indexOfField = data.previousRowMeta.indexOfValue( meta.getStreamField() ); if ( data.indexOfField < 0 ) { // The field is unreachable ! throw new KettleException( BaseMessages.getString( PKG, "PGPEncryptStream.Exception.CouldnotFindField", meta.getStreamField() ) ); } } } // End If first // allocate output row Object[] outputRow = RowDataUtil.allocateRowData( data.outputRowMeta.size() ); for ( int i = 0; i < data.NrPrevFields; i++ ) { outputRow[i] = r[i]; } // get keyname if needed if ( meta.isKeynameInField() ) { // get keyname data.keyName = data.previousRowMeta.getString( r, data.indexOfKeyName ); if ( Utils.isEmpty( data.keyName ) ) { throw new KettleException( BaseMessages.getString( PKG, "PGPEncryptStream.Error.KeyNameMissing" ) ); } } // get stream, data to encrypt String dataToEncrypt = data.previousRowMeta.getString( r, data.indexOfField ); if ( Utils.isEmpty( dataToEncrypt ) ) { // no data..we can not continue with this row throw new KettleException( BaseMessages.getString( PKG, "PGPEncryptStream.Error.DataToEncryptEmpty" ) ); } // let's encrypt data String encryptedData = data.gpg.encrypt( dataToEncrypt, data.keyName ); // Add encrypted data to input stream outputRow[data.NrPrevFields] = encryptedData; // add new values to the row. putRow( data.outputRowMeta, outputRow ); // copy row to output rowset(s); if ( log.isRowLevel() ) { logRowlevel( BaseMessages.getString( PKG, "PGPEncryptStream.LineNumber", getLinesRead() + " : " + getInputRowMeta().getString( r ) ) ); } } catch ( Exception e ) { if ( getStepMeta().isDoingErrorHandling() ) { sendToErrorRow = true; errorMessage = e.toString(); } else { logError( BaseMessages.getString( PKG, "PGPEncryptStream.ErrorInStepRunning" ) + e.getMessage() ); setErrors( 1 ); stopAll(); setOutputDone(); // signal end to receiver(s) return false; } if ( sendToErrorRow ) { // Simply add this row to the error row putError( getInputRowMeta(), r, 1, errorMessage, meta.getResultFieldName(), "PGPEncryptStreamO01" ); } } return true; } public boolean init( StepMetaInterface smi, StepDataInterface sdi ) { meta = (PGPEncryptStreamMeta) smi; data = (PGPEncryptStreamData) sdi; if ( super.init( smi, sdi ) ) { if ( Utils.isEmpty( meta.getResultFieldName() ) ) { logError( BaseMessages.getString( PKG, "PGPEncryptStream.Error.ResultFieldMissing" ) ); return false; } try { // initiate a new GPG encryptor data.gpg = new GPG( environmentSubstitute( meta.getGPGLocation() ), log ); } catch ( Exception e ) { logError( BaseMessages.getString( PKG, "PGPEncryptStream.Init.Error" ), e ); return false; } return true; } return false; } public void dispose( StepMetaInterface smi, StepDataInterface sdi ) { meta = (PGPEncryptStreamMeta) smi; data = (PGPEncryptStreamData) sdi; super.dispose( smi, sdi ); } }