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 pathSetrsyncpath.swift
55 lines (51 loc) · 1.85 KB
/
Setrsyncpath.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
//
// Setrsyncpath.swift
// RsyncOSX
//
// Created by Thomas Evensen on 06/06/2019.
// Copyright © 2019 Thomas Evensen. All rights reserved.
//
import Foundation
struct Setrsyncpath {
weak var setinfoaboutrsyncDelegate: Setinfoaboutrsync?
init() {
setinfoaboutrsyncDelegate = SharedReference.shared.getvcref(viewcontroller: .vcsidebar) as? ViewControllerSideBar
var rsyncpath: String?
// If not in /usr/bin or /usr/local/bin, rsyncPath is set if none of the above
if let pathforrsync = SharedReference.shared.localrsyncpath {
rsyncpath = pathforrsync + SharedReference.shared.rsync
} else if SharedReference.shared.rsyncversion3 {
if SharedReference.shared.macosarm {
rsyncpath = SharedReference.shared.opthomebrewbinrsync
} else {
rsyncpath = SharedReference.shared.usrlocalbinrsync
}
} else {
rsyncpath = SharedReference.shared.usrbinrsync
}
guard SharedReference.shared.rsyncversion3 == true else {
SharedReference.shared.norsync = false
setinfoaboutrsyncDelegate?.setinfoaboutrsync()
return
}
if FileManager.default.isExecutableFile(atPath: rsyncpath ?? "") == false {
SharedReference.shared.norsync = true
} else {
SharedReference.shared.norsync = false
}
setinfoaboutrsyncDelegate?.setinfoaboutrsync()
}
init(path: String) {
var path = path
if path.isEmpty == false {
if path.hasSuffix("/") == false {
path += "/"
SharedReference.shared.localrsyncpath = path
} else {
SharedReference.shared.localrsyncpath = path
}
} else {
SharedReference.shared.localrsyncpath = nil
}
}
}