46 lines
2.1 KiB
Swift
46 lines
2.1 KiB
Swift
//
|
|
// https://mczachurski.dev
|
|
// Copyright © 2023 Marcin Czachurski and the repository contributors.
|
|
// Licensed under the MIT License.
|
|
//
|
|
|
|
import Foundation
|
|
import PixelfedKit
|
|
|
|
/// Pixelfed 'Timeline'.
|
|
extension Client {
|
|
public class PublicTimeline: BaseClient {
|
|
public func getStatuses(local: Bool? = nil,
|
|
remote: Bool? = nil,
|
|
maxId: String? = nil,
|
|
sinceId: String? = nil,
|
|
minId: String? = nil,
|
|
limit: Int = 40) async throws -> [Status] {
|
|
return try await pixelfedClient.getPublicTimeline(local: local,
|
|
remote: remote,
|
|
onlyMedia: true,
|
|
maxId: maxId,
|
|
sinceId: sinceId,
|
|
minId: minId,
|
|
limit: limit)
|
|
}
|
|
|
|
public func getTagStatuses(tag: String,
|
|
local: Bool? = nil,
|
|
remote: Bool? = nil,
|
|
maxId: String? = nil,
|
|
sinceId: String? = nil,
|
|
minId: String? = nil,
|
|
limit: Int = 40) async throws -> [Status] {
|
|
return try await pixelfedClient.getTagTimeline(tag: tag,
|
|
local: local,
|
|
remote: remote,
|
|
onlyMedia: true,
|
|
maxId: maxId,
|
|
sinceId: sinceId,
|
|
minId: minId,
|
|
limit: limit)
|
|
}
|
|
}
|
|
}
|