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.
129 lines
4.2 KiB
Swift
129 lines
4.2 KiB
Swift
2 years ago
|
// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
|
||
|
|
||
|
import Foundation
|
||
|
import GRDB
|
||
|
import SessionUtilitiesKit
|
||
|
|
||
2 years ago
|
// MARK: - ConfigColumnAssignment
|
||
|
|
||
|
public struct ConfigColumnAssignment {
|
||
|
var column: ColumnExpression
|
||
|
var assignment: ColumnAssignment
|
||
|
|
||
|
init(
|
||
|
column: ColumnExpression,
|
||
|
assignment: ColumnAssignment
|
||
|
) {
|
||
|
self.column = column
|
||
|
self.assignment = assignment
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// MARK: - ColumnExpression
|
||
|
|
||
|
extension ColumnExpression {
|
||
|
public func set(to value: (any SQLExpressible)?) -> ConfigColumnAssignment {
|
||
|
ConfigColumnAssignment(column: self, assignment: self.set(to: value))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// MARK: - QueryInterfaceRequest
|
||
2 years ago
|
|
||
2 years ago
|
public extension QueryInterfaceRequest where RowDecoder: FetchableRecord & TableRecord {
|
||
|
|
||
|
// MARK: -- updateAll
|
||
|
|
||
2 years ago
|
@discardableResult
|
||
|
func updateAll(
|
||
|
_ db: Database,
|
||
|
_ assignments: ConfigColumnAssignment...
|
||
|
) throws -> Int {
|
||
|
return try updateAll(db, assignments)
|
||
|
}
|
||
|
|
||
|
@discardableResult
|
||
|
func updateAll(
|
||
|
_ db: Database,
|
||
|
_ assignments: [ConfigColumnAssignment]
|
||
|
) throws -> Int {
|
||
|
return try self.updateAll(db, assignments.map { $0.assignment })
|
||
|
}
|
||
|
|
||
2 years ago
|
@discardableResult
|
||
|
func updateAllAndConfig(
|
||
|
_ db: Database,
|
||
2 years ago
|
calledFromConfig: Bool = false,
|
||
2 years ago
|
_ assignments: ConfigColumnAssignment...
|
||
2 years ago
|
) throws -> Int {
|
||
2 years ago
|
return try updateAllAndConfig(db, calledFromConfig: calledFromConfig, assignments)
|
||
2 years ago
|
}
|
||
|
|
||
|
@discardableResult
|
||
|
func updateAllAndConfig(
|
||
|
_ db: Database,
|
||
2 years ago
|
calledFromConfig: Bool = false,
|
||
2 years ago
|
_ assignments: [ConfigColumnAssignment]
|
||
2 years ago
|
) throws -> Int {
|
||
2 years ago
|
let targetAssignments: [ColumnAssignment] = assignments.map { $0.assignment }
|
||
|
|
||
2 years ago
|
// Before we do anything custom make sure the changes actually do need to be synced
|
||
1 year ago
|
guard LibSession.assignmentsRequireConfigUpdate(assignments) else {
|
||
2 years ago
|
return try self.updateAll(db, targetAssignments)
|
||
|
}
|
||
|
|
||
2 years ago
|
return try self.updateAndFetchAllAndUpdateConfig(db, calledFromConfig: calledFromConfig, assignments).count
|
||
2 years ago
|
}
|
||
2 years ago
|
|
||
|
// MARK: -- updateAndFetchAll
|
||
|
|
||
2 years ago
|
@discardableResult
|
||
|
func updateAndFetchAllAndUpdateConfig(
|
||
|
_ db: Database,
|
||
2 years ago
|
calledFromConfig: Bool = false,
|
||
2 years ago
|
_ assignments: ConfigColumnAssignment...
|
||
2 years ago
|
) throws -> [RowDecoder] {
|
||
2 years ago
|
return try updateAndFetchAllAndUpdateConfig(db, calledFromConfig: calledFromConfig, assignments)
|
||
2 years ago
|
}
|
||
|
|
||
|
@discardableResult
|
||
|
func updateAndFetchAllAndUpdateConfig(
|
||
|
_ db: Database,
|
||
2 years ago
|
calledFromConfig: Bool = false,
|
||
2 years ago
|
_ assignments: [ConfigColumnAssignment]
|
||
2 years ago
|
) throws -> [RowDecoder] {
|
||
2 years ago
|
// First perform the actual updates
|
||
|
let updatedData: [RowDecoder] = try self.updateAndFetchAll(db, assignments.map { $0.assignment })
|
||
|
|
||
|
// Then check if any of the changes could affect the config
|
||
2 years ago
|
guard
|
||
|
!calledFromConfig &&
|
||
1 year ago
|
LibSession.assignmentsRequireConfigUpdate(assignments)
|
||
2 years ago
|
else { return updatedData }
|
||
2 years ago
|
|
||
2 years ago
|
defer {
|
||
2 years ago
|
// If we changed a column that requires a config update then we may as well automatically
|
||
|
// enqueue a new config sync job once the transaction completes (but only enqueue it once
|
||
|
// per transaction - doing it more than once is pointless)
|
||
|
let userPublicKey: String = getUserHexEncodedPublicKey(db)
|
||
|
|
||
1 year ago
|
db.afterNextTransactionNestedOnce(dedupeId: LibSession.syncDedupeId(userPublicKey)) { db in
|
||
2 years ago
|
ConfigurationSyncJob.enqueue(db, publicKey: userPublicKey)
|
||
2 years ago
|
}
|
||
|
}
|
||
|
|
||
2 years ago
|
// Update the config dump state where needed
|
||
2 years ago
|
switch self {
|
||
|
case is QueryInterfaceRequest<Contact>:
|
||
1 year ago
|
return try LibSession.updatingContacts(db, updatedData)
|
||
2 years ago
|
|
||
|
case is QueryInterfaceRequest<Profile>:
|
||
1 year ago
|
return try LibSession.updatingProfiles(db, updatedData)
|
||
2 years ago
|
|
||
2 years ago
|
case is QueryInterfaceRequest<SessionThread>:
|
||
1 year ago
|
return try LibSession.updatingThreads(db, updatedData)
|
||
2 years ago
|
|
||
|
default: return updatedData
|
||
2 years ago
|
}
|
||
|
}
|
||
|
}
|