39 lines
1.2 KiB
Swift
39 lines
1.2 KiB
Swift
//
|
|
// Copyright 2023 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/// Represents the response from the account data report endpoint.
|
|
public struct AccountDataReport {
|
|
/// The JSON returned by the server, pretty-printed.
|
|
public let formattedJsonData: Data
|
|
|
|
/// The formatted text data returned by the server.
|
|
public let textData: Data
|
|
|
|
/// Initializes the requested account data.
|
|
///
|
|
/// Throws an error if the data is not a valid JSON object, or if the `text` field is not a
|
|
/// valid string.
|
|
public init(rawData: Data) throws {
|
|
let jsonValue = try JSONSerialization.jsonObject(with: rawData)
|
|
guard let jsonObject = jsonValue as? [String: Any] else {
|
|
throw OWSGenericError("Data is not a JSON object (but is valid JSON)")
|
|
}
|
|
|
|
self.formattedJsonData = try JSONSerialization.data(
|
|
withJSONObject: jsonObject,
|
|
options: .prettyPrinted
|
|
)
|
|
|
|
guard
|
|
let text = jsonObject["text"] as? String,
|
|
let textData = text.data(using: .utf8)
|
|
else {
|
|
throw OWSGenericError("Text is missing or cannot be parsed")
|
|
}
|
|
self.textData = textData
|
|
}
|
|
}
|