-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathReaderSiteService.m
287 lines (249 loc) · 10.3 KB
/
ReaderSiteService.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
#import "ReaderSiteService.h"
#import "AccountService.h"
@import WordPressData;
#import "ReaderPostService.h"
#import "ReaderPost.h"
#import "WPAccount.h"
#import "WordPress-Swift.h"
#import "WPAppAnalytics.h"
@import WordPressKit;
NSString * const ReaderSiteServiceErrorDomain = @"ReaderSiteServiceErrorDomain";
@implementation ReaderSiteService
- (void)followSiteByURL:(NSURL *)siteURL success:(void (^)(void))success failure:(void(^)(NSError *error))failure
{
WordPressComRestApi *api = [self apiForRequest];
if (!api) {
if (failure) {
failure([self errorForNotLoggedIn]);
}
return;
}
ReaderSiteServiceRemote *service = [[ReaderSiteServiceRemote alloc] initWithWordPressComRestApi:api];
// Make sure the URL provided leads to a visible site / does not 404.
[service checkSiteExistsAtURL:siteURL success:^{
[self followExistingSiteByURL:siteURL success:success failure:failure];
} failure:^(NSError *error) {
if (failure) {
failure(error);
}
}];
}
- (void)followSiteWithID:(NSUInteger)siteID success:(void(^)(void))success failure:(void(^)(NSError *error))failure
{
WordPressComRestApi *api = [self apiForRequest];
if (!api) {
if (failure) {
failure([self errorForNotLoggedIn]);
}
return;
}
ReaderSiteServiceRemote *service = [[ReaderSiteServiceRemote alloc] initWithWordPressComRestApi:api];
[service checkSubscribedToSiteByID:siteID success:^(BOOL follows) {
if (follows) {
if (failure) {
failure([self errorForAlreadyFollowingSiteOrFeed]);
}
return;
}
[service followSiteWithID:siteID success:^(){
[self fetchTopicServiceWithID:siteID success:success failure:failure];
NSNumber *blogID = [NSNumber numberWithUnsignedInteger:siteID];
[WPAnalytics trackReaderStat:WPAnalyticsStatReaderSiteFollowed properties:@{ @"blog_id": blogID }];
} failure:failure];
} failure:^(NSError *error) {
if (failure) {
failure(error);
}
}];
}
- (void)unfollowSiteWithID:(NSUInteger)siteID success:(void(^)(void))success failure:(void(^)(NSError *error))failure
{
WordPressComRestApi *api = [self apiForRequest];
if (!api) {
if (failure) {
failure([self errorForNotLoggedIn]);
}
return;
}
ReaderSiteServiceRemote *service = [[ReaderSiteServiceRemote alloc] initWithWordPressComRestApi:[self apiForRequest]];
[service unfollowSiteWithID:siteID success:^(){
[self markUnfollowedSiteTopicWithSiteID:@(siteID)];
if (success) {
success();
}
NSNumber *blogID = [NSNumber numberWithUnsignedInteger:siteID];
[WPAnalytics trackReaderStat:WPAnalyticsStatReaderSiteUnfollowed properties:@{ @"blog_id": blogID }];
} failure:failure];
}
- (void)followSiteAtURL:(NSString *)siteURL success:(void(^)(void))success failure:(void(^)(NSError *error))failure
{
WordPressComRestApi *api = [self apiForRequest];
if (!api) {
if (failure) {
failure([self errorForNotLoggedIn]);
}
return;
}
// Include protocol if absent.
NSString *sanitizedURL = siteURL;
NSRange rng = [sanitizedURL rangeOfString:@"://"];
if (rng.location == NSNotFound) {
sanitizedURL = [NSString stringWithFormat:@"http://%@", sanitizedURL];
}
ReaderSiteServiceRemote *service = [[ReaderSiteServiceRemote alloc] initWithWordPressComRestApi:[self apiForRequest]];
[service checkSubscribedToFeedByURL:[NSURL URLWithString:sanitizedURL] success:^(BOOL follows) {
if (follows) {
if (failure) {
failure([self errorForAlreadyFollowingSiteOrFeed]);
}
return;
}
[service followSiteAtURL:sanitizedURL success:^(){
if (success) {
success();
}
[WPAnalytics trackReaderStat:WPAnalyticsStatReaderSiteFollowed properties:@{ @"url":sanitizedURL }];
} failure:failure];
} failure:^(NSError *error) {
if (failure) {
failure(error);
}
}];
}
- (void)unfollowSiteAtURL:(NSString *)siteURL success:(void(^)(void))success failure:(void(^)(NSError *error))failure
{
WordPressComRestApi *api = [self apiForRequest];
if (!api) {
if (failure) {
failure([self errorForNotLoggedIn]);
}
return;
}
ReaderSiteServiceRemote *service = [[ReaderSiteServiceRemote alloc] initWithWordPressComRestApi:[self apiForRequest]];
[service unfollowSiteAtURL:siteURL success:^(){
[self markUnfollowedSiteTopicWithFeedURL:siteURL];
if (success) {
success();
}
[WPAnalytics trackReaderStat:WPAnalyticsStatReaderSiteUnfollowed properties:@{@"url":siteURL}];
} failure:failure];
}
- (void)syncPostsForFollowedSites
{
[self.coreDataStack performAndSaveUsingBlock:^(NSManagedObjectContext *context) {
ReaderAbstractTopic *followedSites = [ReaderAbstractTopic lookupFollowedSitesTopicInContext:context];
if (!followedSites) {
return;
}
ReaderPostService *postService = [[ReaderPostService alloc] initWithCoreDataStack:self.coreDataStack];
[postService fetchPostsForTopic:followedSites earlierThan:[NSDate date] success:nil failure:nil];
}];
}
#pragma mark - Private Methods
/**
Fetch the topic after a site is followed
*/
- (void)fetchTopicServiceWithID:(NSUInteger)siteID success:(void(^)(void))success failure:(void(^)(NSError *error))failure
{
DDLogInfo(@"Fetch and store followed topic");
ReaderTopicService *service = [[ReaderTopicService alloc] initWithCoreDataStack:self.coreDataStack];
[service siteTopicForSiteWithID:@(siteID)
isFeed:false
success:^(NSManagedObjectID * __unused objectID, BOOL __unused isFollowing) {
if (success) {
success();
}
} failure:failure];
}
/**
Get the api to use for the request.
*/
- (WordPressComRestApi *)apiForRequest
{
WordPressComRestApi * __block api = nil;
[self.coreDataStack.mainContext performBlockAndWait:^{
WPAccount *defaultAccount = [WPAccount lookupDefaultWordPressComAccountInContext:self.coreDataStack.mainContext];
api = [defaultAccount wordPressComRestApi];
}];
if (![api hasCredentials]) {
return nil;
}
return api;
}
/**
Called once a URL is confirmed to point at a valid site. Continues the following process.
*/
- (void)followExistingSiteByURL:(NSURL *)siteURL success:(void (^)(void))success failure:(void(^)(NSError *error))failure
{
WordPressComRestApi *api = [self apiForRequest];
ReaderSiteServiceRemote *service = [[ReaderSiteServiceRemote alloc] initWithWordPressComRestApi:api];
[service findSiteIDForURL:siteURL success:^(NSUInteger siteID) {
if (siteID) {
[self followSiteWithID:siteID success:success failure:failure];
} else {
[self followSiteAtURL:[siteURL absoluteString] success:success failure:failure];
}
} failure:^(NSError * __unused error) {
DDLogInfo(@"Could not find site at URL: %@", siteURL);
[self followSiteAtURL:[siteURL absoluteString] success:success failure:failure];
}];
}
- (void)flagPostsFromSite:(NSNumber *)siteID asBlocked:(BOOL)blocked
{
[self.coreDataStack performAndSaveUsingBlock:^(NSManagedObjectContext *context) {
[self flagPostsFromSite:siteID asBlocked:blocked inContext:context];
}];
}
- (void)flagPostsFromSite:(NSNumber *)siteID asBlocked:(BOOL)blocked inContext:(NSManagedObjectContext *)context
{
NSError *error;
NSFetchRequest *request = [[NSFetchRequest alloc] initWithEntityName:@"ReaderPost"];
request.predicate = [NSPredicate predicateWithFormat:@"siteID = %@", siteID];
NSArray *results = [context executeFetchRequest:request error:&error];
if (error) {
DDLogError(@"%@, error deleting posts belonging to siteID %@: %@", NSStringFromSelector(_cmd), siteID, error);
return;
}
if ([results count] == 0) {
return;
}
for (ReaderPost *post in results) {
post.isSiteBlocked = blocked;
}
}
// Updates the site topic's following status in core data only.
- (void)markUnfollowedSiteTopicWithFeedURL:(NSString *)feedURL
{
[self.coreDataStack performAndSaveUsingBlock:^(NSManagedObjectContext *context) {
ReaderSiteTopic *topic = [ReaderSiteTopic lookupWithFeedURL:feedURL inContext:context];
topic.following = NO;
}];
}
// Updates the site topic's following status in core data only.
- (void)markUnfollowedSiteTopicWithSiteID:(NSNumber *)siteID
{
[self.coreDataStack performAndSaveUsingBlock:^(NSManagedObjectContext *context) {
ReaderSiteTopic *topic = [ReaderSiteTopic lookupWithSiteID:siteID inContext:context];
topic.following = NO;
}];
}
#pragma mark - Error messages
- (NSError *)errorForNotLoggedIn
{
NSString *description = NSLocalizedString(@"You must be signed in to a WordPress.com account to perform this action.", @"Error message informing the user that being logged into a WordPress.com account is required.");
NSDictionary *userInfo = @{NSLocalizedDescriptionKey:description};
NSError *error = [[NSError alloc] initWithDomain:ReaderSiteServiceErrorDomain code:ReaderSiteServiceErrorNotLoggedIn userInfo:userInfo];
return error;
}
- (NSError *)errorForAlreadyFollowingSiteOrFeed
{
NSString *description = NSLocalizedStringWithDefaultValue(@"reader.error.already.subscribed.message",
nil,
[NSBundle mainBundle],
@"You are already subscribed to this blog.",
@"Error message informing the user that they are already following a blog in their reader.");
NSDictionary *userInfo = @{NSLocalizedDescriptionKey:description};
NSError *error = [[NSError alloc] initWithDomain:ReaderSiteServiceErrorDomain code:ReaderSiteServiceErrorAlreadyFollowingSite userInfo:userInfo];
return error;
}
@end