2017-06-21 06:18:46 +02:00
|
|
|
//
|
|
|
|
// RSParsedArticle.h
|
2017-06-26 01:32:07 +02:00
|
|
|
// RSParser
|
2017-06-21 06:18:46 +02:00
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 12/6/14.
|
|
|
|
// Copyright (c) 2014 Ranchero Software LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
@import Foundation;
|
|
|
|
|
|
|
|
|
|
|
|
@interface RSParsedArticle : NSObject
|
|
|
|
|
|
|
|
- (nonnull instancetype)initWithFeedURL:(NSString * _Nonnull)feedURL;
|
|
|
|
|
|
|
|
@property (nonatomic, readonly, nonnull) NSString *feedURL;
|
|
|
|
@property (nonatomic, nonnull) NSString *articleID; //Calculated. Don't get until other properties have been set.
|
|
|
|
|
|
|
|
@property (nonatomic, nullable) NSString *guid;
|
|
|
|
@property (nonatomic, nullable) NSString *title;
|
|
|
|
@property (nonatomic, nullable) NSString *body;
|
|
|
|
@property (nonatomic, nullable) NSString *link;
|
|
|
|
@property (nonatomic, nullable) NSString *permalink;
|
|
|
|
@property (nonatomic, nullable) NSString *author;
|
|
|
|
@property (nonatomic, nullable) NSDate *datePublished;
|
|
|
|
@property (nonatomic, nullable) NSDate *dateModified;
|
|
|
|
@property (nonatomic, nonnull) NSDate *dateParsed;
|
|
|
|
|
|
|
|
- (void)calculateArticleID; // Optimization. Call after all properties have been set. Call on a background thread.
|
|
|
|
|
|
|
|
@end
|
|
|
|
|