NetNewsWire/Frameworks/Database/AuthorsTable.swift

45 lines
1.0 KiB
Swift
Raw Normal View History

2017-07-13 22:38:47 +02:00
//
// AuthorsTable.swift
2017-07-13 22:38:47 +02:00
// Database
//
// 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
2017-07-13 22:38:47 +02:00
import Data
2017-08-06 21:37:47 +02:00
// article->authors is a many-to-many relationship.
// Theres a lookup table relating authorID and articleID.
//
// 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));
final class AuthorsTable: DatabaseRelatedObjectsTable {
2017-08-21 00:56:58 +02:00
let name: String
let databaseIDKey = DatabaseKey.authorID
2017-08-21 00:56:58 +02:00
init(name: String) {
self.name = name
}
2017-08-21 00:56:58 +02:00
// MARK: DatabaseTable Methods
func objectWithRow(_ row: FMResultSet) -> DatabaseObject? {
if let author = Author.authorWithRow(row) {
return author as DatabaseObject
}
return nil
2017-08-21 00:56:58 +02:00
}
func save(_ objects: [DatabaseObject], in database: FMDatabase) {
// TODO
}
2017-08-06 21:37:47 +02:00
}