blob: e67afb15b311f1b47d33b2b93c3f26e667876c7a (
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
|
/*
* blogc: A blog compiler.
* Copyright (C) 2014-2017 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
*/
#include <stdbool.h>
#include <string.h>
#include <unistd.h>
#include "../common/utils.h"
#include "httpd-utils.h"
char*
br_readline(int socket)
{
bc_string_t *rv = bc_string_new();
char buffer[READLINE_BUFFER_SIZE];
ssize_t len;
bool end = false;
while ((len = read(socket, buffer, READLINE_BUFFER_SIZE)) > 0) {
if (!end) {
for (ssize_t i = 0; i < len; i++) {
if (buffer[i] == '\r' || buffer[i] == '\n' || buffer[i] == '\0') {
// we finished "recording", but still need to exhaust
// request data.
end = true;
break;
}
bc_string_append_c(rv, buffer[i]);
}
}
if (len < READLINE_BUFFER_SIZE) {
break;
}
}
return bc_string_free(rv, false);
}
int
br_hextoi(const char c)
{
if (c >= '0' && c <= '9')
return c - '0';
if (c >= 'a' && c <= 'f')
return c - 'a' + 10;
if (c >= 'A' && c <= 'F')
return c - 'A' + 10;
return -1;
}
char*
br_urldecode(const char *str)
{
bc_string_t *rv = bc_string_new();
for (size_t i = 0; i < strlen(str); i++) {
switch (str[i]) {
case '%':
if (i + 2 < strlen(str)) {
int p1 = br_hextoi(str[i + 1]) * 16;
int p2 = br_hextoi(str[i + 2]);
if (p1 >= 0 && p2 >= 0) {
bc_string_append_c(rv, p1 + p2);
i += 2;
continue;
}
}
bc_string_append_c(rv, '%');
break;
case '+':
bc_string_append_c(rv, ' ');
break;
default:
bc_string_append_c(rv, str[i]);
}
}
return bc_string_free(rv, false);
}
const char*
br_get_extension(const char *filename)
{
const char *ext = NULL;
unsigned int i;
for (i = strlen(filename); i > 0; i--) {
if (filename[i] == '.') {
ext = filename + i + 1;
break;
}
if ((filename[i] == '/') || (filename[i] == '\\'))
return NULL;
}
if (i == 0)
return NULL;
return ext;
}
|