Vernissage/PixelfedKit/Sources/PixelfedKit/PixelfedClient+Status.swift

39 lines
1.3 KiB
Swift

//
// https://mczachurski.dev
// Copyright © 2023 Marcin Czachurski and the repository contributors.
// Licensed under the Apache License 2.0.
//
import Foundation
public extension PixelfedClientAuthenticated {
func status(statusId: EntityId) async throws -> Status {
let request = try Self.request(
for: baseURL,
target: Pixelfed.Statuses.status(statusId),
withBearerToken: token)
return try await downloadJson(Status.self, request: request)
}
func favouritedBy(for statusId: String, limit: Int? = nil, page: Int = 1) async throws -> [Account] {
let request = try Self.request(
for: baseURL,
target: Pixelfed.Statuses.favouritedBy(statusId, nil, nil, nil, limit, page),
withBearerToken: token
)
return try await downloadJson([Account].self, request: request)
}
func rebloggedBy(for statusId: String, limit: Int? = nil, page: Int = 1) async throws -> [Account] {
let request = try Self.request(
for: baseURL,
target: Pixelfed.Statuses.rebloggedBy(statusId, nil, nil, nil, limit, page),
withBearerToken: token
)
return try await downloadJson([Account].self, request: request)
}
}