add existing code (build system, libs, initial mizucp code)
[mizunara.git] / libidav / utils.h
1 /*
2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3  *
4  * Copyright 2019 Olaf Wintermann. All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are met:
8  *
9  *   1. Redistributions of source code must retain the above copyright
10  *      notice, this list of conditions and the following disclaimer.
11  *
12  *   2. Redistributions in binary form must reproduce the above copyright
13  *      notice, this list of conditions and the following disclaimer in the
14  *      documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26  * POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 #ifndef UTILS_H
30 #define UTILS_H
31
32 #ifdef _WIN32
33 #include <winsock2.h>
34 #include <io.h>
35 #endif /* _WIN32 */
36
37 #include <sys/types.h>
38 #include <libxml/tree.h>
39 #include <ucx/string.h>
40 #include <sys/stat.h>
41 #include <inttypes.h>
42
43 #include <curl/curl.h>
44 #include "webdav.h"
45
46 #ifndef S_IRWXG
47 /* if one is not defined, the others are probably also not defined */
48 #define S_IRWXG 070
49 #define S_IRGRP 040
50 #define S_IWGRP 020
51 #define S_IXGRP 010
52 #define S_IRWXO  07
53 #define S_IROTH  04
54 #define S_IWOTH  02
55 #define S_IXOTH  01
56 #endif /* S_IRWXG */
57
58 #ifdef  __cplusplus
59 extern "C" {
60 #endif
61
62 time_t util_parse_creationdate(char *str);
63 time_t util_parse_lastmodified(char *str);
64
65 int util_mkdir(char *path, mode_t mode);
66
67 char* util_url_base(char *url);
68 char* util_url_base_s(sstr_t url);
69 char* util_url_path(char *url);
70 char* util_url_decode(DavSession *sn, char *url);
71 char* util_resource_name(char *url);
72 char* util_concat_path(const char *url_base, const char *path);
73 char* util_get_url(DavSession *sn, const char *href);
74 void util_set_url(DavSession *sn, const char *href);
75
76 /*
77  * returns true if path1 and path2 are equal or if path2 is a child of path1
78  */
79 int util_path_isrelated(const char *path1, const char *path2);
80
81 int util_path_isabsolut(const char *path);
82
83 char* util_path_normalize(const char *path);
84 char* util_create_relative_path(const char *abspath, const char *base);
85
86 void util_capture_header(CURL *handle, UcxMap* map);
87
88 char* util_path_to_url(DavSession *sn, char *path);
89 char* util_parent_path(const char *path);
90
91 char* util_size_str(DavBool iscollection, uint64_t contentlength);
92 char* util_date_str(time_t tm);
93
94 int util_getboolean(const char *v);
95 int util_strtouint(const char *str, uint64_t *value);
96 int util_strtoint(const char *str, int64_t *value);
97 int util_szstrtouint(const char *str, uint64_t *value);
98
99 int util_uint_mul(uint64_t a, uint64_t b, uint64_t *result);
100
101 char* util_xml_get_text(const xmlNode *elm);
102
103 char* util_base64decode(const char *in);
104 char* util_base64decode_len(const char *in, int *outlen);
105 char* util_base64encode(const char *in, size_t len);
106
107 char* util_encrypt_str(DavSession *sn, char *str, char *key);
108 char* util_encrypt_str_k(DavSession *sn, char *str, DavKey *key);
109 char* util_decrypt_str(DavSession *sn, char *str, char *key);
110 char* util_decrypt_str_k(DavSession *sn, char *str, DavKey *key);
111
112 char* util_random_str();
113
114 sstr_t util_getsubstr_until_token(sstr_t str, sstr_t token, sstr_t *sub);
115
116 sstr_t util_readline(FILE *stream);
117 char* util_password_input(char *prompt);
118
119 char* util_hexstr(const unsigned char *data, size_t len);
120
121 void util_remove_trailing_pathseparator(char *path);
122
123 char* util_file_hash(const char *path);
124
125 #ifdef  __cplusplus
126 }
127 #endif
128
129 #endif  /* UTILS_H */
130