53 lines
1.7 KiB
Swift
53 lines
1.7 KiB
Swift
//
|
|
// Account.swift
|
|
// MastodonIntent
|
|
//
|
|
// Created by MainasuK on 2022-6-9.
|
|
//
|
|
|
|
import Foundation
|
|
import CoreData
|
|
import CoreDataStack
|
|
import Intents
|
|
import MastodonCore
|
|
|
|
extension Account {
|
|
|
|
@MainActor
|
|
static func fetch(in managedObjectContext: NSManagedObjectContext) async throws -> [Account] {
|
|
// get accounts
|
|
let accounts: [Account] = try await managedObjectContext.perform {
|
|
let results = AuthenticationServiceProvider.shared.authentications
|
|
let accounts = results.compactMap { mastodonAuthentication -> Account? in
|
|
guard let user = mastodonAuthentication.user(in: managedObjectContext) else {
|
|
return nil
|
|
}
|
|
let account = Account(
|
|
identifier: mastodonAuthentication.identifier.uuidString,
|
|
display: user.displayNameWithFallback,
|
|
subtitle: user.acctWithDomain,
|
|
image: user.avatarImageURL().flatMap { INImage(url: $0) }
|
|
)
|
|
account.name = user.displayNameWithFallback
|
|
account.username = user.acctWithDomain
|
|
return account
|
|
}
|
|
return accounts
|
|
} // end managedObjectContext.perform
|
|
|
|
return accounts
|
|
}
|
|
|
|
}
|
|
|
|
extension Array where Element == Account {
|
|
func mastodonAuthentication(in managedObjectContext: NSManagedObjectContext) throws -> [MastodonAuthentication] {
|
|
let identifiers = self
|
|
.compactMap { $0.identifier }
|
|
.compactMap { UUID(uuidString: $0) }
|
|
let results = AuthenticationServiceProvider.shared.authentications.filter({ identifiers.contains($0.identifier) })
|
|
return results
|
|
}
|
|
|
|
}
|