2021-01-27 07:50:13 +01:00
|
|
|
//
|
|
|
|
// MastodonUser.swift
|
|
|
|
// CoreDataStack
|
|
|
|
//
|
|
|
|
// Created by MainasuK Cirno on 2021/1/27.
|
|
|
|
//
|
|
|
|
|
|
|
|
import CoreData
|
2021-02-02 07:10:25 +01:00
|
|
|
import Foundation
|
2021-01-27 07:50:13 +01:00
|
|
|
|
2021-02-03 09:01:08 +01:00
|
|
|
final public class MastodonUser: NSManagedObject {
|
|
|
|
|
2021-01-27 07:50:13 +01:00
|
|
|
public typealias ID = String
|
2021-02-03 09:01:08 +01:00
|
|
|
|
2021-01-27 07:50:13 +01:00
|
|
|
@NSManaged public private(set) var identifier: ID
|
|
|
|
@NSManaged public private(set) var domain: String
|
|
|
|
|
2021-02-03 09:01:08 +01:00
|
|
|
@NSManaged public private(set) var id: ID
|
2021-01-27 07:50:13 +01:00
|
|
|
@NSManaged public private(set) var acct: String
|
|
|
|
@NSManaged public private(set) var username: String
|
2021-02-02 07:10:25 +01:00
|
|
|
@NSManaged public private(set) var displayName: String
|
2021-01-29 09:47:32 +01:00
|
|
|
@NSManaged public private(set) var avatar: String
|
2021-02-02 07:10:25 +01:00
|
|
|
@NSManaged public private(set) var avatarStatic: String?
|
2021-04-01 08:39:15 +02:00
|
|
|
@NSManaged public private(set) var header: String
|
|
|
|
@NSManaged public private(set) var headerStatic: String?
|
|
|
|
@NSManaged public private(set) var note: String?
|
|
|
|
@NSManaged public private(set) var url: String?
|
2021-05-07 12:25:57 +02:00
|
|
|
|
|
|
|
@NSManaged public private(set) var emojisData: Data?
|
2021-05-27 07:56:55 +02:00
|
|
|
@NSManaged public private(set) var fieldsData: Data?
|
2021-05-07 12:25:57 +02:00
|
|
|
|
2021-04-01 08:39:15 +02:00
|
|
|
@NSManaged public private(set) var statusesCount: NSNumber
|
|
|
|
@NSManaged public private(set) var followingCount: NSNumber
|
|
|
|
@NSManaged public private(set) var followersCount: NSNumber
|
2021-01-27 07:50:13 +01:00
|
|
|
|
2021-04-02 12:13:45 +02:00
|
|
|
@NSManaged public private(set) var locked: Bool
|
|
|
|
@NSManaged public private(set) var bot: Bool
|
2021-04-08 10:53:32 +02:00
|
|
|
@NSManaged public private(set) var suspended: Bool
|
2021-04-02 12:13:45 +02:00
|
|
|
|
2021-01-27 07:50:13 +01:00
|
|
|
@NSManaged public private(set) var createdAt: Date
|
|
|
|
@NSManaged public private(set) var updatedAt: Date
|
|
|
|
|
2021-02-02 07:10:25 +01:00
|
|
|
// one-to-one relationship
|
2021-04-01 08:39:15 +02:00
|
|
|
@NSManaged public private(set) var pinnedStatus: Status?
|
2021-02-03 09:01:08 +01:00
|
|
|
@NSManaged public private(set) var mastodonAuthentication: MastodonAuthentication?
|
2021-07-15 14:28:36 +02:00
|
|
|
@NSManaged public private(set) var searchHistory: SearchHistory?
|
2021-02-02 07:10:25 +01:00
|
|
|
|
|
|
|
// one-to-many relationship
|
2021-04-01 08:39:15 +02:00
|
|
|
@NSManaged public private(set) var statuses: Set<Status>?
|
2021-07-22 06:56:20 +02:00
|
|
|
@NSManaged public private(set) var notifications: Set<MastodonNotification>?
|
2021-02-02 07:10:25 +01:00
|
|
|
|
|
|
|
// many-to-many relationship
|
2021-04-01 08:39:15 +02:00
|
|
|
@NSManaged public private(set) var favourite: Set<Status>?
|
|
|
|
@NSManaged public private(set) var reblogged: Set<Status>?
|
|
|
|
@NSManaged public private(set) var muted: Set<Status>?
|
|
|
|
@NSManaged public private(set) var bookmarked: Set<Status>?
|
2021-03-02 08:51:16 +01:00
|
|
|
@NSManaged public private(set) var votePollOptions: Set<PollOption>?
|
2021-03-03 12:34:29 +01:00
|
|
|
@NSManaged public private(set) var votePolls: Set<Poll>?
|
2021-04-01 08:39:15 +02:00
|
|
|
// relationships
|
|
|
|
@NSManaged public private(set) var following: Set<MastodonUser>?
|
|
|
|
@NSManaged public private(set) var followingBy: Set<MastodonUser>?
|
|
|
|
@NSManaged public private(set) var followRequested: Set<MastodonUser>?
|
|
|
|
@NSManaged public private(set) var followRequestedBy: Set<MastodonUser>?
|
|
|
|
@NSManaged public private(set) var muting: Set<MastodonUser>?
|
|
|
|
@NSManaged public private(set) var mutingBy: Set<MastodonUser>?
|
|
|
|
@NSManaged public private(set) var blocking: Set<MastodonUser>?
|
|
|
|
@NSManaged public private(set) var blockingBy: Set<MastodonUser>?
|
|
|
|
@NSManaged public private(set) var endorsed: Set<MastodonUser>?
|
|
|
|
@NSManaged public private(set) var endorsedBy: Set<MastodonUser>?
|
|
|
|
@NSManaged public private(set) var domainBlocking: Set<MastodonUser>?
|
|
|
|
@NSManaged public private(set) var domainBlockingBy: Set<MastodonUser>?
|
2021-02-04 07:45:44 +01:00
|
|
|
|
2021-01-27 07:50:13 +01:00
|
|
|
}
|
|
|
|
|
2021-02-03 09:01:08 +01:00
|
|
|
extension MastodonUser {
|
|
|
|
|
2021-01-27 07:50:13 +01:00
|
|
|
@discardableResult
|
2021-02-03 09:01:08 +01:00
|
|
|
public static func insert(
|
2021-01-27 07:50:13 +01:00
|
|
|
into context: NSManagedObjectContext,
|
|
|
|
property: Property
|
|
|
|
) -> MastodonUser {
|
|
|
|
let user: MastodonUser = context.insertObject()
|
|
|
|
|
|
|
|
user.identifier = property.identifier
|
|
|
|
user.domain = property.domain
|
|
|
|
|
|
|
|
user.id = property.id
|
|
|
|
user.acct = property.acct
|
|
|
|
user.username = property.username
|
|
|
|
user.displayName = property.displayName
|
2021-01-29 09:47:32 +01:00
|
|
|
user.avatar = property.avatar
|
|
|
|
user.avatarStatic = property.avatarStatic
|
2021-04-01 08:39:15 +02:00
|
|
|
user.header = property.header
|
|
|
|
user.headerStatic = property.headerStatic
|
|
|
|
user.note = property.note
|
|
|
|
user.url = property.url
|
2021-05-07 12:25:57 +02:00
|
|
|
user.emojisData = property.emojisData
|
2021-05-27 07:56:55 +02:00
|
|
|
user.fieldsData = property.fieldsData
|
2021-05-07 12:25:57 +02:00
|
|
|
|
2021-04-01 08:39:15 +02:00
|
|
|
user.statusesCount = NSNumber(value: property.statusesCount)
|
|
|
|
user.followingCount = NSNumber(value: property.followingCount)
|
|
|
|
user.followersCount = NSNumber(value: property.followersCount)
|
|
|
|
|
2021-04-02 12:13:45 +02:00
|
|
|
user.locked = property.locked
|
|
|
|
user.bot = property.bot ?? false
|
2021-04-08 10:53:32 +02:00
|
|
|
user.suspended = property.suspended ?? false
|
2021-04-02 12:13:45 +02:00
|
|
|
|
2021-04-01 08:39:15 +02:00
|
|
|
// Mastodon do not provide relationship on the `Account`
|
|
|
|
// Update relationship via attribute updating interface
|
2021-01-27 07:50:13 +01:00
|
|
|
|
|
|
|
user.createdAt = property.createdAt
|
|
|
|
user.updatedAt = property.networkDate
|
|
|
|
|
|
|
|
return user
|
|
|
|
}
|
2021-02-03 09:01:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
public func update(acct: String) {
|
|
|
|
if self.acct != acct {
|
|
|
|
self.acct = acct
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public func update(username: String) {
|
|
|
|
if self.username != username {
|
|
|
|
self.username = username
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public func update(displayName: String) {
|
|
|
|
if self.displayName != displayName {
|
|
|
|
self.displayName = displayName
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public func update(avatar: String) {
|
|
|
|
if self.avatar != avatar {
|
|
|
|
self.avatar = avatar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public func update(avatarStatic: String?) {
|
|
|
|
if self.avatarStatic != avatarStatic {
|
|
|
|
self.avatarStatic = avatarStatic
|
|
|
|
}
|
|
|
|
}
|
2021-04-01 08:39:15 +02:00
|
|
|
public func update(header: String) {
|
|
|
|
if self.header != header {
|
|
|
|
self.header = header
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public func update(headerStatic: String?) {
|
|
|
|
if self.headerStatic != headerStatic {
|
|
|
|
self.headerStatic = headerStatic
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public func update(note: String?) {
|
|
|
|
if self.note != note {
|
|
|
|
self.note = note
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public func update(url: String?) {
|
|
|
|
if self.url != url {
|
|
|
|
self.url = url
|
|
|
|
}
|
|
|
|
}
|
2021-05-07 12:25:57 +02:00
|
|
|
public func update(emojisData: Data?) {
|
|
|
|
if self.emojisData != emojisData {
|
|
|
|
self.emojisData = emojisData
|
|
|
|
}
|
|
|
|
}
|
2021-05-27 07:56:55 +02:00
|
|
|
public func update(fieldsData: Data?) {
|
|
|
|
if self.fieldsData != fieldsData {
|
|
|
|
self.fieldsData = fieldsData
|
|
|
|
}
|
|
|
|
}
|
2021-04-01 08:39:15 +02:00
|
|
|
public func update(statusesCount: Int) {
|
|
|
|
if self.statusesCount.intValue != statusesCount {
|
|
|
|
self.statusesCount = NSNumber(value: statusesCount)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public func update(followingCount: Int) {
|
|
|
|
if self.followingCount.intValue != followingCount {
|
|
|
|
self.followingCount = NSNumber(value: followingCount)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public func update(followersCount: Int) {
|
|
|
|
if self.followersCount.intValue != followersCount {
|
|
|
|
self.followersCount = NSNumber(value: followersCount)
|
|
|
|
}
|
|
|
|
}
|
2021-04-02 12:13:45 +02:00
|
|
|
public func update(locked: Bool) {
|
|
|
|
if self.locked != locked {
|
|
|
|
self.locked = locked
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public func update(bot: Bool) {
|
|
|
|
if self.bot != bot {
|
|
|
|
self.bot = bot
|
|
|
|
}
|
|
|
|
}
|
2021-04-08 10:53:32 +02:00
|
|
|
public func update(suspended: Bool) {
|
|
|
|
if self.suspended != suspended {
|
|
|
|
self.suspended = suspended
|
|
|
|
}
|
|
|
|
}
|
2021-04-02 12:13:45 +02:00
|
|
|
|
2021-04-01 08:39:15 +02:00
|
|
|
public func update(isFollowing: Bool, by mastodonUser: MastodonUser) {
|
|
|
|
if isFollowing {
|
|
|
|
if !(self.followingBy ?? Set()).contains(mastodonUser) {
|
|
|
|
self.mutableSetValue(forKey: #keyPath(MastodonUser.followingBy)).add(mastodonUser)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (self.followingBy ?? Set()).contains(mastodonUser) {
|
|
|
|
self.mutableSetValue(forKey: #keyPath(MastodonUser.followingBy)).remove(mastodonUser)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public func update(isFollowRequested: Bool, by mastodonUser: MastodonUser) {
|
|
|
|
if isFollowRequested {
|
|
|
|
if !(self.followRequestedBy ?? Set()).contains(mastodonUser) {
|
|
|
|
self.mutableSetValue(forKey: #keyPath(MastodonUser.followRequestedBy)).add(mastodonUser)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (self.followRequestedBy ?? Set()).contains(mastodonUser) {
|
|
|
|
self.mutableSetValue(forKey: #keyPath(MastodonUser.followRequestedBy)).remove(mastodonUser)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public func update(isMuting: Bool, by mastodonUser: MastodonUser) {
|
|
|
|
if isMuting {
|
|
|
|
if !(self.mutingBy ?? Set()).contains(mastodonUser) {
|
|
|
|
self.mutableSetValue(forKey: #keyPath(MastodonUser.mutingBy)).add(mastodonUser)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (self.mutingBy ?? Set()).contains(mastodonUser) {
|
|
|
|
self.mutableSetValue(forKey: #keyPath(MastodonUser.mutingBy)).remove(mastodonUser)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public func update(isBlocking: Bool, by mastodonUser: MastodonUser) {
|
|
|
|
if isBlocking {
|
|
|
|
if !(self.blockingBy ?? Set()).contains(mastodonUser) {
|
|
|
|
self.mutableSetValue(forKey: #keyPath(MastodonUser.blockingBy)).add(mastodonUser)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (self.blockingBy ?? Set()).contains(mastodonUser) {
|
|
|
|
self.mutableSetValue(forKey: #keyPath(MastodonUser.blockingBy)).remove(mastodonUser)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public func update(isEndorsed: Bool, by mastodonUser: MastodonUser) {
|
|
|
|
if isEndorsed {
|
|
|
|
if !(self.endorsedBy ?? Set()).contains(mastodonUser) {
|
|
|
|
self.mutableSetValue(forKey: #keyPath(MastodonUser.endorsedBy)).add(mastodonUser)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (self.endorsedBy ?? Set()).contains(mastodonUser) {
|
|
|
|
self.mutableSetValue(forKey: #keyPath(MastodonUser.endorsedBy)).remove(mastodonUser)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public func update(isDomainBlocking: Bool, by mastodonUser: MastodonUser) {
|
|
|
|
if isDomainBlocking {
|
|
|
|
if !(self.domainBlockingBy ?? Set()).contains(mastodonUser) {
|
|
|
|
self.mutableSetValue(forKey: #keyPath(MastodonUser.domainBlockingBy)).add(mastodonUser)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (self.domainBlockingBy ?? Set()).contains(mastodonUser) {
|
|
|
|
self.mutableSetValue(forKey: #keyPath(MastodonUser.domainBlockingBy)).remove(mastodonUser)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-03 09:01:08 +01:00
|
|
|
|
|
|
|
public func didUpdate(at networkDate: Date) {
|
|
|
|
self.updatedAt = networkDate
|
|
|
|
}
|
|
|
|
|
2021-01-27 07:50:13 +01:00
|
|
|
}
|
|
|
|
|
2021-04-01 08:39:15 +02:00
|
|
|
extension MastodonUser {
|
|
|
|
public struct Property {
|
2021-01-27 07:50:13 +01:00
|
|
|
public let identifier: String
|
|
|
|
public let domain: String
|
|
|
|
|
|
|
|
public let id: String
|
|
|
|
public let acct: String
|
|
|
|
public let username: String
|
2021-02-02 07:10:25 +01:00
|
|
|
public let displayName: String
|
2021-01-29 09:47:32 +01:00
|
|
|
public let avatar: String
|
2021-02-02 07:10:25 +01:00
|
|
|
public let avatarStatic: String?
|
2021-04-01 08:39:15 +02:00
|
|
|
public let header: String
|
|
|
|
public let headerStatic: String?
|
|
|
|
public let note: String?
|
|
|
|
public let url: String?
|
2021-05-07 12:25:57 +02:00
|
|
|
public let emojisData: Data?
|
2021-05-27 07:56:55 +02:00
|
|
|
public let fieldsData: Data?
|
2021-04-01 08:39:15 +02:00
|
|
|
public let statusesCount: Int
|
|
|
|
public let followingCount: Int
|
|
|
|
public let followersCount: Int
|
2021-04-02 12:13:45 +02:00
|
|
|
public let locked: Bool
|
|
|
|
public let bot: Bool?
|
2021-04-08 10:53:32 +02:00
|
|
|
public let suspended: Bool?
|
2021-01-27 07:50:13 +01:00
|
|
|
|
|
|
|
public let createdAt: Date
|
|
|
|
public let networkDate: Date
|
|
|
|
|
|
|
|
public init(
|
|
|
|
id: String,
|
|
|
|
domain: String,
|
|
|
|
acct: String,
|
|
|
|
username: String,
|
2021-02-02 07:10:25 +01:00
|
|
|
displayName: String,
|
|
|
|
avatar: String,
|
|
|
|
avatarStatic: String?,
|
2021-04-01 08:39:15 +02:00
|
|
|
header: String,
|
|
|
|
headerStatic: String?,
|
|
|
|
note: String?,
|
|
|
|
url: String?,
|
2021-05-07 12:25:57 +02:00
|
|
|
emojisData: Data?,
|
2021-05-27 07:56:55 +02:00
|
|
|
fieldsData: Data?,
|
2021-04-01 08:39:15 +02:00
|
|
|
statusesCount: Int,
|
|
|
|
followingCount: Int,
|
|
|
|
followersCount: Int,
|
2021-04-02 12:13:45 +02:00
|
|
|
locked: Bool,
|
|
|
|
bot: Bool?,
|
2021-04-08 10:53:32 +02:00
|
|
|
suspended: Bool?,
|
2021-01-27 07:50:13 +01:00
|
|
|
createdAt: Date,
|
|
|
|
networkDate: Date
|
|
|
|
) {
|
|
|
|
self.identifier = id + "@" + domain
|
|
|
|
self.domain = domain
|
|
|
|
self.id = id
|
|
|
|
self.acct = acct
|
|
|
|
self.username = username
|
2021-02-02 07:10:25 +01:00
|
|
|
self.displayName = displayName
|
2021-01-29 09:47:32 +01:00
|
|
|
self.avatar = avatar
|
|
|
|
self.avatarStatic = avatarStatic
|
2021-04-01 08:39:15 +02:00
|
|
|
self.header = header
|
|
|
|
self.headerStatic = headerStatic
|
|
|
|
self.note = note
|
|
|
|
self.url = url
|
2021-05-07 12:25:57 +02:00
|
|
|
self.emojisData = emojisData
|
2021-05-27 07:56:55 +02:00
|
|
|
self.fieldsData = fieldsData
|
2021-04-01 08:39:15 +02:00
|
|
|
self.statusesCount = statusesCount
|
|
|
|
self.followingCount = followingCount
|
|
|
|
self.followersCount = followersCount
|
2021-04-02 12:13:45 +02:00
|
|
|
self.locked = locked
|
|
|
|
self.bot = bot
|
2021-04-08 10:53:32 +02:00
|
|
|
self.suspended = suspended
|
2021-01-27 07:50:13 +01:00
|
|
|
self.createdAt = createdAt
|
|
|
|
self.networkDate = networkDate
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension MastodonUser: Managed {
|
|
|
|
public static var defaultSortDescriptors: [NSSortDescriptor] {
|
|
|
|
return [NSSortDescriptor(keyPath: \MastodonUser.createdAt, ascending: false)]
|
|
|
|
}
|
|
|
|
}
|
2021-02-03 09:01:08 +01:00
|
|
|
|
|
|
|
extension MastodonUser {
|
|
|
|
|
|
|
|
static func predicate(domain: String) -> NSPredicate {
|
|
|
|
return NSPredicate(format: "%K == %@", #keyPath(MastodonUser.domain), domain)
|
|
|
|
}
|
|
|
|
|
|
|
|
static func predicate(id: String) -> NSPredicate {
|
|
|
|
return NSPredicate(format: "%K == %@", #keyPath(MastodonUser.id), id)
|
|
|
|
}
|
|
|
|
|
|
|
|
public static func predicate(domain: String, id: String) -> NSPredicate {
|
|
|
|
return NSCompoundPredicate(andPredicateWithSubpredicates: [
|
|
|
|
MastodonUser.predicate(domain: domain),
|
|
|
|
MastodonUser.predicate(id: id)
|
|
|
|
])
|
|
|
|
}
|
|
|
|
|
|
|
|
static func predicate(ids: [String]) -> NSPredicate {
|
|
|
|
return NSPredicate(format: "%K IN %@", #keyPath(MastodonUser.id), ids)
|
|
|
|
}
|
|
|
|
|
|
|
|
public static func predicate(domain: String, ids: [String]) -> NSPredicate {
|
|
|
|
return NSCompoundPredicate(andPredicateWithSubpredicates: [
|
|
|
|
MastodonUser.predicate(domain: domain),
|
|
|
|
MastodonUser.predicate(ids: ids)
|
|
|
|
])
|
|
|
|
}
|
|
|
|
|
|
|
|
static func predicate(username: String) -> NSPredicate {
|
|
|
|
return NSPredicate(format: "%K == %@", #keyPath(MastodonUser.username), username)
|
|
|
|
}
|
|
|
|
|
|
|
|
public static func predicate(domain: String, username: String) -> NSPredicate {
|
|
|
|
return NSCompoundPredicate(andPredicateWithSubpredicates: [
|
|
|
|
MastodonUser.predicate(domain: domain),
|
|
|
|
MastodonUser.predicate(username: username)
|
|
|
|
])
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|