2017-07-13 22:38:47 +02:00
|
|
|
|
//
|
2017-07-29 21:08:10 +02:00
|
|
|
|
// AuthorsTable.swift
|
2019-07-09 07:11:24 +02:00
|
|
|
|
// NetNewsWire
|
2017-07-13 22:38:47 +02:00
|
|
|
|
//
|
|
|
|
|
// Created by Brent Simmons on 7/13/17.
|
|
|
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
import Foundation
|
2017-08-04 06:10:01 +02:00
|
|
|
|
import RSDatabase
|
2018-07-24 03:29:08 +02:00
|
|
|
|
import Articles
|
2017-07-13 22:38:47 +02:00
|
|
|
|
|
2017-08-06 21:37:47 +02:00
|
|
|
|
// article->authors is a many-to-many relationship.
|
|
|
|
|
// There’s a lookup table relating authorID and articleID.
|
|
|
|
|
//
|
2017-08-21 02:46:15 +02:00
|
|
|
|
// CREATE TABLE if not EXISTS authors (authorID TEXT NOT NULL PRIMARY KEY, name TEXT, url TEXT, avatarURL TEXT, emailAddress TEXT);
|
2017-08-06 21:37:47 +02:00
|
|
|
|
// CREATE TABLE if not EXISTS authorLookup (authorID TEXT NOT NULL, articleID TEXT NOT NULL, PRIMARY KEY(authorID, articleID));
|
|
|
|
|
|
|
|
|
|
|
2017-09-02 19:13:37 +02:00
|
|
|
|
final class AuthorsTable: DatabaseRelatedObjectsTable {
|
2017-08-21 00:56:58 +02:00
|
|
|
|
|
2017-07-29 21:08:10 +02:00
|
|
|
|
let name: String
|
2017-08-21 02:46:15 +02:00
|
|
|
|
let databaseIDKey = DatabaseKey.authorID
|
2017-09-13 07:06:59 +02:00
|
|
|
|
var cache = DatabaseObjectCache()
|
2017-07-29 21:08:10 +02:00
|
|
|
|
|
2017-08-21 00:56:58 +02:00
|
|
|
|
init(name: String) {
|
2017-07-29 21:08:10 +02:00
|
|
|
|
self.name = name
|
|
|
|
|
}
|
2017-08-21 00:56:58 +02:00
|
|
|
|
|
2019-07-09 07:11:24 +02:00
|
|
|
|
// MARK: - DatabaseRelatedObjectsTable
|
2017-09-13 06:47:04 +02:00
|
|
|
|
|
2017-08-21 02:46:15 +02:00
|
|
|
|
func objectWithRow(_ row: FMResultSet) -> DatabaseObject? {
|
2017-09-14 02:40:25 +02:00
|
|
|
|
if let author = Author(row: row) {
|
2017-08-21 07:43:46 +02:00
|
|
|
|
return author as DatabaseObject
|
|
|
|
|
}
|
|
|
|
|
return nil
|
2017-08-21 00:56:58 +02:00
|
|
|
|
}
|
2017-08-06 21:37:47 +02:00
|
|
|
|
}
|
|
|
|
|
|