-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathPostCategoryService.h
45 lines (35 loc) · 1.53 KB
/
PostCategoryService.h
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
#import <Foundation/Foundation.h>
@import WordPressData;
NS_ASSUME_NONNULL_BEGIN
@class Blog;
@class PostCategory;
typedef NS_ENUM(NSInteger, PostCategoryServiceErrors) {
PostCategoryServiceErrorsBlogNotFound
};
@interface PostCategoryService : NSObject
@property (nonatomic, strong, readonly) id<CoreDataStack> coreDataStack;
- (instancetype)initWithCoreDataStack:(id<CoreDataStack>)coreDataStack;
/**
Sync an initial batch of categories for blog via default remote parameters and responses.
*/
- (void)syncCategoriesForBlog:(Blog *)blog
success:(nullable void (^)(void))success
failure:(nullable void (^)(NSError *error))failure;
/**
Sync an explicit number categories paginated by an offset for blog.
*/
- (void)syncCategoriesForBlog:(Blog *)blog
number:(nullable NSNumber *)number
offset:(nullable NSNumber *)offset
success:(nullable void (^)(NSArray <PostCategory *> *categories))success
failure:(nullable void (^)(NSError *error))failure;
/**
Create a category for a remote blog with a name and optional parent category.
*/
- (void)createCategoryWithName:(NSString *)name
parentCategoryObjectID:(nullable NSManagedObjectID *)parentCategoryObjectID
forBlogObjectID:(NSManagedObjectID *)blogObjectID
success:(nullable void (^)(PostCategory *category))success
failure:(nullable void (^)(NSError *error))failure;
@end
NS_ASSUME_NONNULL_END