This repository was archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathViewControllerRestore.swift
298 lines (272 loc) · 11.5 KB
/
ViewControllerRestore.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
//
// ViewControllerRestore.swift
// RsyncOSX
//
// Created by Thomas Evensen on 12/09/2016.
// Copyright © 2016 Thomas Evensen. All rights reserved.
//
// swiftlint:disable line_length
import Cocoa
import Foundation
protocol Updateremotefilelist: AnyObject {
func updateremotefilelist()
}
class ViewControllerRestore: NSViewController, SetConfigurations, Delay, Connected, VcMain, Checkforrsync, Setcolor, Help {
var restorefilestask: RestorefilesTask?
var remotefilelist: Remotefilelist?
var index: Int?
var restoretabledata: [String]?
var diddissappear: Bool = false
var outputprocess: OutputfromProcess?
var maxcount: Int = 0
weak var outputeverythingDelegate: ViewOutputDetails?
var restoreactions: RestoreActions?
// Send messages to the sidebar
weak var sidebaractionsDelegate: Sidebaractions?
var configurations: Estimatedlistforsynchronization?
@IBOutlet var restoretableView: NSTableView!
@IBOutlet var rsynctableView: NSTableView!
@IBOutlet var remotefiles: NSTextField!
@IBOutlet var working: NSProgressIndicator!
@IBOutlet var search: NSSearchField!
@IBOutlet var tmprestorepath: NSTextField!
@IBOutlet var profilepopupbutton: NSPopUpButton!
@IBOutlet var infolabel: NSTextField!
// Selecting profiles
@IBAction func profiles(_: NSButton) {
presentAsModalWindow(viewControllerProfile!)
}
// Abort button
@IBAction func abort(_: NSButton) {
working.stopAnimation(nil)
_ = InterruptProcess()
reset()
}
@IBAction func showHelp(_: AnyObject?) {
help()
}
@IBAction func doareset(_: NSButton) {
reset()
}
override func viewDidLoad() {
super.viewDidLoad()
configurations = Estimatedlistforsynchronization()
SharedReference.shared.setvcref(viewcontroller: .vcrestore, nsviewcontroller: self)
outputeverythingDelegate = SharedReference.shared.getvcref(viewcontroller: .vctabmain) as? ViewControllerMain
restoretableView.delegate = self
restoretableView.dataSource = self
rsynctableView.delegate = self
rsynctableView.dataSource = self
working.usesThreadedAnimation = true
search.delegate = self
tmprestorepath.delegate = self
remotefiles.delegate = self
restoretableView.doubleAction = #selector(tableViewDoubleClick(sender:))
initpopupbutton()
}
override func viewDidAppear() {
super.viewDidAppear()
sidebaractionsDelegate = SharedReference.shared.getvcref(viewcontroller: .vcsidebar) as? ViewControllerSideBar
sidebaractionsDelegate?.sidebaractions(action: .restoreviewbuttons)
guard diddissappear == false else {
globalMainQueue.async { () in
self.rsynctableView.reloadData()
}
return
}
globalMainQueue.async { () in
self.rsynctableView.reloadData()
}
reset()
settmprestorepathfromuserconfig()
}
override func viewDidDisappear() {
super.viewDidDisappear()
diddissappear = true
}
func reset() {
restoretabledata = nil
restorefilestask = nil
// Restore state
restoreactions = RestoreActions(closure: verifytmprestorepath)
if index != nil {
restoreactions?.index = true
}
restoretabledata = nil
globalMainQueue.async { () in
self.restoretableView.reloadData()
self.rsynctableView.reloadData()
}
}
// Restore files
func executerestorefiles() {
guard restoreactions?.goforrestorefilestotemporarypath() ?? false else { return }
guard restorefilestask != nil else { return }
restorefilestask?.executecopyfiles(remotefile: remotefiles.stringValue, localCatalog: tmprestorepath.stringValue, dryrun: false)
outputprocess = restorefilestask?.outputprocess
globalMainQueue.async { () in
self.presentAsSheet(self.viewControllerProgress!)
}
}
func prepareforfilesrestoreandandgetremotefilelist() {
guard checkforgetremotefiles() else { return }
if let index = index {
// infolabel.isHidden = true
remotefiles.stringValue = ""
let hiddenID = Estimatedlistforsynchronization().getConfigurationsDataSourceSynchronize()?[index].value(forKey: DictionaryStrings.hiddenID.rawValue) as? Int ?? -1
if Estimatedlistforsynchronization().getConfigurationsDataSourceSynchronize()?[index].value(forKey: DictionaryStrings.taskCellID.rawValue) as? String ?? "" != SharedReference.shared.snapshot {
restorefilestask = RestorefilesTask(hiddenID: hiddenID, processtermination: processtermination, filehandler: filehandler)
remotefilelist = Remotefilelist(hiddenID: hiddenID)
working.startAnimation(nil)
} else {
let question: String = NSLocalizedString("Filelist for snapshot tasks might be huge?", comment: "Restore")
let text: String = NSLocalizedString("Start getting files?", comment: "Restore")
let dialog: String = NSLocalizedString("Start", comment: "Restore")
let answer = Alerts.dialogOrCancel(question: question, text: text, dialog: dialog)
if answer {
restorefilestask = RestorefilesTask(hiddenID: hiddenID, processtermination: processtermination, filehandler: filehandler)
remotefilelist = Remotefilelist(hiddenID: hiddenID)
working.startAnimation(nil)
} else {
reset()
}
}
}
}
func checkforgetremotefiles() -> Bool {
guard checkforrsync() == false else { return false }
if let index = index {
guard connected(config: configurations?.getConfigurations()?[index]) == true else {
infolabel.stringValue = Inforestore().info(num: 4)
infolabel.isHidden = false
return false
}
guard configurations?.getConfigurations()?[index].task != SharedReference.shared.syncremote else {
infolabel.stringValue = Inforestore().info(num: 5)
infolabel.isHidden = false
restoretabledata = nil
globalMainQueue.async { () in
self.restoretableView.reloadData()
}
return false
}
return true
} else {
return false
}
}
func tableViewSelectionDidChange(_ notification: Notification) {
let myTableViewFromNotification = (notification.object as? NSTableView)!
if myTableViewFromNotification == restoretableView {
// infolabel.isHidden = true
let indexes = myTableViewFromNotification.selectedRowIndexes
if let index = indexes.first {
guard restoretabledata != nil else { return }
remotefiles.stringValue = restoretabledata![index]
guard remotefiles.stringValue.isEmpty == false else {
infolabel.stringValue = Inforestore().info(num: 3)
reset()
return
}
restoreactions?.index = true
restoreactions?.remotefileverified = true
}
} else {
let indexes = myTableViewFromNotification.selectedRowIndexes
// checkedforfullrestore.state = .off
if let index = indexes.first {
self.index = index
restoretabledata = nil
restoreactions?.index = true
guard restoreactions?.reset() == false else {
reset()
return
}
} else {
index = nil
reset()
}
globalMainQueue.async { () in
self.restoretableView.reloadData()
}
}
}
// Sidebar filelist
func getremotefilelist() {
guard restoreactions?.getfilelistrestorefiles() ?? false else { return }
prepareforfilesrestoreandandgetremotefilelist()
}
// Sidebar reset
func resetaction() {
reset()
}
@objc(tableViewDoubleClick:) func tableViewDoubleClick(sender _: AnyObject) {
guard remotefiles.stringValue.isEmpty == false else { return }
guard verifytmprestorepath() == true else { return }
let question: String = NSLocalizedString("Copy single files or directory?", comment: "Restore")
let text: String = NSLocalizedString("Start restore?", comment: "Restore")
let dialog: String = NSLocalizedString("Restore", comment: "Restore")
let answer = Alerts.dialogOrCancel(question: question, text: text, dialog: dialog)
if answer {
working.startAnimation(nil)
restorefilestask?.executecopyfiles(remotefile: remotefiles?.stringValue ?? "", localCatalog: tmprestorepath?.stringValue ?? "", dryrun: false)
}
}
func settmprestorepathfromuserconfig() {
let setuserconfig: String = NSLocalizedString(" ... set in User configuration ...", comment: "Restore")
tmprestorepath.stringValue = SharedReference.shared.pathforrestore ?? setuserconfig
if (SharedReference.shared.pathforrestore ?? "").isEmpty == true {
restoreactions?.tmprestorepathselected = false
} else {
restoreactions?.tmprestorepathselected = true
}
restoreactions?.tmprestorepathverified = verifytmprestorepath()
}
func verifytmprestorepath() -> Bool {
let fileManager = FileManager.default
if fileManager.fileExists(atPath: SharedReference.shared.pathforrestore ?? "") == false {
infolabel.stringValue = Inforestore().info(num: 1)
return false
} else {
// infolabel.isHidden = true
return true
}
}
func goforrestorebyfile() {
restoreactions?.restorefiles = true
globalMainQueue.async { () in
self.restoretableView.reloadData()
}
}
// Sidebar restore
func restore() {
if restoreactions?.goforrestorefilestotemporarypath() == true {
executerestorefiles()
}
}
// Sidebar estimate
func estimate() {
guard restoreactions?.remotefileverified ?? false, SharedReference.shared.pathforrestore != nil else { return }
working.startAnimation(nil)
restorefilestask?.executecopyfiles(remotefile: remotefiles?.stringValue ?? "", localCatalog: tmprestorepath?.stringValue ?? "", dryrun: true)
outputprocess = restorefilestask?.outputprocess
}
func initpopupbutton() {
var profilestrings: [String]?
profilestrings = CatalogProfile().getcatalogsasstringnames()
profilestrings?.insert(NSLocalizedString("Default profile", comment: "default profile"), at: 0)
profilepopupbutton.removeAllItems()
profilepopupbutton.addItems(withTitles: profilestrings ?? [])
profilepopupbutton.selectItem(at: 0)
}
@IBAction func selectprofile(_: NSButton) {
var profile = profilepopupbutton.titleOfSelectedItem
let selectedindex = profilepopupbutton.indexOfSelectedItem
if profile == NSLocalizedString("Default profile", comment: "default profile") {
profile = nil
}
profilepopupbutton.selectItem(at: selectedindex)
_ = Selectprofile(profile: profile, selectedindex: selectedindex)
reset()
}
}