Tusker/ShareExtension/ShareMastodonContext.swift

87 lines
2.5 KiB
Swift
Raw Permalink Normal View History

2023-04-19 01:55:14 +00:00
//
// ShareMastodonContext.swift
// ShareExtension
//
// Created by Shadowfacts on 4/17/23.
// Copyright © 2023 Shadowfacts. All rights reserved.
//
import Pachyderm
import ComposeUI
import UserAccounts
import InstanceFeatures
import Combine
final class ShareMastodonContext: ComposeMastodonContext, ObservableObject, Sendable {
2023-04-19 01:55:14 +00:00
let accountInfo: UserAccountInfo?
let client: Client
let instanceFeatures: InstanceFeatures
@MainActor
private var customEmojis: [Emoji]?
@MainActor
@Published
private(set) var ownAccount: Account?
2023-04-19 01:55:14 +00:00
init(accountInfo: UserAccountInfo) {
self.accountInfo = accountInfo
self.client = Client(baseURL: accountInfo.instanceURL, accessToken: accountInfo.accessToken)
self.instanceFeatures = InstanceFeatures()
Task { @MainActor in
async let instance = try? await run(Client.getInstanceV1()).0
2024-01-27 19:58:36 +00:00
async let nodeInfo = try? await client.nodeInfo()
2023-04-19 01:55:14 +00:00
guard let instance = await instance else { return }
self.instanceFeatures.update(instance: InstanceInfo(v1: instance), nodeInfo: await nodeInfo)
2023-04-19 01:55:14 +00:00
}
Task { @MainActor in
if let account = try? await run(Client.getSelfAccount()).0 {
self.ownAccount = account
}
}
}
2023-04-23 01:16:30 +00:00
// MARK: ComposeMastodonContext
2023-04-19 01:55:14 +00:00
func run<Result: Decodable & Sendable>(_ request: Request<Result>) async throws -> (Result, Pagination?) {
return try await withCheckedThrowingContinuation({ continuation in
client.run(request) { response in
switch response {
case .success(let result, let pagination):
continuation.resume(returning: (result, pagination))
case .failure(let error):
continuation.resume(throwing: error)
}
}
})
}
@MainActor
2024-01-27 19:58:36 +00:00
func getCustomEmojis() async -> [Emoji] {
2023-04-19 01:55:14 +00:00
if let customEmojis {
2024-01-27 19:58:36 +00:00
return customEmojis
2023-04-19 01:55:14 +00:00
} else {
2024-01-27 19:58:36 +00:00
let emojis = (try? await self.run(Client.getCustomEmoji()).0) ?? []
self.customEmojis = emojis
return emojis
2023-04-19 01:55:14 +00:00
}
}
func searchCachedAccounts(query: String) -> [AccountProtocol] {
return []
}
func cachedRelationship(for accountID: String) -> RelationshipProtocol? {
return nil
}
func searchCachedHashtags(query: String) -> [Hashtag] {
return []
}
func storeCreatedStatus(_ status: Status) {
}
2023-04-19 01:55:14 +00:00
}