2021-04-29 09:51:52 +02:00
|
|
|
//
|
|
|
|
// BlockDomainService.swift
|
|
|
|
// Mastodon
|
|
|
|
//
|
|
|
|
// Created by sxiaojian on 2021/4/29.
|
|
|
|
//
|
|
|
|
|
2021-04-30 08:55:02 +02:00
|
|
|
import Combine
|
2021-04-29 09:51:52 +02:00
|
|
|
import CoreData
|
|
|
|
import CoreDataStack
|
|
|
|
import Foundation
|
2021-04-30 06:53:25 +02:00
|
|
|
import MastodonSDK
|
|
|
|
import OSLog
|
|
|
|
import UIKit
|
2021-04-29 09:51:52 +02:00
|
|
|
|
|
|
|
final class BlockDomainService {
|
2021-04-30 08:55:02 +02:00
|
|
|
// input
|
|
|
|
weak var backgroundManagedObjectContext: NSManagedObjectContext?
|
|
|
|
weak var authenticationService: AuthenticationService?
|
|
|
|
|
|
|
|
// output
|
|
|
|
let blockedDomains = CurrentValueSubject<[String], Never>([])
|
|
|
|
|
|
|
|
init(
|
|
|
|
backgroundManagedObjectContext: NSManagedObjectContext,
|
|
|
|
authenticationService: AuthenticationService
|
2021-04-30 06:53:25 +02:00
|
|
|
) {
|
2021-04-30 08:55:02 +02:00
|
|
|
self.backgroundManagedObjectContext = backgroundManagedObjectContext
|
|
|
|
self.authenticationService = authenticationService
|
|
|
|
guard let authorizationBox = authenticationService.activeMastodonAuthenticationBox.value else { return }
|
|
|
|
backgroundManagedObjectContext.perform {
|
|
|
|
let _blockedDomains: [DomainBlock] = {
|
|
|
|
let request = DomainBlock.sortedFetchRequest
|
|
|
|
request.predicate = DomainBlock.predicate(domain: authorizationBox.domain, userID: authorizationBox.userID)
|
|
|
|
request.returnsObjectsAsFaults = false
|
|
|
|
do {
|
|
|
|
return try backgroundManagedObjectContext.fetch(request)
|
|
|
|
} catch {
|
|
|
|
assertionFailure(error.localizedDescription)
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
self.blockedDomains.value = _blockedDomains.map(\.blockedDomain)
|
|
|
|
}
|
2021-04-29 09:51:52 +02:00
|
|
|
}
|
|
|
|
|
2022-01-27 14:23:39 +01:00
|
|
|
// func blockDomain(
|
|
|
|
// userProvider: UserProvider,
|
|
|
|
// cell: UITableViewCell?
|
|
|
|
// ) {
|
|
|
|
// guard let activeMastodonAuthenticationBox = userProvider.context.authenticationService.activeMastodonAuthenticationBox.value else { return }
|
|
|
|
// guard let context = userProvider.context else {
|
|
|
|
// return
|
|
|
|
// }
|
|
|
|
// var mastodonUser: AnyPublisher<MastodonUser?, Never>
|
|
|
|
// if let cell = cell {
|
|
|
|
// mastodonUser = userProvider.mastodonUser(for: cell).eraseToAnyPublisher()
|
|
|
|
// } else {
|
|
|
|
// mastodonUser = userProvider.mastodonUser().eraseToAnyPublisher()
|
|
|
|
// }
|
|
|
|
// mastodonUser
|
|
|
|
// .compactMap { mastodonUser -> AnyPublisher<Mastodon.Response.Content<Mastodon.Entity.Empty>, Error>? in
|
|
|
|
// guard let mastodonUser = mastodonUser else {
|
|
|
|
// return nil
|
|
|
|
// }
|
|
|
|
// return context.apiService.blockDomain(user: mastodonUser, authorizationBox: activeMastodonAuthenticationBox)
|
|
|
|
// }
|
|
|
|
// .switchToLatest()
|
|
|
|
// .flatMap { _ -> AnyPublisher<Mastodon.Response.Content<[String]>, Error> in
|
|
|
|
// context.apiService.getDomainblocks(domain: activeMastodonAuthenticationBox.domain, authorizationBox: activeMastodonAuthenticationBox)
|
|
|
|
// }
|
|
|
|
// .sink { completion in
|
|
|
|
// switch completion {
|
|
|
|
// case .finished:
|
|
|
|
// break
|
|
|
|
// case .failure(let error):
|
|
|
|
// print(error)
|
|
|
|
// }
|
|
|
|
// } receiveValue: { [weak self] response in
|
|
|
|
// self?.blockedDomains.value = response.value
|
|
|
|
// }
|
|
|
|
// .store(in: &userProvider.disposeBag)
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// func unblockDomain(
|
|
|
|
// userProvider: UserProvider,
|
|
|
|
// cell: UITableViewCell?
|
|
|
|
// ) {
|
|
|
|
// guard let activeMastodonAuthenticationBox = userProvider.context.authenticationService.activeMastodonAuthenticationBox.value else { return }
|
|
|
|
// guard let context = userProvider.context else {
|
|
|
|
// return
|
|
|
|
// }
|
|
|
|
// var mastodonUser: AnyPublisher<MastodonUser?, Never>
|
|
|
|
// if let cell = cell {
|
|
|
|
// mastodonUser = userProvider.mastodonUser(for: cell).eraseToAnyPublisher()
|
|
|
|
// } else {
|
|
|
|
// mastodonUser = userProvider.mastodonUser().eraseToAnyPublisher()
|
|
|
|
// }
|
|
|
|
// mastodonUser
|
|
|
|
// .compactMap { mastodonUser -> AnyPublisher<Mastodon.Response.Content<Mastodon.Entity.Empty>, Error>? in
|
|
|
|
// guard let mastodonUser = mastodonUser else {
|
|
|
|
// return nil
|
|
|
|
// }
|
|
|
|
// return context.apiService.unblockDomain(user: mastodonUser, authorizationBox: activeMastodonAuthenticationBox)
|
|
|
|
// }
|
|
|
|
// .switchToLatest()
|
|
|
|
// .flatMap { _ -> AnyPublisher<Mastodon.Response.Content<[String]>, Error> in
|
|
|
|
// context.apiService.getDomainblocks(domain: activeMastodonAuthenticationBox.domain, authorizationBox: activeMastodonAuthenticationBox)
|
|
|
|
// }
|
|
|
|
// .sink { completion in
|
|
|
|
// switch completion {
|
|
|
|
// case .finished:
|
|
|
|
// break
|
|
|
|
// case .failure(let error):
|
|
|
|
// print(error)
|
|
|
|
// }
|
|
|
|
// } receiveValue: { [weak self] response in
|
|
|
|
// self?.blockedDomains.value = response.value
|
|
|
|
// }
|
|
|
|
// .store(in: &userProvider.disposeBag)
|
|
|
|
// }
|
2021-04-29 09:51:52 +02:00
|
|
|
}
|