123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430 |
- //
- // NCGlobal.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 22/02/21.
- // Copyright © 2021 Marino Faggiana. All rights reserved.
- //
- // Author Marino Faggiana <marino.faggiana@nextcloud.com>
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- import UIKit
- class NCGlobal: NSObject {
- static let shared = NCGlobal()
- // ENUM
- //
- public enum TypeFilterScanDocument: String {
- case document = "document"
- case original = "original"
- }
- // Directory on Group
- //
- let directoryProviderStorage = "File Provider Storage"
- let appApplicationSupport = "Library/Application Support"
- let appCertificates = "Library/Application Support/Certificates"
- let appDatabaseNextcloud = "Library/Application Support/Nextcloud"
- let appScan = "Library/Application Support/Scan"
- let appUserData = "Library/Application Support/UserData"
- // Service
- //
- let metadataKeyedUnarchiver = "it.twsweb.nextcloud.metadata"
- let refreshTask = "com.nextcloud.refreshTask"
- let processingTask = "com.nextcloud.processingTask"
- // App
- //
- let appName = "files"
- let appScheme = "nextcloud"
- let talkName = "talk-message"
- let spreedName = "spreed"
- let twoFactorNotificatioName = "twofactor_nextcloud_notification"
- // Nextcloud version
- //
- let nextcloudVersion12: Int = 12
- let nextcloudVersion15: Int = 15
- let nextcloudVersion17: Int = 17
- let nextcloudVersion18: Int = 18
- let nextcloudVersion20: Int = 20
- let nextcloudVersion23: Int = 23
- let nextcloudVersion24: Int = 24
- let nextcloudVersion25: Int = 25
- let nextcloudVersion26: Int = 26
- let nextcloudVersion27: Int = 27
- let nextcloudVersion28: Int = 28
- // Nextcloud unsupported
- //
- let nextcloud_unsupported_version: Int = 16
- // Intro selector
- //
- let introLogin: Int = 0
- let introSignup: Int = 1
- // Avatar
- //
- let avatarSize: Int = 128 * Int(UIScreen.main.scale)
- let avatarSizeRounded: Int = 128
- // Preview size
- //
- let size1024: CGSize = CGSize(width: 1024, height: 1024)
- let size512: CGSize = CGSize(width: 512, height: 512)
- let size256: CGSize = CGSize(width: 256, height: 256)
- // Image extension
- let previewExt1024 = ".1024.preview.jpg"
- let previewExt512 = ".512.preview.jpg"
- let previewExt256 = ".256.preview.jpg"
- func getSizeExtension(column: Int) -> String {
- if column == 0 { return previewExt256 }
- let width = UIScreen.main.bounds.width / CGFloat(column)
- switch (width * 4) {
- case 0...384:
- return previewExt256
- case 385...768:
- return previewExt512
- default:
- return previewExt1024
- }
- }
- // E2EE
- //
- let e2eePassphraseTest = "more over television factory tendency independence international intellectual impress interest sentence pony"
- let e2eeVersions = ["1.1", "1.2", "2.0"]
- let e2eeVersionV11 = "1.1"
- let e2eeVersionV12 = "1.2"
- let e2eeVersionV20 = "2.0"
- // CHUNK
- let chunkSizeMBCellular = 10000000
- let chunkSizeMBEthernetOrWiFi = 100000000
- // Video
- //
- let maxHTTPCache: Int64 = 10000000000 // 10 GB
- let fileNameVideoEncoded: String = "video_encoded.mp4"
- // NCViewerProviderContextMenu
- //
- let maxAutoDownload: UInt64 = 50000000 // 50MB
- let maxAutoDownloadCellular: UInt64 = 10000000 // 10MB
- // Layout
- //
- let layoutList = "typeLayoutList"
- let layoutGrid = "typeLayoutGrid"
- let layoutPhotoRatio = "typeLayoutPhotoRatio"
- let layoutPhotoSquare = "typeLayoutPhotoSquare"
- let layoutViewTrash = "LayoutTrash"
- let layoutViewOffline = "LayoutOffline"
- let layoutViewFavorite = "LayoutFavorite"
- let layoutViewFiles = "LayoutFiles"
- let layoutViewTransfers = "LayoutTransfers"
- let layoutViewRecent = "LayoutRecent"
- let layoutViewShares = "LayoutShares"
- let layoutViewShareExtension = "LayoutShareExtension"
- let layoutViewGroupfolders = "LayoutGroupfolders"
- let layoutViewMedia = "LayoutMedia"
- // Button Type in Cell list/grid
- //
- let buttonMoreMore = "more"
- let buttonMoreLock = "moreLock"
- // Standard height sections header/footer
- //
- let heightButtonsView: CGFloat = 50
- let heightHeaderTransfer: CGFloat = 50
- let heightSection: CGFloat = 30
- let heightFooter: CGFloat = 1
- let heightFooterButton: CGFloat = 30
- let endHeightFooter: CGFloat = 85
- // Text - OnlyOffice - Collabora - QuickLook
- //
- let editorText = "text"
- let editorOnlyoffice = "onlyoffice"
- let editorCollabora = "collabora"
- let editorQuickLook = "quicklook"
- let onlyofficeDocx = "onlyoffice_docx"
- let onlyofficeXlsx = "onlyoffice_xlsx"
- let onlyofficePptx = "onlyoffice_pptx"
- // Template
- //
- let templateDocument = "document"
- let templateSpreadsheet = "spreadsheet"
- let templatePresentation = "presentation"
- // Rich Workspace
- //
- let fileNameRichWorkspace = "Readme.md"
- // ContentPresenter
- //
- let dismissAfterSecond: TimeInterval = 4
- let dismissAfterSecondLong: TimeInterval = 7
- // Error
- //
- let errorRequestExplicityCancelled: Int = 15
- let errorNotModified: Int = 304
- let errorBadRequest: Int = 400
- let errorUnauthorized401: Int = 401
- let errorForbidden: Int = 403
- let errorResourceNotFound: Int = 404
- let errorMethodNotSupported: Int = 405
- let errorConflict: Int = 409
- let errorPreconditionFailed: Int = 412
- let errorUnsupportedMediaType: Int = 415
- let errorInternalServerError: Int = 500
- let errorMaintenance: Int = 503
- let errorQuota: Int = 507
- let errorUnauthorized997: Int = 997
- let errorExplicitlyCancelled: Int = -999
- let errorConnectionLost: Int = -1005
- let errorNetworkNotAvailable: Int = -1009
- let errorBadServerResponse: Int = -1011
- let errorInternalError: Int = -99999
- let errorFileNotSaved: Int = -99998
- let errorOffline: Int = -99997
- let errorCharactersForbidden: Int = -99996
- let errorCreationFile: Int = -99995
- let errorReadFile: Int = -99994
- let errorUnauthorizedFilesPasscode: Int = -99993
- let errorDisableFilesApp: Int = -99992
- let errorUnexpectedResponseFromDB: Int = -99991
- // E2EE
- let errorE2EENotEnabled: Int = -98000
- let errorE2EEVersion: Int = -98001
- let errorE2EEKeyChecksums: Int = -98002
- let errorE2EEKeyEncodeMetadata: Int = -98003
- let errorE2EEKeyDecodeMetadata: Int = -98004
- let errorE2EEKeyVerifySignature: Int = -98005
- let errorE2EEKeyCiphertext: Int = -98006
- let errorE2EEKeyFiledropCiphertext: Int = -98007
- let errorE2EEJSon: Int = -98008
- let errorE2EELock: Int = -98009
- let errorE2EEEncryptFile: Int = -98010
- let errorE2EEEncryptPayloadFile: Int = -98011
- let errorE2EECounter: Int = -98012
- let errorE2EEGenerateKey: Int = -98013
- let errorE2EEEncodedKey: Int = -98014
- let errorE2EENoUserFound: Int = -98015
- let errorE2EEUploadInProgress: Int = -98016
- // Selector
- //
- let selectorDownloadFile = "downloadFile"
- let selectorReadFile = "readFile"
- let selectorListingFavorite = "listingFavorite"
- let selectorLoadFileView = "loadFileView"
- let selectorLoadFileQuickLook = "loadFileQuickLook"
- let selectorOpenIn = "openIn"
- let selectorUploadAutoUpload = "uploadAutoUpload"
- let selectorUploadAutoUploadAll = "uploadAutoUploadAll"
- let selectorUploadFile = "uploadFile"
- let selectorUploadFileNODelete = "UploadFileNODelete"
- let selectorUploadFileShareExtension = "uploadFileShareExtension"
- let selectorSaveAlbum = "saveAlbum"
- let selectorSaveAsScan = "saveAsScan"
- let selectorOpenDetail = "openDetail"
- let selectorSynchronizationOffline = "synchronizationOffline"
- // Metadata : Status
- //
- // 0 normal
- // ± 1 wait download/upload
- // ± 2 downloading/uploading
- // ± 3 error
- //
- let metadataStatusNormal: Int = 0
- let metadataStatusWaitDownload: Int = -1
- let metadataStatusDownloading: Int = -2
- let metadataStatusDownloadError: Int = -3
- let metadataStatusWaitUpload: Int = 1
- let metadataStatusUploading: Int = 2
- let metadataStatusUploadError: Int = 3
- let metadataStatusWaitCreateFolder: Int = 10
- let metadataStatusWaitDelete: Int = 11
- let metadataStatusWaitRename: Int = 12
- let metadataStatusWaitFavorite: Int = 13
- let metadataStatusWaitCopy: Int = 14
- let metadataStatusWaitMove: Int = 15
- let metadataStatusInTransfer = [-1, -2, 1, 2]
- let metadataStatusFileDown = [-1, -2, -3]
- let metadataStatusHideInView = [1, 2, 3, 11]
- let metadataStatusHideInFileExtension = [1, 2, 3, 10, 11]
- let metadataStatusObserve = [-1, 1, 10, 11, 12, 13, 14, 15]
- let metadataStatusWaitWebDav = [10, 11, 12, 13, 14, 15]
- // Auto upload subfolder granularity
- //
- let subfolderGranularityDaily = 2
- let subfolderGranularityMonthly = 1
- let subfolderGranularityYearly = 0
- // Notification Center
- //
- let notificationCenterChangeUser = "changeUser" // userInfo: account, controller
- let notificationCenterChangeTheming = "changeTheming" // userInfo: account
- let notificationCenterRichdocumentGrabFocus = "richdocumentGrabFocus"
- let notificationCenterReloadDataNCShare = "reloadDataNCShare"
- let notificationCenterCloseRichWorkspaceWebView = "closeRichWorkspaceWebView"
- let notificationCenterReloadAvatar = "reloadAvatar"
- let notificationCenterClearCache = "clearCache"
- let notificationCenterChangeLayout = "changeLayout" // userInfo: account, serverUrl, layoutForView
- let notificationCenterReloadDataSource = "reloadDataSource" // userInfo: serverUrl?, clearDataSource
- let notificationCenterGetServerData = "getServerData" // userInfo: serverUrl?
- let notificationCenterChangeStatusFolderE2EE = "changeStatusFolderE2EE" // userInfo: serverUrl
- let notificationCenterDownloadStartFile = "downloadStartFile" // userInfo: ocId, ocIdTransfer, session, serverUrl, account
- let notificationCenterDownloadedFile = "downloadedFile" // userInfo: ocId, ocIdTransfer, session, session, serverUrl, account, selector, error
- let notificationCenterDownloadCancelFile = "downloadCancelFile" // userInfo: ocId, ocIdTransfer, session, serverUrl, account
- let notificationCenterUploadStartFile = "uploadStartFile" // userInfo: ocId, ocIdTransfer, session, serverUrl, account, fileName, sessionSelector
- let notificationCenterUploadedFile = "uploadedFile" // userInfo: ocId, ocIdTransfer, session, serverUrl, account, fileName, ocIdTransfer, error
- let notificationCenterUploadedLivePhoto = "uploadedLivePhoto" // userInfo: ocId, ocIdTransfer, session, serverUrl, account, fileName, ocIdTransfer, error
- let notificationCenterUploadCancelFile = "uploadCancelFile" // userInfo: ocId, ocIdTransfer, session, serverUrl, account
- let notificationCenterProgressTask = "progressTask" // userInfo: account, ocId, ocIdTransfer, session, serverUrl, status, chunk, e2eEncrypted, progress, totalBytes, totalBytesExpected
- let notificationCenterUpdateBadgeNumber = "updateBadgeNumber" // userInfo: counterDownload, counterUpload
- let notificationCenterCreateFolder = "createFolder" // userInfo: ocId, serverUrl, account, withPush, sceneIdentifier
- let notificationCenterDeleteFile = "deleteFile" // userInfo: [ocId], error
- let notificationCenterCopyMoveFile = "copyMoveFile" // userInfo: [ocId] serverUrl, account, dragdrop, type (copy, move)
- let notificationCenterRenameFile = "renameFile" // userInfo: serverUrl, account, error
- let notificationCenterFavoriteFile = "favoriteFile" // userInfo: ocId, serverUrl
- let notificationCenterFileExists = "fileExists" // userInfo: ocId, fileExists
- let notificationCenterMenuSearchTextPDF = "menuSearchTextPDF"
- let notificationCenterMenuGotToPageInPDF = "menuGotToPageInPDF"
- let notificationCenterOpenMediaDetail = "openMediaDetail" // userInfo: ocId
- let notificationCenterDismissScanDocument = "dismissScanDocument"
- let notificationCenterDismissUploadAssets = "dismissUploadAssets"
- let notificationCenterEnableSwipeGesture = "enableSwipeGesture"
- let notificationCenterDisableSwipeGesture = "disableSwipeGesture"
- let notificationCenterPlayerIsPlaying = "playerIsPlaying"
- let notificationCenterPlayerStoppedPlaying = "playerStoppedPlaying"
- // TIP
- //
- let tipNCViewerPDFThumbnail = "tipncviewerpdfthumbnail"
- let tipNCCollectionViewCommonAccountRequest = "tipnccollectionviewcommonaccountrequest"
- let tipNCScanAddImage = "tipncscanaddimage"
- let tipNCViewerMediaDetailView = "tipncviewermediadetailview"
- // ACTION
- //
- let actionNoAction = "no-action"
- let actionUploadAsset = "upload-asset"
- let actionScanDocument = "add-scan-document"
- let actionTextDocument = "create-text-document"
- let actionVoiceMemo = "create-voice-memo"
- // WIDGET ACTION
- //
- let widgetActionNoAction = "nextcloud://open-action?action=no-action"
- let widgetActionUploadAsset = "nextcloud://open-action?action=upload-asset"
- let widgetActionScanDocument = "nextcloud://open-action?action=add-scan-document"
- let widgetActionTextDocument = "nextcloud://open-action?action=create-text-document"
- let widgetActionVoiceMemo = "nextcloud://open-action?action=create-voice-memo"
- // APPCONFIG
- //
- let configuration_brand = "brand"
- let configuration_serverUrl = "serverUrl"
- let configuration_username = "username"
- let configuration_password = "password"
- let configuration_apppassword = "apppassword"
- let configuration_disable_intro = "disable_intro"
- let configuration_disable_multiaccount = "disable_multiaccount"
- let configuration_disable_crash_service = "disable_crash_service"
- let configuration_disable_log = "disable_log"
- let configuration_disable_more_external_site = "disable_more_external_site"
- let configuration_disable_openin_file = "disable_openin_file"
- // MORE NEXTCLOUD APPS
- //
- let talkSchemeUrl = "nextcloudtalk://"
- let notesSchemeUrl = "nextcloudnotes://"
- let talkAppStoreUrl = "https://apps.apple.com/in/app/nextcloud-talk/id1296825574"
- let notesAppStoreUrl = "https://apps.apple.com/in/app/nextcloud-notes/id813973264"
- let moreAppsUrl = "itms-apps://search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&term=nextcloud"
- // SNAPSHOT PREVIEW
- //
- let defaultSnapshotConfiguration = "DefaultPreviewConfiguration"
- // FORBIDDEN CHARACTERS
- //
- // TODO: Remove this
- let forbiddenCharacters = ["/", "\\", ":", "\"", "|", "?", "*", "<", ">"]
- // DIAGNOSTICS CLIENTS
- //
- let diagnosticIssueSyncConflicts = "sync_conflicts"
- let diagnosticIssueProblems = "problems"
- let diagnosticIssueVirusDetected = "virus_detected"
- let diagnosticIssueE2eeErrors = "e2ee_errors"
- let diagnosticProblemsForbidden = "CHARACTERS_FORBIDDEN"
- let diagnosticProblemsBadResponse = "BAD_SERVER_RESPONSE"
- let diagnosticProblemsUploadServerError = "UploadError.SERVER_ERROR"
- // MEDIA LAYOUT
- //
- let mediaLayoutRatio = "mediaLayoutRatio"
- let mediaLayoutSquare = "mediaLayoutSquare"
- // DRAG & DROP
- //
- let metadataOcIdDataRepresentation = "text/com.nextcloud.ocId"
- // GROUP AMIN
- //
- let groupAdmin = "admin"
- // DATA TASK DESCRIPTION
- //
- let taskDescriptionRetrievesProperties = "retrievesProperties"
- let taskDescriptionSynchronization = "synchronization"
- let taskDescriptionDeleteFileOrFolder = "deleteFileOrFolder"
- }
|