forked from zelo72/mastodon-ios
69 lines
2.1 KiB
Swift
69 lines
2.1 KiB
Swift
//
|
|
// APIService+UserTimeline.swift
|
|
// Mastodon
|
|
//
|
|
// Created by MainasuK Cirno on 2021-3-30.
|
|
//
|
|
|
|
import Foundation
|
|
import Combine
|
|
import CoreData
|
|
import CoreDataStack
|
|
import CommonOSLog
|
|
import MastodonSDK
|
|
|
|
extension APIService {
|
|
|
|
func userTimeline(
|
|
accountID: String,
|
|
maxID: Mastodon.Entity.Status.ID? = nil,
|
|
sinceID: Mastodon.Entity.Status.ID? = nil,
|
|
limit: Int = onceRequestStatusMaxCount,
|
|
excludeReplies: Bool? = nil,
|
|
excludeReblogs: Bool? = nil,
|
|
onlyMedia: Bool? = nil,
|
|
authenticationBox: MastodonAuthenticationBox
|
|
) async throws -> Mastodon.Response.Content<[Mastodon.Entity.Status]> {
|
|
let domain = authenticationBox.domain
|
|
let authorization = authenticationBox.userAuthorization
|
|
|
|
let query = Mastodon.API.Account.AccountStatusesQuery(
|
|
maxID: maxID,
|
|
sinceID: sinceID,
|
|
excludeReplies: excludeReplies,
|
|
excludeReblogs: excludeReblogs,
|
|
onlyMedia: onlyMedia,
|
|
limit: limit
|
|
)
|
|
|
|
let response = try await Mastodon.API.Account.statuses(
|
|
session: session,
|
|
domain: domain,
|
|
accountID: accountID,
|
|
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 {
|
|
Persistence.Status.createOrMerge(
|
|
in: managedObjectContext,
|
|
context: Persistence.Status.PersistContext(
|
|
domain: domain,
|
|
entity: entity,
|
|
me: me,
|
|
statusCache: nil,
|
|
userCache: nil,
|
|
networkDate: response.networkDate
|
|
)
|
|
)
|
|
}
|
|
}
|
|
|
|
return response
|
|
} // end func
|
|
|
|
}
|