NCUploadScanDocument.swift 17 KB

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