mirror of
https://github.com/mastodon/mastodon-ios
synced 2025-04-11 22:58:02 +02:00
116 lines
4.4 KiB
Swift
116 lines
4.4 KiB
Swift
// Copyright © 2023 Mastodon gGmbH. All rights reserved.
|
|
|
|
import Foundation
|
|
import MastodonUI
|
|
import CoreDataStack
|
|
import MastodonCore
|
|
import MastodonSDK
|
|
|
|
extension DataSourceFacade {
|
|
static func responseToUserViewButtonAction(
|
|
dependency: NeedsDependency & AuthContextProvider,
|
|
user: ManagedObjectRecord<MastodonUser>,
|
|
buttonState: UserView.ButtonState
|
|
) async throws {
|
|
switch buttonState {
|
|
case .follow:
|
|
try await DataSourceFacade.responseToUserFollowAction(
|
|
dependency: dependency,
|
|
user: user
|
|
)
|
|
|
|
if let userObject = user.object(in: dependency.context.managedObjectContext) {
|
|
dependency.authContext.mastodonAuthenticationBox.inMemoryCache.followingUserIds.append(userObject.id)
|
|
}
|
|
|
|
case .request:
|
|
try await DataSourceFacade.responseToUserFollowAction(
|
|
dependency: dependency,
|
|
user: user
|
|
)
|
|
|
|
if let userObject = user.object(in: dependency.context.managedObjectContext) {
|
|
dependency.authContext.mastodonAuthenticationBox.inMemoryCache.followRequestedUserIDs.append(userObject.id)
|
|
}
|
|
|
|
case .unfollow:
|
|
try await DataSourceFacade.responseToUserFollowAction(
|
|
dependency: dependency,
|
|
user: user
|
|
)
|
|
if let userObject = user.object(in: dependency.context.managedObjectContext) {
|
|
dependency.authContext.mastodonAuthenticationBox.inMemoryCache.followingUserIds.removeAll(where: { $0 == userObject.id })
|
|
}
|
|
case .blocked:
|
|
try await DataSourceFacade.responseToUserBlockAction(
|
|
dependency: dependency,
|
|
user: user
|
|
)
|
|
|
|
if let userObject = user.object(in: dependency.context.managedObjectContext) {
|
|
dependency.authContext.mastodonAuthenticationBox.inMemoryCache.blockedUserIds.append(userObject.id)
|
|
}
|
|
|
|
case .pending:
|
|
try await DataSourceFacade.responseToUserFollowAction(
|
|
dependency: dependency,
|
|
user: user
|
|
)
|
|
|
|
if let userObject = user.object(in: dependency.context.managedObjectContext) {
|
|
dependency.authContext.mastodonAuthenticationBox.inMemoryCache.followRequestedUserIDs.removeAll(where: { $0 == userObject.id })
|
|
}
|
|
case .none, .loading:
|
|
break //no-op
|
|
}
|
|
}
|
|
|
|
static func responseToUserViewButtonAction(
|
|
dependency: NeedsDependency & AuthContextProvider,
|
|
user: Mastodon.Entity.Account,
|
|
buttonState: UserView.ButtonState
|
|
) async throws {
|
|
switch buttonState {
|
|
case .follow:
|
|
_ = try await DataSourceFacade.responseToUserFollowAction(
|
|
dependency: dependency,
|
|
user: user
|
|
)
|
|
|
|
dependency.authContext.mastodonAuthenticationBox.inMemoryCache.followingUserIds.append(user.id)
|
|
|
|
case .request:
|
|
_ = try await DataSourceFacade.responseToUserFollowAction(
|
|
dependency: dependency,
|
|
user: user
|
|
)
|
|
|
|
dependency.authContext.mastodonAuthenticationBox.inMemoryCache.followRequestedUserIDs.append(user.id)
|
|
case .unfollow:
|
|
_ = try await DataSourceFacade.responseToUserFollowAction(
|
|
dependency: dependency,
|
|
user: user
|
|
)
|
|
|
|
dependency.authContext.mastodonAuthenticationBox.inMemoryCache.followingUserIds.removeAll(where: { $0 == user.id })
|
|
case .blocked:
|
|
try await DataSourceFacade.responseToUserBlockAction(
|
|
dependency: dependency,
|
|
user: user
|
|
)
|
|
|
|
dependency.authContext.mastodonAuthenticationBox.inMemoryCache.blockedUserIds.append(user.id)
|
|
|
|
case .pending:
|
|
_ = try await DataSourceFacade.responseToUserFollowAction(
|
|
dependency: dependency,
|
|
user: user
|
|
)
|
|
|
|
dependency.authContext.mastodonAuthenticationBox.inMemoryCache.followRequestedUserIDs.removeAll(where: { $0 == user.id })
|
|
case .none, .loading:
|
|
break //no-op
|
|
}
|
|
}
|
|
}
|