NCUploadScanDocument.swift 18 KB

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