123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857 |
- //
- // NCUtility.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 25/06/18.
- // Copyright © 2018 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
- import NextcloudKit
- import PDFKit
- import Accelerate
- import CoreMedia
- import Photos
- import Alamofire
- #if !EXTENSION
- import SVGKit
- #endif
- class NCUtility: NSObject {
- @objc static let shared: NCUtility = {
- let instance = NCUtility()
- return instance
- }()
- #if !EXTENSION
- func convertSVGtoPNGWriteToUserData(svgUrlString: String, fileName: String? = nil, width: CGFloat? = nil, rewrite: Bool, account: String, id: Int? = nil, completion: @escaping (_ imageNamePath: String?, _ id: Int?) -> Void) {
- var fileNamePNG = ""
- guard let svgUrlString = svgUrlString.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed),
- let iconURL = URL(string: svgUrlString) else {
- return completion(nil, id)
- }
- if let fileName = fileName {
- fileNamePNG = fileName
- } else {
- fileNamePNG = iconURL.deletingPathExtension().lastPathComponent + ".png"
- }
- let imageNamePath = CCUtility.getDirectoryUserData() + "/" + fileNamePNG
- if !FileManager.default.fileExists(atPath: imageNamePath) || rewrite == true {
- NextcloudKit.shared.downloadContent(serverUrl: iconURL.absoluteString) { _, data, error in
- if error == .success && data != nil {
- if let image = UIImage(data: data!) {
- var newImage: UIImage = image
- if width != nil {
- let ratio = image.size.height / image.size.width
- let newSize = CGSize(width: width!, height: width! * ratio)
- let renderFormat = UIGraphicsImageRendererFormat.default()
- renderFormat.opaque = false
- let renderer = UIGraphicsImageRenderer(size: CGSize(width: newSize.width, height: newSize.height), format: renderFormat)
- newImage = renderer.image {
- _ in
- image.draw(in: CGRect(x: 0, y: 0, width: newSize.width, height: newSize.height))
- }
- }
- guard let pngImageData = newImage.pngData() else {
- return completion(nil, id)
- }
- try? pngImageData.write(to: URL(fileURLWithPath: imageNamePath))
- return completion(imageNamePath, id)
- } else {
- guard let svgImage: SVGKImage = SVGKImage(data: data) else {
- return completion(nil, id)
- }
- if width != nil {
- let scale = svgImage.size.height / svgImage.size.width
- svgImage.size = CGSize(width: width!, height: width! * scale)
- }
- guard let image: UIImage = svgImage.uiImage else {
- return completion(nil, id)
- }
- guard let pngImageData = image.pngData() else {
- return completion(nil, id)
- }
- try? pngImageData.write(to: URL(fileURLWithPath: imageNamePath))
- return completion(imageNamePath, id)
- }
- } else {
- return completion(nil, id)
- }
- }
- } else {
- return completion(imageNamePath, id)
- }
- }
- #endif
- @objc func isSimulatorOrTestFlight() -> Bool {
- guard let path = Bundle.main.appStoreReceiptURL?.path else {
- return false
- }
- return path.contains("CoreSimulator") || path.contains("sandboxReceipt")
- }
- @objc func isSimulator() -> Bool {
- guard let path = Bundle.main.appStoreReceiptURL?.path else {
- return false
- }
- return path.contains("CoreSimulator")
- }
- @objc func isRichDocument(_ metadata: tableMetadata) -> Bool {
- guard let mimeType = CCUtility.getMimeType(metadata.fileNameView) else {
- return false
- }
- // contentype
- for richdocumentMimetype: String in NCGlobal.shared.capabilityRichdocumentsMimetypes {
- if richdocumentMimetype.contains(metadata.contentType) || metadata.contentType == "text/plain" {
- return true
- }
- }
- // mimetype
- if NCGlobal.shared.capabilityRichdocumentsMimetypes.count > 0 && mimeType.components(separatedBy: ".").count > 2 {
- let mimeTypeArray = mimeType.components(separatedBy: ".")
- let mimeType = mimeTypeArray[mimeTypeArray.count - 2] + "." + mimeTypeArray[mimeTypeArray.count - 1]
- for richdocumentMimetype: String in NCGlobal.shared.capabilityRichdocumentsMimetypes {
- if richdocumentMimetype.contains(mimeType) {
- return true
- }
- }
- }
- return false
- }
- @objc func isDirectEditing(account: String, contentType: String) -> [String] {
- var editor: [String] = []
- guard let results = NCManageDatabase.shared.getDirectEditingEditors(account: account) else {
- return editor
- }
- for result: tableDirectEditingEditors in results {
- for mimetype in result.mimetypes {
- if mimetype == contentType {
- editor.append(result.editor)
- }
- // HARDCODE
- // https://github.com/nextcloud/text/issues/913
- if mimetype == "text/markdown" && contentType == "text/x-markdown" {
- editor.append(result.editor)
- }
- if contentType == "text/html" {
- editor.append(result.editor)
- }
- }
- for mimetype in result.optionalMimetypes {
- if mimetype == contentType {
- editor.append(result.editor)
- }
- }
- }
- // HARDCODE
- // if editor.count == 0 {
- // editor.append(NCGlobal.shared.editorText)
- // }
- return Array(Set(editor))
- }
- #if !EXTENSION
- @objc func removeAllSettings() {
- URLCache.shared.memoryCapacity = 0
- URLCache.shared.diskCapacity = 0
- NCManageDatabase.shared.clearDatabase(account: nil, removeAccount: true)
- CCUtility.removeGroupDirectoryProviderStorage()
- CCUtility.removeGroupLibraryDirectory()
- CCUtility.removeDocumentsDirectory()
- CCUtility.removeTemporaryDirectory()
- CCUtility.createDirectoryStandard()
- CCUtility.deleteAllChainStore()
- }
- #endif
- @objc func permissionsContainsString(_ metadataPermissions: String, permissions: String) -> Bool {
- for char in permissions {
- if metadataPermissions.contains(char) == false {
- return false
- }
- }
- return true
- }
- @objc func getCustomUserAgentNCText() -> String {
- if UIDevice.current.userInterfaceIdiom == .phone {
- // NOTE: Hardcoded (May 2022)
- // Tested for iPhone SE (1st), iOS 12 iPhone Pro Max, iOS 15.4
- // 605.1.15 = WebKit build version
- // 15E148 = frozen iOS build number according to: https://chromestatus.com/feature/4558585463832576
- return userAgent + " " + "AppleWebKit/605.1.15 Mobile/15E148"
- } else {
- return userAgent
- }
- }
- @objc func getCustomUserAgentOnlyOffice() -> String {
- let appVersion = Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString")!
- if UIDevice.current.userInterfaceIdiom == .pad {
- return "Mozilla/5.0 (iPad) Nextcloud-iOS/\(appVersion)"
- } else {
- return "Mozilla/5.0 (iPhone) Mobile Nextcloud-iOS/\(appVersion)"
- }
- }
- @objc func pdfThumbnail(url: URL, width: CGFloat = 240) -> UIImage? {
- guard let data = try? Data(contentsOf: url), let page = PDFDocument(data: data)?.page(at: 0) else {
- return nil
- }
- let pageSize = page.bounds(for: .mediaBox)
- let pdfScale = width / pageSize.width
- // Apply if you're displaying the thumbnail on screen
- let scale = UIScreen.main.scale * pdfScale
- let screenSize = CGSize(width: pageSize.width * scale, height: pageSize.height * scale)
- return page.thumbnail(of: screenSize, for: .mediaBox)
- }
- @objc func isQuickLookDisplayable(metadata: tableMetadata) -> Bool {
- return true
- }
- @objc func ocIdToFileId(ocId: String?) -> String? {
- guard let ocId = ocId else { return nil }
- let items = ocId.components(separatedBy: "oc")
- if items.count < 2 { return nil }
- guard let intFileId = Int(items[0]) else { return nil }
- return String(intFileId)
- }
- func getUserStatus(userIcon: String?, userStatus: String?, userMessage: String?) -> (onlineStatus: UIImage?, statusMessage: String, descriptionMessage: String) {
- var onlineStatus: UIImage?
- var statusMessage: String = ""
- var descriptionMessage: String = ""
- var messageUserDefined: String = ""
- if userStatus?.lowercased() == "online" {
- onlineStatus = UIImage(named: "circle_fill")!.image(color: UIColor(red: 103.0 / 255.0, green: 176.0 / 255.0, blue: 134.0 / 255.0, alpha: 1.0), size: 50)
- messageUserDefined = NSLocalizedString("_online_", comment: "")
- }
- if userStatus?.lowercased() == "away" {
- onlineStatus = UIImage(named: "userStatusAway")!.image(color: UIColor(red: 233.0 / 255.0, green: 166.0 / 255.0, blue: 75.0 / 255.0, alpha: 1.0), size: 50)
- messageUserDefined = NSLocalizedString("_away_", comment: "")
- }
- if userStatus?.lowercased() == "dnd" {
- onlineStatus = UIImage(named: "userStatusDnd")?.resizeImage(size: CGSize(width: 100, height: 100), isAspectRation: false)
- messageUserDefined = NSLocalizedString("_dnd_", comment: "")
- descriptionMessage = NSLocalizedString("_dnd_description_", comment: "")
- }
- if userStatus?.lowercased() == "offline" || userStatus?.lowercased() == "invisible" {
- onlineStatus = UIImage(named: "userStatusOffline")!.image(color: .black, size: 50)
- messageUserDefined = NSLocalizedString("_invisible_", comment: "")
- descriptionMessage = NSLocalizedString("_invisible_description_", comment: "")
- }
- if let userIcon = userIcon {
- statusMessage = userIcon + " "
- }
- if let userMessage = userMessage {
- statusMessage += userMessage
- }
- statusMessage = statusMessage.trimmingCharacters(in: .whitespaces)
- if statusMessage == "" {
- statusMessage = messageUserDefined
- }
- return(onlineStatus, statusMessage, descriptionMessage)
- }
- func imageFromVideo(url: URL, at time: TimeInterval) -> UIImage? {
- let asset = AVURLAsset(url: url)
- let assetIG = AVAssetImageGenerator(asset: asset)
- assetIG.appliesPreferredTrackTransform = true
- assetIG.apertureMode = AVAssetImageGenerator.ApertureMode.encodedPixels
- let cmTime = CMTime(seconds: time, preferredTimescale: 60)
- let thumbnailImageRef: CGImage
- do {
- thumbnailImageRef = try assetIG.copyCGImage(at: cmTime, actualTime: nil)
- } catch let error {
- print("Error: \(error)")
- return nil
- }
- return UIImage(cgImage: thumbnailImageRef)
- }
- func imageFromVideo(url: URL, at time: TimeInterval, completion: @escaping (UIImage?) -> Void) {
- DispatchQueue.global().async {
- let asset = AVURLAsset(url: url)
- let assetIG = AVAssetImageGenerator(asset: asset)
- assetIG.appliesPreferredTrackTransform = true
- assetIG.apertureMode = AVAssetImageGenerator.ApertureMode.encodedPixels
- let cmTime = CMTime(seconds: time, preferredTimescale: 60)
- let thumbnailImageRef: CGImage
- do {
- thumbnailImageRef = try assetIG.copyCGImage(at: cmTime, actualTime: nil)
- } catch let error {
- print("Error: \(error)")
- return completion(nil)
- }
- DispatchQueue.main.async {
- completion(UIImage(cgImage: thumbnailImageRef))
- }
- }
- }
- func createImageFrom(fileNameView: String, ocId: String, etag: String, classFile: String) {
- var originalImage, scaleImagePreview, scaleImageIcon: UIImage?
- let fileNamePath = CCUtility.getDirectoryProviderStorageOcId(ocId, fileNameView: fileNameView)!
- let fileNamePathPreview = CCUtility.getDirectoryProviderStoragePreviewOcId(ocId, etag: etag)!
- let fileNamePathIcon = CCUtility.getDirectoryProviderStorageIconOcId(ocId, etag: etag)!
- if CCUtility.fileProviderStorageSize(ocId, fileNameView: fileNameView) > 0 && FileManager().fileExists(atPath: fileNamePathPreview) && FileManager().fileExists(atPath: fileNamePathIcon) { return }
- if classFile != NKCommon.TypeClassFile.image.rawValue && classFile != NKCommon.TypeClassFile.video.rawValue { return }
- if classFile == NKCommon.TypeClassFile.image.rawValue {
- originalImage = UIImage(contentsOfFile: fileNamePath)
- scaleImagePreview = originalImage?.resizeImage(size: CGSize(width: NCGlobal.shared.sizePreview, height: NCGlobal.shared.sizePreview))
- scaleImageIcon = originalImage?.resizeImage(size: CGSize(width: NCGlobal.shared.sizeIcon, height: NCGlobal.shared.sizeIcon))
- try? scaleImagePreview?.jpegData(compressionQuality: 0.7)?.write(to: URL(fileURLWithPath: fileNamePathPreview))
- try? scaleImageIcon?.jpegData(compressionQuality: 0.7)?.write(to: URL(fileURLWithPath: fileNamePathIcon))
- } else if classFile == NKCommon.TypeClassFile.video.rawValue {
- let videoPath = NSTemporaryDirectory() + "tempvideo.mp4"
- NCUtilityFileSystem.shared.linkItem(atPath: fileNamePath, toPath: videoPath)
- originalImage = imageFromVideo(url: URL(fileURLWithPath: videoPath), at: 0)
- try? originalImage?.jpegData(compressionQuality: 0.7)?.write(to: URL(fileURLWithPath: fileNamePathPreview))
- try? originalImage?.jpegData(compressionQuality: 0.7)?.write(to: URL(fileURLWithPath: fileNamePathIcon))
- }
- }
- @objc func getVersionApp(withBuild: Bool = true) -> String {
- if let dictionary = Bundle.main.infoDictionary {
- if let version = dictionary["CFBundleShortVersionString"], let build = dictionary["CFBundleVersion"] {
- if withBuild {
- return "\(version).\(build)"
- } else {
- return "\(version)"
- }
- }
- }
- return ""
- }
- func loadImage(named imageName: String, color: UIColor = UIColor.systemGray, size: CGFloat = 50, symbolConfiguration: Any? = nil, renderingMode: UIImage.RenderingMode = .alwaysOriginal) -> UIImage {
- var image: UIImage?
- // see https://stackoverflow.com/questions/71764255
- let sfSymbolName = imageName.replacingOccurrences(of: "_", with: ".")
- if let symbolConfiguration = symbolConfiguration {
- image = UIImage(systemName: sfSymbolName, withConfiguration: symbolConfiguration as? UIImage.Configuration)?.withTintColor(color, renderingMode: renderingMode)
- } else {
- image = UIImage(systemName: sfSymbolName)?.withTintColor(color, renderingMode: renderingMode)
- }
- if image == nil {
- image = UIImage(named: imageName)?.image(color: color, size: size)
- }
- if let image = image {
- return image
- }
- return UIImage(named: "file")!.image(color: color, size: size)
- }
- @objc func loadUserImage(for user: String, displayName: String?, userBaseUrl: NCUserBaseUrl) -> UIImage {
- let fileName = userBaseUrl.userBaseUrl + "-" + user + ".png"
- let localFilePath = String(CCUtility.getDirectoryUserData()) + "/" + fileName
- if let localImage = UIImage(contentsOfFile: localFilePath) {
- return createAvatar(image: localImage, size: 30)
- } else if let loadedAvatar = NCManageDatabase.shared.getImageAvatarLoaded(fileName: fileName) {
- return loadedAvatar
- } else if let displayName = displayName, !displayName.isEmpty, let avatarImg = createAvatar(displayName: displayName, size: 30) {
- return avatarImg
- } else { return getDefaultUserIcon() }
- }
- func getDefaultUserIcon() -> UIImage {
- let config = UIImage.SymbolConfiguration(pointSize: 30)
- return NCUtility.shared.loadImage(named: "person.crop.circle", symbolConfiguration: config)
- }
- @objc func createAvatar(image: UIImage, size: CGFloat) -> UIImage {
- var avatarImage = image
- let rect = CGRect(x: 0, y: 0, width: size, height: size)
- UIGraphicsBeginImageContextWithOptions(rect.size, false, 3.0)
- UIBezierPath(roundedRect: rect, cornerRadius: rect.size.height).addClip()
- avatarImage.draw(in: rect)
- avatarImage = UIGraphicsGetImageFromCurrentImageContext() ?? image
- UIGraphicsEndImageContext()
- return avatarImage
- }
- func createAvatar(displayName: String, size: CGFloat) -> UIImage? {
- guard let initials = displayName.uppercaseInitials else {
- return nil
- }
- let userColor = NCGlobal.shared.usernameToColor(displayName)
- let rect = CGRect(x: 0, y: 0, width: size, height: size)
- var avatarImage: UIImage?
- UIGraphicsBeginImageContextWithOptions(rect.size, false, 3.0)
- let context = UIGraphicsGetCurrentContext()
- UIBezierPath(roundedRect: rect, cornerRadius: rect.size.height).addClip()
- context?.setFillColor(userColor)
- context?.fill(rect)
- let textStyle = NSMutableParagraphStyle()
- textStyle.alignment = NSTextAlignment.center
- let lineHeight = UIFont.systemFont(ofSize: UIFont.systemFontSize).pointSize
- NSString(string: initials)
- .draw(
- in: CGRect(x: 0, y: (size - lineHeight) / 2, width: size, height: lineHeight),
- withAttributes: [NSAttributedString.Key.paragraphStyle: textStyle])
- avatarImage = UIGraphicsGetImageFromCurrentImageContext()
- UIGraphicsEndImageContext()
- return avatarImage
- }
- /*
- Facebook's comparison algorithm:
- */
- func compare(tolerance: Float, expected: Data, observed: Data) throws -> Bool {
- enum customError: Error {
- case unableToGetUIImageFromData
- case unableToGetCGImageFromData
- case unableToGetColorSpaceFromCGImage
- case imagesHasDifferentSizes
- case unableToInitializeContext
- }
- guard let expectedUIImage = UIImage(data: expected), let observedUIImage = UIImage(data: observed) else {
- throw customError.unableToGetUIImageFromData
- }
- guard let expectedCGImage = expectedUIImage.cgImage, let observedCGImage = observedUIImage.cgImage else {
- throw customError.unableToGetCGImageFromData
- }
- guard let expectedColorSpace = expectedCGImage.colorSpace, let observedColorSpace = observedCGImage.colorSpace else {
- throw customError.unableToGetColorSpaceFromCGImage
- }
- if expectedCGImage.width != observedCGImage.width || expectedCGImage.height != observedCGImage.height {
- throw customError.imagesHasDifferentSizes
- }
- let imageSize = CGSize(width: expectedCGImage.width, height: expectedCGImage.height)
- let numberOfPixels = Int(imageSize.width * imageSize.height)
- // Checking that our `UInt32` buffer has same number of bytes as image has.
- let bytesPerRow = min(expectedCGImage.bytesPerRow, observedCGImage.bytesPerRow)
- assert(MemoryLayout<UInt32>.stride == bytesPerRow / Int(imageSize.width))
- let expectedPixels = UnsafeMutablePointer<UInt32>.allocate(capacity: numberOfPixels)
- let observedPixels = UnsafeMutablePointer<UInt32>.allocate(capacity: numberOfPixels)
- let expectedPixelsRaw = UnsafeMutableRawPointer(expectedPixels)
- let observedPixelsRaw = UnsafeMutableRawPointer(observedPixels)
- let bitmapInfo = CGBitmapInfo(rawValue: CGImageAlphaInfo.premultipliedLast.rawValue)
- guard let expectedContext = CGContext(data: expectedPixelsRaw, width: Int(imageSize.width), height: Int(imageSize.height),
- bitsPerComponent: expectedCGImage.bitsPerComponent, bytesPerRow: bytesPerRow,
- space: expectedColorSpace, bitmapInfo: bitmapInfo.rawValue) else {
- expectedPixels.deallocate()
- observedPixels.deallocate()
- throw customError.unableToInitializeContext
- }
- guard let observedContext = CGContext(data: observedPixelsRaw, width: Int(imageSize.width), height: Int(imageSize.height),
- bitsPerComponent: observedCGImage.bitsPerComponent, bytesPerRow: bytesPerRow,
- space: observedColorSpace, bitmapInfo: bitmapInfo.rawValue) else {
- expectedPixels.deallocate()
- observedPixels.deallocate()
- throw customError.unableToInitializeContext
- }
- expectedContext.draw(expectedCGImage, in: CGRect(origin: .zero, size: imageSize))
- observedContext.draw(observedCGImage, in: CGRect(origin: .zero, size: imageSize))
- let expectedBuffer = UnsafeBufferPointer(start: expectedPixels, count: numberOfPixels)
- let observedBuffer = UnsafeBufferPointer(start: observedPixels, count: numberOfPixels)
- var isEqual = true
- if tolerance == 0 {
- isEqual = expectedBuffer.elementsEqual(observedBuffer)
- } else {
- // Go through each pixel in turn and see if it is different
- var numDiffPixels = 0
- for pixel in 0 ..< numberOfPixels where expectedBuffer[pixel] != observedBuffer[pixel] {
- // If this pixel is different, increment the pixel diff count and see if we have hit our limit.
- numDiffPixels += 1
- let percentage = 100 * Float(numDiffPixels) / Float(numberOfPixels)
- if percentage > tolerance {
- isEqual = false
- break
- }
- }
- }
- expectedPixels.deallocate()
- observedPixels.deallocate()
- return isEqual
- }
- func stringFromTime(_ time: CMTime) -> String {
- let interval = Int(CMTimeGetSeconds(time))
- let seconds = interval % 60
- let minutes = (interval / 60) % 60
- let hours = (interval / 3600)
- if hours > 0 {
- return String(format: "%02d:%02d:%02d", hours, minutes, seconds)
- } else {
- return String(format: "%02d:%02d", minutes, seconds)
- }
- }
- func colorNavigationController(_ navigationController: UINavigationController?, backgroundColor: UIColor, titleColor: UIColor, tintColor: UIColor?, withoutShadow: Bool) {
- let appearance = UINavigationBarAppearance()
- appearance.titleTextAttributes = [.foregroundColor: titleColor]
- appearance.largeTitleTextAttributes = [.foregroundColor: titleColor]
- if withoutShadow {
- appearance.shadowColor = .clear
- appearance.shadowImage = UIImage()
- }
- if let tintColor = tintColor {
- navigationController?.navigationBar.tintColor = tintColor
- }
- navigationController?.view.backgroundColor = backgroundColor
- navigationController?.navigationBar.barTintColor = titleColor
- navigationController?.navigationBar.standardAppearance = appearance
- navigationController?.navigationBar.compactAppearance = appearance
- navigationController?.navigationBar.scrollEdgeAppearance = appearance
- }
- func getEncondingDataType(data: Data) -> String.Encoding? {
- if let _ = String(data: data, encoding: .utf8) {
- return .utf8
- }
- if let _ = String(data: data, encoding: .ascii) {
- return .ascii
- }
- if let _ = String(data: data, encoding: .isoLatin1) {
- return .isoLatin1
- }
- if let _ = String(data: data, encoding: .isoLatin2) {
- return .isoLatin2
- }
- if let _ = String(data: data, encoding: .windowsCP1250) {
- return .windowsCP1250
- }
- if let _ = String(data: data, encoding: .windowsCP1251) {
- return .windowsCP1251
- }
- if let _ = String(data: data, encoding: .windowsCP1252) {
- return .windowsCP1252
- }
- if let _ = String(data: data, encoding: .windowsCP1253) {
- return .windowsCP1253
- }
- if let _ = String(data: data, encoding: .windowsCP1254) {
- return .windowsCP1254
- }
- if let _ = String(data: data, encoding: .macOSRoman) {
- return .macOSRoman
- }
- if let _ = String(data: data, encoding: .japaneseEUC) {
- return .japaneseEUC
- }
- if let _ = String(data: data, encoding: .nextstep) {
- return .nextstep
- }
- if let _ = String(data: data, encoding: .nonLossyASCII) {
- return .nonLossyASCII
- }
- if let _ = String(data: data, encoding: .shiftJIS) {
- return .shiftJIS
- }
- if let _ = String(data: data, encoding: .symbol) {
- return .symbol
- }
- if let _ = String(data: data, encoding: .unicode) {
- return .unicode
- }
- if let _ = String(data: data, encoding: .utf16) {
- return .utf16
- }
- if let _ = String(data: data, encoding: .utf16BigEndian) {
- return .utf16BigEndian
- }
- if let _ = String(data: data, encoding: .utf16LittleEndian) {
- return .utf16LittleEndian
- }
- if let _ = String(data: data, encoding: .utf32) {
- return .utf32
- }
- if let _ = String(data: data, encoding: .utf32BigEndian) {
- return .utf32BigEndian
- }
- if let _ = String(data: data, encoding: .utf32LittleEndian) {
- return .utf32LittleEndian
- }
- return nil
- }
- func SYSTEM_VERSION_LESS_THAN(version: String) -> Bool {
- return UIDevice.current.systemVersion.compare(version,
- options: NSString.CompareOptions.numeric) == ComparisonResult.orderedAscending
- }
- func getAvatarFromIconUrl(metadata: tableMetadata) -> String? {
- var ownerId: String?
- if metadata.iconUrl.contains("http") && metadata.iconUrl.contains("avatar") {
- let splitIconUrl = metadata.iconUrl.components(separatedBy: "/")
- var found: Bool = false
- for item in splitIconUrl {
- if found {
- ownerId = item
- break
- }
- if item == "avatar" { found = true}
- }
- }
- return ownerId
- }
- // https://stackoverflow.com/questions/25471114/how-to-validate-an-e-mail-address-in-swift
- func isValidEmail(_ email: String) -> Bool {
- let emailRegEx = "[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,64}"
- let emailPred = NSPredicate(format: "SELF MATCHES %@", emailRegEx)
- return emailPred.evaluate(with: email)
- }
- func createFilePreviewImage(ocId: String, etag: String, fileNameView: String, classFile: String, status: Int, createPreviewMedia: Bool) -> UIImage? {
- var imagePreview: UIImage?
- let filePath = CCUtility.getDirectoryProviderStorageOcId(ocId, fileNameView: fileNameView)!
- let iconImagePath = CCUtility.getDirectoryProviderStorageIconOcId(ocId, etag: etag)!
- if FileManager().fileExists(atPath: iconImagePath) {
- imagePreview = UIImage(contentsOfFile: iconImagePath)
- } else if !createPreviewMedia {
- return nil
- } else if createPreviewMedia && status >= NCGlobal.shared.metadataStatusNormal && classFile == NKCommon.TypeClassFile.image.rawValue && FileManager().fileExists(atPath: filePath) {
- if let image = UIImage(contentsOfFile: filePath), let image = image.resizeImage(size: CGSize(width: NCGlobal.shared.sizeIcon, height: NCGlobal.shared.sizeIcon)), let data = image.jpegData(compressionQuality: 0.5) {
- do {
- try data.write(to: URL(fileURLWithPath: iconImagePath), options: .atomic)
- imagePreview = image
- } catch { }
- }
- } else if createPreviewMedia && status >= NCGlobal.shared.metadataStatusNormal && classFile == NKCommon.TypeClassFile.video.rawValue && FileManager().fileExists(atPath: filePath) {
- if let image = NCUtility.shared.imageFromVideo(url: URL(fileURLWithPath: filePath), at: 0), let image = image.resizeImage(size: CGSize(width: NCGlobal.shared.sizeIcon, height: NCGlobal.shared.sizeIcon)), let data = image.jpegData(compressionQuality: 0.5) {
- do {
- try data.write(to: URL(fileURLWithPath: iconImagePath), options: .atomic)
- imagePreview = image
- } catch { }
- }
- }
- return imagePreview
- }
- func isDirectoryE2EE(serverUrl: String, userBase: NCUserBaseUrl) -> Bool {
- return isDirectoryE2EE(account: userBase.account, urlBase: userBase.urlBase, userId: userBase.userId, serverUrl: serverUrl)
- }
- func isDirectoryE2EE(file: NKFile) -> Bool {
- return isDirectoryE2EE(account: file.account, urlBase: file.urlBase, userId: file.userId, serverUrl: file.serverUrl)
- }
- func isDirectoryE2EE(account: String, urlBase: String, userId: String, serverUrl: String) -> Bool {
- if serverUrl == NCUtilityFileSystem.shared.getHomeServer(urlBase: urlBase, userId: userId) || serverUrl == ".." { return false }
- if let directory = NCManageDatabase.shared.getTableDirectory(account: account, serverUrl: serverUrl) {
- return directory.e2eEncrypted
- }
- return false
- }
- func isDirectoryE2EETop(account: String, serverUrl: String) -> Bool {
- guard let serverUrl = serverUrl.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) else { return false }
- if let url = URL(string: serverUrl)?.deletingLastPathComponent(),
- let serverUrl = String(url.absoluteString.dropLast()).removingPercentEncoding {
- if let directory = NCManageDatabase.shared.getTableDirectory(account: account, serverUrl: serverUrl) {
- return !directory.e2eEncrypted
- }
- }
- return true
- }
- func getDirectoryE2EETop(serverUrl: String, account: String) -> tableDirectory? {
- guard var serverUrl = serverUrl.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) else { return nil }
- var top: tableDirectory?
- while let url = URL(string: serverUrl)?.deletingLastPathComponent(),
- let serverUrlencoding = serverUrl.removingPercentEncoding,
- let directory = NCManageDatabase.shared.getTableDirectory(account: account, serverUrl: serverUrlencoding) {
- if directory.e2eEncrypted {
- top = directory
- } else {
- return top
- }
- serverUrl = String(url.absoluteString.dropLast())
- }
- return top
- }
- func createViewImageAndText(image: UIImage, title: String? = nil) -> UIView {
- let imageView = UIImageView()
- let titleView = UIView()
- let label = UILabel()
- if let title = title {
- label.text = title + " "
- } else {
- label.text = " "
- }
- label.sizeToFit()
- label.center = titleView.center
- label.textAlignment = NSTextAlignment.center
- imageView.image = image
- let imageAspect = (imageView.image?.size.width ?? 0) / (imageView.image?.size.height ?? 0)
- let imageX = label.frame.origin.x - label.frame.size.height * imageAspect
- let imageY = label.frame.origin.y
- let imageWidth = label.frame.size.height * imageAspect
- let imageHeight = label.frame.size.height
- if title != nil {
- imageView.frame = CGRect(x: imageX, y: imageY, width: imageWidth, height: imageHeight)
- titleView.addSubview(label)
- } else {
- imageView.frame = CGRect(x: imageX / 2, y: imageY, width: imageWidth, height: imageHeight)
- }
- imageView.contentMode = UIView.ContentMode.scaleAspectFit
- titleView.addSubview(imageView)
- titleView.sizeToFit()
- return titleView
- }
- func getLocation(latitude: Double, longitude: Double, completion: @escaping (String?) -> Void) {
- let geocoder = CLGeocoder()
- let llocation = CLLocation(latitude: latitude, longitude: longitude)
- if let location = NCManageDatabase.shared.getLocationFromLatAndLong(latitude: latitude, longitude: longitude) {
- completion(location)
- } else {
- geocoder.reverseGeocodeLocation(llocation) { placemarks, error in
- if error == nil, let placemark = placemarks?.first {
- let locationComponents: [String] = [placemark.name, placemark.locality, placemark.country]
- .compactMap {$0}
- let location = locationComponents.joined(separator: ", ")
- NCManageDatabase.shared.addGeocoderLocation(location, latitude: latitude, longitude: longitude)
- completion(location)
- }
- }
- }
- }
- }
|