From 85c8540cb4fafd40f91c90e9116953348268dbb4 Mon Sep 17 00:00:00 2001
From: Thorsten Vitt <thorsten.vitt@uni-wuerzburg.de>
Date: Mon, 27 May 2013 12:03:04 +0000
Subject: [PATCH] Set zip entries' date to the object's last modified date

git-svn-id: https://develop.sub.uni-goettingen.de/repos/textgrid/trunk/services/aggregator@14100 7c539038-3410-0410-b1ec-0f2a7bf1c452
---
 .../services/aggregator/zip/ZipResult.java        | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/src/main/java/info/textgrid/services/aggregator/zip/ZipResult.java b/src/main/java/info/textgrid/services/aggregator/zip/ZipResult.java
index 60cf48b..3142ded 100644
--- a/src/main/java/info/textgrid/services/aggregator/zip/ZipResult.java
+++ b/src/main/java/info/textgrid/services/aggregator/zip/ZipResult.java
@@ -107,12 +107,14 @@ private void addToMapping(ImportMapping mapping, AggregationEntry entry) {
 		}
 	}
 
-	private void writeAggregation(ZipOutputStream zip, Aggregation root) throws IOException {
-		writeFile(zip, root);
-		zip.putNextEntry(new ZipEntry(root.getFileName(false).concat("/")));
+	private void writeAggregation(ZipOutputStream zip, Aggregation aggregation) throws IOException {
+		writeFile(zip, aggregation);
+		ZipEntry zipEntry = new ZipEntry(aggregation.getFileName(false).concat("/"));
+		zip.putNextEntry(zipEntry);
+		zipEntry.setTime(aggregation.getMetadata().getGeneric().getGenerated().getLastModified().toGregorianCalendar().getTimeInMillis());
 		zip.closeEntry();
 		
-		for (AggregationEntry child : root.getChildren()) {
+		for (AggregationEntry child : aggregation.getChildren()) {
 			if (child instanceof Aggregation)
 				writeAggregation(zip, (Aggregation) child);
 			else
@@ -123,6 +125,7 @@ private void writeAggregation(ZipOutputStream zip, Aggregation root) throws IOEx
 	private void writeFile(ZipOutputStream zip, AggregationEntry aggregationEntry) throws IOException {
 		writeMetadata(zip, aggregationEntry);
 		ZipEntry zipEntry = new ZipEntry(aggregationEntry.getFileName(true));
+		zipEntry.setTime(aggregationEntry.getMetadata().getGeneric().getGenerated().getLastModified().toGregorianCalendar().getTimeInMillis());
 		
 		ImportObject importObject = mapping.getImportObjectForTextGridURI(aggregationEntry.getTextGridURI().toString());
 		try {
@@ -158,7 +161,9 @@ private void writeFile(ZipOutputStream zip, AggregationEntry aggregationEntry) t
 	}
 
 	private void writeMetadata(ZipOutputStream zip, AggregationEntry aggregationEntry) throws IOException {
-		zip.putNextEntry(new ZipEntry(aggregationEntry.getFileName(true).concat(".meta")));
+		ZipEntry zipEntry = new ZipEntry(aggregationEntry.getFileName(true).concat(".meta"));
+		zipEntry.setTime(aggregationEntry.getMetadata().getGeneric().getGenerated().getLastModified().toGregorianCalendar().getTimeInMillis());
+		zip.putNextEntry(zipEntry);
 		ConfigurableXMLRewriter rewriter = new ConfigurableXMLRewriter(mapping, true);
 		rewriter.configure(URI.create("internal:textgrid#metadata"));
 		if (aggregationEntry.getBase().isPresent())
-- 
GitLab