Tusker/ShareExtension/ShareMastodonContext.swift

82 lines
2.3 KiB
Swift
Raw Normal View History

2023-04-18 21:55:14 -04: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-18 21:55:14 -04:00
let accountInfo: UserAccountInfo?
let client: Client
let instanceFeatures: InstanceFeatures
@MainActor
private var customEmojis: [Emoji]?
@MainActor
@Published
private(set) var ownAccount: Account?
2023-04-18 21:55:14 -04: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 14:58:36 -05:00
async let nodeInfo = try? await client.nodeInfo()
2023-04-18 21:55:14 -04:00
guard let instance = await instance else { return }
self.instanceFeatures.update(instance: InstanceInfo(v1: instance), nodeInfo: await nodeInfo)
2023-04-18 21:55:14 -04:00
}
Task { @MainActor in
if let account = try? await run(Client.getSelfAccount()).0 {
self.ownAccount = account
}
}
}
2023-04-22 21:16:30 -04:00
// MARK: ComposeMastodonContext
2023-04-18 21:55:14 -04:00
func run<Result: Decodable & Sendable>(_ request: Request<Result>) async throws(Client.Error) -> (Result, Pagination?) {
return try await client.run(request)
2023-04-18 21:55:14 -04:00
}
@MainActor
2024-01-27 14:58:36 -05:00
func getCustomEmojis() async -> [Emoji] {
2023-04-18 21:55:14 -04:00
if let customEmojis {
2024-01-27 14:58:36 -05:00
return customEmojis
2023-04-18 21:55:14 -04:00
} else {
2024-01-27 14:58:36 -05:00
let emojis = (try? await self.run(Client.getCustomEmoji()).0) ?? []
self.customEmojis = emojis
return emojis
2023-04-18 21:55:14 -04: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) {
}
2024-08-11 10:14:10 -07:00
func fetchStatus(id: String) -> (any StatusProtocol)? {
return nil
}
2023-04-18 21:55:14 -04:00
}