Frontpage and style tweaks
[blerg.git] / common / app.h
1 /* Blerg is (C) 2011 The Dominion of Awesome, and is distributed under a
2  * BSD-style license.  Please see the COPYING file for details.
3  */
4 #ifndef _APP_H
5 #define _APP_H
6
7 #include <yajl/yajl_gen.h>
8 #include "database.h"
9
10 #define REALM "Blerg"
11
12 #define CONTENT_401 "<html><head><title>401 Unauthorized</title></head><body><h1>401 Unauthorized</h1>DENIED</body></html>"
13 #define CONTENT_404 "<html><head><title>404 Not Found</title></head><body><h1>404 Not Found</h1>I couldn't find that.</body></html>"
14 #define CONTENT_405 "<html><head><title>405 Method Not Allowed</title></head><body><h1>405 Method Not Allowed</h1>I'm sorry, Dave. I'm afraid I can't do that.</body></html>"
15 #define JSON_SUCCESS "{\"status\": \"success\"}"
16 #define JSON_FAILURE "{\"status\": \"failure\"}"
17
18 #define URL_INFO_AUTHOR    0x1
19 #define URL_INFO_RECORD    0x2
20 #define URL_INFO_RECORD_TO 0x4
21 #define DERP "DERP DERP DERP"
22
23 struct url_info {
24         unsigned int contents;
25         char author[33];
26         uint64_t record;
27         uint64_t record_to;
28 };
29
30 int parse_url_info(const char *url, struct url_info *info);
31 uint64_t *make_sequential_list(uint64_t from, uint64_t to);
32
33 #endif /* _APP_H */