// // ArticlesDatabase.swift // NetNewsWire // // Created by Brent Simmons on 7/20/15. // Copyright © 2015 Ranchero Software, LLC. All rights reserved. // import Foundation import RSDatabase import RSParser import Articles // This file is the entirety of the public API for ArticlesDatabase.framework. // Everything else is implementation. // Main thread only. public typealias UnreadCountDictionary = [String: Int] // feedID: unreadCount public typealias UnreadCountCompletionBlock = (UnreadCountDictionary) -> Void public typealias UpdateArticlesWithFeedCompletionBlock = (Set
?, Set
?) -> Void //newArticles, updatedArticles public final class ArticlesDatabase { private let articlesTable: ArticlesTable public init(databaseFilePath: String, accountID: String) { let queue = RSDatabaseQueue(filepath: databaseFilePath, excludeFromBackup: false) self.articlesTable = ArticlesTable(name: DatabaseTableName.articles, accountID: accountID, queue: queue) queue.createTables(usingStatements: ArticlesDatabase.tableCreationStatements) queue.update { (database) in if !self.articlesTable.containsColumn("searchRowID", in: database) { database.executeStatements("ALTER TABLE articles add column searchRowID INTEGER;") } database.executeStatements("CREATE INDEX if not EXISTS articles_searchRowID on articles(searchRowID);") database.executeStatements("DROP TABLE if EXISTS tags;DROP INDEX if EXISTS tags_tagName_index;DROP INDEX if EXISTS articles_feedID_index;DROP INDEX if EXISTS statuses_read_index;") } queue.vacuumIfNeeded() DispatchQueue.main.async { self.articlesTable.indexUnindexedArticles() } } // MARK: - Fetching Articles public func fetchArticles(_ feedID: String) -> Set
{ return articlesTable.fetchArticles(feedID) } public func fetchArticles(articleIDs: Set) -> Set
{ return articlesTable.fetchArticles(articleIDs: articleIDs) } public func fetchUnreadArticles(_ feedIDs: Set) -> Set
{ return articlesTable.fetchUnreadArticles(feedIDs) } public func fetchTodayArticles(_ feedIDs: Set) -> Set
{ return articlesTable.fetchArticlesSince(feedIDs, todayCutoffDate()) } public func fetchStarredArticles(_ feedIDs: Set) -> Set
{ return articlesTable.fetchStarredArticles(feedIDs) } public func fetchArticlesMatching(_ searchString: String, _ feedIDs: Set) -> Set
{ return articlesTable.fetchArticlesMatching(searchString, feedIDs) } public func fetchArticlesMatchingWithArticleIDs(_ searchString: String, _ articleIDs: Set) -> Set
{ return articlesTable.fetchArticlesMatchingWithArticleIDs(searchString, articleIDs) } // MARK: - Fetching Articles Async public func fetchArticlesAsync(_ feedID: String, _ callback: @escaping ArticleSetBlock) { articlesTable.fetchArticlesAsync(feedID, callback) } public func fetchArticlesAsync(articleIDs: Set, _ callback: @escaping ArticleSetBlock) { articlesTable.fetchArticlesAsync(articleIDs: articleIDs, callback) } public func fetchUnreadArticlesAsync(_ feedIDs: Set, _ callback: @escaping ArticleSetBlock) { articlesTable.fetchUnreadArticlesAsync(feedIDs, callback) } public func fetchTodayArticlesAsync(_ feedIDs: Set, _ callback: @escaping ArticleSetBlock) { articlesTable.fetchArticlesSinceAsync(feedIDs, todayCutoffDate(), callback) } public func fetchedStarredArticlesAsync(_ feedIDs: Set, _ callback: @escaping ArticleSetBlock) { articlesTable.fetchStarredArticlesAsync(feedIDs, callback) } public func fetchArticlesMatchingAsync(_ searchString: String, _ feedIDs: Set, _ callback: @escaping ArticleSetBlock) { articlesTable.fetchArticlesMatchingAsync(searchString, feedIDs, callback) } public func fetchArticlesMatchingWithArticleIDsAsync(_ searchString: String, _ articleIDs: Set, _ callback: @escaping ArticleSetBlock) { articlesTable.fetchArticlesMatchingWithArticleIDsAsync(searchString, articleIDs, callback) } // MARK: - Unread Counts public func fetchUnreadCounts(for feedIDs: Set, _ callback: @escaping UnreadCountCompletionBlock) { articlesTable.fetchUnreadCounts(feedIDs, callback) } public func fetchUnreadCountForToday(for feedIDs: Set, callback: @escaping (Int) -> Void) { fetchUnreadCount(for: feedIDs, since: todayCutoffDate(), callback: callback) } public func fetchUnreadCount(for feedIDs: Set, since: Date, callback: @escaping (Int) -> Void) { articlesTable.fetchUnreadCount(feedIDs, since, callback) } public func fetchStarredAndUnreadCount(for feedIDs: Set, callback: @escaping (Int) -> Void) { articlesTable.fetchStarredAndUnreadCount(feedIDs, callback) } public func fetchAllNonZeroUnreadCounts(_ callback: @escaping UnreadCountCompletionBlock) { articlesTable.fetchAllUnreadCounts(callback) } // MARK: - Saving and Updating Articles public func update(feedID: String, parsedItems: Set, defaultRead: Bool, completion: @escaping UpdateArticlesWithFeedCompletionBlock) { return articlesTable.update(feedID, parsedItems, defaultRead, completion) } public func ensureStatuses(_ articleIDs: Set, _ defaultRead: Bool, _ statusKey: ArticleStatus.Key, _ flag: Bool) { articlesTable.ensureStatuses(articleIDs, defaultRead, statusKey, flag) } // MARK: - Status public func fetchUnreadArticleIDs() -> Set { return articlesTable.fetchUnreadArticleIDs() } public func fetchStarredArticleIDs() -> Set { return articlesTable.fetchStarredArticleIDs() } public func fetchArticleIDsForStatusesWithoutArticles() -> Set { return articlesTable.fetchArticleIDsForStatusesWithoutArticles() } public func mark(_ articles: Set
, statusKey: ArticleStatus.Key, flag: Bool) -> Set? { return articlesTable.mark(articles, statusKey, flag) } } // MARK: - Private private extension ArticlesDatabase { static let tableCreationStatements = """ CREATE TABLE if not EXISTS articles (articleID TEXT NOT NULL PRIMARY KEY, feedID TEXT NOT NULL, uniqueID TEXT NOT NULL, title TEXT, contentHTML TEXT, contentText TEXT, url TEXT, externalURL TEXT, summary TEXT, imageURL TEXT, bannerImageURL TEXT, datePublished DATE, dateModified DATE, searchRowID INTEGER); CREATE TABLE if not EXISTS statuses (articleID TEXT NOT NULL PRIMARY KEY, read BOOL NOT NULL DEFAULT 0, starred BOOL NOT NULL DEFAULT 0, userDeleted BOOL NOT NULL DEFAULT 0, dateArrived DATE NOT NULL DEFAULT 0); CREATE TABLE if not EXISTS authors (authorID TEXT NOT NULL PRIMARY KEY, name TEXT, url TEXT, avatarURL TEXT, emailAddress TEXT); CREATE TABLE if not EXISTS authorsLookup (authorID TEXT NOT NULL, articleID TEXT NOT NULL, PRIMARY KEY(authorID, articleID)); CREATE TABLE if not EXISTS attachments(attachmentID TEXT NOT NULL PRIMARY KEY, url TEXT NOT NULL, mimeType TEXT, title TEXT, sizeInBytes INTEGER, durationInSeconds INTEGER); CREATE TABLE if not EXISTS attachmentsLookup(attachmentID TEXT NOT NULL, articleID TEXT NOT NULL, PRIMARY KEY(attachmentID, articleID)); CREATE INDEX if not EXISTS articles_feedID_datePublished_articleID on articles (feedID, datePublished, articleID); CREATE INDEX if not EXISTS statuses_starred_index on statuses (starred); CREATE VIRTUAL TABLE if not EXISTS search using fts4(title, body); CREATE TRIGGER if not EXISTS articles_after_delete_trigger_delete_search_text after delete on articles begin delete from search where rowid = OLD.searchRowID; end; """ func todayCutoffDate() -> Date { // 24 hours previous. This is used by the Today smart feed, which should not actually empty out at midnight. return Date(timeIntervalSinceNow: -(60 * 60 * 24)) // This does not need to be more precise. } }