1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675 |
- //
- // StringUtil.swift
- // Runner
- //
- // Created by Yayan Dwi on 20/04/20.
- // Copyright © 2020 The Chromium Authors. All rights reserved.
- //
- import Foundation
- import UIKit
- import SDWebImage
- import ImageIO
- import MobileCoreServices
- import CommonCrypto
- extension Date {
-
- public func currentTimeMillis() -> Int {
- return Int(self.timeIntervalSince1970 * 1000)
- }
-
- func format(dateFormat: String) -> String {
- let formatter = DateFormatter()
- formatter.dateFormat = dateFormat
- return formatter.string(from: self)
- }
-
- var millisecondsSince1970:Int64 {
- return Int64((self.timeIntervalSince1970 * 1000.0).rounded())
- }
-
- public init(milliseconds:Int64) {
- self = Date(timeIntervalSince1970: TimeInterval(milliseconds) / 1000)
- }
- }
- extension String {
-
- func toNormalString() -> String {
- let _source = self.replacingOccurrences(of: "+", with: "%20")
- if var result = _source.removingPercentEncoding {
- result = result.replacingOccurrences(of: "<NL>", with: "\n")
- result = result.replacingOccurrences(of: "<CR>", with: "\r")
- return decrypt(source: result)
- }
- return self
- }
-
- func toStupidString() -> String {
- if var result = self.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) {
- result = result.replacingOccurrences(of: "\n", with: "<NL>")
- result = result.replacingOccurrences(of: "\r", with: "<CR>")
- result = result.replacingOccurrences(of: "+", with: "%2B")
- return result
- }
- return self
- }
-
- private func decrypt(source : String) -> String {
- if let result = source.removingPercentEncoding {
- return result
- }
- return source
- }
-
- public func matches(_ regex: String) -> Bool {
- return self.range(of: regex, options: .regularExpression, range: nil, locale: nil) != nil
- }
-
- }
- extension Int {
-
- func toHex() -> String {
- return String(format: "%02X", self)
- }
-
- }
- extension UIApplication {
- public static var appVersion: String? {
- return Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString") as? String
- }
-
- var rootViewController: UIViewController? {
- return UIApplication.shared.windows.filter {$0.isKeyWindow}.first?.rootViewController
- }
-
- public var visibleViewController: UIViewController? {
- let keyWindow = UIApplication.shared.windows.filter {$0.isKeyWindow}.first
- if var topController = keyWindow?.rootViewController {
- while let presentedViewController = topController.presentedViewController {
- topController = presentedViewController
- }
- return topController
- }
- return nil
- }
- }
- extension UIView {
-
- public func anchor(top: NSLayoutYAxisAnchor? = nil,
- left: NSLayoutXAxisAnchor? = nil,
- bottom: NSLayoutYAxisAnchor? = nil,
- right: NSLayoutXAxisAnchor? = nil,
- paddingTop: CGFloat = 0,
- paddingLeft: CGFloat = 0,
- paddingBottom: CGFloat = 0,
- paddingRight: CGFloat = 0,
- centerX: NSLayoutXAxisAnchor? = nil,
- centerY: NSLayoutYAxisAnchor? = nil,
- width: CGFloat = 0,
- height: CGFloat = 0,
- minHeight: CGFloat = 0,
- maxHeight: CGFloat = 0,
- minWidth: CGFloat = 0,
- maxWidth: CGFloat = 0,
- dynamicLeft: Bool = false,
- dynamicRight: Bool = false) {
-
- translatesAutoresizingMaskIntoConstraints = false
-
- if let top = top {
- topAnchor.constraint(equalTo: top, constant: paddingTop).isActive = true
- }
- if let left = left {
- if dynamicLeft {
- leftAnchor.constraint(greaterThanOrEqualTo: left, constant: paddingLeft).isActive = true
- } else {
- leftAnchor.constraint(equalTo: left, constant: paddingLeft).isActive = true
- }
- }
- if let right = right {
- if dynamicRight {
- leftAnchor.constraint(lessThanOrEqualTo: right, constant: -paddingRight).isActive = true
- } else {
- rightAnchor.constraint(equalTo: right, constant: -paddingRight).isActive = true
- }
- }
- if let bottom = bottom {
- bottomAnchor.constraint(equalTo: bottom, constant: -paddingBottom).isActive = true
- }
- if let centerX = centerX {
- centerXAnchor.constraint(equalTo: centerX).isActive = true
- }
- if let centerY = centerY {
- centerYAnchor.constraint(equalTo: centerY).isActive = true
- }
- if height != 0 || minHeight != 0 || maxHeight != 0 {
- if minHeight != 0 && maxHeight != 0 {
- heightAnchor.constraint(greaterThanOrEqualToConstant: minHeight).isActive = true
- heightAnchor.constraint(lessThanOrEqualToConstant: maxHeight).isActive = true
- } else if minHeight != 0 && maxHeight == 0 {
- heightAnchor.constraint(greaterThanOrEqualToConstant: minHeight).isActive = true
- } else if minHeight == 0 && maxHeight != 0 {
- heightAnchor.constraint(lessThanOrEqualToConstant: maxHeight).isActive = true
- } else {
- heightAnchor.constraint(equalToConstant: height).isActive = true
- }
- }
- if width != 0 || minWidth != 0 || maxWidth != 0 {
- if minWidth != 0 && maxWidth != 0 {
- heightAnchor.constraint(greaterThanOrEqualToConstant: minWidth).isActive = true
- heightAnchor.constraint(lessThanOrEqualToConstant: maxWidth).isActive = true
- } else if minWidth != 0 && maxWidth == 0 {
- heightAnchor.constraint(greaterThanOrEqualToConstant: minWidth).isActive = true
- } else if minWidth == 0 && maxWidth != 0 {
- heightAnchor.constraint(lessThanOrEqualToConstant: maxWidth).isActive = true
- } else {
- widthAnchor.constraint(equalToConstant: width).isActive = true
- }
- }
- }
-
- public func addTopBorder(with color: UIColor?, andWidth borderWidth: CGFloat, view: UIView = UIView()) {
- let border = view
- border.backgroundColor = color
- border.autoresizingMask = [.flexibleWidth, .flexibleBottomMargin]
- border.frame = CGRect(x: 0, y: 0, width: frame.size.width, height: borderWidth)
- addSubview(border)
- }
- public func addBottomBorder(with color: UIColor?, andWidth borderWidth: CGFloat, x: CGFloat = 0, view: UIView = UIView()) {
- let border = view
- border.backgroundColor = color
- border.autoresizingMask = [.flexibleWidth, .flexibleTopMargin]
- border.frame = CGRect(x: x, y: frame.size.height - borderWidth, width: frame.size.width, height: borderWidth)
- addSubview(border)
- }
- public func addLeftBorder(with color: UIColor?, andWidth borderWidth: CGFloat) {
- let border = UIView()
- border.backgroundColor = color
- border.frame = CGRect(x: 0, y: 0, width: borderWidth, height: frame.size.height)
- border.autoresizingMask = [.flexibleHeight, .flexibleRightMargin]
- addSubview(border)
- }
- public func addRightBorder(with color: UIColor?, andWidth borderWidth: CGFloat) {
- let border = UIView()
- border.backgroundColor = color
- border.autoresizingMask = [.flexibleHeight, .flexibleLeftMargin]
- border.frame = CGRect(x: frame.size.width - borderWidth, y: 0, width: borderWidth, height: frame.size.height)
- addSubview(border)
- }
-
- public func resizeImage(image: UIImage, targetSize: CGSize) -> UIImage {
- UIGraphicsBeginImageContextWithOptions(targetSize, false, 0.0);
- image.draw(in: CGRect(x: 0, y: 0, width: targetSize.width, height: targetSize.height))
- let newImage:UIImage = UIGraphicsGetImageFromCurrentImageContext()!
- UIGraphicsEndImageContext()
- return newImage
- }
-
- }
- extension UIViewController {
-
- var previousViewController: UIViewController? {
- guard let navigationController = navigationController else { return nil }
- let count = navigationController.viewControllers.count
- return count < 2 ? nil : navigationController.viewControllers[count - 2]
- }
-
- }
- extension UIImage {
- class func gifImageWithData(_ data: Data) -> UIImage? {
- guard let source = CGImageSourceCreateWithData(data as CFData, nil) else {
- return nil
- }
-
- let frameCount = CGImageSourceGetCount(source)
- var images: [UIImage] = []
-
- for i in 0..<frameCount {
- if let cgImage = CGImageSourceCreateImageAtIndex(source, i, nil) {
- let image = UIImage(cgImage: cgImage)
- images.append(image)
- }
- }
-
- return UIImage.animatedImage(with: images, duration: 0.0)
- }
-
- func gifData() -> Data? {
- guard let cgImages = self.images?.compactMap({ $0.cgImage }) else {
- return nil
- }
- let frameProperties = [kCGImagePropertyGIFDictionary as String: [kCGImagePropertyGIFDelayTime as String: 0.1]] // Adjust delay time if necessary
- let destinationData = NSMutableData()
- guard let destination = CGImageDestinationCreateWithData(destinationData as CFMutableData, kUTTypeGIF, cgImages.count, nil) else {
- return nil
- }
- let framePropertiesPointer = UnsafeMutablePointer<NSDictionary>.allocate(capacity: cgImages.count)
- defer {
- framePropertiesPointer.deallocate()
- }
- for i in 0..<cgImages.count {
- framePropertiesPointer[i] = frameProperties as NSDictionary
- }
- CGImageDestinationSetProperties(destination, [kCGImagePropertyGIFDictionary as String: [kCGImagePropertyGIFLoopCount as String: 0]] as CFDictionary)
- for image in cgImages {
- CGImageDestinationAddImage(destination, image, framePropertiesPointer.pointee)
- }
- guard CGImageDestinationFinalize(destination) else {
- return nil
- }
- return destinationData as Data
- }
-
- public func resize(target: CGSize) -> UIImage {
- // Determine the scale factor that preserves aspect ratio
- let widthRatio = target.width / size.width
- let heightRatio = target.height / size.height
-
- let scaleFactor = min(widthRatio, heightRatio)
-
- // Compute the new image size that preserves aspect ratio
- let scaledImageSize = CGSize(
- width: size.width * scaleFactor,
- height: size.height * scaleFactor
- )
-
- // Draw and return the resized UIImage
- let renderer = UIGraphicsImageRenderer(
- size: scaledImageSize
- )
-
- let scaledImage = renderer.image { _ in
- self.draw(in: CGRect(
- origin: .zero,
- size: scaledImageSize
- ))
- }
-
- return scaledImage
- }
-
- static func imageWithColor(color: UIColor, size: CGSize) -> UIImage? {
- let rect = CGRect(x: 0, y: 0, width: size.width, height: size.height)
- UIGraphicsBeginImageContextWithOptions(size, false, 0)
- color.setFill()
- UIRectFill(rect)
- guard let image: UIImage = UIGraphicsGetImageFromCurrentImageContext() else {
- return nil
- }
- UIGraphicsEndImageContext()
- return image
- }
-
- func mimeType() -> String? {
- guard let imageData = self.pngData() else {
- return nil
- }
- let byteArray = [UInt8](imageData)
-
- if byteArray.starts(with: [0xFF, 0xD8, 0xFF]) {
- return "image/jpeg"
- } else if byteArray.starts(with: [0x89, 0x50, 0x4E, 0x47]) {
- return "image/png"
- } else if byteArray.starts(with: [0x47, 0x49, 0x46, 0x38]) {
- return "image/gif"
- } else if byteArray.starts(with: [0x49, 0x49, 0x2A, 0x00]) || byteArray.starts(with: [0x4D, 0x4D, 0x00, 0x2A]) {
- return "image/tiff"
- }
- return nil
- }
- }
- extension Data {
- func mimeType() -> String? {
- let byteArray = [UInt8](self)
-
- if byteArray.starts(with: [0xFF, 0xD8, 0xFF]) {
- return "image/jpeg"
- } else if byteArray.starts(with: [0x89, 0x50, 0x4E, 0x47]) {
- return "image/png"
- } else if byteArray.starts(with: [0x47, 0x49, 0x46, 0x38]) {
- return "image/gif"
- } else if byteArray.starts(with: [0x49, 0x49, 0x2A, 0x00]) || byteArray.starts(with: [0x4D, 0x4D, 0x00, 0x2A]) {
- return "image/tiff"
- } else if byteArray.starts(with: [0x25, 0x50, 0x44, 0x46]) {
- return "application/pdf"
- } else if byteArray.starts(with: [0x50, 0x4B, 0x03, 0x04]) {
- return "application/zip"
- }
- return nil
- }
- }
- extension UIImage {
-
- var isPortrait: Bool { size.height > size.width }
- var isLandscape: Bool { size.width > size.height }
- var breadth: CGFloat { min(size.width, size.height) }
- var breadthSize: CGSize { .init(width: breadth, height: breadth) }
- var breadthRect: CGRect { .init(origin: .zero, size: breadthSize) }
- public var circleMasked: UIImage? {
- guard let cgImage = cgImage?
- .cropping(to: .init(origin: .init(x: isLandscape ? ((size.width-size.height)/2).rounded(.down) : 0,
- y: isPortrait ? ((size.height-size.width)/2).rounded(.down) : 0),
- size: breadthSize)) else { return nil }
- let format = imageRendererFormat
- format.opaque = false
- return UIGraphicsImageRenderer(size: breadthSize, format: format).image { _ in
- UIBezierPath(ovalIn: breadthRect).addClip()
- UIImage(cgImage: cgImage, scale: format.scale, orientation: imageOrientation)
- .draw(in: .init(origin: .zero, size: breadthSize))
- }
- }
-
- }
- extension NSObject {
-
- private static var urlStore = [String:String]()
- public func getImage(name url: String, placeholderImage: UIImage? = nil, isCircle: Bool = false, tableView: UITableView? = nil, indexPath: IndexPath? = nil, completion: @escaping (Bool, Bool, UIImage?)->()) {
- let tmpAddress = String(format: "%p", unsafeBitCast(self, to: Int.self))
- type(of: self).urlStore[tmpAddress] = url
- if url.isEmpty {
- completion(false, false, placeholderImage)
- return
- }
- do {
- let documentDir = try FileManager.default.url(for: .documentDirectory, in: .userDomainMask, appropriateFor: nil, create: true)
- let file = documentDir.appendingPathComponent(url)
- if FileManager().fileExists(atPath: file.path) {
- let image = UIImage(contentsOfFile: file.path)?.sd_resizedImage(with: CGSize(width: 400, height: 400), scaleMode: .aspectFill)
- completion(true, false, isCircle ? image?.circleMasked : image)
- } else if var tempData = try FileEncryption.shared.readSecure(filename: url) {
- let image = UIImage(data: tempData)?.sd_resizedImage(with: CGSize(width: 400, height: 400), scaleMode: .aspectFill)
- FileEncryption.shared.wipeData(&tempData)
- completion(true, true, isCircle ? image?.circleMasked : image)
- } else {
- completion(false, false, placeholderImage)
- Download().startHTTP(forKey: url) { (name, progress) in
- guard progress == 100 else {
- return
- }
-
- DispatchQueue.main.async {
- if tableView != nil {
- tableView!.beginUpdates()
- tableView!.reloadRows(at: [indexPath!], with: .none)
- tableView!.endUpdates()
- }
- if type(of: self).urlStore[tmpAddress] == name && tableView == nil {
- if FileManager().fileExists(atPath: file.path) {
- let image = UIImage(contentsOfFile: file.path)?.sd_resizedImage(with: CGSize(width: 400, height: 400), scaleMode: .aspectFill)
- completion(true, true, isCircle ? image?.circleMasked : image)
- } else if FileEncryption.shared.isSecureExists(filename: url) {
- do {
- if let imageData = try FileEncryption.shared.readSecure(filename: url) {
- let image = UIImage(data: imageData)?.sd_resizedImage(with: CGSize(width: 400, height: 400), scaleMode: .aspectFill)
- completion(true, true, isCircle ? image?.circleMasked : image)
- }
- } catch {
-
- }
- }
- }
- }
- }
- }
- } catch {
- completion(false, false, placeholderImage)
- Download().startHTTP(forKey: url) { (name, progress) in
- guard progress == 100 else {
- return
- }
-
- DispatchQueue.main.async {
- if tableView != nil {
- tableView!.beginUpdates()
- tableView!.reloadRows(at: [indexPath!], with: .none)
- tableView!.endUpdates()
- }
- }
- }
- }
- }
-
- func loadImage(named: String, placeholderImage: UIImage?, completion: @escaping (UIImage?, Bool) -> ()) {
- guard !named.isEmpty else {
- completion(placeholderImage, true)
- return
- }
- SDWebImageManager.shared.loadImage(with: URL.palioImage(named: named), options: .highPriority, progress: .none) { image, data, error, type, finish, url in
- completion(image, finish)
- }
- }
-
- public func deleteAllRecordDatabase() {
- Database.shared.database?.inTransaction({ fmdb, rollback in
- do {
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "BUDDY", _where: "")
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "GROUPZ", _where: "")
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "MESSAGE", _where: "")
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "GROUPZ_MEMBER", _where: "")
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "DISCUSSION_FORUM", _where: "")
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "POST", _where: "")
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "MESSAGE_STATUS", _where: "")
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "MESSAGE_SUMMARY", _where: "")
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "OUTGOING", _where: "")
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "FOLLOW", _where: "")
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "MESSAGE_FAVORITE", _where: "")
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "LINK_PREVIEW", _where: "")
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "PULL_DB", _where: "")
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "PREFS", _where: "")
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "CALL_CENTER_HISTORY", _where: "")
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "FORM_DATA", _where: "")
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "TASK_PIC", _where: "")
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "TASK_DETAIL", _where: "")
- } catch {
- rollback.pointee = true
- print("Access database error: \(error.localizedDescription)")
- }
- })
- Utils.setFinishInitPrefs(value: false)
- }
-
- }
- extension URL {
-
- static func palioImage(named: String) -> URL? {
- return URL(string: Utils.getURLBase() + "filepalio/image/\(named)")
- }
-
- }
- extension UIColor {
- public static var mainColor: UIColor {
- return renderColor(hex: "#046cfc")
- }
-
- public static var borderTabColor: UIColor {
- return renderColor(hex: "#c4e4f4")
- }
-
- public static var nxColor: UIColor {
- return renderColor(hex: "#04ecfc")
- }
-
- public static var secondaryColor: UIColor {
- return renderColor(hex: "#FAFAFF")
- }
-
- public static var blackDarkMode: UIColor {
- return renderColor(hex: "#262626")
- }
-
- public static var orangeColor: UIColor {
- return renderColor(hex: "#FFA03E")
- }
-
- public static var orangeBNI: UIColor {
- return renderColor(hex: "#EE6600")
- }
-
- public static var greenColor: UIColor {
- return renderColor(hex: "#C7EA46")
- }
-
- public static var whiteBubbleColor: UIColor {
- if UIApplication.shared.visibleViewController?.traitCollection.userInterfaceStyle == .dark {
- return blackDarkMode
- }
- return renderColor(hex: "#F5F5F5")
- }
-
- public static var docColor: UIColor {
- return renderColor(hex: "#798F9A")
- }
-
- public static var mentionColor: UIColor {
- return UIApplication.shared.visibleViewController?.traitCollection.userInterfaceStyle == .dark ? renderColor(hex: "#f6fcae") : renderColor(hex: "#53bdea")
- }
-
- public static var blueBubbleColor: UIColor {
- if UIApplication.shared.visibleViewController?.traitCollection.userInterfaceStyle == .dark {
- return renderColor(hex: "#367dd9")
- }
- return renderColor(hex: "#C5D1E1")
- }
-
- public static var officialColor: UIColor {
- return renderColor(hex: "#4c87ef")
- }
-
- public static var verifiedColor: UIColor {
- return renderColor(hex: "#00b333")
- }
-
- public static var ccColor: UIColor {
- return renderColor(hex: "#FFF1A353")
- }
-
- public static var internalColor: UIColor {
- return renderColor(hex: "#ff0000")
- }
-
- public static var blueTextField: UIColor {
- return renderColor(hex: "#4c92d2")
- }
-
- public class func renderColor(hex: String) -> UIColor {
- var cString:String = hex.trimmingCharacters(in: .whitespacesAndNewlines).uppercased()
- if (cString.hasPrefix("#")) {
- cString.remove(at: cString.startIndex)
- }
- if ((cString.count) != 6) {
- return UIColor.gray
- }
- var rgbValue:UInt64 = 0
- Scanner(string: cString).scanHexInt64(&rgbValue)
- return UIColor(
- red: CGFloat((rgbValue & 0xFF0000) >> 16) / 255.0,
- green: CGFloat((rgbValue & 0x00FF00) >> 8) / 255.0,
- blue: CGFloat(rgbValue & 0x0000FF) / 255.0,
- alpha: CGFloat(1.0)
- )
- }
- }
- extension UIView {
-
- public func circle() {
- layer.cornerRadius = 0.5 * bounds.size.width
- clipsToBounds = true
- }
-
- public func maxCornerRadius() -> CGFloat {
- return (self.frame.width > self.frame.height) ? self.frame.height / 2 : self.frame.width / 2
- }
-
- }
- extension String {
-
- public func localized(uppercased: Bool = false) -> String {
- if let _ : String = SecureUserDefaults.shared.value(forKey: "i18n_language") {} else {
- // we set a default, just in case
- let langDefault = UserDefaults.standard.stringArray(forKey: "AppleLanguages")
- if langDefault![0].contains("id") {
- SecureUserDefaults.shared.set("id", forKey: "i18n_language")
- } else {
- SecureUserDefaults.shared.set("en", forKey: "i18n_language")
- }
- }
- let lang: String = SecureUserDefaults.shared.value(forKey: "i18n_language") ?? ""
- let bundle = Bundle.resourceBundle(for: Nexilis.self).path(forResource: lang, ofType: "lproj")
- let bundlePath = Bundle(path: bundle!)
- let result = NSLocalizedString(
- self,
- tableName: "Localizable",
- bundle: bundlePath!,
- value: self,
- comment: self)
- if uppercased {
- return result.uppercased()
- }
- return result
- }
-
- }
- extension UIViewController {
-
- public func resizeImage(image: UIImage, targetSize: CGSize) -> UIImage {
- UIGraphicsBeginImageContextWithOptions(targetSize, false, 0.0);
- image.draw(in: CGRect(x: 0, y: 0, width: targetSize.width, height: targetSize.height))
- let newImage:UIImage = UIGraphicsGetImageFromCurrentImageContext()!
- UIGraphicsEndImageContext()
- return newImage
- }
-
- }
- extension UITextView {
- enum ShouldChangeCursor {
- case incrementCursor
- case preserveCursor
- }
- func preserveCursorPosition(withChanges mutatingFunction: (UITextPosition?) -> (ShouldChangeCursor)) {
- //save the cursor positon
- var cursorPosition: UITextPosition? = nil
- if let selectedRange = self.selectedTextRange {
- let offset = self.offset(from: self.beginningOfDocument, to: selectedRange.start)
- cursorPosition = self.position(from: self.beginningOfDocument, offset: offset)
- }
- //make mutaing changes that may reset the cursor position
- let shouldChangeCursor = mutatingFunction(cursorPosition)
- //restore the cursor
- if var cursorPosition = cursorPosition {
- if shouldChangeCursor == .incrementCursor {
- cursorPosition = self.position(from: cursorPosition, offset: 1) ?? cursorPosition
- }
- if let range = self.textRange(from: cursorPosition, to: cursorPosition) {
- self.selectedTextRange = range
- }
- }
- }
- }
- extension String {
-
- public func substring(from: Int?, to: Int?) -> String {
- if let start = from {
- guard start < self.count else {
- return ""
- }
- }
-
- if let end = to {
- guard end >= 0 else {
- return ""
- }
- }
-
- if let start = from, let end = to {
- guard end - start >= 0 else {
- return ""
- }
- }
-
- let startIndex: String.Index
- if let start = from, start >= 0 {
- startIndex = self.index(self.startIndex, offsetBy: start)
- } else {
- startIndex = self.startIndex
- }
-
- let endIndex: String.Index
- if let end = to, end >= 0, end < self.count {
- endIndex = self.index(self.startIndex, offsetBy: end + 1)
- } else {
- endIndex = self.endIndex
- }
-
- return String(self[startIndex ..< endIndex])
- }
-
- func countEmojiCharacter() -> Int {
-
- func isEmoji(s:NSString) -> Bool {
-
- let high:Int = Int(s.character(at: 0))
- if 0xD800 <= high && high <= 0xDBFF {
- let low:Int = Int(s.character(at: 1))
- let codepoint: Int = ((high - 0xD800) * 0x400) + (low - 0xDC00) + 0x10000
- return (0x1D000 <= codepoint && codepoint <= 0x1F9FF)
- }
- else {
- return (0x2100 <= high && high <= 0x27BF)
- }
- }
-
- let nsString = self as NSString
- var length = 0
-
- nsString.enumerateSubstrings(in: NSMakeRange(0, nsString.length), options: NSString.EnumerationOptions.byComposedCharacterSequences) { (subString, substringRange, enclosingRange, stop) -> Void in
-
- if isEmoji(s: subString! as NSString) {
- length+=1
- }
- }
-
- return length
- }
-
- public func richText(isEditing: Bool = false, isSearching: Bool = false, textSearch: String = "", group_id: String = "", listMentionInTextField: [User] = []) -> NSMutableAttributedString {
- let font = UIFont.systemFont(ofSize: 12)
- let boldFont = UIFont.boldSystemFont(ofSize: 12)
- let italicFont = UIFont.italicSystemFont(ofSize: 12)
- let boldItalicFont = UIFont.systemFont(ofSize: 12, weight: .semibold)
- let textUTF8 = String(self.utf8)
- let finalText = NSMutableAttributedString(string: textUTF8, attributes: [NSAttributedString.Key.font: font])
- // finalText.addAttribute(.foregroundColor, value: UIApplication.shared.visibleViewController?.traitCollection.userInterfaceStyle == .dark ? UIColor.white : UIColor.black, range: NSRange(location: 0, length: finalText.length + textUTF8.countEmojiCharacter()))
- let boldSign: Character = "*"
- let italicSign: Character = "_"
- let underlineSign: Character = "^"
- let strikethroughSign: Character = "~"
- let italicGreySign: Character = "%"
- var locationBold: [NSRange] = []
-
- //Bold
- let rangeBold = getRangeOfWordWithSign(sentence: textUTF8, sign: boldSign)
- if rangeBold.count > 0 {
- var lastFirstRange = -1
- var countRemoveBoldSign = 0
- var continueCheckingBold = false
- var totalEmoji = 0
- for i in 0..<rangeBold.count {
- if rangeBold[i].startIndex > lastFirstRange {
- let charStart: Character = rangeBold[i].startIndex != 0 ? Array(textUTF8.substring(from: rangeBold[i].startIndex - 1, to: rangeBold[i].startIndex - 1))[0] : Array("0")[0]
- if (rangeBold[i].startIndex == 0 || (!charStart.isLetter && !charStart.isNumber)) {
- lastFirstRange = rangeBold[i].startIndex
- continueCheckingBold = true
- } else {
- continueCheckingBold = false
- }
- }
- if !continueCheckingBold {
- continue
- }
- if rangeBold[i].endIndex != (textUTF8.count-1) {
- let char: Character = Array(textUTF8.substring(from: rangeBold[i].endIndex + 1, to: rangeBold[i].endIndex + 1))[0]
- if char.isLetter || char.isNumber {
- continue
- }
- }
- let countEmojiBefore = finalText.string.substring(from: 0, to: lastFirstRange - (2*countRemoveBoldSign)).countEmojiCharacter()
- let countEmoji = finalText.string.substring(from: lastFirstRange - (2*countRemoveBoldSign), to: rangeBold[i].endIndex - (2*countRemoveBoldSign)).countEmojiCharacter()
- totalEmoji = countEmoji + countEmojiBefore
- locationBold.append(NSRange(location: lastFirstRange - (2*countRemoveBoldSign) + countEmojiBefore, length: (rangeBold[i].endIndex + countEmoji + 1) - lastFirstRange))
- finalText.addAttribute(.font, value: boldFont, range: NSRange(location: lastFirstRange - (2*countRemoveBoldSign) + countEmojiBefore, length: (rangeBold[i].endIndex + countEmoji + 1) - lastFirstRange))
- if !isEditing{
- finalText.mutableString.replaceOccurrences(of: "\(boldSign)", with: "", options: .literal, range: NSRange(location: lastFirstRange + countEmojiBefore - (2*countRemoveBoldSign), length: 1))
- finalText.mutableString.replaceOccurrences(of: "\(boldSign)", with: "", options: .literal, range: NSRange(location: rangeBold[i].endIndex + totalEmoji - (2*countRemoveBoldSign) - 1, length: 1))
- countRemoveBoldSign += 1
- } else {
- finalText.addAttribute(.foregroundColor, value: UIColor.gray, range: NSRange(location: lastFirstRange + countEmojiBefore, length: 1))
- finalText.addAttribute(.foregroundColor, value: UIColor.gray, range: NSRange(location: rangeBold[i].endIndex + totalEmoji, length: 1))
- }
- lastFirstRange = rangeBold[i].endIndex
- continueCheckingBold = false
- }
- }
-
- //Italic
- let textAfterbold = finalText.string
- let rangeItalic = getRangeOfWordWithSign(sentence: textAfterbold, sign: italicSign)
- if rangeItalic.count > 0 {
- var lastFirstRange = -1
- var countRemoveItalicSign = 0
- var continueCheckingItalic = false
- var totalEmoji = 0
- for i in 0..<rangeItalic.count {
- if rangeItalic[i].startIndex > lastFirstRange {
- let charStart: Character = rangeItalic[i].startIndex != 0 ? Array(textAfterbold.substring(from: rangeItalic[i].startIndex - 1, to: rangeItalic[i].startIndex - 1))[0] : Array("0")[0]
- if (rangeItalic[i].startIndex == 0 || (!charStart.isLetter && !charStart.isNumber)) {
- lastFirstRange = rangeItalic[i].startIndex
- continueCheckingItalic = true
- } else {
- continueCheckingItalic = false
- }
- }
- if !continueCheckingItalic {
- continue
- }
- if rangeItalic[i].endIndex != (textAfterbold.count-1) {
- let char: Character = Array(textAfterbold.substring(from: rangeItalic[i].endIndex + 1, to: rangeItalic[i].endIndex + 1))[0]
- if char.isLetter || char.isNumber {
- continue
- }
- }
- let countEmojiBefore = finalText.string.substring(from: 0, to: lastFirstRange - (2*countRemoveItalicSign)).countEmojiCharacter()
- let countEmoji = finalText.string.substring(from: lastFirstRange - (2*countRemoveItalicSign), to: rangeItalic[i].endIndex - (2*countRemoveItalicSign)).countEmojiCharacter()
- totalEmoji = countEmoji + countEmojiBefore
- if isIntInRangeList((rangeItalic[i].endIndex + countEmoji + 1) - lastFirstRange - lastFirstRange - (2*countRemoveItalicSign) + countEmojiBefore, rangeList: locationBold) {
- finalText.addAttribute(.font, value: boldItalicFont, range: NSRange(location: lastFirstRange - (2*countRemoveItalicSign) + countEmojiBefore, length: (rangeItalic[i].endIndex + countEmoji + 1) - lastFirstRange))
- } else {
- finalText.addAttribute(.font, value: italicFont, range: NSRange(location: lastFirstRange - (2*countRemoveItalicSign) + countEmojiBefore, length: (rangeItalic[i].endIndex + countEmoji + 1) - lastFirstRange))
- }
- if !isEditing{
- finalText.mutableString.replaceOccurrences(of: "\(italicSign)", with: "", options: .literal, range: NSRange(location: lastFirstRange + countEmojiBefore - (2*countRemoveItalicSign), length: 1))
- finalText.mutableString.replaceOccurrences(of: "\(italicSign)", with: "", options: .literal, range: NSRange(location: rangeItalic[i].endIndex + totalEmoji - (2*countRemoveItalicSign) - 1, length: 1))
- countRemoveItalicSign += 1
- } else {
- finalText.addAttribute(.foregroundColor, value: UIColor.gray, range: NSRange(location: lastFirstRange + countEmojiBefore, length: 1))
- finalText.addAttribute(.foregroundColor, value: UIColor.gray, range: NSRange(location: rangeItalic[i].endIndex + totalEmoji, length: 1))
- }
- lastFirstRange = rangeItalic[i].endIndex
- continueCheckingItalic = false
- }
- }
-
- //Underline
- let textAfterItalic = finalText.string
- let rangeUnderline = getRangeOfWordWithSign(sentence: textAfterItalic, sign: underlineSign)
- if rangeUnderline.count > 0 {
- var lastFirstRange = -1
- var countRemoveUnderlineSign = 0
- var continueCheckingUnderline = false
- var totalEmoji = 0
- for i in 0..<rangeUnderline.count {
- if rangeUnderline[i].startIndex > lastFirstRange {
- let charStart: Character = rangeUnderline[i].startIndex != 0 ? Array(textAfterItalic.substring(from: rangeUnderline[i].startIndex - 1, to: rangeUnderline[i].startIndex - 1))[0] : Array("0")[0]
- if (rangeUnderline[i].startIndex == 0 || (!charStart.isLetter && !charStart.isNumber)) {
- lastFirstRange = rangeUnderline[i].startIndex
- continueCheckingUnderline = true
- } else {
- continueCheckingUnderline = false
- }
- }
- if !continueCheckingUnderline {
- continue
- }
- if rangeUnderline[i].endIndex != (textAfterItalic.count-1) {
- let char: Character = Array(textAfterItalic.substring(from: rangeUnderline[i].endIndex + 1, to: rangeUnderline[i].endIndex + 1))[0]
- if char.isLetter || char.isNumber {
- continue
- }
- }
- let countEmojiBefore = finalText.string.substring(from: 0, to: lastFirstRange - (2*countRemoveUnderlineSign)).countEmojiCharacter()
- let countEmoji = finalText.string.substring(from: lastFirstRange - (2*countRemoveUnderlineSign), to: rangeUnderline[i].endIndex - (2*countRemoveUnderlineSign)).countEmojiCharacter()
- totalEmoji = countEmoji + countEmojiBefore
- finalText.addAttribute(.underlineStyle, value: NSUnderlineStyle.thick.rawValue, range: NSRange(location: lastFirstRange - (2*countRemoveUnderlineSign) + countEmojiBefore + 1, length: (rangeUnderline[i].endIndex + countEmoji - 1) - lastFirstRange))
- if !isEditing{
- finalText.mutableString.replaceOccurrences(of: "\(underlineSign)", with: "", options: .literal, range: NSRange(location: lastFirstRange + countEmojiBefore - (2*countRemoveUnderlineSign), length: 1))
- finalText.mutableString.replaceOccurrences(of: "\(underlineSign)", with: "", options: .literal, range: NSRange(location: rangeUnderline[i].endIndex + totalEmoji - (2*countRemoveUnderlineSign) - 1, length: 1))
- countRemoveUnderlineSign += 1
- } else {
- finalText.addAttribute(.foregroundColor, value: UIColor.gray, range: NSRange(location: lastFirstRange + countEmojiBefore, length: 1))
- finalText.addAttribute(.foregroundColor, value: UIColor.gray, range: NSRange(location: rangeUnderline[i].endIndex + totalEmoji, length: 1))
- }
- lastFirstRange = rangeUnderline[i].endIndex
- continueCheckingUnderline = false
- }
- }
-
- //Strikethrough
- let textAfterUnderline = finalText.string
- let rangeStrikethrough = getRangeOfWordWithSign(sentence: textAfterUnderline, sign: strikethroughSign)
- if rangeStrikethrough.count > 0 {
- var lastFirstRange = -1
- var countRemoveStrikethroughSign = 0
- var continueCheckingStrikethrough = false
- var totalEmoji = 0
- for i in 0..<rangeStrikethrough.count {
- if rangeStrikethrough[i].startIndex > lastFirstRange {
- let charStart: Character = rangeStrikethrough[i].startIndex != 0 ? Array(textAfterUnderline.substring(from: rangeStrikethrough[i].startIndex - 1, to: rangeStrikethrough[i].startIndex - 1))[0] : Array("0")[0]
- if (rangeStrikethrough[i].startIndex == 0 || (!charStart.isLetter && !charStart.isNumber)) {
- lastFirstRange = rangeStrikethrough[i].startIndex
- continueCheckingStrikethrough = true
- } else {
- continueCheckingStrikethrough = false
- }
- }
- if !continueCheckingStrikethrough {
- continue
- }
- if rangeStrikethrough[i].endIndex != (textAfterUnderline.count-1) {
- let char: Character = Array(textAfterUnderline.substring(from: rangeStrikethrough[i].endIndex + 1, to: rangeStrikethrough[i].endIndex + 1))[0]
- if char.isLetter || char.isNumber {
- continue
- }
- }
- let countEmojiBefore = finalText.string.substring(from: 0, to: lastFirstRange - (2*countRemoveStrikethroughSign)).countEmojiCharacter()
- let countEmoji = finalText.string.substring(from: lastFirstRange - (2*countRemoveStrikethroughSign), to: rangeStrikethrough[i].endIndex - (2*countRemoveStrikethroughSign)).countEmojiCharacter()
- totalEmoji = countEmoji + countEmojiBefore
- finalText.addAttribute(.strikethroughStyle, value: 2, range: NSRange(location: lastFirstRange - (2*countRemoveStrikethroughSign) + countEmojiBefore + 1, length: (rangeStrikethrough[i].endIndex + countEmoji - 1) - lastFirstRange))
- if !isEditing{
- finalText.mutableString.replaceOccurrences(of: "\(strikethroughSign)", with: "", options: .literal, range: NSRange(location: lastFirstRange + countEmojiBefore - (2*countRemoveStrikethroughSign), length: 1))
- finalText.mutableString.replaceOccurrences(of: "\(strikethroughSign)", with: "", options: .literal, range: NSRange(location: rangeStrikethrough[i].endIndex + totalEmoji - (2*countRemoveStrikethroughSign) - 1, length: 1))
- countRemoveStrikethroughSign += 1
- } else {
- finalText.addAttribute(.foregroundColor, value: UIColor.gray, range: NSRange(location: lastFirstRange + countEmojiBefore, length: 1))
- finalText.addAttribute(.foregroundColor, value: UIColor.gray, range: NSRange(location: rangeStrikethrough[i].endIndex + totalEmoji, length: 1))
- }
- lastFirstRange = rangeStrikethrough[i].endIndex
- continueCheckingStrikethrough = false
- }
- }
-
- //ItalicGrey
- let textAfterStrikeThrough = finalText.string
- let rangeItalicGrey = getRangeOfWordWithSign(sentence: textAfterStrikeThrough, sign: italicGreySign)
- if rangeItalicGrey.count > 0 {
- var lastFirstRange = -1
- var countRemoveItalicGreySign = 0
- var continueCheckingItalicGrey = false
- var totalEmoji = 0
- for i in 0..<rangeItalicGrey.count {
- if rangeItalicGrey[i].startIndex > lastFirstRange {
- let charStart: Character = rangeItalicGrey[i].startIndex != 0 ? Array(textAfterStrikeThrough.substring(from: rangeItalicGrey[i].startIndex - 1, to: rangeItalicGrey[i].startIndex - 1))[0] : Array("0")[0]
- if (rangeItalicGrey[i].startIndex == 0 || (!charStart.isLetter && !charStart.isNumber)) {
- lastFirstRange = rangeItalicGrey[i].startIndex
- continueCheckingItalicGrey = true
- } else {
- continueCheckingItalicGrey = false
- }
- }
- if !continueCheckingItalicGrey {
- continue
- }
- if rangeItalicGrey[i].endIndex != (textAfterStrikeThrough.count-1) {
- let char: Character = Array(textAfterStrikeThrough.substring(from: rangeItalicGrey[i].endIndex + 1, to: rangeItalicGrey[i].endIndex + 1))[0]
- if char.isLetter || char.isNumber {
- continue
- }
- }
- let countEmojiBefore = finalText.string.substring(from: 0, to: lastFirstRange - (2*countRemoveItalicGreySign)).countEmojiCharacter()
- let countEmoji = finalText.string.substring(from: lastFirstRange - (2*countRemoveItalicGreySign), to: rangeItalicGrey[i].endIndex - (2*countRemoveItalicGreySign)).countEmojiCharacter()
- totalEmoji = countEmoji + countEmojiBefore
- finalText.addAttribute(.font, value: italicFont, range: NSRange(location: lastFirstRange - (2*countRemoveItalicGreySign) + countEmojiBefore, length: (rangeItalicGrey[i].endIndex + countEmoji + 1) - lastFirstRange))
- finalText.addAttribute(.foregroundColor, value: UIColor.darkGray, range: NSRange(location: lastFirstRange - (2*countRemoveItalicGreySign) + countEmojiBefore, length: (rangeItalicGrey[i].endIndex + countEmoji + 1) - lastFirstRange))
- if !isEditing{
- finalText.mutableString.replaceOccurrences(of: "\(italicGreySign)", with: "", options: .literal, range: NSRange(location: lastFirstRange + countEmojiBefore - (2*countRemoveItalicGreySign), length: 1))
- finalText.mutableString.replaceOccurrences(of: "\(italicGreySign)", with: "", options: .literal, range: NSRange(location: rangeItalicGrey[i].endIndex + totalEmoji - (2*countRemoveItalicGreySign) - 1, length: 1))
- countRemoveItalicGreySign += 1
- } else {
- finalText.addAttribute(.foregroundColor, value: UIColor.gray, range: NSRange(location: lastFirstRange + countEmojiBefore, length: 1))
- finalText.addAttribute(.foregroundColor, value: UIColor.gray, range: NSRange(location: rangeItalicGrey[i].endIndex + totalEmoji, length: 1))
- }
- lastFirstRange = rangeItalicGrey[i].endIndex
- continueCheckingItalicGrey = false
- }
- }
-
- //Check Mention
- let finalTextAfterRichText = finalText.string
- if finalTextAfterRichText.contains("@") {
- let listTextEnter = finalText.string.split(separator: "\n")
- for j in 0...listTextEnter.count - 1 {
- let listText = listTextEnter[j].split(separator: " ")
- let listMention = listText.filter({ $0.starts(with: "@")})
- if listMention.count > 0 {
- for i in 0..<listMention.count {
- let f_pin = (String(listMention[i])).substring(from: 1, to: listMention[i].count)
- let member = Member.getMember(f_pin: f_pin)
- if member != nil {
- let name = (member!.firstName + " " + member!.lastName).trimmingCharacters(in: .whitespaces)
- finalText.mutableString.replaceOccurrences(of: f_pin, with: name, options: .literal, range: NSString(string: finalText.string).range(of: f_pin))
- if !group_id.isEmpty && Member.getMemberInGroup(f_pin: f_pin, group_id: group_id) != nil {
- finalText.addAttribute(.foregroundColor, value: UIColor.mentionColor, range: NSString(string: finalText.string).range(of: "@\(name)"))
- }
- }
- }
- }
- }
- }
- if isSearching {
- let range = NSString(string: finalText.string).range(of: textSearch, options: .caseInsensitive) // 2
- let highlightColor = UIColor.systemYellow // 3
- let highlightedAttributes: [NSAttributedString.Key: Any] = [NSAttributedString.Key.backgroundColor: highlightColor] // 4
-
- finalText.addAttributes(highlightedAttributes, range: range) // 5
- }
-
- return finalText
- }
-
- func isIntInRangeList(_ intValue: Int, rangeList: [NSRange]) -> Bool {
- for range in rangeList {
- if intValue >= range.location && intValue < range.location + range.length {
- return true
- }
- }
- return false
- }
-
- func checkCharBefore(char: String) -> Bool {
- return char == " " || char == "\n"
- }
-
- func checkCharRich(char: String) -> Bool {
- return char == "*" || char == "_" || char == "^" || char == "~"
- }
-
- func checkStartWithLink() -> Bool {
- return self.starts(with: "https://") || self.starts(with: "http://") || self.starts(with: "www.")
- //|| self.starts(with: "*https://") || self.starts(with: "*http://") || self.starts(with: "*www.") || self.starts(with: "_https://") || self.starts(with: "_http://") || self.starts(with: "_www.") || self.starts(with: "^https://") || self.starts(with: "^http://") || self.starts(with: "^www.") || self.starts(with: "~https://") || self.starts(with: "~http://") || self.starts(with: "~www.")
- }
-
- func getRangeOfWordWithSign(sentence: String, sign: Character) -> [Range<Int>] {
- let asterisk: Character = sign
- var ranges = [Range<Int>]()
-
- var startIndex = sentence.startIndex
-
- while let startRange = sentence[startIndex...].firstIndex(of: asterisk),
- let endRange = sentence[startRange...].dropFirst().firstIndex(of: asterisk) {
-
- let range = startRange..<endRange
- let word = sentence[range].replacingOccurrences(of: "\(sign)", with: "")
-
- if !word.isEmpty {
- let lower = sentence.distance(from: sentence.startIndex, to: startRange)
- let upper = sentence.distance(from: sentence.startIndex, to: endRange)
- ranges.append(Range(uncheckedBounds: (lower: lower, upper: upper)))
- }
-
- startIndex = endRange
- }
-
- return ranges
- }
-
- }
- extension UIFont {
- var bold: UIFont {
- return with(traits: .traitBold)
- } // bold
-
- var italic: UIFont {
- return with(traits: .traitItalic)
- } // italic
-
- func with(traits: UIFontDescriptor.SymbolicTraits) -> UIFont {
- guard let descriptor = self.fontDescriptor.withSymbolicTraits(traits) else {
- return self
- } // guard
-
- return UIFont(descriptor: descriptor, size: 0)
- } // with(traits:)
- }
- extension UILabel {
- public func set(image: UIImage, with text: String, size: CGFloat, y: CGFloat) {
- let attachment = NSTextAttachment()
- attachment.image = image
- attachment.bounds = CGRect(x: 0, y: y, width: size, height: size)
- let attachmentStr = NSAttributedString(attachment: attachment)
-
- let mutableAttributedString = NSMutableAttributedString()
- mutableAttributedString.append(attachmentStr)
-
- let textString = NSAttributedString(string: text, attributes: [.font: self.font!])
- mutableAttributedString.append(textString)
-
- self.attributedText = mutableAttributedString
- }
-
- public func setAttributeText(image: UIImage, with textMutable: NSAttributedString, size: CGFloat, y: CGFloat) {
- let attachment = NSTextAttachment()
- attachment.image = image
- attachment.bounds = CGRect(x: 0, y: y, width: size, height: size)
- let attachmentStr = NSAttributedString(attachment: attachment)
-
- let mutableAttributedString = NSMutableAttributedString()
- mutableAttributedString.append(attachmentStr)
-
- mutableAttributedString.append(textMutable)
-
- self.attributedText = mutableAttributedString
- }
- }
- extension Bundle {
- public static func resourceBundle(for frameworkClass: AnyClass) -> Bundle {
- let frameworkBundle = Bundle(for: frameworkClass)
- guard let resourceBundleURL = frameworkBundle.url(forResource: "NexilisLite", withExtension: "bundle"),
- let resourceBundle = Bundle(url: resourceBundleURL) else {
- return frameworkBundle
- }
- return resourceBundle
- }
-
- public static func resourcesMediaBundle(for frameworkClass: AnyClass) -> Bundle {
- let frameworkBundle = Bundle(for: frameworkClass)
- guard let resourceBundleURL = frameworkBundle.url(forResource: "NexilisLiteResources", withExtension: "bundle"),
- let resourceBundle = Bundle(url: resourceBundleURL) else {
- return frameworkBundle
- }
- return resourceBundle
- }
-
- }
- //extension UIFont {
- //
- // static func register(from url: URL) throws {
- // guard let fontDataProvider = CGDataProvider(url: url as CFURL) else {
- // throw fatalError("Could not create font data provider for \(url).")
- // }
- // let font = CGFont(fontDataProvider)
- // var error: Unmanaged<CFError>?
- // guard CTFontManagerRegisterGraphicsFont(font!, &error) else {
- // throw error!.takeUnretainedValue()
- // }
- // }
- //
- //}
- extension UIButton {
- private func actionHandleBlock(action:(() -> Void)? = nil) {
- struct __ {
- static var action :(() -> Void)?
- }
- if action != nil {
- __.action = action
- } else {
- __.action?()
- }
- }
-
- @objc private func triggerActionHandleBlock() {
- self.actionHandleBlock()
- }
-
- public func actionHandle(controlEvents control :UIControl.Event, ForAction action:@escaping () -> Void) {
- self.actionHandleBlock(action: action)
- self.addTarget(self, action: #selector(self.triggerActionHandleBlock), for: control)
- }
-
- public func setImageRightOfText(image: UIImage?, for state: UIControl.State) {
- self.setImage(image, for: state)
- self.titleEdgeInsets = UIEdgeInsets(top: 0, left: -((image?.size.width ?? 0) + 5), bottom: 0, right: (image?.size.width ?? 0))
- self.imageEdgeInsets = UIEdgeInsets(top: 10, left: (self.titleLabel?.frame.size.width ?? 0) + 90, bottom: 10, right: -((self.titleLabel?.frame.size.width ?? 0) + 5))
- }
- }
- extension UINavigationController {
- func replaceAllViewController(with viewController: UIViewController, animated: Bool) {
- pushViewController(viewController, animated: animated)
- viewControllers.removeSubrange(1...viewControllers.count - 2)
- }
-
- var rootViewController : UIViewController? {
- return viewControllers.first
- }
-
- func popViewController(animated: Bool, completion: @escaping () -> Void) {
- popViewController(animated: animated)
- if animated, let coordinator = transitionCoordinator {
- coordinator.animate(alongsideTransition: nil) { _ in
- completion()
- }
- } else {
- completion()
- }
- }
- }
- extension UIImageView {
- private static var taskKey = 0
- private static var urlKey = 0
- private var currentTask: URLSessionTask? {
- get { return objc_getAssociatedObject(self, &UIImageView.taskKey) as? URLSessionTask }
- set { objc_setAssociatedObject(self, &UIImageView.taskKey, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
- }
- private var currentURL: URL? {
- get { return objc_getAssociatedObject(self, &UIImageView.urlKey) as? URL }
- set { objc_setAssociatedObject(self, &UIImageView.urlKey, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
- }
- public func loadImageAsync(with urlString: String?, isGif: Bool = false) {
- // cancel prior task, if any
- weak var oldTask = currentTask
- currentTask = nil
- oldTask?.cancel()
- // reset imageview's image
- self.image = nil
- // allow supplying of `nil` to remove old image and then return immediately
- guard let urlString = urlString else { return }
- // check cache
-
- if isGif, let cachedImageGif = ImageCache.shared.imageGif(forKey: urlString) {
- guard let gifImage = UIImage.gifImageWithData(Data(referencing: cachedImageGif)) else {
- print("Failed to create the GIF image.")
- return
- }
- self.image = gifImage
- return
- }
- if let cachedImage = ImageCache.shared.image(forKey: urlString) {
- self.image = cachedImage
- return
- }
- // download
- let url = URL(string: urlString)!
- currentURL = url
- let urlConfig = URLSessionConfiguration.default
- let sessionDelegate = SelfSignedURLSessionDelegate()
- let session = URLSession(configuration: urlConfig, delegate: sessionDelegate, delegateQueue: nil)
- let task = session.dataTask(with: url) { [weak self] data, response, error in
- self?.currentTask = nil
- //error handling
- if let error = error {
- // don't bother reporting cancelation errors
- if (error as NSError).domain == NSURLErrorDomain && (error as NSError).code == NSURLErrorCancelled {
- return
- }
- //print(error)
- return
- }
- guard let data = data else {
- //print("unable to extract image")
- return
- }
-
- let downloadedImage = UIImage(data: data)
- if isGif {
- ImageCache.shared.saveGif(data: NSData(data: data), forKey: urlString)
- } else {
- if downloadedImage != nil {
- ImageCache.shared.save(image: downloadedImage!, forKey: urlString)
- }
- }
- if url == self?.currentURL {
- DispatchQueue.main.async {
- if isGif {
- guard let gifImage = UIImage.gifImageWithData(data) else {
- print("Failed to create the GIF image.")
- return
- }
- self?.image = gifImage
- } else {
- self?.image = downloadedImage
- }
- }
- }
- }
- // save and start new task
- currentTask = task
- task.resume()
- }
-
- private func actionHandleBlock(action:(() -> Void)? = nil) {
- struct __ {
- static var action :(() -> Void)?
- }
- if action != nil {
- __.action = action
- } else {
- __.action?()
- }
- }
-
- @objc private func triggerActionHandleBlock() {
- self.actionHandleBlock()
- }
-
- func actionHandle(controlEvents control :UIControl.Event, ForAction action:@escaping () -> Void) {
- self.actionHandleBlock(action: action)
- self.isUserInteractionEnabled = true
- self.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(self.triggerActionHandleBlock)))
- }
- }
- extension UITextField {
- public enum PaddingSide {
- case left(CGFloat)
- case right(CGFloat)
- case both(CGFloat)
- }
- public func addPadding(_ padding: PaddingSide) {
- self.leftViewMode = .always
- self.layer.masksToBounds = true
- switch padding {
- case .left(let spacing):
- let paddingView = UIView(frame: CGRect(x: 0, y: 0, width: spacing, height: self.frame.height))
- self.leftView = paddingView
- self.rightViewMode = .always
- case .right(let spacing):
- let paddingView = UIView(frame: CGRect(x: 0, y: 0, width: spacing, height: self.frame.height))
- self.rightView = paddingView
- self.rightViewMode = .always
- case .both(let spacing):
- let paddingView = UIView(frame: CGRect(x: 0, y: 0, width: spacing, height: self.frame.height))
- // left
- self.leftView = paddingView
- self.leftViewMode = .always
- // right
- self.rightView = paddingView
- self.rightViewMode = .always
- }
- }
- }
- public class ImageCache {
- public static let shared = ImageCache()
- private let cache = NSCache<NSString, UIImage>()
- private let cacheGif = NSCache<NSString, NSData>()
- private var cacheKeyMap: [String: String] = [:]
- private init() {
- if let documentsDirectory = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first {
- let cacheDirectory = documentsDirectory.appendingPathComponent("fileCacheImage")
- loadCacheFromDisk(directory: cacheDirectory)
-
- let cacheGifDirectory = documentsDirectory.appendingPathComponent("fileCacheGif")
- loadCacheFromDisk(directory: cacheGifDirectory)
- }
- }
- public func save(image: UIImage, forKey key: String) {
- let sanitizedKey = sanitizeKey(key)
- cache.setObject(image, forKey: sanitizedKey as NSString)
- cacheKeyMap[key] = sanitizedKey
- if let documentsDirectory = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first {
- let cacheDirectory = documentsDirectory.appendingPathComponent("fileCacheImage")
- saveCacheToDisk(directory: cacheDirectory)
- }
- }
-
- public func saveGif(data: NSData, forKey key: String) {
- let sanitizedKey = sanitizeKey(key)
- cacheGif.setObject(data, forKey: sanitizedKey as NSString)
- cacheKeyMap[key] = sanitizedKey
- if let documentsDirectory = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first {
- let cacheDirectory = documentsDirectory.appendingPathComponent("fileCacheGif")
- saveCacheToDisk(directory: cacheDirectory)
- }
- }
- public func image(forKey key: String) -> UIImage? {
- let sanitizedKey = sanitizeKey(key)
- return cache.object(forKey: sanitizedKey as NSString)
- }
- public func imageGif(forKey key: String) -> NSData? {
- let sanitizedKey = sanitizeKey(key)
- return cacheGif.object(forKey: sanitizedKey as NSString)
- }
-
- func saveCacheToDisk(directory: URL) {
- let fileManager = FileManager.default
- if !fileManager.fileExists(atPath: directory.path) {
- do {
- try fileManager.createDirectory(at: directory, withIntermediateDirectories: true, attributes: nil)
- } catch {
- return
- }
- }
- let mappingFilePath = directory.appendingPathComponent("keyMapping.json")
- do {
- let jsonData = try JSONSerialization.data(withJSONObject: cacheKeyMap, options: [])
- try jsonData.write(to: mappingFilePath)
- } catch {
- return
- }
- for (originalKey, sanitizedKey) in cacheKeyMap {
- if let image = cache.object(forKey: sanitizedKey as NSString),
- let imageData = image.pngData() {
- let filePath = directory.appendingPathComponent("\(sanitizedKey).png")
- do {
- try imageData.write(to: filePath)
- } catch {
- }
- }
- }
- }
-
- func loadCacheFromDisk(directory: URL) {
- let fileManager = FileManager.default
- // Load mapping
- let mappingFilePath = directory.appendingPathComponent("keyMapping.json")
- guard let jsonData = try? Data(contentsOf: mappingFilePath),
- let loadedMapping = try? JSONSerialization.jsonObject(with: jsonData, options: []) as? [String: String] else {
- return
- }
- if cacheKeyMap.count == 0 {
- cacheKeyMap = loadedMapping
- }
- // Load images
- do {
- let fileURLs = try fileManager.contentsOfDirectory(at: directory, includingPropertiesForKeys: nil)
- for fileURL in fileURLs {
- if fileURL.lastPathComponent == "keyMapping.json" { continue } // Skip mapping file
- let sanitizedKey = fileURL.deletingPathExtension().lastPathComponent
- if let imageData = try? Data(contentsOf: fileURL),
- let image = UIImage(data: imageData) {
- cache.setObject(image, forKey: sanitizedKey as NSString)
- }
- }
- } catch {
- // print("Failed to load cache from disk: \(error)")
- }
- }
-
- private func sanitizeKey(_ key: String) -> String {
- let data = Data(key.utf8)
- var hash = [UInt8](repeating: 0, count: Int(CC_SHA256_DIGEST_LENGTH))
- data.withUnsafeBytes {
- _ = CC_SHA256($0.baseAddress, CC_LONG(data.count), &hash)
- }
- return hash.map { String(format: "%02x", $0) }.joined()
- }
- }
- public class LibAlertController: UIAlertController {
- public override func viewWillAppear(_ animated: Bool) {
- super.viewWillAppear(animated)
-
- // Customize the title's font
- let titleFont = UIFont.boldSystemFont(ofSize: 16)
- let titleAttributes = [NSAttributedString.Key.font: titleFont]
- setValue(NSAttributedString(string: self.title ?? "", attributes: titleAttributes), forKey: "attributedTitle")
-
- // Change the font for the message
- let messageFont = UIFont.systemFont(ofSize: 14)
- let messageAttributes = [NSAttributedString.Key.font: messageFont]
- setValue(NSAttributedString(string: self.message ?? "", attributes: messageAttributes), forKey: "attributedMessage")
-
- for i in self.actions {
- let attributedText = NSAttributedString(string: i.title ?? "", attributes: [NSAttributedString.Key.font : UIFont.systemFont(ofSize: 16)])
- guard let label = (i.value(forKey: "__representer") as AnyObject).value(forKey: "label") as? UILabel else { return }
- label.attributedText = attributedText
- }
- }
- }
- extension UISearchBar
- {
- public func setMagnifyingGlassColorTo(color: UIColor)
- {
- // Search Icon
- let textFieldInsideSearchBar = self.value(forKey: "searchField") as? UITextField
- let glassIconView = textFieldInsideSearchBar?.leftView as? UIImageView
- glassIconView?.image = glassIconView?.image?.withRenderingMode(.alwaysTemplate)
- glassIconView?.tintColor = color
- }
- func setClearButtonColorTo(color: UIColor)
- {
- // Clear Button
- let textFieldInsideSearchBar = self.value(forKey: "searchField") as? UITextField
- let crossIconView = textFieldInsideSearchBar?.value(forKey: "clearButton") as? UIButton
- crossIconView?.setImage(crossIconView?.currentImage?.withRenderingMode(.alwaysTemplate), for: .normal)
- crossIconView?.tintColor = color
- }
- func setPlaceholderTextColorTo(color: UIColor)
- {
- let textFieldInsideSearchBar = self.value(forKey: "searchField") as? UITextField
- textFieldInsideSearchBar?.textColor = color
- let textFieldInsideSearchBarLabel = textFieldInsideSearchBar!.value(forKey: "placeholderLabel") as? UILabel
- textFieldInsideSearchBarLabel?.textColor = color
- }
-
- public func setCustomBackgroundImage(image: UIImage)
- {
- setSearchFieldBackgroundImage(resizeImage(image: image, targetHeight: 30), for: .normal)
- }
-
- func resizeImage(image: UIImage, targetHeight: CGFloat) -> UIImage? {
- let scaleFactor = targetHeight / image.size.height
- let targetWidth = image.size.width * scaleFactor
- let newSize = CGSize(width: targetWidth, height: targetHeight)
-
- UIGraphicsBeginImageContextWithOptions(newSize, false, 0.0)
- defer { UIGraphicsEndImageContext() }
-
- image.draw(in: CGRect(origin: .zero, size: newSize))
- guard let newImage = UIGraphicsGetImageFromCurrentImageContext() else { return nil }
-
- return newImage
- }
-
- public func updateHeight(height: CGFloat, radius: CGFloat = 8.0, borderColor: CGColor = UIColor.white.cgColor) {
- let image: UIImage? = UIImage.imageWithColor(color: UIColor.clear, size: CGSize(width: 1, height: height))
- setSearchFieldBackgroundImage(image, for: .normal)
- for subview in self.subviews {
- for subSubViews in subview.subviews {
- if #available(iOS 13.0, *) {
- for child in subSubViews.subviews {
- if let textField = child as? UISearchTextField {
- textField.layer.cornerRadius = radius
- textField.clipsToBounds = true
- textField.layer.borderColor = borderColor
- textField.layer.borderWidth = 1.0
- }
- }
- continue
- }
- if let textField = subSubViews as? UITextField {
- textField.layer.cornerRadius = radius
- textField.clipsToBounds = true
- textField.layer.borderColor = borderColor
- textField.layer.borderWidth = 1.0
- }
- }
- }
- }
- }
- extension String {
- init(unicodeScalar: UnicodeScalar) {
- self.init(Character(unicodeScalar))
- }
- init?(unicodeCodepoint: Int) {
- if let unicodeScalar = UnicodeScalar(unicodeCodepoint) {
- self.init(unicodeScalar: unicodeScalar)
- } else {
- return nil
- }
- }
- static func +(lhs: String, rhs: Int) -> String {
- return lhs + String(unicodeCodepoint: rhs)!
- }
- static func +=(lhs: inout String, rhs: Int) {
- lhs = lhs + rhs
- }
- }
- extension UIGraphicsRenderer {
- static func renderImagesAt(urls: [NSURL], size: CGSize, scale: CGFloat = 1) -> UIImage {
- let renderer = UIGraphicsImageRenderer(size: size)
- let options: [NSString: Any] = [
- kCGImageSourceThumbnailMaxPixelSize: max(size.width * scale, size.height * scale),
- kCGImageSourceCreateThumbnailFromImageAlways: true
- ]
- let thumbnails = try urls.map { url -> CGImage in
- let imageSource = CGImageSourceCreateWithURL(url, nil)
- let scaledImage = CGImageSourceCreateThumbnailAtIndex(imageSource!, 0, options as CFDictionary)
-
- return scaledImage!
- }
- // Translate Y-axis down because cg images are flipped and it falls out of the frame (see bellow)
- let rect = CGRect(x: 0,
- y: -size.height,
- width: size.width,
- height: size.height)
- let resizedImage = renderer.image { ctx in
- let context = ctx.cgContext
- context.scaleBy(x: 1, y: -1) //Flip it ( cg y-axis is flipped)
- for image in thumbnails {
- context.draw(image, in: rect)
- }
- }
- return resizedImage
- }
-
- static func renderImageAt(url: NSURL, size: CGSize, scale: CGFloat = 1) -> UIImage {
- return renderImagesAt(urls: [url], size: size, scale: scale)
- }
- }
- extension NSAttributedString {
- convenience init(html: String) throws {
- let options: [NSAttributedString.DocumentReadingOptionKey: Any] = [
- .documentType: NSAttributedString.DocumentType.html,
- .characterEncoding: String.Encoding.utf8.rawValue
- ]
- guard let data = html.data(using: .utf8) else {
- throw NSError(domain: "Invalid HTML", code: 0, userInfo: nil)
- }
- try self.init(data: data, options: options, documentAttributes: nil)
- }
- }
|