NCGlobal.swift 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. //
  2. // NCGlobal.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 22/02/21.
  6. // Copyright © 2021 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 Foundation
  24. class NCGlobal: NSObject {
  25. @objc static let shared: NCGlobal = {
  26. let instance = NCGlobal()
  27. return instance
  28. }()
  29. // Struct for Progress
  30. //
  31. struct progressType {
  32. var progress: Float
  33. var totalBytes: Int64
  34. var totalBytesExpected: Int64
  35. }
  36. // Directory on Group
  37. //
  38. @objc let appDatabaseNextcloud = "Library/Application Support/Nextcloud"
  39. @objc let appApplicationSupport = "Library/Application Support"
  40. @objc let appUserData = "Library/Application Support/UserData"
  41. @objc let appCertificates = "Library/Application Support/Certificates"
  42. @objc let appScan = "Library/Application Support/Scan"
  43. @objc let directoryProviderStorage = "File Provider Storage"
  44. // Service
  45. //
  46. @objc let serviceShareKeyChain = "Crypto Cloud"
  47. let metadataKeyedUnarchiver = "it.twsweb.nextcloud.metadata"
  48. let refreshTask = "com.nextcloud.refreshTask"
  49. let processingTask = "com.nextcloud.processingTask"
  50. // Nextcloud version
  51. //
  52. let nextcloudVersion12: Int = 12
  53. let nextcloudVersion15: Int = 15
  54. let nextcloudVersion17: Int = 17
  55. let nextcloudVersion18: Int = 18
  56. let nextcloudVersion20: Int = 20
  57. // Database Realm
  58. //
  59. let databaseDefault = "nextcloud.realm"
  60. let databaseSchemaVersion: UInt64 = 175
  61. // Intro selector
  62. //
  63. @objc let introLogin: Int = 0
  64. let introSignup: Int = 1
  65. // Avatar & Preview size
  66. //
  67. let avatarSize: Int = 512
  68. let sizePreview: Int = 1024
  69. let sizeIcon: Int = 512
  70. // E2EE
  71. //
  72. let e2eeMaxFileSize: UInt64 = 500000000 // 500 MB
  73. let e2eePassphraseTest = "more over television factory tendency independence international intellectual impress interest sentence pony"
  74. @objc let e2eeVersion = "1.1"
  75. // Max Cache Proxy Video
  76. //
  77. let maxHTTPCache: Int64 = 10000000000 // 10 GB
  78. // NCSharePaging
  79. //
  80. let indexPageActivity: Int = 0
  81. let indexPageComments: Int = 1
  82. let indexPageSharing: Int = 2
  83. // NCViewerProviderContextMenu
  84. //
  85. let maxAutoDownload: UInt64 = 50000000 // 50MB
  86. let maxAutoDownloadCellular: UInt64 = 10000000 // 10MB
  87. // Nextcloud unsupported
  88. //
  89. let nextcloud_unsupported_version: Int = 13
  90. // Layout
  91. //
  92. let layoutList = "typeLayoutList"
  93. let layoutGrid = "typeLayoutGrid"
  94. let layoutViewMove = "LayoutMove"
  95. let layoutViewTrash = "LayoutTrash"
  96. let layoutViewOffline = "LayoutOffline"
  97. let layoutViewFavorite = "LayoutFavorite"
  98. let layoutViewFiles = "LayoutFiles"
  99. let layoutViewViewInFolder = "ViewInFolder"
  100. let layoutViewTransfers = "LayoutTransfers"
  101. let layoutViewRecent = "LayoutRecent"
  102. let layoutViewShares = "LayoutShares"
  103. let layoutViewShareExtension = "LayoutShareExtension"
  104. // Button Type in Cell list/grid
  105. //
  106. let buttonMoreMore = "more"
  107. let buttonMoreStop = "stop"
  108. // Text - OnlyOffice - Collabora
  109. //
  110. let editorText = "text"
  111. let editorOnlyoffice = "onlyoffice"
  112. let editorCollabora = "collabora"
  113. let onlyofficeDocx = "onlyoffice_docx"
  114. let onlyofficeXlsx = "onlyoffice_xlsx"
  115. let onlyofficePptx = "onlyoffice_pptx"
  116. // Template
  117. //
  118. let templateDocument = "document"
  119. let templateSpreadsheet = "spreadsheet"
  120. let templatePresentation = "presentation"
  121. // Rich Workspace
  122. //
  123. let fileNameRichWorkspace = "Readme.md"
  124. // ContentPresenter
  125. //
  126. @objc let dismissAfterSecond: TimeInterval = 4
  127. @objc let dismissAfterSecondLong: TimeInterval = 10
  128. // Error
  129. //
  130. @objc let errorRequestExplicityCancelled: Int = 15
  131. @objc let errorBadRequest: Int = 400
  132. @objc let errorResourceNotFound: Int = 404
  133. @objc let errordMethodNotSupported: Int = 405
  134. @objc let errorConflict: Int = 409
  135. @objc let errorConnectionLost: Int = -1005
  136. @objc let errorBadServerResponse: Int = -1011
  137. @objc let errorInternalError: Int = -99999
  138. @objc let errorFileNotSaved: Int = -99998
  139. @objc let errorDecodeMetadata: Int = -99997
  140. @objc let errorE2EENotEnabled: Int = -99996
  141. @objc let errorOffline: Int = -99994
  142. @objc let errorCharactersForbidden: Int = -99993
  143. @objc let errorCreationFile: Int = -99992
  144. @objc let errorReadFile: Int = -99991
  145. // Constants to identify the different permissions of a file
  146. //
  147. @objc let permissionShared = "S"
  148. @objc let permissionCanShare = "R"
  149. @objc let permissionMounted = "M"
  150. @objc let permissionFileCanWrite = "W"
  151. @objc let permissionCanCreateFile = "C"
  152. @objc let permissionCanCreateFolder = "K"
  153. @objc let permissionCanDelete = "D"
  154. @objc let permissionCanRename = "N"
  155. @objc let permissionCanMove = "V"
  156. //Share permission
  157. //permissions - (int) 1 = read; 2 = update; 4 = create; 8 = delete; 16 = share; 31 = all (default: 31, for public shares: 1)
  158. //
  159. @objc let permissionReadShare: Int = 1
  160. @objc let permissionUpdateShare: Int = 2
  161. @objc let permissionCreateShare: Int = 4
  162. @objc let permissionDeleteShare: Int = 8
  163. @objc let permissionShareShare: Int = 16
  164. @objc let permissionMinFileShare: Int = 1
  165. @objc let permissionMaxFileShare: Int = 19
  166. @objc let permissionMinFolderShare: Int = 1
  167. @objc let permissionMaxFolderShare: Int = 31
  168. @objc let permissionDefaultFileRemoteShareNoSupportShareOption: Int = 3
  169. @objc let permissionDefaultFolderRemoteShareNoSupportShareOption: Int = 15
  170. // Metadata : FileType
  171. //
  172. @objc let metadataTypeFileAudio = "audio"
  173. @objc let metadataTypeFileCompress = "compress"
  174. @objc let metadataTypeFileDirectory = "directory"
  175. @objc let metadataTypeFileDocument = "document"
  176. @objc let metadataTypeFileImage = "image"
  177. @objc let metadataTypeFileUnknown = "unknow"
  178. @objc let metadataTypeFileVideo = "video"
  179. @objc let metadataTypeFileImagemeter = "imagemeter"
  180. // Filename Mask and Type
  181. //
  182. let keyFileNameMask = "fileNameMask"
  183. let keyFileNameType = "fileNameType"
  184. let keyFileNameAutoUploadMask = "fileNameAutoUploadMask"
  185. let keyFileNameAutoUploadType = "fileNameAutoUploadType"
  186. let keyFileNameOriginal = "fileNameOriginal"
  187. let keyFileNameOriginalAutoUpload = "fileNameOriginalAutoUpload"
  188. // Selector
  189. //
  190. let selectorDownloadFile = "downloadFile"
  191. let selectorDownloadAllFile = "downloadAllFile"
  192. let selectorReadFile = "readFile"
  193. let selectorListingFavorite = "listingFavorite"
  194. let selectorLoadFileView = "loadFileView"
  195. let selectorLoadFileQuickLook = "loadFileQuickLook"
  196. let selectorLoadCopy = "loadCopy"
  197. let selectorLoadOffline = "loadOffline"
  198. let selectorOpenIn = "openIn"
  199. let selectorPrint = "print"
  200. let selectorUploadAutoUpload = "uploadAutoUpload"
  201. let selectorUploadAutoUploadAll = "uploadAutoUploadAll"
  202. let selectorUploadFile = "uploadFile"
  203. let selectorSaveAlbum = "saveAlbum"
  204. let selectorSaveAlbumLivePhotoIMG = "saveAlbumLivePhotoIMG"
  205. let selectorSaveAlbumLivePhotoMOV = "saveAlbumLivePhotoMOV"
  206. // Metadata : Status
  207. //
  208. // 1) wait download/upload
  209. // 2) in download/upload
  210. // 3) downloading/uploading
  211. // 4) done or error
  212. //
  213. let metadataStatusNormal: Int = 0
  214. let metadataStatustypeDownload: Int = 1
  215. let metadataStatusWaitDownload: Int = 2
  216. let metadataStatusInDownload: Int = 3
  217. let metadataStatusDownloading: Int = 4
  218. let metadataStatusDownloadError: Int = 5
  219. let metadataStatusTypeUpload: Int = 6
  220. let metadataStatusWaitUpload: Int = 7
  221. let metadataStatusInUpload: Int = 8
  222. let metadataStatusUploading: Int = 9
  223. let metadataStatusUploadError: Int = 10
  224. let metadataStatusUploadForcedStart: Int = 11
  225. // Notification Center
  226. //
  227. @objc let notificationCenterApplicationDidEnterBackground = "applicationDidEnterBackground"
  228. let notificationCenterApplicationWillEnterForeground = "applicationWillEnterForeground"
  229. let notificationCenterApplicationDidBecomeActive = "applicationDidBecomeActive"
  230. @objc let notificationCenterInitializeMain = "initializeMain"
  231. @objc let notificationCenterChangeTheming = "changeTheming"
  232. let notificationCenterRichdocumentGrabFocus = "richdocumentGrabFocus"
  233. let notificationCenterReloadDataNCShare = "reloadDataNCShare"
  234. let notificationCenterCloseRichWorkspaceWebView = "closeRichWorkspaceWebView"
  235. let notificationCenterUpdateBadgeNumber = "updateBadgeNumber"
  236. @objc let notificationCenterReloadDataSource = "reloadDataSource" // userInfo: ocId?, serverUrl?
  237. let notificationCenterReloadDataSourceNetworkForced = "reloadDataSourceNetworkForced" // userInfo: serverUrl?
  238. let notificationCenterChangeStatusFolderE2EE = "changeStatusFolderE2EE" // userInfo: serverUrl
  239. let notificationCenterDownloadStartFile = "downloadStartFile" // userInfo: ocId
  240. let notificationCenterDownloadedFile = "downloadedFile" // userInfo: ocId, selector, errorCode, errorDescription
  241. let notificationCenterDownloadCancelFile = "downloadCancelFile" // userInfo: ocId
  242. let notificationCenterUploadStartFile = "uploadStartFile" // userInfo: ocId
  243. @objc let notificationCenterUploadedFile = "uploadedFile" // userInfo: ocId, ocIdTemp, errorCode, errorDescription
  244. let notificationCenterUploadCancelFile = "uploadCancelFile" // userInfo: ocId, serverUrl, account
  245. let notificationCenterProgressTask = "progressTask" // userInfo: account, ocId, serverUrl, status, progress, totalBytes, totalBytesExpected
  246. let notificationCenterCreateFolder = "createFolder" // userInfo: ocId
  247. let notificationCenterDeleteFile = "deleteFile" // userInfo: ocId, fileNameView, typeFile, onlyLocal
  248. let notificationCenterRenameFile = "renameFile" // userInfo: ocId, errorCode, errorDescription
  249. let notificationCenterMoveFile = "moveFile" // userInfo: ocId, serverUrlTo
  250. let notificationCenterCopyFile = "copyFile" // userInfo: ocId, serverUrlFrom
  251. let notificationCenterFavoriteFile = "favoriteFile" // userInfo: ocId
  252. let notificationCenterMenuSearchTextPDF = "menuSearchTextPDF"
  253. let notificationCenterMenuDetailClose = "menuDetailClose"
  254. let notificationCenterChangedLocation = "changedLocation"
  255. let notificationStatusAuthorizationChangedLocation = "statusAuthorizationChangedLocation"
  256. }
  257. //let rootView = UIApplication.shared.keyWindow?.rootViewController?.view
  258. //DispatchQueue.main.async
  259. //DispatchQueue.main.asyncAfter(deadline: .now() + 0.1)
  260. //DispatchQueue.global().async
  261. //DispatchQueue.global(qos: .background).async
  262. //#if targetEnvironment(simulator)
  263. //#endif
  264. //dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  265. //dispatch_async(dispatch_get_main_queue(), ^{
  266. //dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.3 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  267. //#if TARGET_OS_SIMULATOR
  268. //#endif