Kurdtvs-Live-Kurdish-TV-Kur.../Mastodon/Service/APIService/APIService+Media.swift

47 lines
1.3 KiB
Swift
Raw Normal View History

2021-03-18 12:42:26 +01:00
//
// APIService+Media.swift
// Mastodon
//
// Created by MainasuK Cirno on 2021-3-18.
//
import Foundation
import Combine
import MastodonSDK
extension APIService {
func uploadMedia(
domain: String,
2021-06-14 23:09:50 +02:00
query: Mastodon.API.Media.UploadMediaQuery,
2021-03-18 12:42:26 +01:00
mastodonAuthenticationBox: AuthenticationService.MastodonAuthenticationBox
) -> AnyPublisher<Mastodon.Response.Content<Mastodon.Entity.Attachment>, Error> {
let authorization = mastodonAuthenticationBox.userAuthorization
return Mastodon.API.Media.uploadMedia(
session: session,
domain: domain,
query: query,
authorization: authorization
)
}
func updateMedia(
domain: String,
attachmentID: Mastodon.Entity.Attachment.ID,
query: Mastodon.API.Media.UpdateMediaQuery,
mastodonAuthenticationBox: AuthenticationService.MastodonAuthenticationBox
) -> AnyPublisher<Mastodon.Response.Content<Mastodon.Entity.Attachment>, Error> {
let authorization = mastodonAuthenticationBox.userAuthorization
return Mastodon.API.Media.updateMedia(
session: session,
domain: domain,
attachmentID: attachmentID,
query: query,
authorization: authorization
)
}
2021-03-18 12:42:26 +01:00
}