NCText.swift 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. //
  2. // NCText.swift
  3. // Crypto Cloud Technology Nextcloud
  4. //
  5. // Created by Marino Faggiana on 24/07/17.
  6. // Copyright (c) 2017 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  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 Foundation
  24. class NCText: UIViewController, UITextViewDelegate {
  25. @IBOutlet weak var cancelButton: UIBarButtonItem!
  26. @IBOutlet weak var nextButton: UIBarButtonItem!
  27. @IBOutlet weak var textView: UITextView!
  28. @IBOutlet weak var bottomConstraint: NSLayoutConstraint!
  29. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  30. var metadata: tableMetadata?
  31. var loadText: String?
  32. override func viewDidLoad() {
  33. super.viewDidLoad()
  34. NotificationCenter.default.addObserver(self, selector: #selector(self.keyboardWillShowHandle(info:)), name: .UIKeyboardWillShow, object: nil)
  35. NotificationCenter.default.addObserver(self, selector:#selector(self.keyboardWillHideHandle), name: .UIKeyboardWillHide, object: nil)
  36. self.navigationController?.navigationBar.topItem?.title = NSLocalizedString("_untitled_txt_", comment: "")
  37. self.navigationController?.navigationBar.barTintColor = NCBrandColor.sharedInstance.brand
  38. self.navigationController?.navigationBar.tintColor = NCBrandColor.sharedInstance.navigationBarText
  39. self.navigationController?.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName: NCBrandColor.sharedInstance.navigationBarText]
  40. self.navigationController?.toolbar.barTintColor = NCBrandColor.sharedInstance.navigationBarText
  41. self.navigationController?.toolbar.tintColor = NCBrandColor.sharedInstance.brand
  42. cancelButton.title = NSLocalizedString("_cancel_", comment: "")
  43. nextButton.title = NSLocalizedString("_next_", comment: "")
  44. // Modify
  45. if let metadata = metadata {
  46. loadText = ""
  47. let path = "\(appDelegate.directoryUser!)/\(metadata.fileID)"
  48. let data = NSData(contentsOfFile: path)
  49. if let data = data {
  50. /*
  51. let encodingCFName = NCUchardet.sharedNUCharDet().encodingCFStringDetect(with: data as Data)
  52. let se = CFStringConvertEncodingToNSStringEncoding(encodingCFName)
  53. let encoding = String.Encoding(rawValue: se)
  54. */
  55. let encoding = String.Encoding.utf8
  56. loadText = try? String(contentsOfFile: path, encoding: encoding)
  57. textView.text = loadText
  58. nextButton.title = NSLocalizedString("_save_", comment: "")
  59. self.navigationController?.navigationBar.topItem?.title = NSLocalizedString(metadata.fileNamePrint, comment: "")
  60. }
  61. } else {
  62. loadText = ""
  63. }
  64. textView.isUserInteractionEnabled = true
  65. textView.becomeFirstResponder()
  66. textView.delegate = self
  67. textView.selectedTextRange = textView.textRange(from: textView.beginningOfDocument, to: textView.beginningOfDocument)
  68. textViewDidChange(textView)
  69. }
  70. func keyboardWillShowHandle(info:NSNotification) {
  71. let frameView = self.view.convert(self.view.bounds, to: self.view.window)
  72. let endView = frameView.origin.y + frameView.size.height
  73. if let keyboardSize = (info.userInfo?[UIKeyboardFrameEndUserInfoKey] as? NSValue)?.cgRectValue, let _ = self.view.window?.frame {
  74. if endView - keyboardSize.origin.y > 0 {
  75. bottomConstraint.constant = endView - keyboardSize.origin.y
  76. } else {
  77. bottomConstraint.constant = 0
  78. }
  79. }
  80. }
  81. func keyboardWillHideHandle() {
  82. bottomConstraint.constant = 0
  83. }
  84. func textViewDidChange(_ textView: UITextView) {
  85. if textView.text.characters.count == 0 {
  86. nextButton.isEnabled = false
  87. } else {
  88. nextButton.isEnabled = true
  89. }
  90. }
  91. @IBAction func cancelButtonTapped(_ sender: AnyObject) {
  92. if textView.text != loadText {
  93. let alertController = UIAlertController(title: NSLocalizedString("_info_", comment: ""), message: NSLocalizedString("_save_exit_", comment: ""), preferredStyle: .alert)
  94. let actionYes = UIAlertAction(title: NSLocalizedString("_yes_", comment: ""), style: .default) { (action:UIAlertAction) in
  95. self.dismiss(animated: true, completion: nil)
  96. }
  97. let actionNo = UIAlertAction(title: NSLocalizedString("_no_", comment: ""), style: .cancel) { (action:UIAlertAction) in
  98. print("You've pressed No button")
  99. }
  100. alertController.addAction(actionYes)
  101. alertController.addAction(actionNo)
  102. self.present(alertController, animated: true, completion:nil)
  103. } else {
  104. self.dismiss(animated: true, completion: nil)
  105. }
  106. }
  107. @IBAction func nextButtonTapped(_ sender: AnyObject) {
  108. if let metadata = metadata {
  109. if textView.text != loadText {
  110. let uploadID = k_uploadSessionID + CCUtility.createRandomString(16)
  111. let data = textView.text.data(using: .utf8)
  112. let success = FileManager.default.createFile(atPath: "\(self.appDelegate.directoryUser!)/\(uploadID)", contents: data, attributes: nil)
  113. if success {
  114. // Prepare for send Metadata
  115. metadata.sessionID = uploadID
  116. metadata.session = k_upload_session
  117. metadata.sessionTaskIdentifier = Int(k_taskIdentifierWaitStart)
  118. _ = NCManageDatabase.sharedInstance.updateMetadata(metadata)
  119. appDelegate.activeMain.clearDateReadDataSource(nil)
  120. self.dismiss(animated: true, completion: {
  121. // Send file
  122. CCNetworking.shared().verifyUploadInErrorOrWait()
  123. NotificationCenter.default.post(name: NSNotification.Name(rawValue: "detailBack"), object: nil)
  124. })
  125. } else {
  126. self.appDelegate.messageNotification("_error_", description: "_error_creation_file_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
  127. }
  128. } else {
  129. self.dismiss(animated: true, completion: nil)
  130. }
  131. } else {
  132. let serverUrl = self.appDelegate.getTabBarControllerActiveServerUrl()
  133. let formViewController = CreateFormUploadFile.init(serverUrl: serverUrl!, text: self.textView.text, fileName: NSLocalizedString("_untitled_txt_", comment: ""))
  134. self.navigationController?.pushViewController(formViewController, animated: true)
  135. }
  136. }
  137. }