2024-12-10 18:12:13 +00:00
|
|
|
import Foundation
|
|
|
|
|
|
|
|
public struct Rant: Identifiable, Hashable {
|
|
|
|
/// The id of this rant.
|
|
|
|
public let id: Int
|
|
|
|
|
2024-12-11 15:36:53 +00:00
|
|
|
/// A URL link to this rant.
|
|
|
|
public let linkToRant: String?
|
|
|
|
|
|
|
|
/// The current logged in user's vote on this rant.
|
|
|
|
public let voteState: VoteState
|
2024-12-10 18:12:13 +00:00
|
|
|
|
|
|
|
/// The number of upvotes from other users.
|
|
|
|
public let score: Int
|
|
|
|
|
2024-12-11 15:36:53 +00:00
|
|
|
/// The user who wrote this rant.
|
|
|
|
public let author: User
|
|
|
|
|
2024-12-10 18:12:13 +00:00
|
|
|
/// The time when this rant was created.
|
|
|
|
public let created: Date
|
|
|
|
|
|
|
|
/// True if this rant is edited by the author.
|
|
|
|
public let isEdited: Bool
|
|
|
|
|
|
|
|
/// True if this rant has been marked as a favorite by the logged in user.
|
2024-12-12 12:05:58 +00:00
|
|
|
public let isFavorite: Bool
|
2024-12-10 18:12:13 +00:00
|
|
|
|
2024-12-11 15:36:53 +00:00
|
|
|
/// The text contents of this rant.
|
|
|
|
public let text: String
|
2024-12-11 10:54:12 +00:00
|
|
|
|
|
|
|
/// The URLs and user mentions inside of the text of this rant.
|
2024-12-12 12:05:58 +00:00
|
|
|
public let linksInText: [Link]
|
2024-12-10 18:12:13 +00:00
|
|
|
|
2024-12-11 15:36:53 +00:00
|
|
|
/// The optional image that the user has uploaded for this rant.
|
|
|
|
public let image: AttachedImage?
|
|
|
|
|
|
|
|
/// The number of comments that this rant has.
|
|
|
|
public let numberOfComments: Int
|
|
|
|
|
|
|
|
/// The tags for this rant.
|
|
|
|
public let tags: [String]
|
|
|
|
|
2024-12-11 10:54:12 +00:00
|
|
|
/// Holds information about the weekly topic if this rant is of type weekly.
|
|
|
|
public let weekly: Weekly?
|
2024-12-10 18:12:13 +00:00
|
|
|
|
|
|
|
/// Holds information about the collaboration project if this rant is of type collaboration.
|
2024-12-11 10:54:12 +00:00
|
|
|
public let collaboration: Collaboration?
|
2024-12-10 18:12:13 +00:00
|
|
|
|
2024-12-11 15:36:53 +00:00
|
|
|
public init(id: Int, linkToRant: String?, voteState: VoteState, score: Int, author: User, created: Date, isEdited: Bool, isFavorite: Bool, text: String, linksInText: [Link], image: AttachedImage?, numberOfComments: Int, tags: [String], weekly: Rant.Weekly?, collaboration: Collaboration?) {
|
|
|
|
self.id = id
|
|
|
|
self.linkToRant = linkToRant
|
|
|
|
self.voteState = voteState
|
|
|
|
self.score = score
|
|
|
|
self.author = author
|
|
|
|
self.created = created
|
|
|
|
self.isEdited = isEdited
|
|
|
|
self.isFavorite = isFavorite
|
|
|
|
self.text = text
|
|
|
|
self.linksInText = linksInText
|
|
|
|
self.image = image
|
|
|
|
self.numberOfComments = numberOfComments
|
|
|
|
self.tags = tags
|
|
|
|
self.weekly = weekly
|
|
|
|
self.collaboration = collaboration
|
|
|
|
}
|
2024-12-10 18:12:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
extension Rant {
|
|
|
|
struct CodingData: Codable {
|
|
|
|
let id: Int
|
|
|
|
let text: String
|
|
|
|
let score: Int
|
|
|
|
let created_time: Int
|
2024-12-11 10:54:12 +00:00
|
|
|
let attached_image: AttachedImage.CodingData?
|
2024-12-10 18:12:13 +00:00
|
|
|
let num_comments: Int
|
|
|
|
let tags: [String]
|
|
|
|
let vote_state: Int
|
|
|
|
let edited: Bool
|
|
|
|
let favorited: Int?
|
|
|
|
let link: String?
|
2024-12-11 10:54:12 +00:00
|
|
|
let links: [Link.CodingData]?
|
|
|
|
let weekly: Weekly.CodingData?
|
2024-12-11 16:23:53 +00:00
|
|
|
let c_type: Int?
|
2024-12-10 18:12:13 +00:00
|
|
|
let c_type_long: String?
|
|
|
|
let c_description: String?
|
|
|
|
let c_tech_stack: String?
|
|
|
|
let c_team_size: String?
|
|
|
|
let c_url: String?
|
|
|
|
let user_id: Int
|
|
|
|
let user_username: String
|
|
|
|
let user_score: Int
|
2024-12-11 10:54:12 +00:00
|
|
|
let user_avatar: User.Avatar.CodingData
|
|
|
|
let user_avatar_lg: User.Avatar.CodingData
|
2024-12-10 18:12:13 +00:00
|
|
|
let user_dpp: Int?
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension Rant.CodingData {
|
|
|
|
var decoded: Rant {
|
|
|
|
.init(
|
|
|
|
id: id,
|
2024-12-11 10:54:12 +00:00
|
|
|
linkToRant: link,
|
2024-12-11 15:36:53 +00:00
|
|
|
voteState: .init(rawValue: vote_state) ?? .unvoted,
|
|
|
|
score: score,
|
2024-12-10 18:12:13 +00:00
|
|
|
author: .init(
|
|
|
|
id: user_id,
|
|
|
|
name: user_username,
|
|
|
|
score: user_score,
|
2024-12-11 10:54:12 +00:00
|
|
|
devRantSupporter: (user_dpp ?? 0) != 0,
|
2024-12-13 11:35:30 +00:00
|
|
|
avatarSmall: user_avatar.decoded,
|
2024-12-11 10:54:12 +00:00
|
|
|
avatarLarge: user_avatar_lg.decoded
|
2024-12-11 15:36:53 +00:00
|
|
|
),
|
|
|
|
created: Date(timeIntervalSince1970: TimeInterval(created_time)),
|
|
|
|
isEdited: edited,
|
|
|
|
isFavorite: (favorited ?? 0) != 0,
|
|
|
|
text: text,
|
|
|
|
linksInText: links?.map(\.decoded) ?? [],
|
|
|
|
image: attached_image?.decoded,
|
|
|
|
numberOfComments: num_comments,
|
|
|
|
tags: tags,
|
|
|
|
weekly: weekly?.decoded,
|
|
|
|
collaboration: decodedCollaboration
|
2024-12-10 18:12:13 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
private var decodedCollaboration: Collaboration? {
|
2024-12-11 16:23:53 +00:00
|
|
|
guard c_type != nil || c_type_long != nil || c_description != nil || c_tech_stack != nil || c_team_size != nil || c_url != nil else {
|
|
|
|
return nil
|
|
|
|
}
|
2024-12-10 18:12:13 +00:00
|
|
|
return .init(
|
2024-12-11 16:23:53 +00:00
|
|
|
kind: c_type.flatMap { .init(rawValue: $0) },
|
|
|
|
kindDescription: c_type_long ?? "",
|
2024-12-10 18:12:13 +00:00
|
|
|
description: c_description ?? "",
|
|
|
|
techStack: c_tech_stack ?? "",
|
|
|
|
teamSize: c_team_size ?? "",
|
|
|
|
url: c_url ?? ""
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|