set download path
[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 #pragma once
19
20 struct AFB_clientCtx;
21 struct json_object;
22
23 struct afb_hreq {
24         const char *cacheTimeout;
25         struct MHD_Connection *connection;
26         int method;
27         const char *version;
28         const char *url;
29         size_t lenurl;
30         const char *tail;
31         size_t lentail;
32         struct MHD_PostProcessor *postform;
33         struct AFB_clientCtx *context;
34         struct hreq_data *data;
35         struct json_object *json;
36         int upgrade;
37 };
38
39 extern void afb_hreq_free(struct afb_hreq *request);
40
41 extern int afb_hreq_unprefix(struct afb_hreq *request, const char *prefix, size_t length);
42
43 extern int afb_hreq_valid_tail(struct afb_hreq *request);
44
45 extern void afb_hreq_reply_error(struct afb_hreq *request, unsigned int status);
46
47 extern int afb_hreq_reply_file_if_exist(struct afb_hreq *request, int dirfd, const char *filename);
48
49 extern int afb_hreq_reply_file(struct afb_hreq *request, int dirfd, const char *filename);
50
51 extern int afb_hreq_redirect_to(struct afb_hreq *request, const char *url);
52
53 extern const char *afb_hreq_get_cookie(struct afb_hreq *hreq, const char *name);
54
55 extern const char *afb_hreq_get_header(struct afb_hreq *hreq, const char *name);
56
57 extern const char *afb_hreq_get_argument(struct afb_hreq *hreq, const char *name);
58
59 extern int afb_hreq_post_add_file(struct afb_hreq *hreq, const char *name, const char *file, const char *data, size_t size);
60
61 extern int afb_hreq_post_add(struct afb_hreq *hreq, const char *name, const char *data, size_t size);
62
63 extern struct afb_req afb_hreq_to_req(struct afb_hreq *hreq);
64
65 extern struct AFB_clientCtx *afb_hreq_context(struct afb_hreq *hreq);
66
67 extern int afb_hreq_init_cookie(int port, const char *path, int maxage);
68
69 extern void afb_hreq_reply_static(struct afb_hreq *hreq, unsigned status, size_t size, char *buffer, ...);
70
71 extern void afb_hreq_reply_copy(struct afb_hreq *hreq, unsigned status, size_t size, char *buffer, ...);
72
73 extern void afb_hreq_reply_free(struct afb_hreq *hreq, unsigned status, size_t size, char *buffer, ...);
74
75 extern void afb_hreq_reply_empty(struct afb_hreq *hreq, unsigned status, ...);
76
77 extern int afb_hreq_init_download_path(const char *directory);