mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.3 KiB
Swift
38 lines
1.3 KiB
Swift
// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
public enum SNUtilitiesKit { // Just to make the external API nice
|
|
public static var isRunningTests: Bool {
|
|
ProcessInfo.processInfo.environment["XCTestConfigurationFilePath"] != nil
|
|
}
|
|
|
|
public static func migrations() -> TargetMigrations {
|
|
return TargetMigrations(
|
|
identifier: .utilitiesKit,
|
|
migrations: [
|
|
[
|
|
// Intentionally including the '_003_YDBToGRDBMigration' in the first migration
|
|
// set to ensure the 'Identity' data is migrated before any other migrations are
|
|
// run (some need access to the users publicKey)
|
|
_001_InitialSetupMigration.self,
|
|
_002_SetupStandardJobs.self,
|
|
_003_YDBToGRDBMigration.self
|
|
],
|
|
[], // Other DB migrations
|
|
[], // Legacy DB removal
|
|
[]
|
|
]
|
|
)
|
|
}
|
|
|
|
public static func configure(maxFileSize: UInt) {
|
|
SNUtilitiesKitConfiguration.maxFileSize = maxFileSize
|
|
}
|
|
}
|
|
|
|
@objc public final class SNUtilitiesKitConfiguration: NSObject {
|
|
@objc public static var maxFileSize: UInt = 0
|
|
@objc public static var isRunningTests: Bool { return SNUtilitiesKit.isRunningTests }
|
|
}
|