refactoring (in progress, tbf)
[src/app-framework-binder.git] / src / afb-hreq.h
1 /*
2  * Copyright 2016 IoT.bzh
3  * Author: José Bollo <jose.bollo@iot.bzh>
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *   http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18
19 struct afb_hreq {
20         AFB_session *session;
21         struct MHD_Connection *connection;
22         enum afb_method method;
23         const char *version;
24         const char *url;
25         size_t lenurl;
26         const char *tail;
27         size_t lentail;
28         struct MHD_PostProcessor *postform;
29         void *data;
30 };
31
32 extern int afb_hreq_unprefix(struct afb_hreq *request, const char *prefix, size_t length);
33
34 extern int afb_hreq_valid_tail(struct afb_hreq *request);
35
36 extern void afb_hreq_reply_error(struct afb_hreq *request, unsigned int status);
37
38 extern int afb_hreq_reply_file_if_exist(struct afb_hreq *request, int dirfd, const char *filename);
39
40 extern int afb_hreq_reply_file(struct afb_hreq *request, int dirfd, const char *filename);
41
42 extern int afb_hreq_redirect_to(struct afb_hreq *request, const char *url);
43
44 extern const char *afb_hreq_get_cookie(struct afb_hreq *hreq, const char *name);
45
46 extern const char *afb_hreq_get_argument(struct afb_hreq *hreq, const char *name);
47
48 extern const char *afb_hreq_get_header(struct afb_hreq *hreq, const char *name);
49
50 extern int afb_hreq_post_add_file(struct afb_hreq *hreq, const char *key, const char *file, const char *data, size_t size);
51
52 extern int afb_hreq_post_add(struct afb_hreq *hreq, const char *key, const char *data, size_t size);
53
54 extern void afb_hreq_post_end(struct afb_hreq *hreq);
55
56 struct afb_req_itf;
57 extern const struct afb_req_itf afb_hreq_itf;
58