NCUploadScanDocument.swift 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  1. //
  2. // NCUploadScanDocument.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 28/12/22.
  6. // Copyright © 2022 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 Vision
  26. import VisionKit
  27. import Photos
  28. import PDFKit
  29. class NCHostingUploadScanDocumentView: NSObject {
  30. @objc func makeShipDetailsUI(images: [UIImage], userBaseUrl: NCUserBaseUrl, serverUrl: String) -> UIViewController {
  31. let uploadScanDocument = NCUploadScanDocument(images: images, userBaseUrl: userBaseUrl, serverUrl: serverUrl)
  32. let details = UploadScanDocumentView(uploadScanDocument)
  33. let vc = UIHostingController(rootView: details)
  34. vc.title = NSLocalizedString("_save_", comment: "")
  35. return vc
  36. }
  37. }
  38. // MARK: - Class
  39. class NCUploadScanDocument: ObservableObject {
  40. var userBaseUrl: NCUserBaseUrl
  41. var serverUrl: String
  42. var metadata = tableMetadata()
  43. var images: [UIImage]
  44. var password: String = ""
  45. var isTextRecognition: Bool = false
  46. var quality: Double = 0
  47. init(images: [UIImage], userBaseUrl: NCUserBaseUrl, serverUrl: String) {
  48. self.images = images
  49. self.userBaseUrl = userBaseUrl
  50. self.serverUrl = serverUrl
  51. }
  52. func save(fileName: String, password: String = "", isTextRecognition: Bool = false, quality: Double, completion: @escaping (_ openConflictViewController: Bool) -> Void) {
  53. let ext = (fileName as NSString).pathExtension.uppercased()
  54. var fileNameMetadata = ""
  55. if ext.isEmpty {
  56. fileNameMetadata = fileName + ".pdf"
  57. } else {
  58. fileNameMetadata = (fileName as NSString).deletingPathExtension + ".pdf"
  59. }
  60. self.password = password
  61. self.isTextRecognition = isTextRecognition
  62. self.quality = quality
  63. metadata = NCManageDatabase.shared.createMetadata(account: userBaseUrl.account,
  64. user: userBaseUrl.user,
  65. userId: userBaseUrl.userId,
  66. fileName: fileNameMetadata,
  67. fileNameView: fileNameMetadata,
  68. ocId: UUID().uuidString,
  69. serverUrl: serverUrl,
  70. urlBase: userBaseUrl.urlBase,
  71. url: "",
  72. contentType: "")
  73. metadata.session = NCNetworking.shared.sessionIdentifierBackground
  74. metadata.sessionSelector = NCGlobal.shared.selectorUploadFile
  75. metadata.status = NCGlobal.shared.metadataStatusWaitUpload
  76. if NCManageDatabase.shared.getMetadataConflict(account: userBaseUrl.account, serverUrl: serverUrl, fileNameView: fileNameMetadata) != nil {
  77. completion(true)
  78. } else {
  79. createPDF(metadata: metadata)
  80. completion(false)
  81. }
  82. }
  83. func createPDF(metadata: tableMetadata) {
  84. let fileNamePath = CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)!
  85. let pdfData = NSMutableData()
  86. if password.isEmpty {
  87. UIGraphicsBeginPDFContextToData(pdfData, CGRect.zero, nil)
  88. } else {
  89. for char in password.unicodeScalars {
  90. if !char.isASCII {
  91. NCActivityIndicator.shared.stop()
  92. let error = NKError(errorCode: NCGlobal.shared.errorForbidden, errorDescription: "_password_ascii_")
  93. NCContentPresenter.shared.showError(error: error)
  94. return
  95. }
  96. }
  97. let info: [AnyHashable: Any] = [kCGPDFContextUserPassword as String: password, kCGPDFContextOwnerPassword as String: password]
  98. UIGraphicsBeginPDFContextToData(pdfData, CGRect.zero, info)
  99. }
  100. for var image in images {
  101. image = changeCompressionImage(image, quality: quality)
  102. let bounds = CGRect(x: 0, y: 0, width: image.size.width, height: image.size.height)
  103. if isTextRecognition {
  104. UIGraphicsBeginPDFPageWithInfo(bounds, nil)
  105. image.draw(in: bounds)
  106. } else {
  107. UIGraphicsBeginPDFPageWithInfo(bounds, nil)
  108. image.draw(in: bounds)
  109. }
  110. }
  111. UIGraphicsEndPDFContext()
  112. do {
  113. try pdfData.write(to: URL(fileURLWithPath: fileNamePath), options: .atomic)
  114. metadata.size = NCUtilityFileSystem.shared.getFileSize(filePath: fileNamePath)
  115. NCNetworkingProcessUpload.shared.createProcessUploads(metadatas: [metadata], completion: { _ in })
  116. } catch {
  117. print("error catched")
  118. }
  119. }
  120. func createPDFPreview(quality: Double) -> Data {
  121. let pdfData = NSMutableData()
  122. UIGraphicsBeginPDFContextToData(pdfData, CGRect.zero, nil)
  123. if var image = images.first {
  124. image = changeCompressionImage(image, quality: quality)
  125. let bounds = CGRect(x: 0, y: 0, width: image.size.width, height: image.size.height)
  126. UIGraphicsBeginPDFPageWithInfo(bounds, nil)
  127. image.draw(in: bounds)
  128. }
  129. UIGraphicsEndPDFContext()
  130. return pdfData as Data
  131. }
  132. func changeCompressionImage(_ image: UIImage, quality: Double) -> UIImage {
  133. var compressionQuality: CGFloat = 0.0
  134. var baseHeight: Float = 595.2 // A4
  135. var baseWidth: Float = 841.8 // A4
  136. switch quality {
  137. case 0:
  138. baseHeight *= 1
  139. baseWidth *= 1
  140. compressionQuality = 0.2
  141. case 1:
  142. baseHeight *= 2
  143. baseWidth *= 2
  144. compressionQuality = 0.3
  145. case 2:
  146. baseHeight *= 3
  147. baseWidth *= 3
  148. compressionQuality = 0.4
  149. case 3:
  150. baseHeight *= 4
  151. baseWidth *= 4
  152. compressionQuality = 0.5
  153. default:
  154. break
  155. }
  156. var newHeight = Float(image.size.height)
  157. var newWidth = Float(image.size.width)
  158. var imgRatio: Float = newWidth / newHeight
  159. let baseRatio: Float = baseWidth / baseHeight
  160. if newHeight > baseHeight || newWidth > baseWidth {
  161. if imgRatio < baseRatio {
  162. imgRatio = baseHeight / newHeight
  163. newWidth = imgRatio * newWidth
  164. newHeight = baseHeight
  165. } else if imgRatio > baseRatio {
  166. imgRatio = baseWidth / newWidth
  167. newHeight = imgRatio * newHeight
  168. newWidth = baseWidth
  169. } else {
  170. newHeight = baseHeight
  171. newWidth = baseWidth
  172. }
  173. }
  174. let rect = CGRect(x: 0.0, y: 0.0, width: CGFloat(newWidth), height: CGFloat(newHeight))
  175. UIGraphicsBeginImageContext(rect.size)
  176. image.draw(in: rect)
  177. let img = UIGraphicsGetImageFromCurrentImageContext()
  178. let imageData = img?.jpegData(compressionQuality: CGFloat(compressionQuality))
  179. UIGraphicsEndImageContext()
  180. if let imageData = imageData, let image = UIImage(data: imageData) {
  181. return image
  182. }
  183. return image
  184. }
  185. }
  186. // MARK: - Delegate
  187. extension NCUploadScanDocument: NCSelectDelegate {
  188. func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, items: [Any], overwrite: Bool, copy: Bool, move: Bool) {
  189. if let serverUrl = serverUrl {
  190. CCUtility.setDirectoryScanDocument(serverUrl)
  191. self.serverUrl = serverUrl
  192. }
  193. }
  194. }
  195. extension NCUploadScanDocument: NCCreateFormUploadConflictDelegate {
  196. func dismissCreateFormUploadConflict(metadatas: [tableMetadata]?) {
  197. if let metadata = metadatas?.first {
  198. createPDF(metadata: metadata)
  199. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterDismissScanDocument)
  200. }
  201. }
  202. }
  203. // MARK: - View
  204. struct UploadScanDocumentView: View {
  205. @State var fileName = "Scan.pdf"
  206. @State var quality = CCUtility.getQualityScanDocument()
  207. @State var password: String = ""
  208. @State var isSecuredPassword: Bool = true
  209. @State var isTextRecognition: Bool = CCUtility.getTextRecognitionStatus()
  210. @State var isPresentedSelect = false
  211. @State var isPresentedUploadConflict = false
  212. var metadatasConflict: [tableMetadata] = []
  213. @ObservedObject var uploadScanDocument: NCUploadScanDocument
  214. @Environment(\.presentationMode) var presentationMode
  215. init(_ uploadScanDocument: NCUploadScanDocument) {
  216. self.uploadScanDocument = uploadScanDocument
  217. }
  218. var body: some View {
  219. GeometryReader { geo in
  220. List {
  221. Section(header: Text(NSLocalizedString("_file_creation_", comment: ""))) {
  222. HStack {
  223. Label {
  224. if NCUtilityFileSystem.shared.getHomeServer(urlBase: uploadScanDocument.userBaseUrl.urlBase, userId: uploadScanDocument.userBaseUrl.userId) == uploadScanDocument.serverUrl {
  225. Text("/")
  226. .frame(maxWidth: .infinity, alignment: .trailing)
  227. } else {
  228. Text((uploadScanDocument.serverUrl as NSString).lastPathComponent)
  229. .frame(maxWidth: .infinity, alignment: .trailing)
  230. }
  231. } icon: {
  232. Image("folder")
  233. .renderingMode(.template)
  234. .resizable()
  235. .scaledToFit()
  236. .foregroundColor(Color(NCBrandColor.shared.brand))
  237. }
  238. }
  239. .contentShape(Rectangle())
  240. .onTapGesture {
  241. isPresentedSelect = true
  242. }
  243. .complexModifier { view in
  244. if #available(iOS 16, *) {
  245. view.alignmentGuide(.listRowSeparatorLeading) { _ in
  246. return 0
  247. }
  248. }
  249. }
  250. HStack {
  251. Text(NSLocalizedString("_filename_", comment: ""))
  252. TextField(NSLocalizedString("_enter_filename_", comment: ""), text: $fileName)
  253. .multilineTextAlignment(.trailing)
  254. }
  255. HStack {
  256. Group {
  257. Text(NSLocalizedString("_password_", comment: ""))
  258. if isSecuredPassword {
  259. SecureField(NSLocalizedString("_enter_password_", comment: ""), text: $password)
  260. .multilineTextAlignment(.trailing)
  261. } else {
  262. TextField(NSLocalizedString("_enter_password_", comment: ""), text: $password)
  263. .multilineTextAlignment(.trailing)
  264. }
  265. }
  266. Button(action: {
  267. isSecuredPassword.toggle()
  268. }) {
  269. Image(systemName: self.isSecuredPassword ? "eye.slash" : "eye")
  270. .accentColor(.gray)
  271. }
  272. }
  273. HStack {
  274. Toggle(NSLocalizedString("_text_recognition_", comment: ""), isOn: $isTextRecognition)
  275. .toggleStyle(SwitchToggleStyle(tint: Color(NCBrandColor.shared.brand)))
  276. .onChange(of: isTextRecognition) { newValue in
  277. CCUtility.setTextRecognitionStatus(newValue)
  278. }
  279. }
  280. }
  281. Section(header: Text(NSLocalizedString("_quality_image_title_", comment: ""))) {
  282. VStack {
  283. Slider(value: $quality, in: 0...3, step: 1, onEditingChanged: { touch in
  284. if !touch {
  285. CCUtility.setQualityScanDocument(quality)
  286. // uploadScanDocument.createPDF(password: password, isTextRecognition: isTextRecognition, quality: quality)
  287. }
  288. })
  289. .accentColor(Color(NCBrandColor.shared.brand))
  290. }
  291. PDFKitRepresentedView(quality: $quality, uploadScanDocument: uploadScanDocument)
  292. .frame(maxWidth: .infinity, minHeight: geo.size.height / 2.7)
  293. }.complexModifier { view in
  294. if #available(iOS 15, *) {
  295. view.listRowSeparator(.hidden)
  296. }
  297. }
  298. Button(NSLocalizedString("_save_", comment: "")) {
  299. // presentationMode.wrappedValue.dismiss()
  300. uploadScanDocument.save(fileName: fileName, password: password, isTextRecognition: isTextRecognition, quality: quality) { openConflictViewController in
  301. if openConflictViewController {
  302. isPresentedUploadConflict = true
  303. } else {
  304. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterDismissScanDocument)
  305. }
  306. }
  307. }
  308. .buttonStyle(ButtonUploadScanDocumenStyle(disabled: fileName.isEmpty))
  309. .frame(maxWidth: .infinity, alignment: .center)
  310. .listRowBackground(Color(UIColor.systemGroupedBackground))
  311. }
  312. }
  313. .background(Color(UIColor.systemGroupedBackground))
  314. .sheet(isPresented: $isPresentedSelect) {
  315. NCSelectRepresentedView(uploadScanDocument: uploadScanDocument)
  316. }
  317. .sheet(isPresented: $isPresentedUploadConflict) {
  318. NCUploadConflictRepresentedView(uploadScanDocument: uploadScanDocument)
  319. }
  320. }
  321. }
  322. struct ButtonUploadScanDocumenStyle: ButtonStyle {
  323. var disabled = false
  324. func makeBody(configuration: Configuration) -> some View {
  325. configuration.label
  326. .padding(.horizontal, 40)
  327. .padding(.vertical, 10)
  328. .background(disabled ? Color(UIColor.systemGray4) : Color(NCBrandColor.shared.brand))
  329. .foregroundColor(.white)
  330. .clipShape(Capsule())
  331. }
  332. }
  333. // MARK: - UIViewControllerRepresentable
  334. struct NCSelectRepresentedView: UIViewControllerRepresentable {
  335. typealias UIViewControllerType = UINavigationController
  336. @ObservedObject var uploadScanDocument: NCUploadScanDocument
  337. func makeUIViewController(context: Context) -> UINavigationController {
  338. let storyboard = UIStoryboard(name: "NCSelect", bundle: nil)
  339. let navigationController = storyboard.instantiateInitialViewController() as? UINavigationController
  340. let viewController = navigationController?.topViewController as? NCSelect
  341. viewController?.delegate = uploadScanDocument
  342. viewController?.typeOfCommandView = .selectCreateFolder
  343. viewController?.includeDirectoryE2EEncryption = true
  344. return navigationController!
  345. }
  346. func updateUIViewController(_ uiViewController: UINavigationController, context: Context) {
  347. }
  348. }
  349. struct NCUploadConflictRepresentedView: UIViewControllerRepresentable {
  350. typealias UIViewControllerType = NCCreateFormUploadConflict
  351. @ObservedObject var uploadScanDocument: NCUploadScanDocument
  352. func makeUIViewController(context: Context) -> NCCreateFormUploadConflict {
  353. let storyboard = UIStoryboard(name: "NCCreateFormUploadConflict", bundle: nil)
  354. let viewController = storyboard.instantiateInitialViewController() as? NCCreateFormUploadConflict
  355. viewController?.delegate = uploadScanDocument
  356. viewController?.textLabelDetailNewFile = NSLocalizedString("_now_", comment: "")
  357. viewController?.serverUrl = uploadScanDocument.serverUrl
  358. viewController?.metadatasUploadInConflict = [uploadScanDocument.metadata]
  359. return viewController!
  360. }
  361. func updateUIViewController(_ uiViewController: NCCreateFormUploadConflict, context: Context) {
  362. }
  363. }
  364. struct PDFKitRepresentedView: UIViewRepresentable {
  365. typealias UIView = PDFView
  366. @Binding var quality: Double
  367. @ObservedObject var uploadScanDocument: NCUploadScanDocument
  368. let fileNameDefault = NSTemporaryDirectory() + "scandocument.pdf"
  369. func makeUIView(context: UIViewRepresentableContext<PDFKitRepresentedView>) -> PDFKitRepresentedView.UIViewType {
  370. let pdfView = PDFView()
  371. pdfView.autoScales = true
  372. pdfView.backgroundColor = .clear
  373. pdfView.displayMode = .singlePage
  374. pdfView.displayDirection = .vertical
  375. return pdfView
  376. }
  377. func updateUIView(_ uiView: UIView, context: UIViewRepresentableContext<PDFKitRepresentedView>) {
  378. let data = uploadScanDocument.createPDFPreview(quality: quality)
  379. uiView.document = PDFDocument(data: data)
  380. }
  381. }
  382. // MARK: - Preview
  383. struct UploadScanDocumentView_Previews: PreviewProvider {
  384. static var previews: some View {
  385. if let appDelegate = UIApplication.shared.delegate as? AppDelegate {
  386. let uploadScanDocument = NCUploadScanDocument(images: [], userBaseUrl: appDelegate, serverUrl: "ABCD")
  387. UploadScanDocumentView(uploadScanDocument)
  388. }
  389. }
  390. }