-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfileToDownload.swift
319 lines (201 loc) · 9.97 KB
/
fileToDownload.swift
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
//
// fileToDownload.swift
// web-scraper-swift
//
// Created by Rox
//
import Cocoa
import ZIPFoundation
class FileToMove{
let fileManager : FileManager
let folderMainURL : URL
private var settings : [String:Any]
init(settings:[String:Any]) {
self.settings = settings
self.fileManager = FileManager.default
self.folderMainURL = fileManager.urls(for: .downloadsDirectory, in: .userDomainMask)[0].appendingPathComponent(self.settings["folderNameMain"]! as! String)
if !self.createMainDir(){
exit(0)
}
}
private func debug(message: Any){
if self.settings["debug"] as? Bool == true {
print(message)
}
}
private func createMainDir() -> Bool{
var isDir:ObjCBool = true
if !self.fileManager.fileExists(atPath: self.folderMainURL.path, isDirectory: &isDir){
do {
try self.fileManager.createDirectory(atPath: self.folderMainURL.path, withIntermediateDirectories: true, attributes: nil)
self.debug(message: "New folder should be created")
return true
}
catch {
print("ERROR: Could not create folder")
return false
}
}
self.debug(message: "Main folder already exists!")
return true
}
private func checkDir(path:String){
var isDir:ObjCBool = true
if !self.fileManager.fileExists(atPath: path, isDirectory: &isDir){
do {
try self.fileManager.createDirectory(atPath: path, withIntermediateDirectories: true, attributes: nil)
self.debug(message: "New subfolder should be created")
}
catch {
print("ERROR: Could not create folder")
exit(0)
}
}
}
static func thousandsRange(inputNumber:Int) -> Int{
let dividedNumber: Float = Float(inputNumber) / 1000.0
let outputNumber: Int = Int(dividedNumber.rounded(.down) * 1000)
return outputNumber
}
func moveFile(objFilename:[String:String], data:URL, subFolder: String){
var pathToSave = self.folderMainURL.appendingPathComponent(subFolder)
self.checkDir(path: pathToSave.path)
//Single file
let fileName = objFilename["dateName"]!+"_"+objFilename["compressName"]!;
pathToSave = pathToSave.appendingPathComponent(fileName)
if self.fileManager.fileExists(atPath: pathToSave.path){
self.debug(message: "File already exists!")
return
}
do {
if self.filterSize(item: data) == true{
try self.fileManager.trashItem(at: data, resultingItemURL: nil)
self.debug(message: "File low size -> deleted.")
}else{
self.debug(message: "Trying to save to -> \(pathToSave)")
try self.fileManager.moveItem(at: data, to: pathToSave)
print("Saved.")
}
}
catch let error as NSError {
print("ERROR: Not saved -> \(error)")
}
//check if ZIP file
if objFilename["ext"] == "zip"{
self.debug(message: "IT'S A ZIP!")
self.unZip(item: pathToSave)
}
}
func filter(obj:[String:String]) -> Bool{
let notAllowedEXT = settings["notAllowedFiles"] as! Array<String>
let notAllowedKindOfFile = settings["notAllowedKindOfFile"] as! Array<String>
if notAllowedEXT.contains(obj["ext"]!) || notAllowedKindOfFile.contains(obj["type"]!) {
self.debug(message: "Skipped by filter()")
return false
}
return true //true -> all ok, can pass / false -> no thanks
}
private func filterSize(item: URL) -> Bool{
let skip = (self.settings["skippingFileSizeSets"] as! [String:Any])["skipLowSizeFile"] as! Bool
if(skip == false){return false}//always pass
let fileSizeLimit = (self.settings["skippingFileSizeSets"] as! [String:Any])["fileSizeLimit"] as! Int
self.debug(message: "Debug settings: skip -> \(skip) - fileSizeLimit: -> \(fileSizeLimit)")
do{
let fileAttributes = try self.fileManager.attributesOfItem(atPath: item.path)
let fileSize = (fileAttributes[FileAttributeKey.size] as! NSNumber).uint64Value
self.debug(message: "File: \(item) - Size: \(fileSize)")
self.debug(message: "FileType: \(type(of: fileSize)) - Size: \(String(describing: fileSize))")
if fileSize < (fileSizeLimit as NSNumber).uint64Value{
self.debug(message: "Filesize: \(fileSize) > Size: \((fileSizeLimit as NSNumber).uint64Value)")
return true //limit!
}
}catch{
print("ERROR: Can't get attribute for some reasons.. -> \(error)")
}
return false //pass
}
func unZip(item : URL){
self.debug(message: "it should be a ZIP file -> \(item)")
do {
let path = item.deletingLastPathComponent()
let prefix = item.lastPathComponent.components(separatedBy: "_")[0]
self.debug(message: "\n PATH: \(path)")
self.debug(message: "PREFIX: \(prefix)")
guard let archive = Archive(url: item, accessMode: .read) else {
return
}
for zippedItem in archive {
self.debug(message: "\n")
self.debug(message: "zippedItem.path -> \(zippedItem.path)")
self.debug(message: "type -> \(type(of: zippedItem.path))")
let pathExtension = URL(string: zippedItem.path)?.pathExtension
if pathExtension == nil {
continue
}
let zipOBJ = [
"ext": pathExtension!,
"type" : ""
]
if self.filter(obj: zipOBJ) == false{
continue
}
let finalFilename = prefix+"_"+zippedItem.path
let urlItemToExtract = path.appendingPathComponent(finalFilename)
self.debug(message: "FinalFileName = \(finalFilename)")
if self.fileManager.fileExists(atPath: urlItemToExtract.path){
self.debug(message: "File already exists!")
continue
}
do {
try archive.extract(zippedItem, to: urlItemToExtract)
if self.filterSize(item: urlItemToExtract) == true{
try self.fileManager.trashItem(at: urlItemToExtract, resultingItemURL: nil)
self.debug(message: "File low size -> deleted.")
}
} catch {
print("ERROR: Extracting entry from archive failed with error -> \(error)")
exit(0)
}
}
try fileManager.trashItem(at: item, resultingItemURL: nil)
} catch {
print("ERROR: failed to read directory – bad permissions, perhaps?")
}
}
func testUnZip(opt:[String:String]){
//content of folder
let path = self.folderMainURL.appendingPathComponent(opt["dirToTest"]!)
do {
let items = try self.fileManager.contentsOfDirectory(at: path, includingPropertiesForKeys: nil)
for item in items {
print("Found \(item)")
if item.pathExtension == "zip" {
print("\n \nIt's a ZIP file!")
let prefix = item.lastPathComponent.components(separatedBy: "_")[0]
guard let archive = Archive(url: item, accessMode: .read) else {
return
}
for zippedItem in archive {
print("\n")
print(zippedItem.path)
let finalFilename = prefix+"_"+zippedItem.path
print("\n")
print("FinalFileName = \(finalFilename)")
do {
try archive.extract(zippedItem, to: path.appendingPathComponent(finalFilename))
} catch {
print("Extracting entry from archive failed with error:\(error)")
exit(0)
}
}
try fileManager.trashItem(at: item, resultingItemURL: nil)
}else{
print("\n\nNot a Zip file...")
}
}
} catch {
// failed to read directory – bad permissions, perhaps?
print("failed to read directory – bad permissions, perhaps?")
}
}
}