NCUploadAssets.swift 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. //
  2. // NCUploadAssets.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 04/01/23.
  6. // Copyright © 2023 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import SwiftUI
  24. import NextcloudKit
  25. import TLPhotoPicker
  26. import Mantis
  27. import Photos
  28. class NCHostingUploadAssetsView: NSObject {
  29. func makeShipDetailsUI(assets: [TLPHAsset], serverUrl: String, userBaseUrl: NCUserBaseUrl) -> UIViewController {
  30. let uploadAssets = NCUploadAssets(assets: assets, serverUrl: serverUrl, userBaseUrl: userBaseUrl )
  31. let details = UploadAssetsView(uploadAssets: uploadAssets)
  32. return UIHostingController(rootView: details)
  33. }
  34. }
  35. // MARK: - Class
  36. struct PreviewStore {
  37. var id: String
  38. var image: UIImage
  39. var asset: TLPHAsset
  40. var hasChanges: Bool
  41. }
  42. class NCUploadAssets: NSObject, ObservableObject, NCCreateFormUploadConflictDelegate {
  43. @Published var serverUrl: String
  44. @Published var assets: [TLPHAsset]
  45. @Published var userBaseUrl: NCUserBaseUrl
  46. @Published var dismiss = false
  47. @Published var previewStore: [PreviewStore] = []
  48. var metadatasNOConflict: [tableMetadata] = []
  49. var metadatasUploadInConflict: [tableMetadata] = []
  50. var timer: Timer?
  51. init(assets: [TLPHAsset], serverUrl: String, userBaseUrl: NCUserBaseUrl) {
  52. self.assets = assets
  53. self.serverUrl = serverUrl
  54. self.userBaseUrl = userBaseUrl
  55. }
  56. func loadImages() {
  57. DispatchQueue.global().async {
  58. for asset in self.assets {
  59. guard asset.type == .photo, let image = asset.fullResolutionImage?.resizeImage(size: CGSize(width: 200, height: 200), isAspectRation: true), let localIdentifier = asset.phAsset?.localIdentifier else { continue }
  60. self.previewStore.append(PreviewStore(id: localIdentifier, image: image, asset: asset, hasChanges: false))
  61. }
  62. }
  63. }
  64. func startTimer(navigationItem: UINavigationItem) {
  65. self.timer = Timer.scheduledTimer(withTimeInterval: 0.3, repeats: true, block: { _ in
  66. let numItemsRight = navigationItem.rightBarButtonItems?.count ?? 0
  67. if let buttonCrop = navigationItem.leftBarButtonItems?.first {
  68. if numItemsRight > 1 && buttonCrop.isEnabled {
  69. buttonCrop.isEnabled = false
  70. if let buttonDone = navigationItem.rightBarButtonItems?.last {
  71. buttonDone.isEnabled = false
  72. }
  73. }
  74. if numItemsRight == 1 && !buttonCrop.isEnabled {
  75. buttonCrop.isEnabled = true
  76. if let buttonDone = navigationItem.rightBarButtonItems?.first {
  77. buttonDone.isEnabled = true
  78. }
  79. }
  80. }
  81. })
  82. }
  83. func stopTimer() {
  84. self.timer?.invalidate()
  85. }
  86. func dismissCreateFormUploadConflict(metadatas: [tableMetadata]?) {
  87. if let metadatas = metadatas {
  88. NCNetworkingProcessUpload.shared.createProcessUploads(metadatas: metadatas, completion: { _ in
  89. self.dismiss = true
  90. })
  91. } else {
  92. self.dismiss = true
  93. }
  94. }
  95. }
  96. // MARK: - View
  97. struct UploadAssetsView: View {
  98. @State private var fileName: String = CCUtility.getFileNameMask(NCGlobal.shared.keyFileNameMask)
  99. @State private var isMaintainOriginalFilename: Bool = CCUtility.getOriginalFileName(NCGlobal.shared.keyFileNameOriginal)
  100. @State private var isAddFilenametype: Bool = CCUtility.getFileNameType(NCGlobal.shared.keyFileNameType)
  101. @State private var isPresentedSelect = false
  102. @State private var isPresentedUploadConflict = false
  103. @State private var isPresentedQuickLook = false
  104. @State private var fileNamePath = NSTemporaryDirectory() + "Photo.jpg"
  105. @State private var metadata: tableMetadata?
  106. @State private var index: Int = 0
  107. var gridItems: [GridItem] = [GridItem()]
  108. @ObservedObject var uploadAssets: NCUploadAssets
  109. @Environment(\.presentationMode) var presentationMode
  110. init(uploadAssets: NCUploadAssets) {
  111. self.uploadAssets = uploadAssets
  112. uploadAssets.loadImages()
  113. }
  114. func getOriginalFilename() -> String {
  115. CCUtility.setOriginalFileName(isMaintainOriginalFilename, key: NCGlobal.shared.keyFileNameOriginal)
  116. if let asset = uploadAssets.assets.first?.phAsset, let name = (asset.value(forKey: "filename") as? String) {
  117. return name
  118. } else {
  119. return ""
  120. }
  121. }
  122. func setFileNameMask(fileName: String?) -> String {
  123. guard let asset = uploadAssets.assets.first?.phAsset else { return "" }
  124. var preview: String = ""
  125. let creationDate = asset.creationDate ?? Date()
  126. CCUtility.setOriginalFileName(isMaintainOriginalFilename, key: NCGlobal.shared.keyFileNameOriginal)
  127. CCUtility.setFileNameType(isAddFilenametype, key: NCGlobal.shared.keyFileNameType)
  128. if let fileName = fileName {
  129. let fileName = fileName.trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
  130. if !fileName.isEmpty {
  131. CCUtility.setFileNameMask(fileName, key: NCGlobal.shared.keyFileNameMask)
  132. preview = CCUtility.createFileName(asset.value(forKey: "filename") as? String,
  133. fileDate: creationDate, fileType: asset.mediaType,
  134. keyFileName: NCGlobal.shared.keyFileNameMask,
  135. keyFileNameType: NCGlobal.shared.keyFileNameType,
  136. keyFileNameOriginal: NCGlobal.shared.keyFileNameOriginal,
  137. forcedNewFileName: false)
  138. } else {
  139. CCUtility.setFileNameMask("", key: NCGlobal.shared.keyFileNameMask)
  140. preview = CCUtility.createFileName(asset.value(forKey: "filename") as? String,
  141. fileDate: creationDate,
  142. fileType: asset.mediaType,
  143. keyFileName: nil,
  144. keyFileNameType: NCGlobal.shared.keyFileNameType,
  145. keyFileNameOriginal: NCGlobal.shared.keyFileNameOriginal,
  146. forcedNewFileName: false)
  147. }
  148. } else {
  149. CCUtility.setFileNameMask("", key: NCGlobal.shared.keyFileNameMask)
  150. preview = CCUtility.createFileName(asset.value(forKey: "filename") as? String,
  151. fileDate: creationDate,
  152. fileType: asset.mediaType,
  153. keyFileName: nil,
  154. keyFileNameType: NCGlobal.shared.keyFileNameType,
  155. keyFileNameOriginal: NCGlobal.shared.keyFileNameOriginal,
  156. forcedNewFileName: false)
  157. }
  158. return String(format: NSLocalizedString("_preview_filename_", comment: ""), "MM, MMM, DD, YY, YYYY, HH, hh, mm, ss, ampm") + ":" + "\n\n" + preview
  159. }
  160. func save(completion: @escaping (_ metadatasNOConflict: [tableMetadata], _ metadatasUploadInConflict: [tableMetadata]) -> Void) {
  161. var metadatasNOConflict: [tableMetadata] = []
  162. var metadatasUploadInConflict: [tableMetadata] = []
  163. for asset in uploadAssets.assets {
  164. guard let asset = asset.phAsset else { continue }
  165. let serverUrl = uploadAssets.serverUrl
  166. var livePhoto: Bool = false
  167. let creationDate = asset.creationDate ?? Date()
  168. let fileName = CCUtility.createFileName(asset.value(forKey: "filename") as? String,
  169. fileDate: creationDate,
  170. fileType: asset.mediaType,
  171. keyFileName: NCGlobal.shared.keyFileNameMask,
  172. keyFileNameType: NCGlobal.shared.keyFileNameType,
  173. keyFileNameOriginal: NCGlobal.shared.keyFileNameOriginal,
  174. forcedNewFileName: false)!
  175. if asset.mediaSubtypes.contains(.photoLive) && CCUtility.getLivePhoto() {
  176. livePhoto = true
  177. }
  178. // Check if is in upload
  179. let isRecordInSessions = NCManageDatabase.shared.getAdvancedMetadatas(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@ AND fileName == %@ AND session != ''", uploadAssets.userBaseUrl.account, serverUrl, fileName), sorted: "fileName", ascending: false)
  180. if !isRecordInSessions.isEmpty { continue }
  181. let metadata = NCManageDatabase.shared.createMetadata(account: uploadAssets.userBaseUrl.account, user: uploadAssets.userBaseUrl.user, userId: uploadAssets.userBaseUrl.userId, fileName: fileName, fileNameView: fileName, ocId: NSUUID().uuidString, serverUrl: serverUrl, urlBase: uploadAssets.userBaseUrl.urlBase, url: "", contentType: "", isLivePhoto: livePhoto)
  182. metadata.assetLocalIdentifier = asset.localIdentifier
  183. metadata.session = NCNetworking.shared.sessionIdentifierBackground
  184. metadata.sessionSelector = NCGlobal.shared.selectorUploadFile
  185. metadata.status = NCGlobal.shared.metadataStatusWaitUpload
  186. // Modified
  187. if let previewStore = uploadAssets.previewStore.first(where: { $0.id == asset.localIdentifier }), previewStore.hasChanges, let data = previewStore.image.jpegData(compressionQuality: 1) {
  188. if metadata.contentType == "image/heic" {
  189. let fileNameNoExtension = (fileName as NSString).deletingPathExtension
  190. metadata.contentType = "image/jpeg"
  191. metadata.fileName = fileNameNoExtension + ".jpg"
  192. metadata.fileNameView = fileNameNoExtension + ".jpg"
  193. }
  194. let fileNamePath = CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)!
  195. do {
  196. try data.write(to: URL(fileURLWithPath: fileNamePath))
  197. metadata.isExtractFile = true
  198. metadata.size = NCUtilityFileSystem.shared.getFileSize(filePath: fileNamePath)
  199. metadata.creationDate = asset.creationDate as? NSDate ?? (Date() as NSDate)
  200. metadata.date = asset.modificationDate as? NSDate ?? (Date() as NSDate)
  201. } catch { }
  202. }
  203. if let result = NCManageDatabase.shared.getMetadataConflict(account: uploadAssets.userBaseUrl.account, serverUrl: serverUrl, fileNameView: fileName) {
  204. metadata.fileName = result.fileName
  205. metadatasUploadInConflict.append(metadata)
  206. } else {
  207. metadatasNOConflict.append(metadata)
  208. }
  209. }
  210. // Verify if file(s) exists
  211. if !metadatasUploadInConflict.isEmpty {
  212. completion(metadatasNOConflict, metadatasUploadInConflict)
  213. } else {
  214. NCNetworkingProcessUpload.shared.createProcessUploads(metadatas: metadatasNOConflict, completion: { _ in })
  215. completion(metadatasNOConflict, metadatasUploadInConflict)
  216. }
  217. }
  218. func presentedQuickLook(size: CGFloat, index: Int) {
  219. let previewStore = uploadAssets.previewStore[index]
  220. var image = previewStore.image
  221. if !previewStore.hasChanges {
  222. if let fullResolutionImage = previewStore.asset.fullResolutionImage?.resizeImage(size: CGSize(width: size, height: size)) {
  223. image = fullResolutionImage
  224. }
  225. }
  226. if let data = image.jpegData(compressionQuality: 0.5) {
  227. do {
  228. try data.write(to: URL(fileURLWithPath: fileNamePath))
  229. self.index = index
  230. isPresentedQuickLook = true
  231. } catch {
  232. }
  233. }
  234. }
  235. var body: some View {
  236. GeometryReader { geo in
  237. NavigationView {
  238. List {
  239. if !uploadAssets.previewStore.isEmpty {
  240. Section(header: Text(NSLocalizedString("_modify_photo_", comment: "")), footer: Text(NSLocalizedString("_modify_photo_desc_", comment: ""))) {
  241. ScrollView(.horizontal) {
  242. LazyHGrid(rows: gridItems, alignment: .center, spacing: 10) {
  243. ForEach(0..<uploadAssets.previewStore.count, id: \.self) { index in
  244. VStack {
  245. Image(uiImage: uploadAssets.previewStore[index].image)
  246. .resizable()
  247. .frame(width: 100, height: 100, alignment: .center)
  248. .cornerRadius(10)
  249. .scaledToFit()
  250. .onTapGesture {
  251. presentedQuickLook(size: max(geo.size.height, geo.size.height), index: index)
  252. }.fullScreenCover(isPresented: $isPresentedQuickLook) {
  253. ViewerQuickLook(url: URL(fileURLWithPath: fileNamePath), index: $index, isPresentedQuickLook: $isPresentedQuickLook, uploadAssets: uploadAssets)
  254. .ignoresSafeArea()
  255. }
  256. }
  257. }
  258. }
  259. }
  260. }
  261. }
  262. Section(header: Text(NSLocalizedString("_mode_filename_", comment: ""))) {
  263. Toggle(NSLocalizedString("_maintain_original_filename_", comment: ""), isOn: $isMaintainOriginalFilename)
  264. .toggleStyle(SwitchToggleStyle(tint: Color(NCBrandColor.shared.brand)))
  265. if !isMaintainOriginalFilename {
  266. Toggle(NSLocalizedString("_add_filenametype_", comment: ""), isOn: $isAddFilenametype)
  267. .toggleStyle(SwitchToggleStyle(tint: Color(NCBrandColor.shared.brand)))
  268. }
  269. }
  270. Section {
  271. HStack {
  272. Label {
  273. if NCUtilityFileSystem.shared.getHomeServer(urlBase: uploadAssets.userBaseUrl.urlBase, userId: uploadAssets.userBaseUrl.userId) == uploadAssets.serverUrl {
  274. Text("/")
  275. .frame(maxWidth: .infinity, alignment: .trailing)
  276. } else {
  277. Text((uploadAssets.serverUrl as NSString).lastPathComponent)
  278. .frame(maxWidth: .infinity, alignment: .trailing)
  279. }
  280. } icon: {
  281. Image("folder")
  282. .renderingMode(.template)
  283. .resizable()
  284. .scaledToFit()
  285. .foregroundColor(Color(NCBrandColor.shared.brand))
  286. }
  287. }
  288. .contentShape(Rectangle())
  289. .onTapGesture {
  290. isPresentedSelect = true
  291. }
  292. HStack {
  293. Text(NSLocalizedString("_filename_", comment: ""))
  294. if isMaintainOriginalFilename {
  295. Text(getOriginalFilename())
  296. .frame(maxWidth: .infinity, alignment: .trailing)
  297. } else {
  298. TextField(NSLocalizedString("_enter_filename_", comment: ""), text: $fileName)
  299. .modifier(TextFieldClearButton(text: $fileName))
  300. .multilineTextAlignment(.trailing)
  301. }
  302. }
  303. if !isMaintainOriginalFilename {
  304. Text(setFileNameMask(fileName: fileName))
  305. .font(.system(size: 12))
  306. .foregroundColor(Color.gray)
  307. }
  308. }
  309. .complexModifier { view in
  310. if #available(iOS 15, *) {
  311. view.listRowSeparator(.hidden)
  312. }
  313. }
  314. Button(NSLocalizedString("_save_", comment: "")) {
  315. save { metadatasNOConflict, metadatasUploadInConflict in
  316. if metadatasUploadInConflict.isEmpty {
  317. uploadAssets.dismiss = true
  318. } else {
  319. uploadAssets.metadatasNOConflict = metadatasNOConflict
  320. uploadAssets.metadatasUploadInConflict = metadatasUploadInConflict
  321. isPresentedUploadConflict = true
  322. }
  323. }
  324. }
  325. .frame(maxWidth: .infinity)
  326. .buttonStyle(ButtonRounded(disabled: false))
  327. .listRowBackground(Color(UIColor.systemGroupedBackground))
  328. }
  329. .navigationTitle(NSLocalizedString("_upload_photos_videos_", comment: ""))
  330. .navigationBarTitleDisplayMode(.inline)
  331. }
  332. .sheet(isPresented: $isPresentedSelect) {
  333. SelectView(serverUrl: $uploadAssets.serverUrl)
  334. }
  335. .sheet(isPresented: $isPresentedUploadConflict) {
  336. UploadConflictView(delegate: uploadAssets, serverUrl: uploadAssets.serverUrl, metadatasUploadInConflict: uploadAssets.metadatasUploadInConflict, metadatasNOConflict: uploadAssets.metadatasNOConflict)
  337. }
  338. .onReceive(uploadAssets.$dismiss) { newValue in
  339. if newValue {
  340. presentationMode.wrappedValue.dismiss()
  341. }
  342. }
  343. }
  344. }
  345. }
  346. // MARK: - Preview
  347. struct UploadAssetsView_Previews: PreviewProvider {
  348. static var previews: some View {
  349. if let appDelegate = UIApplication.shared.delegate as? AppDelegate {
  350. let uploadAssets = NCUploadAssets(assets: [], serverUrl: "/", userBaseUrl: appDelegate)
  351. UploadAssetsView(uploadAssets: uploadAssets)
  352. }
  353. }
  354. }