NCUploadScanDocument.swift 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  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: 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. internal var userBaseUrl: NCUserBaseUrl
  41. internal var metadata = tableMetadata()
  42. internal var images: [UIImage]
  43. internal var password: String = ""
  44. internal var isTextRecognition: Bool = false
  45. internal var quality: Double = 0
  46. internal var removeAllFiles: Bool = false
  47. let utilityFileSystem = NCUtilityFileSystem()
  48. @Published var serverUrl: String
  49. @Published var showHUD: Bool = false
  50. init(images: [UIImage], userBaseUrl: NCUserBaseUrl, serverUrl: String) {
  51. self.images = images
  52. self.userBaseUrl = userBaseUrl
  53. self.serverUrl = serverUrl
  54. }
  55. func save(fileName: String, password: String = "", isTextRecognition: Bool = false, removeAllFiles: Bool, quality: Double, completion: @escaping (_ openConflictViewController: Bool, _ error: Bool) -> Void) {
  56. self.password = password
  57. self.isTextRecognition = isTextRecognition
  58. self.quality = quality
  59. self.removeAllFiles = removeAllFiles
  60. metadata = NCManageDatabase.shared.createMetadata(account: userBaseUrl.account,
  61. user: userBaseUrl.user,
  62. userId: userBaseUrl.userId,
  63. fileName: fileName,
  64. fileNameView: fileName,
  65. ocId: UUID().uuidString,
  66. serverUrl: serverUrl,
  67. urlBase: userBaseUrl.urlBase,
  68. url: "",
  69. contentType: "")
  70. metadata.session = NCNetworking.shared.sessionUploadBackground
  71. metadata.sessionSelector = NCGlobal.shared.selectorUploadFile
  72. metadata.status = NCGlobal.shared.metadataStatusWaitUpload
  73. metadata.sessionDate = Date()
  74. if NCManageDatabase.shared.getMetadataConflict(account: userBaseUrl.account, serverUrl: serverUrl, fileNameView: fileName) != nil {
  75. completion(true, false)
  76. } else {
  77. createPDF(metadata: metadata) { error in
  78. if !error {
  79. completion(false, false)
  80. }
  81. }
  82. }
  83. }
  84. func createPDF(metadata: tableMetadata, completion: @escaping (_ error: Bool) -> Void) {
  85. DispatchQueue.global().async {
  86. let fileNamePath = self.utilityFileSystem.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)
  87. let pdfData = NSMutableData()
  88. if self.password.isEmpty {
  89. UIGraphicsBeginPDFContextToData(pdfData, CGRect.zero, nil)
  90. } else {
  91. for char in self.password.unicodeScalars {
  92. if !char.isASCII {
  93. let error = NKError(errorCode: NCGlobal.shared.errorForbidden, errorDescription: "_password_ascii_")
  94. NCContentPresenter().showError(error: error)
  95. return DispatchQueue.main.async { completion(true) }
  96. }
  97. }
  98. let info: [AnyHashable: Any] = [kCGPDFContextUserPassword as String: self.password, kCGPDFContextOwnerPassword as String: self.password]
  99. UIGraphicsBeginPDFContextToData(pdfData, CGRect.zero, info)
  100. }
  101. for image in self.images {
  102. self.drawImage(image: image, quality: self.quality, isTextRecognition: self.isTextRecognition, fontColor: UIColor.clear)
  103. }
  104. UIGraphicsEndPDFContext()
  105. do {
  106. try pdfData.write(to: URL(fileURLWithPath: fileNamePath), options: .atomic)
  107. metadata.size = self.utilityFileSystem.getFileSize(filePath: fileNamePath)
  108. NCNetworkingProcess.shared.createProcessUploads(metadatas: [metadata])
  109. if self.removeAllFiles {
  110. let path = self.utilityFileSystem.directoryScan
  111. let filePaths = try FileManager.default.contentsOfDirectory(atPath: path)
  112. for filePath in filePaths {
  113. try FileManager.default.removeItem(atPath: path + "/" + filePath)
  114. }
  115. }
  116. } catch {
  117. print("Error: \(error)")
  118. }
  119. DispatchQueue.main.async { completion(false) }
  120. }
  121. }
  122. func createPDFPreview(quality: Double, isTextRecognition: Bool, completion: @escaping (_ data: Data) -> Void) {
  123. DispatchQueue.global().async {
  124. if let image = self.images.first {
  125. let pdfData = NSMutableData()
  126. UIGraphicsBeginPDFContextToData(pdfData, CGRect.zero, nil)
  127. self.drawImage(image: image, quality: quality, isTextRecognition: isTextRecognition, fontColor: UIColor.red)
  128. UIGraphicsEndPDFContext()
  129. DispatchQueue.main.async { completion(pdfData as Data) }
  130. } else {
  131. let url = Bundle.main.url(forResource: "Reasons to use Nextcloud", withExtension: "pdf")!
  132. let data = try? Data(contentsOf: url)
  133. DispatchQueue.main.async { completion(data!) }
  134. }
  135. }
  136. }
  137. func fileName(_ fileName: String) -> String {
  138. let fileName = fileName.trimmingCharacters(in: .whitespacesAndNewlines)
  139. guard !fileName.isEmpty, fileName != ".", fileName.lowercased() != ".pdf" else { return "" }
  140. let ext = (fileName as NSString).pathExtension.uppercased()
  141. if ext.isEmpty {
  142. return fileName + ".pdf"
  143. } else {
  144. return (fileName as NSString).deletingPathExtension + ".pdf"
  145. }
  146. }
  147. private func changeCompressionImage(_ image: UIImage, quality: Double) -> UIImage {
  148. var compressionQuality: CGFloat = 0.0
  149. let baseHeight: Float = 595.2 // A4
  150. let baseWidth: Float = 841.8 // A4
  151. switch quality {
  152. case 0:
  153. compressionQuality = 0.1
  154. case 1:
  155. compressionQuality = 0.3
  156. case 2:
  157. compressionQuality = 0.5
  158. case 3:
  159. compressionQuality = 0.7
  160. case 4:
  161. compressionQuality = 0.9
  162. default:
  163. break
  164. }
  165. var newHeight = Float(image.size.height)
  166. var newWidth = Float(image.size.width)
  167. var imgRatio: Float = newWidth / newHeight
  168. let baseRatio: Float = baseWidth / baseHeight
  169. if newHeight > baseHeight || newWidth > baseWidth {
  170. if imgRatio < baseRatio {
  171. imgRatio = baseHeight / newHeight
  172. newWidth = imgRatio * newWidth
  173. newHeight = baseHeight
  174. } else if imgRatio > baseRatio {
  175. imgRatio = baseWidth / newWidth
  176. newHeight = imgRatio * newHeight
  177. newWidth = baseWidth
  178. } else {
  179. newHeight = baseHeight
  180. newWidth = baseWidth
  181. }
  182. }
  183. let rect = CGRect(x: 0.0, y: 0.0, width: CGFloat(newWidth), height: CGFloat(newHeight))
  184. UIGraphicsBeginImageContextWithOptions(rect.size, false, 0)
  185. image.draw(in: rect)
  186. let img = UIGraphicsGetImageFromCurrentImageContext()
  187. let imageData = img?.jpegData(compressionQuality: CGFloat(compressionQuality))
  188. UIGraphicsEndImageContext()
  189. if let imageData = imageData, let image = UIImage(data: imageData) {
  190. return image
  191. }
  192. return image
  193. }
  194. private func bestFittingFont(for text: String, in bounds: CGRect, fontDescriptor: UIFontDescriptor, fontColor: UIColor) -> [NSAttributedString.Key: Any] {
  195. let constrainingDimension = min(bounds.width, bounds.height)
  196. let properBounds = CGRect(origin: .zero, size: bounds.size)
  197. var attributes: [NSAttributedString.Key: Any] = [:]
  198. let infiniteBounds = CGSize(width: CGFloat.infinity, height: CGFloat.infinity)
  199. var bestFontSize: CGFloat = constrainingDimension
  200. // Search font (H)
  201. for fontSize in stride(from: bestFontSize, through: 0, by: -1) {
  202. let newFont = UIFont(descriptor: fontDescriptor, size: fontSize)
  203. attributes[.font] = newFont
  204. let currentFrame = text.boundingRect(with: infiniteBounds, options: [.usesLineFragmentOrigin, .usesFontLeading], attributes: attributes, context: nil)
  205. if properBounds.contains(currentFrame) {
  206. bestFontSize = fontSize
  207. break
  208. }
  209. }
  210. // Search kern (W)
  211. let font = UIFont(descriptor: fontDescriptor, size: bestFontSize)
  212. attributes = [NSAttributedString.Key.font: font, NSAttributedString.Key.foregroundColor: fontColor, NSAttributedString.Key.kern: 0] as [NSAttributedString.Key: Any]
  213. for kern in stride(from: 0, through: 100, by: 0.1) {
  214. let attributesTmp = [NSAttributedString.Key.font: font, NSAttributedString.Key.foregroundColor: fontColor, NSAttributedString.Key.kern: kern] as [NSAttributedString.Key: Any]
  215. let size = text.size(withAttributes: attributesTmp).width
  216. if size <= bounds.width {
  217. attributes = attributesTmp
  218. } else {
  219. break
  220. }
  221. }
  222. return attributes
  223. }
  224. private func drawImage(image: UIImage, quality: Double, isTextRecognition: Bool, fontColor: UIColor) {
  225. let image = changeCompressionImage(image, quality: quality)
  226. let bounds = CGRect(x: 0, y: 0, width: image.size.width, height: image.size.height)
  227. if isTextRecognition {
  228. UIGraphicsBeginPDFPageWithInfo(bounds, nil)
  229. image.draw(in: bounds)
  230. let requestHandler = VNImageRequestHandler(cgImage: image.cgImage!, options: [:])
  231. let request = VNRecognizeTextRequest { request, _ in
  232. guard let observations = request.results as? [VNRecognizedTextObservation] else { return }
  233. for observation in observations {
  234. guard let textLine = observation.topCandidates(1).first else { continue }
  235. var t: CGAffineTransform = CGAffineTransform.identity
  236. t = t.scaledBy(x: image.size.width, y: -image.size.height)
  237. t = t.translatedBy(x: 0, y: -1)
  238. let rect = observation.boundingBox.applying(t)
  239. let text = textLine.string
  240. let font = UIFont.systemFont(ofSize: rect.size.height, weight: .regular)
  241. let attributes = self.bestFittingFont(for: text, in: rect, fontDescriptor: font.fontDescriptor, fontColor: fontColor)
  242. text.draw(with: rect, options: .usesLineFragmentOrigin, attributes: attributes, context: nil)
  243. }
  244. }
  245. request.recognitionLevel = .accurate
  246. request.usesLanguageCorrection = true
  247. try? requestHandler.perform([request])
  248. } else {
  249. UIGraphicsBeginPDFPageWithInfo(bounds, nil)
  250. image.draw(in: bounds)
  251. }
  252. }
  253. }
  254. // MARK: - Delegate
  255. extension NCUploadScanDocument: NCSelectDelegate {
  256. func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, items: [Any], indexPath: [IndexPath], overwrite: Bool, copy: Bool, move: Bool) {
  257. if let serverUrl = serverUrl {
  258. self.serverUrl = serverUrl
  259. }
  260. }
  261. }
  262. extension NCUploadScanDocument: NCCreateFormUploadConflictDelegate {
  263. func dismissCreateFormUploadConflict(metadatas: [tableMetadata]?) {
  264. if let metadata = metadatas?.first {
  265. self.showHUD.toggle()
  266. createPDF(metadata: metadata) { error in
  267. if !error {
  268. self.showHUD.toggle()
  269. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterDismissScanDocument)
  270. }
  271. }
  272. }
  273. }
  274. }
  275. // MARK: - View
  276. struct UploadScanDocumentView: View {
  277. @State var fileName = NCUtilityFileSystem().createFileNameDate("scan", ext: "")
  278. @State var password: String = ""
  279. @State var isSecuredPassword: Bool = true
  280. @State var isTextRecognition: Bool = NCKeychain().textRecognitionStatus
  281. @State var quality = NCKeychain().qualityScanDocument
  282. @State var removeAllFiles: Bool = NCKeychain().deleteAllScanImages
  283. @State var isPresentedSelect = false
  284. @State var isPresentedUploadConflict = false
  285. var metadatasConflict: [tableMetadata] = []
  286. @ObservedObject var uploadScanDocument: NCUploadScanDocument
  287. init(uploadScanDocument: NCUploadScanDocument) {
  288. self.uploadScanDocument = uploadScanDocument
  289. }
  290. func getTextServerUrl(_ serverUrl: String) -> String {
  291. if let directory = NCManageDatabase.shared.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", uploadScanDocument.userBaseUrl.account, serverUrl)), let metadata = NCManageDatabase.shared.getMetadataFromOcId(directory.ocId) {
  292. return (metadata.fileNameView)
  293. } else {
  294. return (serverUrl as NSString).lastPathComponent
  295. }
  296. }
  297. var body: some View {
  298. GeometryReader { geo in
  299. ZStack(alignment: .top) {
  300. List {
  301. Section(header: Text(NSLocalizedString("_file_creation_", comment: ""))) {
  302. HStack {
  303. Label {
  304. if NCUtilityFileSystem().getHomeServer(urlBase: uploadScanDocument.userBaseUrl.urlBase, userId: uploadScanDocument.userBaseUrl.userId) == uploadScanDocument.serverUrl {
  305. Text("/")
  306. .frame(maxWidth: .infinity, alignment: .trailing)
  307. } else {
  308. Text(self.getTextServerUrl(uploadScanDocument.serverUrl))
  309. .frame(maxWidth: .infinity, alignment: .trailing)
  310. }
  311. } icon: {
  312. Image("folder")
  313. .renderingMode(.template)
  314. .resizable()
  315. .scaledToFit()
  316. .foregroundColor(Color(NCBrandColor.shared.brand))
  317. }
  318. }
  319. .contentShape(Rectangle())
  320. .onTapGesture {
  321. isPresentedSelect = true
  322. }
  323. .complexModifier { view in
  324. if #available(iOS 16, *) {
  325. view.alignmentGuide(.listRowSeparatorLeading) { _ in
  326. return 0
  327. }
  328. }
  329. }
  330. HStack {
  331. Text(NSLocalizedString("_filename_", comment: ""))
  332. TextField(NSLocalizedString("_enter_filename_", comment: ""), text: $fileName)
  333. .modifier(TextFieldClearButton(text: $fileName))
  334. .multilineTextAlignment(.trailing)
  335. }
  336. HStack {
  337. Group {
  338. Text(NSLocalizedString("_password_", comment: ""))
  339. if isSecuredPassword {
  340. SecureField(NSLocalizedString("_enter_password_", comment: ""), text: $password)
  341. .multilineTextAlignment(.trailing)
  342. } else {
  343. TextField(NSLocalizedString("_enter_password_", comment: ""), text: $password)
  344. .multilineTextAlignment(.trailing)
  345. }
  346. }
  347. Button(action: {
  348. isSecuredPassword.toggle()
  349. }) {
  350. Image(systemName: self.isSecuredPassword ? "eye.slash" : "eye")
  351. .foregroundColor(Color(UIColor.placeholderText))
  352. }
  353. .buttonStyle(BorderlessButtonStyle())
  354. }
  355. HStack {
  356. Toggle(NSLocalizedString("_text_recognition_", comment: ""), isOn: $isTextRecognition)
  357. .toggleStyle(SwitchToggleStyle(tint: Color(NCBrandColor.shared.brand)))
  358. .onChange(of: isTextRecognition) { newValue in
  359. NCKeychain().textRecognitionStatus = newValue
  360. }
  361. }
  362. }
  363. .complexModifier { view in
  364. view.listRowSeparator(.hidden)
  365. }
  366. VStack(spacing: 20) {
  367. Toggle(NSLocalizedString("_delete_all_scanned_images_", comment: ""), isOn: $removeAllFiles)
  368. .toggleStyle(SwitchToggleStyle(tint: Color(NCBrandColor.shared.brand)))
  369. .onChange(of: removeAllFiles) { newValue in
  370. NCKeychain().deleteAllScanImages = newValue
  371. }
  372. Button(NSLocalizedString("_save_", comment: "")) {
  373. let fileName = uploadScanDocument.fileName(fileName)
  374. if !fileName.isEmpty {
  375. uploadScanDocument.showHUD.toggle()
  376. uploadScanDocument.save(fileName: fileName, password: password, isTextRecognition: isTextRecognition, removeAllFiles: removeAllFiles, quality: quality) { openConflictViewController, error in
  377. uploadScanDocument.showHUD.toggle()
  378. if error {
  379. print("error")
  380. } else if openConflictViewController {
  381. isPresentedUploadConflict = true
  382. } else {
  383. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterDismissScanDocument)
  384. }
  385. }
  386. }
  387. }
  388. .buttonStyle(ButtonRounded(disabled: fileName.isEmpty))
  389. }
  390. Section(header: Text(NSLocalizedString("_quality_image_title_", comment: ""))) {
  391. VStack {
  392. Slider(value: $quality, in: 0...4, step: 1, onEditingChanged: { touch in
  393. if !touch {
  394. NCKeychain().qualityScanDocument = quality
  395. }
  396. })
  397. .accentColor(Color(NCBrandColor.shared.brand))
  398. }
  399. PDFKitRepresentedView(quality: $quality, isTextRecognition: $isTextRecognition, uploadScanDocument: uploadScanDocument)
  400. .frame(maxWidth: .infinity, minHeight: geo.size.height / 2)
  401. }
  402. .complexModifier { view in
  403. view.listRowSeparator(.hidden)
  404. }
  405. }
  406. HUDView(showHUD: $uploadScanDocument.showHUD, textLabel: NSLocalizedString("_wait_", comment: ""), image: "doc.badge.arrow.up")
  407. .offset(y: uploadScanDocument.showHUD ? 5 : -200)
  408. .animation(.easeOut, value: UUID())
  409. }
  410. }
  411. .background(Color(UIColor.systemGroupedBackground))
  412. .sheet(isPresented: $isPresentedSelect) {
  413. NCSelectViewControllerRepresentable(delegate: uploadScanDocument)
  414. }
  415. .sheet(isPresented: $isPresentedUploadConflict) {
  416. UploadConflictView(delegate: uploadScanDocument, serverUrl: uploadScanDocument.serverUrl, metadatasUploadInConflict: [uploadScanDocument.metadata], metadatasNOConflict: [])
  417. }.onTapGesture {
  418. UIApplication.shared.connectedScenes.flatMap { ($0 as? UIWindowScene)?.windows ?? [] }.filter { $0.isKeyWindow }.first?.endEditing(true)
  419. }
  420. }
  421. }
  422. // MARK: - UIViewControllerRepresentable
  423. struct PDFKitRepresentedView: UIViewRepresentable {
  424. typealias UIView = PDFView
  425. @Binding var quality: Double
  426. @Binding var isTextRecognition: Bool
  427. @ObservedObject var uploadScanDocument: NCUploadScanDocument
  428. func makeUIView(context: UIViewRepresentableContext<PDFKitRepresentedView>) -> PDFKitRepresentedView.UIViewType {
  429. let pdfView = PDFView()
  430. pdfView.autoScales = true
  431. pdfView.backgroundColor = .clear
  432. pdfView.displayMode = .singlePage
  433. pdfView.displayDirection = .vertical
  434. return pdfView
  435. }
  436. func updateUIView(_ uiView: UIView, context: UIViewRepresentableContext<PDFKitRepresentedView>) {
  437. uploadScanDocument.createPDFPreview(quality: quality, isTextRecognition: isTextRecognition) { data in
  438. uiView.document = PDFDocument(data: data)
  439. uiView.document?.page(at: 0)?.annotations.forEach({
  440. $0.isReadOnly = true
  441. })
  442. uiView.autoScales = true
  443. }
  444. }
  445. }
  446. // MARK: - Preview
  447. struct UploadScanDocumentView_Previews: PreviewProvider {
  448. static var previews: some View {
  449. if let appDelegate = UIApplication.shared.delegate as? AppDelegate {
  450. let uploadScanDocument = NCUploadScanDocument(images: [], userBaseUrl: appDelegate, serverUrl: "ABCD")
  451. UploadScanDocumentView(uploadScanDocument: uploadScanDocument)
  452. }
  453. }
  454. }