2021-01-27 07:50:13 +01:00
|
|
|
//
|
2021-04-16 14:06:36 +02:00
|
|
|
// Status.swift
|
2021-01-27 07:50:13 +01:00
|
|
|
// CoreDataStack
|
|
|
|
//
|
|
|
|
// Created by MainasuK Cirno on 2021/1/27.
|
|
|
|
//
|
|
|
|
|
|
|
|
import CoreData
|
2021-02-01 11:05:34 +01:00
|
|
|
import Foundation
|
2021-01-27 07:50:13 +01:00
|
|
|
|
2021-04-01 08:39:15 +02:00
|
|
|
public final class Status: NSManagedObject {
|
2021-01-27 07:50:13 +01:00
|
|
|
public typealias ID = String
|
2021-02-04 07:45:44 +01:00
|
|
|
|
2021-01-27 07:50:13 +01:00
|
|
|
@NSManaged public private(set) var identifier: ID
|
|
|
|
@NSManaged public private(set) var domain: String
|
|
|
|
|
|
|
|
@NSManaged public private(set) var id: String
|
2021-02-01 11:05:34 +01:00
|
|
|
@NSManaged public private(set) var uri: String
|
|
|
|
@NSManaged public private(set) var createdAt: Date
|
2021-01-27 07:50:13 +01:00
|
|
|
@NSManaged public private(set) var content: String
|
|
|
|
|
2021-02-01 11:05:34 +01:00
|
|
|
@NSManaged public private(set) var visibility: String?
|
|
|
|
@NSManaged public private(set) var sensitive: Bool
|
|
|
|
@NSManaged public private(set) var spoilerText: String?
|
2021-02-03 06:43:57 +01:00
|
|
|
@NSManaged public private(set) var application: Application?
|
2021-02-01 11:05:34 +01:00
|
|
|
|
2021-05-07 12:25:57 +02:00
|
|
|
@NSManaged public private(set) var emojisData: Data?
|
|
|
|
|
2021-02-01 11:05:34 +01:00
|
|
|
// Informational
|
2021-02-02 07:10:25 +01:00
|
|
|
@NSManaged public private(set) var reblogsCount: NSNumber
|
|
|
|
@NSManaged public private(set) var favouritesCount: NSNumber
|
|
|
|
@NSManaged public private(set) var repliesCount: NSNumber?
|
2021-02-01 11:05:34 +01:00
|
|
|
|
|
|
|
@NSManaged public private(set) var url: String?
|
2021-04-01 08:39:15 +02:00
|
|
|
@NSManaged public private(set) var inReplyToID: Status.ID?
|
2021-02-01 11:05:34 +01:00
|
|
|
@NSManaged public private(set) var inReplyToAccountID: MastodonUser.ID?
|
2021-02-02 07:10:25 +01:00
|
|
|
|
|
|
|
@NSManaged public private(set) var language: String? // (ISO 639 Part 1 two-letter language code)
|
2021-02-01 11:05:34 +01:00
|
|
|
@NSManaged public private(set) var text: String?
|
|
|
|
|
2021-07-15 14:28:36 +02:00
|
|
|
// many-to-one relationship
|
2021-02-04 07:45:44 +01:00
|
|
|
@NSManaged public private(set) var author: MastodonUser
|
2021-04-01 08:39:15 +02:00
|
|
|
@NSManaged public private(set) var reblog: Status?
|
|
|
|
@NSManaged public private(set) var replyTo: Status?
|
2021-02-23 12:18:34 +01:00
|
|
|
|
2021-07-15 14:28:36 +02:00
|
|
|
// many-to-many relationship
|
2021-02-07 07:42:50 +01:00
|
|
|
@NSManaged public private(set) var favouritedBy: Set<MastodonUser>?
|
|
|
|
@NSManaged public private(set) var rebloggedBy: Set<MastodonUser>?
|
|
|
|
@NSManaged public private(set) var mutedBy: Set<MastodonUser>?
|
|
|
|
@NSManaged public private(set) var bookmarkedBy: Set<MastodonUser>?
|
2021-02-23 12:18:34 +01:00
|
|
|
|
2021-07-15 14:28:36 +02:00
|
|
|
// one-to-one relationship
|
2021-02-02 07:10:25 +01:00
|
|
|
@NSManaged public private(set) var pinnedBy: MastodonUser?
|
2021-03-02 08:51:16 +01:00
|
|
|
@NSManaged public private(set) var poll: Poll?
|
2021-07-15 14:28:36 +02:00
|
|
|
@NSManaged public private(set) var searchHistory: SearchHistory?
|
2021-02-04 07:45:44 +01:00
|
|
|
|
2021-02-02 07:49:55 +01:00
|
|
|
// one-to-many relationship
|
2021-04-01 08:39:15 +02:00
|
|
|
@NSManaged public private(set) var reblogFrom: Set<Status>?
|
2021-02-02 07:10:25 +01:00
|
|
|
@NSManaged public private(set) var mentions: Set<Mention>?
|
|
|
|
@NSManaged public private(set) var tags: Set<Tag>?
|
2021-01-27 07:50:13 +01:00
|
|
|
@NSManaged public private(set) var homeTimelineIndexes: Set<HomeTimelineIndex>?
|
2021-02-23 12:18:34 +01:00
|
|
|
@NSManaged public private(set) var mediaAttachments: Set<Attachment>?
|
2021-04-01 08:39:15 +02:00
|
|
|
@NSManaged public private(set) var replyFrom: Set<Status>?
|
2021-02-04 07:45:44 +01:00
|
|
|
|
2021-05-07 14:36:31 +02:00
|
|
|
@NSManaged public private(set) var inNotifications: Set<MastodonNotification>?
|
|
|
|
|
2021-02-04 07:45:44 +01:00
|
|
|
@NSManaged public private(set) var updatedAt: Date
|
|
|
|
@NSManaged public private(set) var deletedAt: Date?
|
2021-04-16 14:06:36 +02:00
|
|
|
@NSManaged public private(set) var revealedAt: Date?
|
2021-01-27 07:50:13 +01:00
|
|
|
}
|
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
extension Status {
|
|
|
|
|
2021-01-27 07:50:13 +01:00
|
|
|
@discardableResult
|
2021-04-16 14:06:36 +02:00
|
|
|
public static func insert(
|
2021-01-27 07:50:13 +01:00
|
|
|
into context: NSManagedObjectContext,
|
|
|
|
property: Property,
|
2021-02-04 07:45:44 +01:00
|
|
|
author: MastodonUser,
|
2021-04-01 08:39:15 +02:00
|
|
|
reblog: Status?,
|
2021-02-04 07:45:44 +01:00
|
|
|
application: Application?,
|
2021-04-01 08:39:15 +02:00
|
|
|
replyTo: Status?,
|
2021-03-02 08:51:16 +01:00
|
|
|
poll: Poll?,
|
2021-02-04 07:45:44 +01:00
|
|
|
mentions: [Mention]?,
|
|
|
|
tags: [Tag]?,
|
2021-02-23 12:18:34 +01:00
|
|
|
mediaAttachments: [Attachment]?,
|
2021-02-04 07:45:44 +01:00
|
|
|
favouritedBy: MastodonUser?,
|
|
|
|
rebloggedBy: MastodonUser?,
|
|
|
|
mutedBy: MastodonUser?,
|
|
|
|
bookmarkedBy: MastodonUser?,
|
|
|
|
pinnedBy: MastodonUser?
|
2021-04-01 08:39:15 +02:00
|
|
|
) -> Status {
|
2021-04-16 14:06:36 +02:00
|
|
|
let status: Status = context.insertObject()
|
2021-01-27 07:50:13 +01:00
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
status.identifier = property.identifier
|
|
|
|
status.domain = property.domain
|
2021-02-01 11:05:34 +01:00
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
status.id = property.id
|
|
|
|
status.uri = property.uri
|
|
|
|
status.createdAt = property.createdAt
|
|
|
|
status.content = property.content
|
2021-01-27 07:50:13 +01:00
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
status.visibility = property.visibility
|
|
|
|
status.sensitive = property.sensitive
|
|
|
|
status.spoilerText = property.spoilerText
|
|
|
|
status.application = application
|
2021-05-07 12:25:57 +02:00
|
|
|
|
|
|
|
status.emojisData = property.emojisData
|
2021-01-27 07:50:13 +01:00
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
status.reblogsCount = property.reblogsCount
|
|
|
|
status.favouritesCount = property.favouritesCount
|
|
|
|
status.repliesCount = property.repliesCount
|
2021-01-27 07:50:13 +01:00
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
status.url = property.url
|
|
|
|
status.inReplyToID = property.inReplyToID
|
|
|
|
status.inReplyToAccountID = property.inReplyToAccountID
|
2021-02-04 07:45:44 +01:00
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
status.language = property.language
|
|
|
|
status.text = property.text
|
2021-01-27 07:50:13 +01:00
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
status.author = author
|
|
|
|
status.reblog = reblog
|
2021-02-04 07:45:44 +01:00
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
status.pinnedBy = pinnedBy
|
|
|
|
status.poll = poll
|
2021-02-07 07:42:50 +01:00
|
|
|
|
2021-02-04 07:45:44 +01:00
|
|
|
if let mentions = mentions {
|
2021-04-16 14:06:36 +02:00
|
|
|
status.mutableSetValue(forKey: #keyPath(Status.mentions)).addObjects(from: mentions)
|
2021-02-04 07:45:44 +01:00
|
|
|
}
|
|
|
|
if let tags = tags {
|
2021-04-16 14:06:36 +02:00
|
|
|
status.mutableSetValue(forKey: #keyPath(Status.tags)).addObjects(from: tags)
|
2021-02-04 07:45:44 +01:00
|
|
|
}
|
2021-02-23 12:18:34 +01:00
|
|
|
if let mediaAttachments = mediaAttachments {
|
2021-04-16 14:06:36 +02:00
|
|
|
status.mutableSetValue(forKey: #keyPath(Status.mediaAttachments)).addObjects(from: mediaAttachments)
|
2021-02-23 12:18:34 +01:00
|
|
|
}
|
2021-02-04 07:45:44 +01:00
|
|
|
if let favouritedBy = favouritedBy {
|
2021-04-16 14:06:36 +02:00
|
|
|
status.mutableSetValue(forKey: #keyPath(Status.favouritedBy)).add(favouritedBy)
|
2021-02-02 07:10:25 +01:00
|
|
|
}
|
2021-02-04 07:45:44 +01:00
|
|
|
if let rebloggedBy = rebloggedBy {
|
2021-04-16 14:06:36 +02:00
|
|
|
status.mutableSetValue(forKey: #keyPath(Status.rebloggedBy)).add(rebloggedBy)
|
2021-02-02 07:10:25 +01:00
|
|
|
}
|
2021-02-04 07:45:44 +01:00
|
|
|
if let mutedBy = mutedBy {
|
2021-04-16 14:06:36 +02:00
|
|
|
status.mutableSetValue(forKey: #keyPath(Status.mutedBy)).add(mutedBy)
|
2021-02-02 07:10:25 +01:00
|
|
|
}
|
2021-02-04 07:45:44 +01:00
|
|
|
if let bookmarkedBy = bookmarkedBy {
|
2021-04-16 14:06:36 +02:00
|
|
|
status.mutableSetValue(forKey: #keyPath(Status.bookmarkedBy)).add(bookmarkedBy)
|
2021-02-02 07:10:25 +01:00
|
|
|
}
|
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
status.updatedAt = property.networkDate
|
2021-02-01 11:05:34 +01:00
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
return status
|
2021-02-01 11:05:34 +01:00
|
|
|
}
|
2021-03-10 12:12:53 +01:00
|
|
|
|
2021-05-07 12:25:57 +02:00
|
|
|
public func update(emojisData: Data?) {
|
|
|
|
if self.emojisData != emojisData {
|
|
|
|
self.emojisData = emojisData
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
public func update(reblogsCount: NSNumber) {
|
2021-02-03 09:37:18 +01:00
|
|
|
if self.reblogsCount.intValue != reblogsCount.intValue {
|
|
|
|
self.reblogsCount = reblogsCount
|
|
|
|
}
|
|
|
|
}
|
2021-03-10 12:12:53 +01:00
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
public func update(favouritesCount: NSNumber) {
|
2021-02-03 09:37:18 +01:00
|
|
|
if self.favouritesCount.intValue != favouritesCount.intValue {
|
|
|
|
self.favouritesCount = favouritesCount
|
|
|
|
}
|
|
|
|
}
|
2021-03-10 12:12:53 +01:00
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
public func update(repliesCount: NSNumber?) {
|
2021-02-03 09:37:18 +01:00
|
|
|
guard let count = repliesCount else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if self.repliesCount?.intValue != count.intValue {
|
|
|
|
self.repliesCount = repliesCount
|
|
|
|
}
|
|
|
|
}
|
2021-03-10 12:12:53 +01:00
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
public func update(replyTo: Status?) {
|
2021-03-10 12:12:53 +01:00
|
|
|
if self.replyTo != replyTo {
|
|
|
|
self.replyTo = replyTo
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
public func update(liked: Bool, by mastodonUser: MastodonUser) {
|
2021-02-08 11:29:27 +01:00
|
|
|
if liked {
|
|
|
|
if !(self.favouritedBy ?? Set()).contains(mastodonUser) {
|
2021-04-01 08:39:15 +02:00
|
|
|
self.mutableSetValue(forKey: #keyPath(Status.favouritedBy)).add(mastodonUser)
|
2021-02-08 11:29:27 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (self.favouritedBy ?? Set()).contains(mastodonUser) {
|
2021-04-01 08:39:15 +02:00
|
|
|
self.mutableSetValue(forKey: #keyPath(Status.favouritedBy)).remove(mastodonUser)
|
2021-02-08 11:29:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-10 12:12:53 +01:00
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
public func update(reblogged: Bool, by mastodonUser: MastodonUser) {
|
2021-02-18 07:32:29 +01:00
|
|
|
if reblogged {
|
|
|
|
if !(self.rebloggedBy ?? Set()).contains(mastodonUser) {
|
2021-04-01 08:39:15 +02:00
|
|
|
self.mutableSetValue(forKey: #keyPath(Status.rebloggedBy)).add(mastodonUser)
|
2021-02-18 07:32:29 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (self.rebloggedBy ?? Set()).contains(mastodonUser) {
|
2021-04-01 08:39:15 +02:00
|
|
|
self.mutableSetValue(forKey: #keyPath(Status.rebloggedBy)).remove(mastodonUser)
|
2021-02-18 07:32:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
public func update(muted: Bool, by mastodonUser: MastodonUser) {
|
2021-02-18 07:32:29 +01:00
|
|
|
if muted {
|
|
|
|
if !(self.mutedBy ?? Set()).contains(mastodonUser) {
|
2021-04-01 08:39:15 +02:00
|
|
|
self.mutableSetValue(forKey: #keyPath(Status.mutedBy)).add(mastodonUser)
|
2021-02-18 07:32:29 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (self.mutedBy ?? Set()).contains(mastodonUser) {
|
2021-04-01 08:39:15 +02:00
|
|
|
self.mutableSetValue(forKey: #keyPath(Status.mutedBy)).remove(mastodonUser)
|
2021-02-18 07:32:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
public func update(bookmarked: Bool, by mastodonUser: MastodonUser) {
|
2021-02-18 07:32:29 +01:00
|
|
|
if bookmarked {
|
|
|
|
if !(self.bookmarkedBy ?? Set()).contains(mastodonUser) {
|
2021-04-01 08:39:15 +02:00
|
|
|
self.mutableSetValue(forKey: #keyPath(Status.bookmarkedBy)).add(mastodonUser)
|
2021-02-18 07:32:29 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (self.bookmarkedBy ?? Set()).contains(mastodonUser) {
|
2021-04-01 08:39:15 +02:00
|
|
|
self.mutableSetValue(forKey: #keyPath(Status.bookmarkedBy)).remove(mastodonUser)
|
2021-02-18 07:32:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
public func update(isReveal: Bool) {
|
|
|
|
revealedAt = isReveal ? Date() : nil
|
|
|
|
}
|
|
|
|
|
|
|
|
public func didUpdate(at networkDate: Date) {
|
2021-02-03 09:37:18 +01:00
|
|
|
self.updatedAt = networkDate
|
|
|
|
}
|
|
|
|
|
2021-02-01 11:05:34 +01:00
|
|
|
}
|
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
extension Status {
|
|
|
|
public struct Property {
|
2021-02-04 07:45:44 +01:00
|
|
|
|
|
|
|
public let identifier: ID
|
|
|
|
public let domain: String
|
|
|
|
|
|
|
|
public let id: String
|
|
|
|
public let uri: String
|
|
|
|
public let createdAt: Date
|
|
|
|
public let content: String
|
|
|
|
|
|
|
|
public let visibility: String?
|
|
|
|
public let sensitive: Bool
|
|
|
|
public let spoilerText: String?
|
|
|
|
|
2021-05-07 12:25:57 +02:00
|
|
|
public let emojisData: Data?
|
|
|
|
|
2021-02-04 07:45:44 +01:00
|
|
|
public let reblogsCount: NSNumber
|
|
|
|
public let favouritesCount: NSNumber
|
|
|
|
public let repliesCount: NSNumber?
|
|
|
|
|
|
|
|
public let url: String?
|
2021-04-01 08:39:15 +02:00
|
|
|
public let inReplyToID: Status.ID?
|
2021-02-04 07:45:44 +01:00
|
|
|
public let inReplyToAccountID: MastodonUser.ID?
|
|
|
|
public let language: String? // (ISO 639 Part @1 two-letter language code)
|
|
|
|
public let text: String?
|
|
|
|
|
|
|
|
public let networkDate: Date
|
|
|
|
|
2021-01-27 07:50:13 +01:00
|
|
|
public init(
|
|
|
|
domain: String,
|
2021-02-01 11:05:34 +01:00
|
|
|
id: String,
|
|
|
|
uri: String,
|
2021-01-27 07:50:13 +01:00
|
|
|
createdAt: Date,
|
2021-02-01 11:05:34 +01:00
|
|
|
content: String,
|
|
|
|
visibility: String?,
|
|
|
|
sensitive: Bool,
|
|
|
|
spoilerText: String?,
|
2021-05-07 12:25:57 +02:00
|
|
|
emojisData: Data?,
|
2021-02-02 07:10:25 +01:00
|
|
|
reblogsCount: NSNumber,
|
|
|
|
favouritesCount: NSNumber,
|
|
|
|
repliesCount: NSNumber?,
|
2021-02-01 11:05:34 +01:00
|
|
|
url: String?,
|
2021-04-01 08:39:15 +02:00
|
|
|
inReplyToID: Status.ID?,
|
2021-02-01 11:05:34 +01:00
|
|
|
inReplyToAccountID: MastodonUser.ID?,
|
|
|
|
language: String?,
|
|
|
|
text: String?,
|
2021-02-04 07:45:44 +01:00
|
|
|
networkDate: Date
|
|
|
|
) {
|
2021-01-27 07:50:13 +01:00
|
|
|
self.identifier = id + "@" + domain
|
|
|
|
self.domain = domain
|
|
|
|
self.id = id
|
2021-02-01 11:05:34 +01:00
|
|
|
self.uri = uri
|
2021-01-27 07:50:13 +01:00
|
|
|
self.createdAt = createdAt
|
2021-02-01 11:05:34 +01:00
|
|
|
self.content = content
|
|
|
|
self.visibility = visibility
|
|
|
|
self.sensitive = sensitive
|
|
|
|
self.spoilerText = spoilerText
|
2021-05-07 12:25:57 +02:00
|
|
|
self.emojisData = emojisData
|
2021-02-01 11:05:34 +01:00
|
|
|
self.reblogsCount = reblogsCount
|
|
|
|
self.favouritesCount = favouritesCount
|
|
|
|
self.repliesCount = repliesCount
|
|
|
|
self.url = url
|
|
|
|
self.inReplyToID = inReplyToID
|
|
|
|
self.inReplyToAccountID = inReplyToAccountID
|
|
|
|
self.language = language
|
|
|
|
self.text = text
|
2021-02-04 07:45:44 +01:00
|
|
|
self.networkDate = networkDate
|
2021-01-27 07:50:13 +01:00
|
|
|
}
|
2021-02-01 11:05:34 +01:00
|
|
|
|
2021-01-27 07:50:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-01 08:39:15 +02:00
|
|
|
extension Status: Managed {
|
2021-01-27 07:50:13 +01:00
|
|
|
public static var defaultSortDescriptors: [NSSortDescriptor] {
|
2021-04-01 08:39:15 +02:00
|
|
|
return [NSSortDescriptor(keyPath: \Status.createdAt, ascending: false)]
|
2021-01-27 07:50:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-01 08:39:15 +02:00
|
|
|
extension Status {
|
2021-02-04 07:45:44 +01:00
|
|
|
|
|
|
|
static func predicate(domain: String) -> NSPredicate {
|
2021-04-01 08:39:15 +02:00
|
|
|
return NSPredicate(format: "%K == %@", #keyPath(Status.domain), domain)
|
2021-02-04 07:45:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static func predicate(id: String) -> NSPredicate {
|
2021-04-01 08:39:15 +02:00
|
|
|
return NSPredicate(format: "%K == %@", #keyPath(Status.id), id)
|
2021-02-04 07:45:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public static func predicate(domain: String, id: String) -> NSPredicate {
|
|
|
|
return NSCompoundPredicate(andPredicateWithSubpredicates: [
|
|
|
|
predicate(domain: domain),
|
|
|
|
predicate(id: id)
|
|
|
|
])
|
|
|
|
}
|
|
|
|
|
|
|
|
static func predicate(ids: [String]) -> NSPredicate {
|
2021-04-01 08:39:15 +02:00
|
|
|
return NSPredicate(format: "%K IN %@", #keyPath(Status.id), ids)
|
2021-01-28 09:10:30 +01:00
|
|
|
}
|
|
|
|
|
2021-02-04 07:45:44 +01:00
|
|
|
public static func predicate(domain: String, ids: [String]) -> NSPredicate {
|
|
|
|
return NSCompoundPredicate(andPredicateWithSubpredicates: [
|
|
|
|
predicate(domain: domain),
|
|
|
|
predicate(ids: ids)
|
|
|
|
])
|
2021-01-28 09:10:30 +01:00
|
|
|
}
|
|
|
|
|
2021-02-04 07:45:44 +01:00
|
|
|
public static func notDeleted() -> NSPredicate {
|
2021-04-01 08:39:15 +02:00
|
|
|
return NSPredicate(format: "%K == nil", #keyPath(Status.deletedAt))
|
2021-01-28 09:10:30 +01:00
|
|
|
}
|
|
|
|
|
2021-02-04 07:45:44 +01:00
|
|
|
public static func deleted() -> NSPredicate {
|
2021-04-01 08:39:15 +02:00
|
|
|
return NSPredicate(format: "%K != nil", #keyPath(Status.deletedAt))
|
2021-01-28 09:10:30 +01:00
|
|
|
}
|
2021-04-16 14:06:36 +02:00
|
|
|
|
2021-01-28 09:10:30 +01:00
|
|
|
}
|