-
Notifications
You must be signed in to change notification settings - Fork 0
/
EncryptFolder.cs
219 lines (174 loc) · 7.29 KB
/
EncryptFolder.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
using System;
using System.Collections.Generic;
using System.Collections;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Security.Cryptography;
using IFC.Utils;
namespace IFC
{
class EncryptFolder : FolderOperation
{
/*
* File tables for source and destination fodlers.
* key: filename
* val: file hash
*/
private Hashtable sourceFileTable = new Hashtable();
private Hashtable destinationFileTable = new Hashtable();
HashAlgo hashAlgo = new HashAlgo();
public override void runOperation()
{
Logger.log(logFile, "Running Encrypt Operation");
Logger.log(logFile, "source: " + SourceDir);
Logger.log(logFile, "destination: " + DestDir);
checkDirStructure();
buildSourceFileTable();
buildDestinationFileTable();
Logger.log(logFile, "");
Logger.log(logFile, "Source file map");
Logger.log(logFile, "----------------------------");
printTable(sourceFileTable);
Logger.log(logFile, "");
Logger.log(logFile, "Destination file map");
Logger.log(logFile, "----------------------------");
printTable(destinationFileTable);
Logger.log(logFile, "");
Logger.log(logFile, "Copy and Encrypt");
Logger.log(logFile, "----------------------------");
findAndEncrypt();
Logger.log(logFile, "");
Logger.log(logFile, "----------------------------");
Logger.log(logFile, "Encrypt Folder complete.");
}
/// <summary>
/// Find and hash all files from source folder
/// </summary>
private void buildSourceFileTable()
{
/* build file map */
Logger.log(logFile, "Build Source file table");
String fileHash;
foreach (String filePath in System.IO.Directory.EnumerateFiles(SourceDir, "*", System.IO.SearchOption.AllDirectories))
{
try
{
fileHash = hashAlgo.hashFile(filePath);
sourceFileTable.Add(filePath.Remove(filePath.IndexOf(SourceDir), SourceDir.Length), fileHash);
}
catch (Exception e)
{
Logger.logError(logFile, "Cannot add " + filePath.Remove(filePath.IndexOf(SourceDir), SourceDir.Length)
+ " to table. File will be skipped. Error details:" + e.Message);
}
}
}
/// <summary>
/// Find files from destination folder and extract the hash from the filename
/// </summary>
private void buildDestinationFileTable()
{
/* build file map */
Logger.log(logFile, "Build Destination file table");
String noHashFilePath;
String fileHash;
foreach (String filePath in System.IO.Directory.EnumerateFiles(DestDir, "*", System.IO.SearchOption.AllDirectories))
{
/* extract the hash from filename (everything after the last "." ) */
fileHash = filePath.Substring(filePath.LastIndexOf(".") + 1);
noHashFilePath = filePath.Remove(filePath.LastIndexOf("."));
noHashFilePath = noHashFilePath.Remove(noHashFilePath.IndexOf(DestDir), DestDir.Length);
try
{
destinationFileTable.Add(noHashFilePath, fileHash);
}
catch (Exception ex)
{
Logger.logError(logFile, "Destination table already contains this file. Error details :" + ex.Message);
}
}
}
/// <summary>
/// Compare the source and destination file table and find and encrypt all new or changed files (different hash)
/// </summary>
private void findAndEncrypt()
{
/* true: create encrypted version of the source file */
bool addCommandReq;
/* true: a file was updated,the old version of the file should be removed from destination dir */
bool delCommandReq;
bool encryptStatus = true;
/* file counters for logging */
long newFileCountInfo=0;
long changedFileCountInfo=0;
/* diff the tables */
foreach (String ks in sourceFileTable.Keys)
{
addCommandReq = false;
delCommandReq = false;
if (destinationFileTable.ContainsKey(ks))
{
if (!sourceFileTable[ks].Equals(destinationFileTable[ks].ToString()))
{
/* existing file with changes (hashes are different) */
addCommandReq = true;
delCommandReq = true;
changedFileCountInfo++;
}
else
{
/* source file not changed */
Logger.log(logFile, "No change:" + ks);
}
}
else
{
/* it's a new file */
addCommandReq = true;
newFileCountInfo++;
}
if (addCommandReq)
{
if (delCommandReq)
{ Logger.log(logFile, "Change detected:" + ks); }
else
{ Logger.log(logFile, "New File detected:" + ks); }
encryptStatus = FileEncryptor.encrypt(SourceDir + ks, DestDir + ks + "." + sourceFileTable[ks]);
if(encryptStatus) {
if (delCommandReq)
{
String oldFileName = DestDir + ks + "." + destinationFileTable[ks];
Logger.log(logFile, "Remove old file: " + oldFileName);
try
{
File.Delete(oldFileName);
}
catch (Exception e)
{
Logger.logError(logFile, "ERROR cannot remove old file: " + oldFileName + " err details:" + e.Message);
}
}
}
else
{
Logger.logError(logFile, "Encryption status is not succesful for source file:'" + SourceDir + ks +"'");
}
}
}
Logger.log(logFile, "");
Logger.log(logFile, "----------------------------");
Logger.log(logFile, "Total files encrypted: " + (newFileCountInfo+changedFileCountInfo) );
Logger.log(logFile, "New Files: " + newFileCountInfo);
Logger.log(logFile, "Changed Files: " + changedFileCountInfo);
}
private void printTable(Hashtable table)
{
foreach (String k in table.Keys)
{
Logger.log(logFile, "{1,32} {2,-300}",table[k].ToString(), k);
}
}
}
}