mime: return one OpenPgpMetadata object per body part

This commit is contained in:
Vincent Breitmoser
2015-09-16 01:34:21 +02:00
parent 96865ccbaa
commit 0ed0ba88f9
2 changed files with 33 additions and 11 deletions

View File

@@ -37,6 +37,7 @@ import org.apache.james.mime4j.parser.MimeStreamParser;
import org.apache.james.mime4j.stream.BodyDescriptor;
import org.apache.james.mime4j.stream.Field;
import org.apache.james.mime4j.stream.MimeConfig;
import org.openintents.openpgp.OpenPgpMetadata;
import org.sufficientlysecure.keychain.operations.results.DecryptVerifyResult;
import org.sufficientlysecure.keychain.operations.results.InputDataResult;
import org.sufficientlysecure.keychain.operations.results.OperationResult.LogType;
@@ -106,9 +107,11 @@ public class InputDataOperation extends BaseOperation<InputDataParcel> {
ArrayList<Uri> uris = new ArrayList<>();
uris.add(currentUri);
ArrayList<OpenPgpMetadata> metadatas = new ArrayList<>();
metadatas.add(decryptResult.getDecryptionMetadata());
log.add(LogType.MSG_DATA_OK, 1);
return new InputDataResult(InputDataResult.RESULT_OK, log, decryptResult, uris);
return new InputDataResult(InputDataResult.RESULT_OK, log, decryptResult, uris, metadatas);
}
@@ -124,6 +127,7 @@ public class InputDataOperation extends BaseOperation<InputDataParcel> {
MimeStreamParser parser = new MimeStreamParser((MimeConfig) null);
final ArrayList<Uri> outputUris = new ArrayList<>();
final ArrayList<OpenPgpMetadata> metadatas = new ArrayList<>();
parser.setContentDecoding(true);
parser.setRecurse();
@@ -166,8 +170,11 @@ public class InputDataOperation extends BaseOperation<InputDataParcel> {
out.write(buf, 0, len);
}
OpenPgpMetadata metadata = new OpenPgpMetadata(mFilename, bd.getMimeType(), 0L, bd.getContentLength());
out.close();
outputUris.add(uri);
metadatas.add(metadata);
}
});
@@ -178,7 +185,7 @@ public class InputDataOperation extends BaseOperation<InputDataParcel> {
log.add(LogType.MSG_DATA_MIME_OK, 2);
log.add(LogType.MSG_DATA_OK, 1);
return new InputDataResult(InputDataResult.RESULT_OK, log, decryptResult, outputUris);
return new InputDataResult(InputDataResult.RESULT_OK, log, decryptResult, outputUris, metadatas);
} catch (IOException e) {
e.printStackTrace();

View File

@@ -17,38 +17,52 @@
package org.sufficientlysecure.keychain.operations.results;
import android.net.Uri;
import android.os.Parcel;
import java.util.ArrayList;
import android.net.Uri;
import android.os.Parcel;
import android.support.annotation.NonNull;
import org.openintents.openpgp.OpenPgpMetadata;
public class InputDataResult extends InputPendingResult {
public final ArrayList<Uri> mOutputUris;
final public DecryptVerifyResult mDecryptVerifyResult;
public final ArrayList<OpenPgpMetadata> mMetadata;
public InputDataResult(OperationLog log, InputPendingResult result) {
public InputDataResult(OperationLog log, @NonNull InputPendingResult result) {
super(log, result);
mOutputUris = null;
mDecryptVerifyResult = null;
}
public InputDataResult(int result, OperationLog log, DecryptVerifyResult decryptResult, ArrayList<Uri> temporaryUris) {
super(result, log);
mOutputUris = temporaryUris;
mDecryptVerifyResult = decryptResult;
mMetadata = null;
}
public InputDataResult(int result, OperationLog log) {
super(result, log);
mOutputUris = null;
mDecryptVerifyResult = null;
mMetadata = null;
}
public InputDataResult(int result, OperationLog log, DecryptVerifyResult decryptResult,
@NonNull ArrayList<Uri> outputUris, @NonNull ArrayList<OpenPgpMetadata> metadata) {
super(result, log);
mDecryptVerifyResult = decryptResult;
if (outputUris.size() == metadata.size()) {
throw new AssertionError("number of output URIs must match metadata!");
}
mOutputUris = outputUris;
mMetadata = metadata;
}
protected InputDataResult(Parcel in) {
super(in);
mOutputUris = in.createTypedArrayList(Uri.CREATOR);
mDecryptVerifyResult = in.readParcelable(DecryptVerifyResult.class.getClassLoader());
mMetadata = in.createTypedArrayList(OpenPgpMetadata.CREATOR);
}
public ArrayList<Uri> getOutputUris() {
@@ -65,6 +79,7 @@ public class InputDataResult extends InputPendingResult {
super.writeToParcel(dest, flags);
dest.writeTypedList(mOutputUris);
dest.writeParcelable(mDecryptVerifyResult, 0);
dest.writeTypedList(mMetadata);
}
public static final Creator<InputDataResult> CREATOR = new Creator<InputDataResult>() {