summaryrefslogtreecommitdiffstats
path: root/ComicRackWebViewer/Modules/BCRModule.cs
blob: 32279aa1245fcd49ea069f2518f1ac12308d4f27 (plain)
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
using cYo.Projects.ComicRack.Engine;
using cYo.Projects.ComicRack.Viewer;
using Nancy;
using Nancy.ModelBinding;
using Nancy.Responses;
using Nancy.Security;
using System;
using System.Collections.Generic;
using System.Linq;



namespace BCR
{
    public class BCRModule : NancyModule
    {
        public BCRModule()
          : base(Database.Instance.GlobalSettings.url_base + "/BCR")
        {
            // The user must be authenticated in order to use the BCR API.
            this.RequiresAuthentication();

            Get["/"] = x => { return Response.AsText("Authentication OK"); };
            
                        
            ///////////////////////////////////////////////////////////////////////////////////////////////
            // Retrieve a list of all (smart)lists.
            Get["/Lists"] = x => { 
              
        	    try 
        	    {
        	      //var user = (BCRUser)this.Context.CurrentUser;
                //Gui guid = user.GetHomeList();
                //ComicListItem item = Program.Database.ComicLists.GetItems<ComicListItem>(false).FirstOrDefault((ComicListItem cli) => cli.Id == s);
                
                int depth = Request.Query.depth.HasValue ? int.Parse(Request.Query.depth) : -1;
         	      return Response.AsOData(Program.Database.ComicLists.Select(c => c.ToComicList(depth)));
        	    }
        	    catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
        	  
            
        	  ///////////////////////////////////////////////////////////////////////////////////////////////
            // Retrieve the contents of the specified list.
            Get["/Lists/{id}"]  = x => { 
              try
              {
          	    int depth = Request.Query.depth.HasValue ? int.Parse(Request.Query.depth) : -1;
          	    IEnumerable<ComicList> list = Program.Database.ComicLists.Where(c => c.Id == new Guid(x.id)).Select(c => c.ToComicList(depth));
          	    if (list.Count() == 0)
          	    {
          	      return Response.AsError(HttpStatusCode.NotFound, "List not found", Request);
          	    }
          	    
        	      return Response.AsOData(list); 
        	    }
        	    catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
        	  
            
            ///////////////////////////////////////////////////////////////////////////////////////////////
        	  // For OData compatibility, count should be $count, but I don't know how to parse the $ with Nancy....
        	  Get["/Lists/{id}/Comics/count"] = x => {
              try 
              {
                BCRUser user = (BCRUser)this.Context.CurrentUser;
                int totalCount = 0;
        	      return Response.AsText(Context.ApplyODataUriFilter(BCR.GetComicsForList(user, new Guid(x.id)), ref totalCount).Count().ToString());
              }
              catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
        	  
        	  
        	  ///////////////////////////////////////////////////////////////////////////////////////////////
        	  // Return the comics of the specified list using OData to filter the comic properties and the list paging.
            Get["/Lists/{id}/Comics"] = x => { 
        	    try
        	    {
        	      BCRUser user = (BCRUser)this.Context.CurrentUser;
        	      
                var rawcomics = BCR.GetComicsForList(user, new Guid(x.id));
        	      int totalCount = 0;
        	      var comics = Context.ApplyODataUriFilter(rawcomics, ref totalCount);
        	      var result = new { totalCount = totalCount, items = comics };
        	      return Response.AsJson(result, HttpStatusCode.OK);
        	    }
        	    catch(Exception e)
        	    {
                return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
            
        	  
        	  ///////////////////////////////////////////////////////////////////////////////////////////////
        	  // Returns a list of all the comics as comic excerpts
        	  Get["/Comics"] = x => { 
        	    try
        	    {
        	      BCRUser user = (BCRUser)this.Context.CurrentUser;
        	      int totalCount = 0;
        	      var comics = Context.ApplyODataUriFilter(BCR.GetComics().Select(c => c.ToComic(user)), ref totalCount);
        	      var result = new { totalCount = totalCount, items = comics };
        	      return Response.AsJson(result, HttpStatusCode.OK);
        	    }
        	    catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
        	  
        	  
        	  ///////////////////////////////////////////////////////////////////////////////////////////////
        	  // Return the comicbook info as an OData filtered bag of properties.
            Get["/Comics/{id}"] = x => { 
        	    try
        	    {
        	      BCRUser user = (BCRUser)this.Context.CurrentUser;
                Comic comic = BCR.GetComic(user, new Guid(x.id));
                if (comic == null)
                {
                  return Response.AsError(HttpStatusCode.NotFound, "Comic not found", Request);
                }
  
                return Response.AsOData(new List<Comic> { comic });
        	    }
              catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
            };
        	  
        	  
        	  ///////////////////////////////////////////////////////////////////////////////////////////////
            // Retrieve the specified page as a jpg file with the specified dimensions.
            Get["/Comics/{id}/Pages/{page}"] = x => {
              
              try
              {
                int width = Request.Query.width.HasValue ? int.Parse(Request.Query.width) : -1;
                int height = Request.Query.height.HasValue ? int.Parse(Request.Query.height) : -1;
                
                int maxWidth = Request.Query.maxWidth.HasValue ? int.Parse(Request.Query.maxWidth) : -1;
                int maxHeight = Request.Query.maxHeight.HasValue ? int.Parse(Request.Query.maxHeight) : -1;
                
                return BCR.GetPageImage(new Guid(x.id), int.Parse(x.page), width, height, Response);
              }
              catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
            };
            
            
            ///////////////////////////////////////////////////////////////////////////////////////////////
            // Retrieve the original size (in pixels) of the requested page.
            Get["/Comics/{id}/Pages/{page}/size"] = x => {
              try
              {
                int width = 0;
                int height = 0;
                BCR.GetPageImageSize(new Guid(x.id), int.Parse(x.page), ref width, ref height);
                return Response.AsJson(new { width = width, height = height}, HttpStatusCode.OK);
              }
              catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
            };
            
            
            ///////////////////////////////////////////////////////////////////////////////////////////////
        	  // Get one property.
        	  /*
        	  Get["/Comics/{id}/{property}"] = x => { 
        	    try
        	    {
                Comic comic = BCR.GetComic(new Guid(x.id));
                if (comic == null)
                {
                  return Response.AsError(HttpStatusCode.NotFound, "Comic not found", Request);
                }

                PropertyInfo property = comic.GetType().GetProperty(x.property);
                object value = property.GetValue(comic, null);
                
                return Response.AsJson(value);
              }
              catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
            };
            */
        	  
        	  
        	  ///////////////////////////////////////////////////////////////////////////////////////////////
        	  // Update properties of the specified comicbook.
        	  /*
        	  Put["/Comics/{id}"] = x => {
        	    try
        	    {
          	    // Get the ComicBook entry from the library, so we can change it.
          	    ComicBook book = BCR.GetComicBook(new Guid(x.id));
          	    if (book == null)
          	    {
          	      return Response.AsError(HttpStatusCode.NotFound, "Comic not found", Request);
          	    }
          	    
          	    // Convert form values to temporary ComicBook object.
          	    ComicBook info = this.Bind<ComicBook>();
          	    
          	    IEnumerable<string> keys = Request.Form.GetDynamicMemberNames();
          	    
          	    // This also triggers the update of the ComicRack application.
          	    book.CopyDataFrom(info, keys);
          	      
          	    return HttpStatusCode.OK;  
        	    }
        	    catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
        	  */
        	  
            ///////////////////////////////////////////////////////////////////////////////////////////////
        	  // Update properties of the specified comicbook for the current user
        	  Put["/Comics/{id}/Progress"] = x => {
        	    try
        	    {
          	    // Check if the comic exists.
          	    Guid comicId = new Guid(x.id);
                ComicBook book = BCR.GetComics().FirstOrDefault(comic => comic.Id == comicId);
          	    if (book == null)
          	    {
          	      return Response.AsError(HttpStatusCode.NotFound, "Comic not found", Request);
          	    }
          	              	    
          	    BCRUser user = (BCRUser)this.Context.CurrentUser;
          	    user.UpdateComicProgress(book, int.Parse(this.Request.Form.CurrentPage));
          	              	    
          	    return HttpStatusCode.OK;  
        	    }
        	    catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
        	  
        	  ///////////////////////////////////////////////////////////////////////////////////////////////
        	  // Update one property
        	  /*
        	  Put["/Comics/{id}/{property}"] = x => {
        	    try
        	    {
          	    // Convert form values to temporary Comic object.
          	    string info = this.Bind<string>();
          	    
          	    
          	    // Now get the ComicBook entry from the library, so we can change it.
          	    ComicBook book = BCR.GetComicBook(x.id);
          	    if (book == null)
          	    {
          	      return Response.AsError(HttpStatusCode.NotFound, "Comic not found", Request);
          	    }
          	    
          	    // Setting one of these values also triggers the update of the ComicRack application.
          	    book.SetValue(x.property, info);
          	    
          	    
          	    return HttpStatusCode.OK;  
        	    }
        	    catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
        	  */
        	 
        	 
        	  ///////////////////////////////////////////////////////////////////////////////////////////////
        	  // Get the BCR settings.
        	  Get["/Settings"] = x => {
        	    try
        	    {
        	      var user = (BCRUser)this.Context.CurrentUser;
        	      return Response.AsJson(user.GetSettings(), HttpStatusCode.OK);
        	    }
        	    catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
        	  
        	  
        	  ///////////////////////////////////////////////////////////////////////////////////////////////
        	  // Update the BCR settings.
        	  Put["/Settings"] = x => {
        	    try 
        	    {
          	    var user = (BCRUser)this.Context.CurrentUser;
          	    user.UpdateSettings(this.Bind<UserSettings>());
          	    
          	    return HttpStatusCode.OK;
        	    }
        	    catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
        	  
        	  ///////////////////////////////////////////////////////////////////////////////////////////////
        	  // Get a list of series
        	  Get["/Series"] = x => {
        	    try 
        	    {
        	      int totalCount = 0;
        	      var series = Context.ApplyODataUriFilter(BCR.GetSeries(), ref totalCount);
        	      var result = new { totalCount = totalCount, items = series };
        	      return Response.AsJson(result, HttpStatusCode.OK);
        	    }
        	    catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
        	  
        	  
        	  ///////////////////////////////////////////////////////////////////////////////////////////////
        	  // Retrieve a list of all comics in the specified list
        	  Get["/Series/{id}"] = x => {
        	    try 
        	    {
        	      var user = (BCRUser)this.Context.CurrentUser;
        	      int totalCount = 0;
        	      var series = Context.ApplyODataUriFilter(BCR.GetComicsFromSeries(user, new Guid(x.id)), ref totalCount);
        	      var result = new { totalCount = totalCount, items = series };
        	      return Response.AsJson(result, HttpStatusCode.OK);
        	    }
        	    catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
        	  
        	  
        	  ///////////////////////////////////////////////////////////////////////////////////////////////
        	  // Retrieve the number of comics in the specified list
        	  Get["/Series/{id}/count"] = x => {
        	    try 
        	    {
        	      var user = (BCRUser)this.Context.CurrentUser;
        	      int totalCount = 0;
        	      return Response.AsText(Context.ApplyODataUriFilter(BCR.GetComicsFromSeries(user, new Guid(x.id)), ref totalCount).Count().ToString());
        	    }
        	    catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
        	  
        	  
        	  ///////////////////////////////////////////////////////////////////////////////////////////////
        	  //
        	  Get["/Series/{id}/Volumes"] = x => {
        	    try 
        	    {
        	      return Response.AsOData(BCR.GetVolumesFromSeries(new Guid(x.id)), HttpStatusCode.OK);
        	    }
        	    catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
        	  
        	  
        	  ///////////////////////////////////////////////////////////////////////////////////////////////
        	  //
        	  Get["/Series/{id}/Volumes/{volume}"] = x => {
        	    try 
        	    {
        	      BCRUser user = (BCRUser)this.Context.CurrentUser;
        	      int volume = int.Parse(x.volume);
        	      var comics = BCR.GetComicsFromSeriesVolume(user, new Guid(x.id), volume);
        	      return Response.AsOData(comics, HttpStatusCode.OK);
        	    }
        	    catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
        	  
        	  
        	  ///////////////////////////////////////////////////////////////////////////////////////////////
        	  // Get a list of publishers
        	  Get["/Publishers"] = x => {
        	    try 
        	    {
        	      return Response.AsOData(BCR.GetPublishers(), HttpStatusCode.OK);
        	    }
        	    catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
        	  
        	  
        	  ///////////////////////////////////////////////////////////////////////////////////////////////
        	  //
        	  Get["/Log"] = x => {
        	    try
        	    {
          	    string severity = Request.Query.sev.HasValue ? Request.Query.sev : "";
                string message = Request.Query.msg.HasValue ? Request.Query.msg : "";
                
                // TODO: write log entry to a file.
                
                return Response.AsRedirect("/tablet/resources/images/empty_1x1.png", RedirectResponse.RedirectType.Permanent);
        	    }
        	    catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
        	  
        	  
        	  ///////////////////////////////////////////////////////////////////////////////////////////////
        	  // Get the list of watched folders.
        	  Get["/WatchFolder"] = x => {
        	    try 
        	    {
        	      //return Response.AsOData(BCR.GetPublishers(), HttpStatusCode.OK);
        	      
        	      var folders = Program.Database.WatchFolders as cYo.Projects.ComicRack.Engine.Database.WatchFolderCollection;
        	      
        	      List<string> books = BCRExtensions.GetFolderBookList2(folders.Folders.First(), true);
        	      return Response.AsJson(books, HttpStatusCode.OK);
        	      
        	      //return Response.AsRedirect("/tablet/resources/images/empty_1x1.png", RedirectResponse.RedirectType.Permanent);
        	    }
        	    catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
        	  
        	  
        	  ///////////////////////////////////////////////////////////////////////////////////////////////
        	  // Get list of all files in the folder 
        	  Get["/WatchFolder/{folder}"] = x => {
        	    try 
        	    {
        	      return Response.AsRedirect("/tablet/resources/images/empty_1x1.png", RedirectResponse.RedirectType.Permanent);
        	      
        	    }
        	    catch(Exception e)
        	    {
        	      return Response.AsError(HttpStatusCode.InternalServerError, e.ToString(), Request);
        	    }
        	  };
        	  
        }

    }
   
}