mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-21 15:50:59 +00:00
Use response headers for pagination
This commit is contained in:
parent
012f970bdb
commit
3328306c44
8 changed files with 124 additions and 66 deletions
|
@ -4,63 +4,51 @@ import Combine
|
|||
import Foundation
|
||||
|
||||
public enum HTTPError: Error {
|
||||
case invalidStatusCode(HTTPURLResponse)
|
||||
case nonHTTPURLResponse(data: Data, response: URLResponse)
|
||||
case invalidStatusCode(data: Data, response: HTTPURLResponse)
|
||||
}
|
||||
|
||||
open class HTTPClient {
|
||||
public let decoder: JSONDecoder
|
||||
|
||||
private let session: URLSession
|
||||
private let decoder: JSONDecoder
|
||||
|
||||
public init(session: URLSession, decoder: JSONDecoder) {
|
||||
self.session = session
|
||||
self.decoder = decoder
|
||||
}
|
||||
|
||||
open func dataTaskPublisher<T: DecodableTarget>(
|
||||
_ target: T) -> AnyPublisher<(data: Data, response: HTTPURLResponse), Error> {
|
||||
if let protocolClasses = session.configuration.protocolClasses {
|
||||
for protocolClass in protocolClasses {
|
||||
(protocolClass as? TargetProcessing.Type)?.process(target: target)
|
||||
}
|
||||
}
|
||||
|
||||
return session.dataTaskPublisher(for: target.urlRequest())
|
||||
.tryMap { data, response in
|
||||
guard let httpResponse = response as? HTTPURLResponse else {
|
||||
throw HTTPError.nonHTTPURLResponse(data: data, response: response)
|
||||
}
|
||||
|
||||
guard Self.validStatusCodes.contains(httpResponse.statusCode) else {
|
||||
throw HTTPError.invalidStatusCode(data: data, response: httpResponse)
|
||||
}
|
||||
|
||||
return (data, httpResponse)
|
||||
}
|
||||
.eraseToAnyPublisher()
|
||||
}
|
||||
|
||||
open func request<T: DecodableTarget>(_ target: T) -> AnyPublisher<T.ResultType, Error> {
|
||||
dataTaskPublisher(target)
|
||||
.map(\.data)
|
||||
.decode(type: T.ResultType.self, decoder: decoder)
|
||||
.eraseToAnyPublisher()
|
||||
}
|
||||
|
||||
public func request<T: DecodableTarget, E: Error & Decodable>(
|
||||
_ target: T,
|
||||
decodeErrorsAs errorType: E.Type) -> AnyPublisher<T.ResultType, Error> {
|
||||
let decoder = self.decoder
|
||||
|
||||
return dataTaskPublisher(target)
|
||||
.tryMap { result -> Data in
|
||||
if
|
||||
let response = result.response as? HTTPURLResponse,
|
||||
!Self.validStatusCodes.contains(response.statusCode) {
|
||||
|
||||
if let decodedError = try? decoder.decode(E.self, from: result.data) {
|
||||
throw decodedError
|
||||
} else {
|
||||
throw HTTPError.invalidStatusCode(response)
|
||||
}
|
||||
}
|
||||
|
||||
return result.data
|
||||
}
|
||||
.decode(type: T.ResultType.self, decoder: decoder)
|
||||
.eraseToAnyPublisher()
|
||||
}
|
||||
}
|
||||
|
||||
private extension HTTPClient {
|
||||
public extension HTTPClient {
|
||||
static let validStatusCodes = 200..<300
|
||||
func dataTaskPublisher<T: DecodableTarget>(_ target: T) -> URLSession.DataTaskPublisher {
|
||||
if let protocolClasses = session.configuration.protocolClasses {
|
||||
for protocolClass in protocolClasses {
|
||||
(protocolClass as? TargetProcessing.Type)?.process(target: target)
|
||||
}
|
||||
}
|
||||
|
||||
return session.dataTaskPublisher(for: target.urlRequest())
|
||||
|
||||
// return session.request(target.urlRequest())
|
||||
// .validate()
|
||||
// .publishDecodable(type: T.ResultType.self, queue: session.rootQueue, decoder: decoder)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -35,6 +35,7 @@ public extension Target {
|
|||
|
||||
if let jsonBody = jsonBody {
|
||||
urlRequest.httpBody = try? JSONSerialization.data(withJSONObject: jsonBody)
|
||||
urlRequest.setValue("application/json; charset=utf-8", forHTTPHeaderField: "Content-Type")
|
||||
}
|
||||
|
||||
return urlRequest
|
||||
|
|
|
@ -21,8 +21,7 @@ public struct Paged<T: Endpoint> {
|
|||
}
|
||||
|
||||
extension Paged: Endpoint {
|
||||
public typealias ResultType = T.ResultType
|
||||
// public typealias ResultType = PagedResult<T.ResultType>
|
||||
public typealias ResultType = PagedResult<T.ResultType>
|
||||
|
||||
public var APIVersion: String { endpoint.APIVersion }
|
||||
|
||||
|
@ -49,8 +48,13 @@ extension Paged: Endpoint {
|
|||
public var headers: [String: String]? { endpoint.headers }
|
||||
}
|
||||
|
||||
//public struct PagedResult<T: Decodable>: Decodable {
|
||||
// public let result: T
|
||||
// public let maxID: String?
|
||||
// public let sinceID: String?
|
||||
//}
|
||||
public struct PagedResult<T: Decodable>: Decodable {
|
||||
public struct Info: Decodable {
|
||||
public let maxID: String?
|
||||
public let minID: String?
|
||||
public let sinceID: String?
|
||||
}
|
||||
|
||||
public let result: T
|
||||
public let info: Info
|
||||
}
|
||||
|
|
|
@ -14,15 +14,72 @@ public final class MastodonAPIClient: HTTPClient {
|
|||
super.init(session: session, decoder: MastodonDecoder())
|
||||
}
|
||||
|
||||
public override func request<T: DecodableTarget>(_ target: T) -> AnyPublisher<T.ResultType, Error> {
|
||||
super.request(target, decodeErrorsAs: APIError.self)
|
||||
public override func dataTaskPublisher<T: DecodableTarget>(
|
||||
_ target: T) -> AnyPublisher<(data: Data, response: HTTPURLResponse), Error> {
|
||||
super.dataTaskPublisher(target)
|
||||
.mapError { [weak self] error -> Error in
|
||||
if case let HTTPError.invalidStatusCode(data, _) = error,
|
||||
let apiError = try? self?.decoder.decode(APIError.self, from: data) {
|
||||
return apiError
|
||||
}
|
||||
|
||||
return error
|
||||
}
|
||||
.eraseToAnyPublisher()
|
||||
}
|
||||
}
|
||||
|
||||
extension MastodonAPIClient {
|
||||
public func request<E: Endpoint>(_ endpoint: E) -> AnyPublisher<E.ResultType, Error> {
|
||||
super.request(
|
||||
MastodonAPITarget(baseURL: instanceURL, endpoint: endpoint, accessToken: accessToken),
|
||||
decodeErrorsAs: APIError.self)
|
||||
dataTaskPublisher(target(endpoint: endpoint))
|
||||
.map(\.data)
|
||||
.decode(type: E.ResultType.self, decoder: decoder)
|
||||
.eraseToAnyPublisher()
|
||||
}
|
||||
|
||||
public func pagedRequest<E: Endpoint>(
|
||||
_ endpoint: E,
|
||||
maxID: String? = nil,
|
||||
minID: String? = nil,
|
||||
sinceID: String? = nil,
|
||||
limit: Int? = nil) -> AnyPublisher<PagedResult<E.ResultType>, Error> {
|
||||
let pagedTarget = target(endpoint: Paged(endpoint, maxID: maxID, minID: minID, sinceID: sinceID, limit: limit))
|
||||
let dataTask = dataTaskPublisher(pagedTarget).share()
|
||||
let decoded = dataTask.map(\.data).decode(type: E.ResultType.self, decoder: decoder)
|
||||
let info = dataTask.map { _, response -> PagedResult<E.ResultType>.Info in
|
||||
var maxID: String?
|
||||
var minID: String?
|
||||
var sinceID: String?
|
||||
|
||||
if let links = response.value(forHTTPHeaderField: "Link") {
|
||||
let queryItems = Self.linkDataDetector.matches(
|
||||
in: links,
|
||||
range: .init(links.startIndex..<links.endIndex, in: links))
|
||||
.compactMap { match -> [URLQueryItem]? in
|
||||
guard let url = match.url else { return nil }
|
||||
|
||||
return URLComponents(url: url, resolvingAgainstBaseURL: true)?.queryItems
|
||||
}
|
||||
.reduce([], +)
|
||||
|
||||
maxID = queryItems.first { $0.name == "max_id" }?.value
|
||||
minID = queryItems.first { $0.name == "min_id" }?.value
|
||||
sinceID = queryItems.first { $0.name == "since_id" }?.value
|
||||
}
|
||||
|
||||
return PagedResult.Info(maxID: maxID, minID: minID, sinceID: sinceID)
|
||||
}
|
||||
|
||||
return decoded.zip(info).map(PagedResult.init(result:info:)).eraseToAnyPublisher()
|
||||
}
|
||||
}
|
||||
|
||||
private extension MastodonAPIClient {
|
||||
// swiftlint:disable force_try
|
||||
static let linkDataDetector = try! NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
|
||||
// swiftlint:enable force_try
|
||||
|
||||
func target<E: Endpoint>(endpoint: E) -> MastodonAPITarget<E> {
|
||||
MastodonAPITarget(baseURL: instanceURL, endpoint: endpoint, accessToken: accessToken)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ import MastodonAPI
|
|||
|
||||
public struct StatusListService {
|
||||
public let statusSections: AnyPublisher<[[Status]], Error>
|
||||
public let paginates: Bool
|
||||
public let nextPageMaxIDs: AnyPublisher<String?, Never>
|
||||
public let contextParentID: String?
|
||||
public let title: String?
|
||||
|
||||
|
@ -35,15 +35,18 @@ extension StatusListService {
|
|||
title = "#".appending(tag)
|
||||
}
|
||||
|
||||
let nextPageMaxIDsSubject = PassthroughSubject<String?, Never>()
|
||||
|
||||
self.init(statusSections: contentDatabase.statusesObservation(timeline: timeline),
|
||||
paginates: true,
|
||||
nextPageMaxIDs: nextPageMaxIDsSubject.eraseToAnyPublisher(),
|
||||
contextParentID: nil,
|
||||
title: title,
|
||||
filterContext: filterContext,
|
||||
mastodonAPIClient: mastodonAPIClient,
|
||||
contentDatabase: contentDatabase) { maxID, minID in
|
||||
mastodonAPIClient.request(Paged(timeline.endpoint, maxID: maxID, minID: minID))
|
||||
.flatMap { contentDatabase.insert(statuses: $0, timeline: timeline) }
|
||||
mastodonAPIClient.pagedRequest(timeline.endpoint, maxID: maxID, minID: minID)
|
||||
.handleEvents(receiveOutput: { nextPageMaxIDsSubject.send($0.info.maxID) })
|
||||
.flatMap { contentDatabase.insert(statuses: $0.result, timeline: timeline) }
|
||||
.eraseToAnyPublisher()
|
||||
}
|
||||
}
|
||||
|
@ -53,11 +56,13 @@ extension StatusListService {
|
|||
collection: CurrentValueSubject<AccountStatusCollection, Never>,
|
||||
mastodonAPIClient: MastodonAPIClient,
|
||||
contentDatabase: ContentDatabase) {
|
||||
let nextPageMaxIDsSubject = PassthroughSubject<String?, Never>()
|
||||
|
||||
self.init(
|
||||
statusSections: collection
|
||||
.flatMap { contentDatabase.statusesObservation(accountID: accountID, collection: $0) }
|
||||
.eraseToAnyPublisher(),
|
||||
paginates: true,
|
||||
nextPageMaxIDs: nextPageMaxIDsSubject.eraseToAnyPublisher(),
|
||||
contextParentID: nil,
|
||||
title: nil,
|
||||
filterContext: .account,
|
||||
|
@ -83,8 +88,9 @@ extension StatusListService {
|
|||
excludeReplies: excludeReplies,
|
||||
onlyMedia: onlyMedia,
|
||||
pinned: false)
|
||||
return mastodonAPIClient.request(Paged(endpoint, maxID: maxID, minID: minID))
|
||||
.flatMap { contentDatabase.insert(statuses: $0, accountID: accountID, collection: collection.value) }
|
||||
return mastodonAPIClient.pagedRequest(endpoint, maxID: maxID, minID: minID)
|
||||
.handleEvents(receiveOutput: { nextPageMaxIDsSubject.send($0.info.maxID) })
|
||||
.flatMap { contentDatabase.insert(statuses: $0.result, accountID: accountID, collection: collection.value) }
|
||||
.eraseToAnyPublisher()
|
||||
}
|
||||
}
|
||||
|
@ -113,7 +119,7 @@ public extension StatusListService {
|
|||
|
||||
func contextService(statusID: String) -> Self {
|
||||
Self(statusSections: contentDatabase.contextObservation(parentID: statusID),
|
||||
paginates: false,
|
||||
nextPageMaxIDs: Empty().eraseToAnyPublisher(),
|
||||
contextParentID: statusID,
|
||||
title: nil,
|
||||
filterContext: .thread,
|
||||
|
|
|
@ -147,11 +147,10 @@ class CollectionViewController: UITableViewController {
|
|||
extension CollectionViewController: UITableViewDataSourcePrefetching {
|
||||
func tableView(_ tableView: UITableView, prefetchRowsAt indexPaths: [IndexPath]) {
|
||||
guard
|
||||
viewModel.paginates,
|
||||
let maxID = viewModel.nextPageMaxID,
|
||||
let indexPath = indexPaths.last,
|
||||
indexPath.section == dataSource.numberOfSections(in: tableView) - 1,
|
||||
indexPath.row == dataSource.tableView(tableView, numberOfRowsInSection: indexPath.section) - 1,
|
||||
let maxID = dataSource.itemIdentifier(for: indexPath)?.id
|
||||
indexPath.row == dataSource.tableView(tableView, numberOfRowsInSection: indexPath.section) - 1
|
||||
else { return }
|
||||
|
||||
viewModel.request(maxID: maxID, minID: nil)
|
||||
|
|
|
@ -9,7 +9,7 @@ public protocol CollectionViewModel {
|
|||
var alertItems: AnyPublisher<AlertItem, Never> { get }
|
||||
var loading: AnyPublisher<Bool, Never> { get }
|
||||
var navigationEvents: AnyPublisher<NavigationEvent, Never> { get }
|
||||
var paginates: Bool { get }
|
||||
var nextPageMaxID: String? { get }
|
||||
var maintainScrollPositionOfItem: CollectionItem? { get }
|
||||
func request(maxID: String?, minID: String?)
|
||||
func itemSelected(_ item: CollectionItem)
|
||||
|
|
|
@ -9,6 +9,7 @@ public class StatusListViewModel: ObservableObject {
|
|||
@Published public private(set) var items = [[CollectionItem]]()
|
||||
@Published public var alertItem: AlertItem?
|
||||
public let navigationEvents: AnyPublisher<NavigationEvent, Never>
|
||||
public private(set) var nextPageMaxID: String?
|
||||
public private(set) var maintainScrollPositionOfItem: CollectionItem?
|
||||
|
||||
private var statuses = [String: Status]()
|
||||
|
@ -36,6 +37,10 @@ public class StatusListViewModel: ObservableObject {
|
|||
.assignErrorsToAlertItem(to: \.alertItem, on: self)
|
||||
.map { $0.map { $0.map { CollectionItem(id: $0.id, kind: .status) } } }
|
||||
.assign(to: &$items)
|
||||
|
||||
statusListService.nextPageMaxIDs
|
||||
.sink { [weak self] in self?.nextPageMaxID = $0 }
|
||||
.store(in: &cancellables)
|
||||
}
|
||||
|
||||
public var title: AnyPublisher<String?, Never> { Just(statusListService.title).eraseToAnyPublisher() }
|
||||
|
@ -96,8 +101,6 @@ extension StatusListViewModel: CollectionViewModel {
|
|||
}
|
||||
|
||||
public extension StatusListViewModel {
|
||||
var paginates: Bool { statusListService.paginates }
|
||||
|
||||
var contextParentID: String? { statusListService.contextParentID }
|
||||
|
||||
func statusViewModel(id: String) -> StatusViewModel? {
|
||||
|
|
Loading…
Reference in a new issue