4
4
using System . Text ;
5
5
using System . Threading . Tasks ;
6
6
7
- using RestSharp ;
7
+ using RestSharp . Portable ;
8
8
using Newtonsoft . Json . Linq ;
9
+ using RestSharp . Portable . HttpClient ;
9
10
10
11
namespace ComicStreamer
11
12
{
@@ -16,39 +17,36 @@ public ComicStreamerSharp(string asBaseUrl)
16
17
msBaseUrl = asBaseUrl ;
17
18
}
18
19
19
- private IRestResponse ExecuteCommand ( string Resource )
20
+ private async Task < IRestResponse > ExecuteCommand ( string Resource )
20
21
{
21
- var client = new RestClient ( ) ;
22
- client . BaseUrl = new Uri ( msBaseUrl ) ;
22
+ var client = new RestClient ( msBaseUrl ) ;
23
23
24
24
var request = new RestRequest ( ) ;
25
25
request . Resource = Resource ;
26
26
27
- IRestResponse response = client . Execute ( request ) ;
27
+ IRestResponse response = await client . Execute ( request ) ;
28
28
29
- if ( response . ErrorException != null )
30
- {
31
- Console . WriteLine ( "Error retrieving response for " + Resource ) ;
32
- }
29
+ System . Diagnostics . Debug . Assert ( response . IsSuccess ,
30
+ "Error retrieving response for " + Resource ) ;
33
31
34
32
return response ;
35
33
}
36
-
37
- public string GetDBInfo ( )
34
+
35
+ public async Task < string > GetDBInfo ( )
38
36
{
39
- IRestResponse response = ExecuteCommand ( "dbinfo" ) ;
37
+ IRestResponse response = await ExecuteCommand ( "dbinfo" ) ;
40
38
41
39
return response . Content ;
42
40
}
43
41
44
- public string GetVersion ( )
42
+ public async Task < string > GetVersion ( )
45
43
{
46
- IRestResponse response = ExecuteCommand ( "version" ) ;
44
+ IRestResponse response = await ExecuteCommand ( "version" ) ;
47
45
48
46
return response . Content ;
49
47
}
50
48
51
- public string GetDeletedComics ( string date )
49
+ public async Task < string > GetDeletedComics ( string date )
52
50
{
53
51
/*
54
52
* /deleted
@@ -57,66 +55,66 @@ public string GetDeletedComics(string date)
57
55
since
58
56
- date of the earliest returned value */
59
57
60
- IRestResponse response = ExecuteCommand ( "deleted?since=" + date ) ;
58
+ IRestResponse response = await ExecuteCommand ( "deleted?since=" + date ) ;
61
59
62
60
return response . Content ;
63
61
}
64
62
65
63
66
- public JObject GetComicInfo ( string id )
64
+ public async Task < JObject > GetComicInfo ( int id )
67
65
{
68
66
/* /comic/{id}
69
67
- info about specific comic
70
68
*/
71
69
72
- IRestResponse response = ExecuteCommand ( "/comic/" + id ) ;
70
+ IRestResponse response = await ExecuteCommand ( "/comic/" + id ) ;
73
71
74
72
JObject o = JObject . Parse ( response . Content ) ;
75
73
76
74
return o ;
77
75
}
78
76
79
- public byte [ ] GetComicPage ( string id = "0" , int pagenum = 0 )
77
+ public async Task < byte [ ] > GetComicPage ( int id , int pagenum = 0 )
80
78
{
81
79
//TODO: Add height arg.
82
80
/*/comic/{id}/page/{pagenum}
83
81
- return specific page image of specific comic
84
82
args:
85
83
max_height
86
84
- will resize image*/
87
- IRestResponse response = ExecuteCommand ( "/comic/" + id + "/page/" + pagenum ) ;
85
+ IRestResponse response = await ExecuteCommand ( "/comic/" + id + "/page/" + pagenum ) ;
88
86
89
87
byte [ ] imageBytes = response . RawBytes ;
90
88
91
89
return imageBytes ;
92
90
}
93
91
94
- public void SetBookmark ( string id , string pagenum = "clear" )
92
+ public async void SetBookmark ( int id , string pagenum = "clear" )
95
93
{
96
94
/*/comic/{id}/page/{pagenum}/bookmark
97
95
- sets the time of last access and last page read for the comic.
98
96
client would fetch this for each page turn
99
97
if {pagenum} is "clear" clears bookmark for the given book*/
100
- IRestResponse response = ExecuteCommand ( "/comic/" + id + "/page/" + pagenum + "/bookmark" ) ;
98
+ IRestResponse response = await ExecuteCommand ( "/comic/" + id + "/page/" + pagenum + "/bookmark" ) ;
101
99
102
100
}
103
101
104
- public byte [ ] GetThumbnail ( string id )
102
+ public async Task < byte [ ] > GetThumbnail ( int id )
105
103
{
106
104
/* /comic/{id}/thumbnail
107
105
- return specific small cover image of specific comic*/
108
- IRestResponse response = ExecuteCommand ( "/comic/" + id + "/thumbnail" ) ;
106
+ IRestResponse response = await ExecuteCommand ( "/comic/" + id + "/thumbnail" ) ;
109
107
110
108
byte [ ] imageBytes = response . RawBytes ;
111
109
112
110
return imageBytes ;
113
111
}
114
112
115
- public byte [ ] GetComicFile ( string id )
113
+ public async Task < byte [ ] > GetComicFile ( int id )
116
114
{
117
115
/* /comic/{id}/file
118
116
- return entire specific comic file*/
119
- IRestResponse response = ExecuteCommand ( "/comic/" + id + "/file" ) ;
117
+ IRestResponse response = await ExecuteCommand ( "/comic/" + id + "/file" ) ;
120
118
121
119
byte [ ] imageBytes = response . RawBytes ;
122
120
@@ -175,7 +173,7 @@ the starting offset of the query resultset
175
173
176
174
date format is "YYYY-MM-DD hh:mm:ss", where the right-most (most granular) portions may be omitted
177
175
/*/
178
- public JObject GetComicList (
176
+ public async Task < JObject > GetComicList (
179
177
string series = "" ,
180
178
string title = "" ,
181
179
string path = "" ,
@@ -197,7 +195,7 @@ public JObject GetComicList(
197
195
string order = "" )
198
196
{
199
197
200
- IRestResponse response = ExecuteCommand ( "/comiclist?series=" + series +
198
+ IRestResponse response = await ExecuteCommand ( "/comiclist?series=" + series +
201
199
"&title=" + title +
202
200
"&path=" + path +
203
201
"&character=" + character +
@@ -222,13 +220,13 @@ public JObject GetComicList(
222
220
return o ;
223
221
}
224
222
225
- public JObject GetFolders ( string path = "" )
223
+ public async Task < JObject > GetFolders ( string path = "" )
226
224
{
227
225
/*/folders/[path]
228
226
- Return list of folders with names and access URLS), and list of comics in the specific folder
229
227
Without a path, returns just the top level folders
230
228
*/
231
- IRestResponse response = ExecuteCommand ( "/folders/" + path ) ;
229
+ IRestResponse response = await ExecuteCommand ( "/folders/" + path ) ;
232
230
233
231
JObject o = JObject . Parse ( response . Content ) ;
234
232
0 commit comments