forked from shadowfacts/Tusker
42 lines
1.3 KiB
Swift
42 lines
1.3 KiB
Swift
//
|
|
// Emoji.swift
|
|
// Pachyderm
|
|
//
|
|
// Created by Shadowfacts on 9/8/18.
|
|
// Copyright © 2018 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import WebURL
|
|
|
|
public class Emoji: Codable {
|
|
public let shortcode: String
|
|
// 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
|
|
public let visibleInPicker: Bool
|
|
|
|
public required init(from decoder: Decoder) throws {
|
|
let container = try decoder.container(keyedBy: CodingKeys.self)
|
|
|
|
self.shortcode = try container.decode(String.self, forKey: .shortcode)
|
|
self.url = try container.decode(WebURL.self, forKey: .url)
|
|
self.staticURL = try container.decode(WebURL.self, forKey: .staticURL)
|
|
self.visibleInPicker = try container.decode(Bool.self, forKey: .visibleInPicker)
|
|
}
|
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
case shortcode
|
|
case url
|
|
case staticURL = "static_url"
|
|
case visibleInPicker = "visible_in_picker"
|
|
}
|
|
}
|
|
|
|
extension Emoji: CustomDebugStringConvertible {
|
|
public var debugDescription: String {
|
|
return ":\(shortcode):"
|
|
}
|
|
}
|