mirror of
https://github.com/VernissageApp/Vernissage.git
synced 2024-12-29 10:20:11 +01:00
78 lines
2.7 KiB
Swift
78 lines
2.7 KiB
Swift
//
|
|
// https://mczachurski.dev
|
|
// Copyright © 2023 Marcin Czachurski and the repository contributors.
|
|
// Licensed under the MIT License.
|
|
//
|
|
|
|
import Foundation
|
|
import MastodonSwift
|
|
|
|
extension MastodonClientAuthenticated {
|
|
func getAccount(for accountId: String) async throws -> Account {
|
|
let request = try Self.request(
|
|
for: baseURL,
|
|
target: Mastodon.Account.account(accountId),
|
|
withBearerToken: token
|
|
)
|
|
|
|
let (data, _) = try await urlSession.data(for: request)
|
|
return try JSONDecoder().decode(Account.self, from: data)
|
|
}
|
|
|
|
func getRelationship(for accountId: String) async throws -> Relationship? {
|
|
let request = try Self.request(
|
|
for: baseURL,
|
|
target: Mastodon.Account.relationships([accountId]),
|
|
withBearerToken: token
|
|
)
|
|
|
|
let (data, _) = try await urlSession.data(for: request)
|
|
let relationships = try JSONDecoder().decode([Relationship].self, from: data)
|
|
return relationships.first
|
|
}
|
|
|
|
func getStatuses(for accountId: String) async throws -> [Status] {
|
|
let request = try Self.request(
|
|
for: baseURL,
|
|
target: Mastodon.Account.statuses(accountId, true, true),
|
|
withBearerToken: token
|
|
)
|
|
|
|
let (data, _) = try await urlSession.data(for: request)
|
|
return try JSONDecoder().decode([Status].self, from: data)
|
|
}
|
|
|
|
func follow(for accountId: String) async throws -> Relationship {
|
|
let request = try Self.request(
|
|
for: baseURL,
|
|
target: Mastodon.Account.follow(accountId),
|
|
withBearerToken: token
|
|
)
|
|
|
|
let (data, _) = try await urlSession.data(for: request)
|
|
return try JSONDecoder().decode(Relationship.self, from: data)
|
|
}
|
|
|
|
func getFollowers(for accountId: String, page: Int = 1) async throws -> [Account] {
|
|
let request = try Self.request(
|
|
for: baseURL,
|
|
target: Mastodon.Account.followers(accountId, nil, nil, nil, nil, page),
|
|
withBearerToken: token
|
|
)
|
|
|
|
let (data, _) = try await urlSession.data(for: request)
|
|
return try JSONDecoder().decode([Account].self, from: data)
|
|
}
|
|
|
|
func getFollowing(for accountId: String, page: Int = 1) async throws -> [Account] {
|
|
let request = try Self.request(
|
|
for: baseURL,
|
|
target: Mastodon.Account.following(accountId, nil, nil, nil, nil, page),
|
|
withBearerToken: token
|
|
)
|
|
|
|
let (data, _) = try await urlSession.data(for: request)
|
|
return try JSONDecoder().decode([Account].self, from: data)
|
|
}
|
|
}
|