Add x-callback-url response data

This commit is contained in:
Shadowfacts 2018-09-23 18:43:33 -04:00
parent d74f86418e
commit 7af64f8e5a
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
2 changed files with 12 additions and 3 deletions

View File

@ -252,7 +252,10 @@ class ComposeViewController: UIViewController {
self.progressView.step()
self.performSegue(withIdentifier: "postComplete", sender: self)
self.xcbSession?.complete(with: .success)
self.xcbSession?.complete(with: .success, additionalData: [
"statusURL": status.url!.absoluteString,
"statusURI": status.uri
])
}
}
}

View File

@ -21,9 +21,15 @@ class XCBSession {
self.cancel = cancel
}
func complete(with result: XCBSessionResult) {
func complete(with result: XCBSessionResult, additionalData: [String: String?]? = nil) {
let url = result == .success ? success : result == .error ? error : cancel
if let url = url {
if var url = url {
if let additionalData = additionalData {
var components = URLComponents(url: url, resolvingAgainstBaseURL: true)!
components.queryItems = components.queryItems ?? []
components.queryItems!.append(contentsOf: additionalData.map(URLQueryItem.init))
url = components.url!
}
UIApplication.shared.open(url, options: [:])
}
}