2017-07-03 20:20:14 +02:00
//
2017-07-29 21:08:10 +02:00
// A r t i c l e s T a b l e . s w i f t
2017-07-03 20:20:14 +02:00
// E v e r g r e e n
//
// C r e a t e d b y B r e n t S i m m o n s o n 5 / 9 / 1 6 .
// C o p y r i g h t © 2 0 1 6 R a n c h e r o S o f t w a r e , L L C . A l l r i g h t s r e s e r v e d .
//
import Foundation
2017-08-23 22:23:12 +02:00
import RSCore
2017-07-29 21:29:05 +02:00
import RSDatabase
2017-08-23 22:23:12 +02:00
import RSParser
2017-07-03 20:20:14 +02:00
import Data
2017-08-21 22:31:14 +02:00
final class ArticlesTable : DatabaseTable {
let name : String
2017-09-05 17:53:45 +02:00
private let accountID : String
2017-08-27 00:37:15 +02:00
private let queue : RSDatabaseQueue
2017-09-05 17:53:45 +02:00
private let statusesTable : StatusesTable
2017-08-23 22:23:12 +02:00
private let authorsLookupTable : DatabaseLookupTable
private let attachmentsLookupTable : DatabaseLookupTable
private let tagsLookupTable : DatabaseLookupTable
2017-09-05 03:29:02 +02:00
2017-08-31 22:35:48 +02:00
// TODO: u p d a t e a r t i c l e C u t o f f D a t e a s t i m e p a s s e s a n d b a s e d o n u s e r p r e f e r e n c e s .
private var articleCutoffDate = NSDate . rs_dateWithNumberOfDays ( inThePast : 3 * 31 ) !
2017-09-05 02:10:02 +02:00
private var maximumArticleCutoffDate = NSDate . rs_dateWithNumberOfDays ( inThePast : 4 * 31 ) !
2017-08-31 22:35:48 +02:00
2017-09-05 17:53:45 +02:00
init ( name : String , accountID : String , queue : RSDatabaseQueue ) {
2017-07-29 21:29:05 +02:00
2017-08-21 22:31:14 +02:00
self . name = name
2017-09-05 17:53:45 +02:00
self . accountID = accountID
2017-08-27 00:37:15 +02:00
self . queue = queue
2017-09-10 03:46:58 +02:00
self . statusesTable = StatusesTable ( queue : queue )
2017-09-05 17:53:45 +02:00
2017-08-23 22:23:12 +02:00
let authorsTable = AuthorsTable ( name : DatabaseTableName . authors )
self . authorsLookupTable = DatabaseLookupTable ( name : DatabaseTableName . authorsLookup , objectIDKey : DatabaseKey . articleID , relatedObjectIDKey : DatabaseKey . authorID , relatedTable : authorsTable , relationshipName : RelationshipName . authors )
let tagsTable = TagsTable ( name : DatabaseTableName . tags )
self . tagsLookupTable = DatabaseLookupTable ( name : DatabaseTableName . tags , objectIDKey : DatabaseKey . articleID , relatedObjectIDKey : DatabaseKey . tagName , relatedTable : tagsTable , relationshipName : RelationshipName . tags )
let attachmentsTable = AttachmentsTable ( name : DatabaseTableName . attachments )
self . attachmentsLookupTable = DatabaseLookupTable ( name : DatabaseTableName . attachmentsLookup , objectIDKey : DatabaseKey . articleID , relatedObjectIDKey : DatabaseKey . attachmentID , relatedTable : attachmentsTable , relationshipName : RelationshipName . attachments )
2017-08-21 22:31:14 +02:00
}
2017-07-29 21:29:05 +02:00
2017-08-21 22:31:14 +02:00
// MARK: F e t c h i n g
2017-08-23 22:23:12 +02:00
func fetchArticles ( _ feed : Feed ) -> Set < Article > {
2017-08-21 22:31:14 +02:00
2017-08-27 00:37:15 +02:00
let feedID = feed . feedID
2017-08-27 22:03:15 +02:00
var articles = Set < Article > ( )
2017-08-27 00:37:15 +02:00
2017-09-05 03:29:02 +02:00
queue . fetchSync { ( database ) in
2017-09-05 02:10:02 +02:00
articles = self . fetchArticlesForFeedID ( feedID , withLimits : true , database : database )
2017-08-27 00:37:15 +02:00
}
2017-09-05 03:29:02 +02:00
return articles
2017-08-21 22:31:14 +02:00
}
2017-09-05 02:10:02 +02:00
func fetchArticlesAsync ( _ feed : Feed , withLimits : Bool , _ resultBlock : @ escaping ArticleResultBlock ) {
2017-08-21 22:31:14 +02:00
2017-08-27 00:37:15 +02:00
let feedID = feed . feedID
2017-09-05 03:29:02 +02:00
queue . fetch { ( database ) in
2017-08-27 00:37:15 +02:00
2017-09-05 03:29:02 +02:00
let articles = self . fetchArticlesForFeedID ( feedID , withLimits : withLimits , database : database )
2017-08-27 00:37:15 +02:00
DispatchQueue . main . async {
resultBlock ( articles )
}
}
2017-08-21 22:31:14 +02:00
}
2017-08-27 22:03:15 +02:00
func fetchUnreadArticles ( for feeds : Set < Feed > ) -> Set < Article > {
return fetchUnreadArticles ( feeds . feedIDs ( ) )
2017-08-21 22:31:14 +02:00
}
2017-09-01 22:31:27 +02:00
2017-08-23 22:23:12 +02:00
// MARK: U p d a t i n g
2017-09-06 22:33:04 +02:00
func update ( _ feed : Feed , _ parsedFeed : ParsedFeed , _ completion : @ escaping UpdateArticlesWithFeedCompletionBlock ) {
2017-09-02 23:19:42 +02:00
if parsedFeed . items . isEmpty {
2017-09-06 22:33:04 +02:00
completion ( nil , nil )
2017-09-02 23:19:42 +02:00
return
}
2017-09-05 17:53:45 +02:00
// 1 . E n s u r e s t a t u s e s f o r a l l t h e p a r s e d I t e m s .
// 2 . I g n o r e p a r s e d I t e m s t h a t a r e u s e r D e l e t e d | | ( ! s t a r r e d a n d r e a l l y o l d )
// 3 . F e t c h a l l a r t i c l e s f o r t h e f e e d .
// 4 . C r e a t e A r t i c l e s w i t h p a r s e d I t e m s .
2017-09-06 22:33:04 +02:00
// 5 . C r e a t e a r r a y o f A r t i c l e s n o t i n d a t a b a s e a n d s a v e t h e m .
// 6 . C r e a t e a r r a y o f u p d a t e d A r t i c l e s a n d s a v e w h a t ’ s c h a n g e d .
// 7 . C a l l b a c k w i t h n e w a n d u p d a t e d A r t i c l e s .
2017-09-05 17:53:45 +02:00
let feedID = feed . feedID
let parsedItemArticleIDs = Set ( parsedFeed . items . map { $0 . databaseIdentifierWithFeed ( feed ) } )
2017-09-10 03:46:58 +02:00
statusesTable . ensureStatusesForArticleIDs ( parsedItemArticleIDs ) { ( statusesDictionary ) in // 1
2017-09-05 17:53:45 +02:00
2017-09-10 03:46:58 +02:00
let filteredParsedItems = self . filterParsedItems ( Set ( parsedFeed . items ) , statusesDictionary ) // 2
2017-09-05 17:53:45 +02:00
if filteredParsedItems . isEmpty {
2017-09-06 22:33:04 +02:00
completion ( nil , nil )
2017-09-05 17:53:45 +02:00
return
}
2017-09-10 03:46:58 +02:00
self . queue . update { ( database ) in
2017-09-05 17:53:45 +02:00
2017-09-06 22:33:04 +02:00
let fetchedArticles = self . fetchArticlesForFeedID ( feedID , withLimits : false , database : database ) // 3
let fetchedArticlesDictionary = fetchedArticles . dictionary ( )
2017-09-05 17:53:45 +02:00
2017-09-06 22:33:04 +02:00
let incomingArticles = Article . articlesWithParsedItems ( filteredParsedItems , accountID , feedID ) // 4
let incomingArticlesDictionary = incomingArticles . dictionary ( )
let newArticles = Set ( incomingArticles . filter { fetchedArticles [ $0 . articleID ] = = nil } ) // 5
if ! newArticles . isEmpty {
saveNewArticles ( newArticles , database )
}
let updatedArticles = incomingArticles . filter { ( incomingArticle ) -> Bool in // 6
if let existingArticle = fetchedArticles [ incomingArticle . articleID ] {
if existingArticle != incomingArticle {
return true
}
}
return false
}
if ! updatedArticles . isEmpty {
saveUpdatedArticles ( Set ( updatedArticles ) , fetchedArticlesDictionary , database )
}
DispatchQueue . main . async {
completion ( newArticles , updatedArticles ) // 7
}
2017-09-05 17:53:45 +02:00
}
2017-09-02 23:19:42 +02:00
}
2017-08-23 22:23:12 +02:00
}
2017-09-01 22:31:27 +02:00
2017-08-23 22:23:12 +02:00
// MARK: U n r e a d C o u n t s
func fetchUnreadCounts ( _ feeds : Set < Feed > , _ completion : @ escaping UnreadCountCompletionBlock ) {
2017-09-01 22:31:27 +02:00
let feedIDs = feeds . feedIDs ( )
var unreadCountTable = UnreadCountTable ( )
queue . fetch { ( database ) in
for feedID in feedIDs {
unreadCountTable [ feedID ] = self . fetchUnreadCount ( feedID , database )
}
DispatchQueue . main . async ( ) {
completion ( unreadCountTable )
}
}
2017-08-23 22:23:12 +02:00
}
2017-09-01 22:31:27 +02:00
2017-08-23 22:23:12 +02:00
// MARK: S t a t u s
func mark ( _ articles : Set < Article > , _ statusKey : String , _ flag : Bool ) {
2017-08-29 22:32:36 +02:00
// S e t s f l a g i n b o t h m e m o r y a n d i n d a t a b a s e .
let articleIDs = articles . flatMap { ( article ) -> String ? in
guard let status = article . status else {
assertionFailure ( " Each article must have a status. " )
return nil
}
if status . boolStatus ( forKey : statusKey ) = = flag {
return nil
}
status . setBoolStatus ( flag , forKey : statusKey )
return article . articleID
}
if articleIDs . isEmpty {
return
}
2017-09-09 21:24:30 +02:00
// TODO: s t a t u s e s T a b l e n e e d s t o c a c h e s t a t u s c h a n g e s .
2017-08-29 22:32:36 +02:00
queue . update { ( database ) in
self . statusesTable . markArticleIDs ( Set ( articleIDs ) , statusKey , flag , database )
}
2017-08-23 22:23:12 +02:00
}
2017-08-21 22:31:14 +02:00
}
2017-07-29 21:29:05 +02:00
2017-09-02 23:19:42 +02:00
// MARK: - P r i v a t e
2017-08-27 00:37:15 +02:00
private extension ArticlesTable {
// MARK: F e t c h i n g
func articleWithRow ( _ row : FMResultSet ) -> Article ? {
2017-09-10 03:46:58 +02:00
guard let article = Article ( row : row , accountID : accountID ) else {
2017-08-27 00:37:15 +02:00
return nil
}
// N o t e : t h e r o w i s a r e s u l t o f a J O I N q u e r y w i t h t h e s t a t u s e s t a b l e ,
// s o w e c a n g e t t h e s t a t u s a t t h e s a m e t i m e a n d a v o i d a d d i t i o n a l d a t a b a s e l o o k u p s .
article . status = statusesTable . statusWithRow ( row )
return article
}
func articlesWithResultSet ( _ resultSet : FMResultSet , _ database : FMDatabase ) -> Set < Article > {
let articles = resultSet . mapToSet ( articleWithRow )
attachRelatedObjects ( articles , database )
return articles
}
2017-09-05 02:10:02 +02:00
func fetchArticlesWithWhereClause ( _ database : FMDatabase , whereClause : String , parameters : [ AnyObject ] , withLimits : Bool ) -> Set < Article > {
2017-08-27 00:37:15 +02:00
2017-08-31 22:35:48 +02:00
// D o n ’ t f e t c h a r t i c l e s t h a t s h o u l d n ’ t a p p e a r i n t h e U I . T h e r u l e s :
// * M u s t n o t b e d e l e t e d .
// * M u s t b e e i t h e r 1 ) s t a r r e d o r 2 ) d a t e A r r i v e d m u s t b e n e w e r t h a n c u t o f f d a t e .
2017-09-05 02:10:02 +02:00
let sql = withLimits ? " select * from articles natural join statuses where \( whereClause ) and userDeleted=0 and (starred=1 or dateArrived>?); " : " select * from articles natural join statuses where \( whereClause ) ; "
2017-08-31 22:35:48 +02:00
return articlesWithSQL ( sql , parameters + [ articleCutoffDate as AnyObject ] , database )
2017-08-27 22:03:15 +02:00
}
2017-08-31 22:35:48 +02:00
func fetchUnreadCount ( _ feedID : String , _ database : FMDatabase ) -> Int {
// C o u n t o n l y t h e a r t i c l e s t h a t w o u l d a p p e a r i n t h e U I .
// * M u s t b e u n r e a d .
// * M u s t n o t b e d e l e t e d .
// * M u s t b e e i t h e r 1 ) s t a r r e d o r 2 ) d a t e A r r i v e d m u s t b e n e w e r t h a n c u t o f f d a t e .
let sql = " select count(*) from articles natural join statuses where feedID=? and read=0 and userDeleted=0 and (starred=1 or dateArrived>?); "
return numberWithSQLAndParameters ( sql , [ feedID , articleCutoffDate ] , in : database )
}
2017-09-05 02:10:02 +02:00
func fetchArticlesForFeedID ( _ feedID : String , withLimits : Bool , database : FMDatabase ) -> Set < Article > {
2017-08-27 22:03:15 +02:00
2017-09-05 02:10:02 +02:00
return fetchArticlesWithWhereClause ( database , whereClause : " articles.feedID = ? " , parameters : [ feedID as AnyObject ] , withLimits : withLimits )
2017-08-27 22:03:15 +02:00
}
2017-08-27 00:37:15 +02:00
2017-08-27 22:03:15 +02:00
func fetchUnreadArticles ( _ feedIDs : Set < String > ) -> Set < Article > {
if feedIDs . isEmpty {
return Set < Article > ( )
2017-08-27 00:37:15 +02:00
}
2017-08-27 22:03:15 +02:00
var articles = Set < Article > ( )
queue . fetchSync { ( database ) in
// s e l e c t * f r o m a r t i c l e s n a t u r a l j o i n s t a t u s e s w h e r e f e e d I D i n ( ' h t t p : / / r a n c h e r o . c o m / x m l / r s s . x m l ' ) a n d r e a d = 0
let parameters = feedIDs . map { $0 as AnyObject }
let placeholders = NSString . rs_SQLValueList ( withPlaceholders : UInt ( feedIDs . count ) ) !
let whereClause = " feedID in \( placeholders ) and read=0 "
2017-09-05 02:10:02 +02:00
articles = self . fetchArticlesWithWhereClause ( database , whereClause : whereClause , parameters : parameters , withLimits : true )
2017-08-27 22:03:15 +02:00
}
return articleCache . uniquedArticles ( articles )
2017-08-27 00:37:15 +02:00
}
2017-08-27 22:03:15 +02:00
func articlesWithSQL ( _ sql : String , _ parameters : [ AnyObject ] , _ database : FMDatabase ) -> Set < Article > {
2017-08-27 00:37:15 +02:00
2017-08-27 22:03:15 +02:00
guard let resultSet = database . executeQuery ( sql , withArgumentsIn : parameters ) else {
return Set < Article > ( )
}
return articlesWithResultSet ( resultSet , database )
2017-08-27 00:37:15 +02:00
}
2017-09-02 23:19:42 +02:00
2017-09-08 22:36:30 +02:00
// MARK: S a v e N e w A r t i c l e s
2017-09-05 02:10:02 +02:00
2017-09-08 22:36:30 +02:00
func saveNewArticles ( _ articles : Set < Article > , _ database : FMDatabase ) {
2017-09-05 02:10:02 +02:00
2017-09-08 22:36:30 +02:00
saveRelatedObjectsForNewArticles ( articles , database )
2017-09-05 02:10:02 +02:00
2017-09-08 22:36:30 +02:00
let databaseDictionaries = articles . map { $0 . databaseDictionary ( ) }
insertRows ( databaseDictionaries , insertType : . orReplace , in : database )
}
2017-09-05 02:10:02 +02:00
2017-09-08 22:36:30 +02:00
func saveRelatedObjectsForNewArticles ( _ articles : Set < Article > , _ database : FMDatabase ) {
let databaseObjects = articles . databaseObjects ( )
authorsLookupTable . saveRelatedObjects ( for : databaseObjects , in : database )
attachmentsLookupTable . saveRelatedObjects ( for : databaseObjects , in : database )
tagsLookupTable . saveRelatedObjects ( for : databaseObjects , in : database )
2017-09-05 02:10:02 +02:00
}
2017-09-08 22:36:30 +02:00
// MARK: U p d a t e E x i s t i n g A r t i c l e s
2017-09-05 02:10:02 +02:00
2017-09-09 21:57:24 +02:00
func articlesWithRelatedObjectChanges ( _ comparisonKeyPath : KeyPath < Article , Set < AnyHashable > > , _ updatedArticles : Set < Article > , _ fetchedArticles : [ String : Article ] ) -> Set < Article > {
2017-09-08 22:36:30 +02:00
return updatedArticles . filter { ( updatedArticle ) -> Bool in
if let fetchedArticle = fetchedArticles [ updatedArticle . articleID ] {
2017-09-09 20:02:02 +02:00
return updatedArticle [ keyPath : comparisonKeyPath ] != fetchedArticle [ keyPath : comparisonKeyPath ]
2017-09-08 22:36:30 +02:00
}
assertionFailure ( " Expected to find matching fetched article. " ) ;
2017-09-05 02:10:02 +02:00
return true
}
}
2017-09-09 21:57:24 +02:00
func updateRelatedObjects ( _ comparisonKeyPath : KeyPath < Article , Set < AnyHashable > > , _ updatedArticles : Set < Article > , _ fetchedArticles : [ String : Article ] , _ lookupTable : DatabaseLookupTable , _ database : FMDatabase ) {
2017-09-08 22:36:30 +02:00
2017-09-09 20:02:02 +02:00
let articlesWithChanges = articlesWithRelatedObjectChanges ( comparisonKeyPath , updatedArticles , fetchedArticles )
2017-09-08 22:36:30 +02:00
if ! articlesWithChanges . isEmpty {
2017-09-09 20:02:02 +02:00
lookupTable . saveRelatedObjects ( for : articlesWithChanges . databaseObjects ( ) , in : database )
2017-09-08 22:36:30 +02:00
}
}
2017-09-03 01:08:02 +02:00
2017-09-09 21:57:24 +02:00
func saveUpdatedRelatedObjects ( _ updatedArticles : Set < Article > , _ fetchedArticles : [ String : Article ] , _ database : FMDatabase ) {
2017-09-05 02:10:02 +02:00
2017-09-09 20:02:02 +02:00
updateRelatedObjects ( \ Article . tags , updatedArticles , fetchedArticles , tagsLookupTable , database )
updateRelatedObjects ( \ Article . authors , updatedArticles , fetchedArticles , authorsLookupTable , database )
updateRelatedObjects ( \ Article . attachments , updatedArticles , fetchedArticles , attachmentsLookupTable , database )
2017-09-05 02:10:02 +02:00
}
2017-09-08 22:36:30 +02:00
func saveUpdatedArticles ( _ updatedArticles : Set < Article > , _ fetchedArticles : [ String : Article ] , _ database : FMDatabase ) {
2017-09-09 20:10:15 +02:00
saveUpdatedRelatedObjects ( updatedArticles , fetchedArticles , database )
2017-09-09 21:09:48 +02:00
for updatedArticle in updatedArticles {
2017-09-09 21:24:30 +02:00
saveUpdatedArticle ( updatedArticle , fetchedArticles , database )
2017-09-09 21:09:48 +02:00
}
2017-09-08 22:36:30 +02:00
}
2017-09-09 21:09:48 +02:00
func saveUpdatedArticle ( _ updatedArticle : Article , _ fetchedArticles : [ String : Article ] , _ database : FMDatabase ) {
// O n l y u p d a t e e x a c t l y w h a t h a s c h a n g e d i n t h e A r t i c l e ( i f a n y t h i n g ) .
// U n t e s t e d t h e o r y : t h i s g e t s u s b e t t e r p e r f o r m a n c e a n d l e s s d a t a b a s e f r a g m e n t a t i o n .
guard let fetchedArticle = fetchedArticle [ updatedArticle . articleID ] else {
assertionFailure ( " Expected to find matching fetched article. " ) ;
saveNewArticles ( Set ( [ updatedArticle ] ) , database )
return
}
guard let changesDictionary = updatedArticle . changesFrom ( fetchedArticle ) , ! changesDictionary . isEmpty else {
// N o t u n e x p e c t e d . T h e r e m a y b e n o c h a n g e s .
return
}
updateRowsWithDictionary ( changesDictionary , whereKey : DatabaseKey . articleID , matches : updatedArticle . articleID , database : database )
2017-09-05 02:10:02 +02:00
}
2017-09-09 21:09:48 +02:00
2017-09-05 02:10:02 +02:00
func statusIndicatesArticleIsIgnorable ( _ status : ArticleStatus ) -> Bool {
// I g n o r a b l e a r t i c l e s : e i t h e r u s e r D e l e t e d = = 1 o r ( n o t s t a r r e d a n d a r r i v a l d a t e > 4 m o n t h s ) .
if status . userDeleted {
return true
}
if status . starred {
return false
}
return status . dateArrived < maximumArticleCutoffDate
}
2017-09-10 03:46:58 +02:00
func filterParsedItems ( _ parsedItems : Set < ParsedItem > , _ statuses : [ String : ArticleStatus ] ) -> Set < ParsedItem > {
2017-09-03 01:08:02 +02:00
2017-09-05 02:10:02 +02:00
// D r o p p a r s e d I t e m s t h a t w e c a n i g n o r e .
2017-09-10 03:46:58 +02:00
return Set ( parsedItems . filter { ( parsedItem ) -> Bool in
let articleID = parsedItem . articleID
2017-09-05 02:10:02 +02:00
if let status = statuses [ articleID ] {
2017-09-10 03:46:58 +02:00
return ! statusIndicatesArticleIsIgnorable ( status )
2017-09-05 02:10:02 +02:00
}
2017-09-10 03:46:58 +02:00
assertionFailure ( " Expected a status for each parsedItem. " )
return true
} )
2017-09-05 02:10:02 +02:00
}
2017-08-27 00:37:15 +02:00
}
2017-07-29 21:29:05 +02:00