import Foundation import Siesta import SwiftUI final class AccountValidator: Service { let app: Binding let url: String let account: Account? var formObjectID: Binding var isValid: Binding var isValidated: Binding var isValidating: Binding var error: Binding? init( app: Binding, url: String, account: Account? = nil, id: Binding, isValid: Binding, isValidated: Binding, isValidating: Binding, error: Binding? = nil ) { self.app = app self.url = url self.account = account formObjectID = id self.isValid = isValid self.isValidated = isValidated self.isValidating = isValidating self.error = error super.init(baseURL: url) configure() } func configure() { configure { $0.pipeline[.parsing].add(SwiftyJSONTransformer, contentTypes: ["*/json"]) } configure("/api/v1/auth/feed", requestMethods: [.get]) { guard self.account != nil else { return } $0.headers["Cookie"] = self.cookieHeader } } func validateInstance() { reset() neverGonnaGiveYouUp .load() .onSuccess { response in guard self.url == self.formObjectID.wrappedValue else { return } let json = response.json.dictionaryValue let author = self.app.wrappedValue == .invidious ? json["author"] : json["uploader"] if author == "Rick Astley" { self.isValid.wrappedValue = true self.error?.wrappedValue = nil } else { self.isValid.wrappedValue = false } } .onFailure { error in guard self.url == self.formObjectID.wrappedValue else { return } self.isValid.wrappedValue = false self.error?.wrappedValue = error.userMessage } .onCompletion { _ in self.isValidated.wrappedValue = true self.isValidating.wrappedValue = false } } func validateInvidiousAccount() { reset() feed .load() .onSuccess { _ in guard self.account!.sid == self.formObjectID.wrappedValue else { return } self.isValid.wrappedValue = true } .onFailure { _ in guard self.account!.sid == self.formObjectID.wrappedValue else { return } self.isValid.wrappedValue = false } .onCompletion { _ in self.isValidated.wrappedValue = true self.isValidating.wrappedValue = false } } func reset() { isValid.wrappedValue = false isValidated.wrappedValue = false isValidating.wrappedValue = false error?.wrappedValue = nil } var cookieHeader: String { "SID=\(account!.sid)" } var feed: Resource { resource("/api/v1/auth/feed") } var videoResourceBasePath: String { app.wrappedValue == .invidious ? "/api/v1/videos" : "/streams" } var neverGonnaGiveYouUp: Resource { resource("\(videoResourceBasePath)/dQw4w9WgXcQ") } }