mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
917 B
Swift
26 lines
917 B
Swift
3 years ago
|
// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
|
||
|
|
||
3 years ago
|
public struct FileUploadResponse: Codable {
|
||
3 years ago
|
public let id: String
|
||
|
}
|
||
|
|
||
|
// MARK: - Codable
|
||
|
|
||
|
extension FileUploadResponse {
|
||
|
public init(from decoder: Decoder) throws {
|
||
|
let container: KeyedDecodingContainer<CodingKeys> = try decoder.container(keyedBy: CodingKeys.self)
|
||
|
|
||
|
// Note: SOGS returns an 'int' value but we want to avoid handling both cases so parse
|
||
|
// that and convert the value to a string so we can be consistent (SOGS is able to handle
|
||
|
// an array of Strings for the `files` param when posting a message just fine)
|
||
|
if let intValue: Int64 = try? container.decode(Int64.self, forKey: .id) {
|
||
|
self = FileUploadResponse(id: "\(intValue)")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
self = FileUploadResponse(
|
||
|
id: try container.decode(String.self, forKey: .id)
|
||
|
)
|
||
|
}
|
||
3 years ago
|
}
|