-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMisoApiBooksClient.m
More file actions
81 lines (69 loc) · 2.59 KB
/
MisoApiBooksClient.m
File metadata and controls
81 lines (69 loc) · 2.59 KB
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
//
// MisoApiBooksClient.m
// Sonata
//
// Created by HEENA RASTOGI on 4/20/12.
// Copyright (c) 2012 Miso Media. All rights reserved.
//
#import "MisoApiBooksClient.h"
static NSString *booksPath = @"books"; // HR -- Change the path to books after talking to web people
@implementation MisoApiBooksClient
// assigned
@synthesize delegate;
- (void)getFeaturedBooksForPageNumber:(NSNumber *)pageNumber
itemCount:(NSNumber *)numberOfItems
andCallback:(void (^)(id))handler
{
NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:
pageNumber, @"page",
numberOfItems, @"per_page",
nil];
[self.delegate requestWithPath:booksPath
method:@"featured"
getParams:params
postParams:nil
andCallback:handler];
}
- (void)getTopBooksForPageNumber:(NSNumber *)pageNumber
itemCount:(NSNumber *)numberOfItems
andCallback:(void (^)(id))handler
{
NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:
pageNumber, @"page",
numberOfItems, @"per_page",
nil];
[self.delegate requestWithPath:booksPath
method:@"top"
getParams:params
postParams:nil
andCallback:handler];
}
- (void)getScoresForBookWithId:(NSNumber *)bookId
andCallback:(void (^)(id))handler;
{
NSString *method = [NSString stringWithFormat:@"%@/arrangements",bookId];
[self.delegate requestWithPath:booksPath
method:method
getParams:nil
postParams:nil
andCallback:handler];
}
- (void)getBookWithId:(NSNumber *)book_id
andCallback:(void(^)(id))handler
{
[self.delegate requestWithPath:booksPath
method:[book_id stringValue]
getParams:nil
postParams:nil
andCallback:handler];
}
- (void)searchBooksWithParameters:(NSDictionary *)params
andCallback:(void(^)(id))handler
{
[self.delegate requestWithPath:booksPath
method:nil
getParams:params
postParams:nil
andCallback:handler];
}
@end