NCUploadScanDocument.swift 23 KB

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