2018-09-11 10:52:21 -04:00
|
|
|
//
|
|
|
|
// Emoji.swift
|
|
|
|
// Pachyderm
|
|
|
|
//
|
|
|
|
// Created by Shadowfacts on 9/8/18.
|
|
|
|
// Copyright © 2018 Shadowfacts. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
2022-02-03 23:11:29 -05:00
|
|
|
import WebURL
|
2018-09-11 10:52:21 -04:00
|
|
|
|
2020-04-11 15:33:39 -04:00
|
|
|
public class Emoji: Codable {
|
2019-02-09 21:12:31 -05:00
|
|
|
public let shortcode: String
|
2022-02-03 23:11:29 -05:00
|
|
|
// these shouldn't need to be WebURLs as they're not external resources,
|
|
|
|
// but some instances (pleroma?) has emoji urls that Foundation considers malformed so we use WebURL to be more lenient
|
|
|
|
public let url: WebURL
|
|
|
|
public let staticURL: WebURL
|
2019-02-09 21:12:31 -05:00
|
|
|
public let visibleInPicker: Bool
|
2018-09-11 10:52:21 -04:00
|
|
|
|
2020-11-11 12:45:13 -05:00
|
|
|
public required init(from decoder: Decoder) throws {
|
|
|
|
let container = try decoder.container(keyedBy: CodingKeys.self)
|
|
|
|
|
|
|
|
self.shortcode = try container.decode(String.self, forKey: .shortcode)
|
2022-02-03 23:11:29 -05:00
|
|
|
self.url = try container.decode(WebURL.self, forKey: .url)
|
|
|
|
self.staticURL = try container.decode(WebURL.self, forKey: .staticURL)
|
2020-11-11 12:45:13 -05:00
|
|
|
self.visibleInPicker = try container.decode(Bool.self, forKey: .visibleInPicker)
|
|
|
|
}
|
|
|
|
|
2018-09-11 10:52:21 -04:00
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
|
|
case shortcode
|
|
|
|
case url
|
|
|
|
case staticURL = "static_url"
|
2019-02-09 21:12:31 -05:00
|
|
|
case visibleInPicker = "visible_in_picker"
|
2018-09-11 10:52:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension Emoji: CustomDebugStringConvertible {
|
|
|
|
public var debugDescription: String {
|
|
|
|
return ":\(shortcode):"
|
|
|
|
}
|
|
|
|
}
|