forked from zelo72/mastodon-ios
61 lines
1.8 KiB
Swift
61 lines
1.8 KiB
Swift
//
|
|
// APIService+Follower.swift
|
|
// Mastodon
|
|
//
|
|
// Created by Cirno MainasuK on 2021-11-1.
|
|
//
|
|
|
|
import UIKit
|
|
import Combine
|
|
import CoreData
|
|
import CoreDataStack
|
|
import CommonOSLog
|
|
import MastodonSDK
|
|
|
|
extension APIService {
|
|
|
|
func followers(
|
|
userID: Mastodon.Entity.Account.ID,
|
|
maxID: String?,
|
|
authenticationBox: MastodonAuthenticationBox
|
|
) async throws -> Mastodon.Response.Content<[Mastodon.Entity.Account]> {
|
|
let domain = authenticationBox.domain
|
|
let authorization = authenticationBox.userAuthorization
|
|
|
|
let query = Mastodon.API.Account.FollowerQuery(
|
|
maxID: maxID,
|
|
limit: nil
|
|
)
|
|
let response = try await Mastodon.API.Account.followers(
|
|
session: session,
|
|
domain: domain,
|
|
userID: userID,
|
|
query: query,
|
|
authorization: authorization
|
|
).singleOutput()
|
|
|
|
let managedObjectContext = self.backgroundManagedObjectContext
|
|
try await managedObjectContext.performChanges {
|
|
let me = authenticationBox.authenticationRecord.object(in: managedObjectContext)?.user
|
|
|
|
for entity in response.value {
|
|
let result = Persistence.MastodonUser.createOrMerge(
|
|
in: managedObjectContext,
|
|
context: Persistence.MastodonUser.PersistContext(
|
|
domain: domain,
|
|
entity: entity,
|
|
cache: nil,
|
|
networkDate: response.networkDate
|
|
)
|
|
)
|
|
|
|
let user = result.user
|
|
me?.update(isFollowing: true, by: user)
|
|
}
|
|
}
|
|
|
|
return response
|
|
}
|
|
|
|
}
|