2018-09-11 14:52:21 +00:00
|
|
|
//
|
|
|
|
// Instance.swift
|
|
|
|
// Pachyderm
|
|
|
|
//
|
|
|
|
// Created by Shadowfacts on 9/9/18.
|
|
|
|
// Copyright © 2018 Shadowfacts. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
2018-09-17 23:22:37 +00:00
|
|
|
public class Instance: Decodable {
|
2018-09-11 14:52:21 +00:00
|
|
|
public let uri: String
|
|
|
|
public let title: String
|
|
|
|
public let description: String
|
2019-09-22 22:57:33 +00:00
|
|
|
public let email: String?
|
2018-09-11 14:52:21 +00:00
|
|
|
public let version: String
|
|
|
|
public let urls: [String: URL]
|
2019-09-22 22:57:33 +00:00
|
|
|
public let thumbnail: URL?
|
2018-09-30 02:20:17 +00:00
|
|
|
public let languages: [String]?
|
2019-09-22 22:57:33 +00:00
|
|
|
public let stats: Stats?
|
2021-09-12 20:28:31 +00:00
|
|
|
public let configuration: Configuration?
|
2019-09-22 22:57:33 +00:00
|
|
|
|
|
|
|
// pleroma doesn't currently implement these
|
2018-09-30 02:20:17 +00:00
|
|
|
public let contactAccount: Account?
|
2018-09-11 14:52:21 +00:00
|
|
|
|
2021-09-12 20:28:31 +00:00
|
|
|
// superseded by mastodon's configuration.statuses.max_characters, still used by older instances & pleroma
|
|
|
|
let maxTootCharacters: Int?
|
|
|
|
let pollLimits: PollsConfiguration?
|
|
|
|
|
|
|
|
public var maxStatusCharacters: Int? {
|
|
|
|
configuration?.statuses.maxCharacters ?? maxTootCharacters
|
|
|
|
}
|
|
|
|
public var pollsConfiguration: PollsConfiguration? {
|
|
|
|
configuration?.polls ?? pollLimits
|
|
|
|
}
|
2018-09-11 14:52:21 +00:00
|
|
|
|
2019-09-22 22:57:33 +00:00
|
|
|
// we need a custom decoder, because all API-compatible implementations don't return some data in the same format
|
|
|
|
public required init(from decoder: Decoder) throws {
|
|
|
|
let container = try decoder.container(keyedBy: CodingKeys.self)
|
|
|
|
self.uri = try container.decode(String.self, forKey: .uri)
|
|
|
|
self.title = try container.decode(String.self, forKey: .title)
|
|
|
|
self.description = try container.decode(String.self, forKey: .description)
|
|
|
|
self.email = try container.decodeIfPresent(String.self, forKey: .email)
|
|
|
|
self.version = try container.decode(String.self, forKey: .version)
|
|
|
|
if let urls = try? container.decodeIfPresent([String: URL].self, forKey: .urls) {
|
|
|
|
self.urls = urls
|
|
|
|
} else {
|
|
|
|
self.urls = [:]
|
|
|
|
}
|
|
|
|
|
|
|
|
self.languages = try? container.decodeIfPresent([String].self, forKey: .languages)
|
|
|
|
self.contactAccount = try? container.decodeIfPresent(Account.self, forKey: .contactAccount)
|
|
|
|
|
|
|
|
self.stats = try? container.decodeIfPresent(Stats.self, forKey: .stats)
|
|
|
|
self.thumbnail = try? container.decodeIfPresent(URL.self, forKey: .thumbnail)
|
2021-09-12 20:28:31 +00:00
|
|
|
|
|
|
|
self.configuration = try? container.decodeIfPresent(Configuration.self, forKey: .configuration)
|
|
|
|
|
|
|
|
if let maxTootCharacters = try? container.decodeIfPresent(Int.self, forKey: .maxTootCharacters) {
|
|
|
|
self.maxTootCharacters = maxTootCharacters
|
|
|
|
} else if let str = try? container.decodeIfPresent(String.self, forKey: .maxTootCharacters),
|
|
|
|
let maxTootCharacters = Int(str, radix: 10) {
|
|
|
|
self.maxTootCharacters = maxTootCharacters
|
2019-09-22 22:57:33 +00:00
|
|
|
} else {
|
2021-09-12 20:28:31 +00:00
|
|
|
self.maxTootCharacters = nil
|
2019-09-22 22:57:33 +00:00
|
|
|
}
|
2021-09-12 20:28:31 +00:00
|
|
|
self.pollLimits = try? container.decodeIfPresent(PollsConfiguration.self, forKey: .pollLimits)
|
2019-09-22 22:57:33 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-09-11 14:52:21 +00:00
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
|
|
case uri
|
|
|
|
case title
|
|
|
|
case description
|
|
|
|
case email
|
|
|
|
case version
|
|
|
|
case urls
|
2019-09-22 22:57:33 +00:00
|
|
|
case thumbnail
|
2018-09-11 14:52:21 +00:00
|
|
|
case languages
|
2019-09-22 22:57:33 +00:00
|
|
|
case stats
|
2021-09-12 20:28:31 +00:00
|
|
|
case configuration
|
2018-09-11 14:52:21 +00:00
|
|
|
case contactAccount = "contact_account"
|
|
|
|
|
2021-09-12 20:28:31 +00:00
|
|
|
case maxTootCharacters = "max_toot_chars"
|
|
|
|
case pollLimits = "poll_limits"
|
2018-09-11 14:52:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension Instance {
|
2021-09-12 20:28:31 +00:00
|
|
|
public struct Stats: Decodable {
|
2018-09-11 14:52:21 +00:00
|
|
|
public let domainCount: Int?
|
|
|
|
public let statusCount: Int?
|
|
|
|
public let userCount: Int?
|
|
|
|
|
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
|
|
case domainCount = "domain_count"
|
|
|
|
case statusCount = "status_count"
|
|
|
|
case userCount = "user_count"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-09-12 20:28:31 +00:00
|
|
|
|
|
|
|
extension Instance {
|
|
|
|
public struct Configuration: Decodable {
|
|
|
|
public let statuses: StatusesConfiguration
|
|
|
|
public let mediaAttachments: MediaAttachmentsConfiguration
|
|
|
|
/// Use Instance.pollsConfiguration to support older instance that don't have this nested
|
|
|
|
let polls: PollsConfiguration
|
|
|
|
|
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
|
|
case statuses
|
|
|
|
case mediaAttachments = "media_attachments"
|
|
|
|
case polls
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension Instance {
|
|
|
|
public struct StatusesConfiguration: Decodable {
|
|
|
|
public let maxCharacters: Int
|
|
|
|
public let maxMediaAttachments: Int
|
|
|
|
public let charactersReservedPerURL: Int
|
|
|
|
|
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
|
|
case maxCharacters = "max_characters"
|
|
|
|
case maxMediaAttachments = "max_media_attachments"
|
|
|
|
case charactersReservedPerURL = "characters_reserved_per_url"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension Instance {
|
|
|
|
public struct MediaAttachmentsConfiguration: Decodable {
|
|
|
|
public let supportedMIMETypes: [String]
|
|
|
|
public let imageSizeLimit: Int
|
|
|
|
public let imageMatrixLimit: Int
|
|
|
|
public let videoSizeLimit: Int
|
|
|
|
public let videoFrameRateLimit: Int
|
|
|
|
public let videoMatrixLimit: Int
|
|
|
|
|
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
|
|
case supportedMIMETypes = "supported_mime_types"
|
|
|
|
case imageSizeLimit = "image_size_limit"
|
|
|
|
case imageMatrixLimit = "image_matrix_limit"
|
|
|
|
case videoSizeLimit = "video_size_limit"
|
|
|
|
case videoFrameRateLimit = "video_frame_rate_limit"
|
|
|
|
case videoMatrixLimit = "video_matrix_limit"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension Instance {
|
|
|
|
public struct PollsConfiguration: Decodable {
|
|
|
|
public let maxOptions: Int
|
|
|
|
public let maxCharactersPerOption: Int
|
|
|
|
public let minExpiration: TimeInterval
|
|
|
|
public let maxExpiration: TimeInterval
|
|
|
|
|
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
|
|
case maxOptions = "max_options"
|
|
|
|
case maxCharactersPerOption = "max_characters_per_option"
|
|
|
|
case minExpiration = "min_expiration"
|
|
|
|
case maxExpiration = "max_expiration"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|