-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScraper.swift
223 lines (147 loc) · 6.73 KB
/
Scraper.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
//
// Scraper.swift
// web-scraper-swift
//
// Created by Rox
//
import Cocoa
class Scraper {
let session: URLSession
var dataTask: URLSessionDataTask?
var dataDownload: URLSessionDownloadTask?
private var settings: [String:Any]
var fileManager : FileToMove
let notAllowedKindOfFile = [
"gosharefile_audio"
]
init(settings:[String:Any]) {
self.settings = settings
self.session = URLSession(configuration: .default)
let settingsFileManager = [
"folderNameMain" : self.settings["folderName"] as Any,
"notAllowedFiles": self.settings["notAllowedFiles"] as Any,
"notAllowedKindOfFile": self.settings["notAllowedKindOfFile"] as Any,
"skippingFileSizeSets": self.settings["skippingFileSizeSets"] as Any
] as [String : Any]
self.fileManager = FileToMove(settings: settingsFileManager)
print("\nScraper() initialized\n")
}
private func debug(message: Any){
if self.settings["debug"] as! Bool == true {
print(message)
}
}
func runScrapNumber(n:Int) {
let nHEX = String(format:"%02X", n)
var address = self.settings["addressBased"] as! String
address = address.replacingOccurrences(of: "###", with: nHEX)
print("Start scraping NUMBER -> \(n) = HEX -> \(nHEX) @ ADDRESS -> \(address)")
var request = self.requestLocation(address: address)
request["number"] = ["n":n,"nHEX":nHEX]
self.debug(message: request)
if request["status"] as! Int == 200 && request["url"] as? String != "" && self.fileManager.filter(obj: request["fileName"] as! [String : String]) == true{
self.download(obj: request)
//call download and saving func
print("Done. \n")
}
else {
self.debug(message: "It's NOT...\(String(describing: request["status"]))...")
print("Skipped. \n")
}
}
private func download(obj:[String:Any]){
self.debug(message: "func DOWNLOAD starting")
dataDownload?.cancel()
let url = URL(string: obj["url"] as! String)
let semaphore = DispatchSemaphore(value: 0)
self.dataDownload = self.session.downloadTask(with: url!) { (data, response, error) in
let statusCode = (response as! HTTPURLResponse).statusCode
self.debug(message: "RESPONSE DOWNLOAD DATA -> \(statusCode)")
if statusCode == 200 {
self.debug(message: "DOWNLOADED DATA ->")
self.debug(message: data as Any)
self.debug(message: "TYPE -> \(type(of: data))")
let num = (obj["number"] as? [String:Any])?["n"] as! Int
let subFolder = FileToMove.thousandsRange(inputNumber: num)
self.fileManager.moveFile(objFilename: obj["fileName"] as! [String : String],data: data!, subFolder: String(subFolder))
}
semaphore.signal()
}
self.dataDownload?.resume()
semaphore.wait()
}
private func requestLocation(address:String) -> [String:Any] {
dataTask?.cancel()
let prefix = (settings["prefixs"] as! Array<String>)[0]
let url = URL(string: address)
let semaphore = DispatchSemaphore(value: 0)
var result: [String : Any] = [
"status": false,
"url": "",
"fileName": []
]
self.dataTask = self.session.dataTask(with: url!) {(data, response, error) in
let httpResponse = response as! HTTPURLResponse
self.debug(message: httpResponse)
self.debug(message:"STATUS -> \(httpResponse.statusCode)")
self.debug(message:"URL -> \(String(describing: httpResponse.value(forKey: "URL")!))")
let statusCode = httpResponse.statusCode
let urlExtracted = self.extractor(input: String(describing: httpResponse.value(forKey: "URL")!),prefix: prefix)
result["status"] = statusCode
result["url"] = urlExtracted
if result["status"] as! Int == 200 && urlExtracted != ""{
let fileName = self.extractFileName(input: urlExtracted)
if fileName.isEmpty {
result["status"] = 0
}else{
result["fileName"] = fileName
}
}
semaphore.signal()
}
dataTask?.resume()
semaphore.wait()
return result
}
private func extractor(input:String,prefix:String) -> String{
var output: String = ""
if input.hasPrefix(prefix){
var subString = input.replacingOccurrences(of: prefix, with: "")
subString = subString.removingPercentEncoding ?? ""
subString = subString.components(separatedBy: "&")[0]
output = String(subString)
}
return output
}
private func extractFileName(input:String) -> [String:String]{
let prefixs = settings["prefixs"] as! Array<String>
var inputMan = input
var output: [String:String] = [:]
self.debug(message: "INPUTMAN BEFORE -> \(inputMan)")
for prefix in prefixs{
if inputMan.contains(prefix){
let subString = inputMan.replacingOccurrences(of: prefix, with: "")
inputMan=(String(subString))
self.debug(message: "INPUTMAN NEW -> \(inputMan)")
}
}
inputMan = (String(inputMan.components(separatedBy: "&")[0]))
self.debug(message: "INPUTMAN AFTER -> \(inputMan)")
let order = [
"dateName",
"type",
"compressName"
]
for (index,subString) in inputMan.components(separatedBy: "/").enumerated(){
output[order[index]] = String(subString)
}
//output["ext"] = output["compressName"]!.components(separatedBy: ".")[1] //bug
let pathExtension = URL(string: output["compressName"]!)?.pathExtension
if pathExtension != nil {
output["ext"] = pathExtension
}else{
return [:] // not an identifiable file
}
return output
}
}