1 /* html.c: helper functions for html output
3 * Copyright (C) 2006-2014 cgit Development Team <cgit@lists.zx2c4.com>
5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text)
13 /* Percent-encoding of each character, except: a-zA-Z0-9!$()*,./:;@- */
14 static const char* url_escape_table
[256] = {
15 "%00", "%01", "%02", "%03", "%04", "%05", "%06", "%07",
16 "%08", "%09", "%0a", "%0b", "%0c", "%0d", "%0e", "%0f",
17 "%10", "%11", "%12", "%13", "%14", "%15", "%16", "%17",
18 "%18", "%19", "%1a", "%1b", "%1c", "%1d", "%1e", "%1f",
19 "%20", NULL
, "%22", "%23", NULL
, "%25", "%26", "%27",
20 NULL
, NULL
, NULL
, "%2b", NULL
, NULL
, NULL
, NULL
,
21 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
22 NULL
, NULL
, NULL
, NULL
, "%3c", "%3d", "%3e", "%3f",
23 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
24 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
25 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
26 NULL
, NULL
, NULL
, NULL
, "%5c", NULL
, "%5e", NULL
,
27 "%60", NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
28 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
29 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
30 NULL
, NULL
, NULL
, "%7b", "%7c", "%7d", NULL
, "%7f",
31 "%80", "%81", "%82", "%83", "%84", "%85", "%86", "%87",
32 "%88", "%89", "%8a", "%8b", "%8c", "%8d", "%8e", "%8f",
33 "%90", "%91", "%92", "%93", "%94", "%95", "%96", "%97",
34 "%98", "%99", "%9a", "%9b", "%9c", "%9d", "%9e", "%9f",
35 "%a0", "%a1", "%a2", "%a3", "%a4", "%a5", "%a6", "%a7",
36 "%a8", "%a9", "%aa", "%ab", "%ac", "%ad", "%ae", "%af",
37 "%b0", "%b1", "%b2", "%b3", "%b4", "%b5", "%b6", "%b7",
38 "%b8", "%b9", "%ba", "%bb", "%bc", "%bd", "%be", "%bf",
39 "%c0", "%c1", "%c2", "%c3", "%c4", "%c5", "%c6", "%c7",
40 "%c8", "%c9", "%ca", "%cb", "%cc", "%cd", "%ce", "%cf",
41 "%d0", "%d1", "%d2", "%d3", "%d4", "%d5", "%d6", "%d7",
42 "%d8", "%d9", "%da", "%db", "%dc", "%dd", "%de", "%df",
43 "%e0", "%e1", "%e2", "%e3", "%e4", "%e5", "%e6", "%e7",
44 "%e8", "%e9", "%ea", "%eb", "%ec", "%ed", "%ee", "%ef",
45 "%f0", "%f1", "%f2", "%f3", "%f4", "%f5", "%f6", "%f7",
46 "%f8", "%f9", "%fa", "%fb", "%fc", "%fd", "%fe", "%ff"
49 char *fmt(const char *format
, ...)
51 static char buf
[8][1024];
59 va_start(args
, format
);
60 len
= vsnprintf(buf
[bufidx
], sizeof(buf
[bufidx
]), format
, args
);
62 if (len
>= sizeof(buf
[bufidx
])) {
63 fprintf(stderr
, "[html.c] string truncated: %s\n", format
);
69 char *fmtalloc(const char *format
, ...)
71 struct strbuf sb
= STRBUF_INIT
;
74 va_start(args
, format
);
75 strbuf_vaddf(&sb
, format
, args
);
78 return strbuf_detach(&sb
, NULL
);
81 void html_raw(const char *data
, size_t size
)
83 if (write(STDOUT_FILENO
, data
, size
) != size
)
84 die_errno("write error on html output");
87 void html(const char *txt
)
89 html_raw(txt
, strlen(txt
));
92 void htmlf(const char *format
, ...)
95 struct strbuf buf
= STRBUF_INIT
;
97 va_start(args
, format
);
98 strbuf_vaddf(&buf
, format
, args
);
101 strbuf_release(&buf
);
104 void html_txtf(const char *format
, ...)
108 va_start(args
, format
);
109 html_vtxtf(format
, args
);
113 void html_vtxtf(const char *format
, va_list ap
)
116 struct strbuf buf
= STRBUF_INIT
;
119 strbuf_vaddf(&buf
, format
, cp
);
122 strbuf_release(&buf
);
125 void html_txt(const char *txt
)
128 html_ntxt(txt
, strlen(txt
));
131 ssize_t
html_ntxt(const char *txt
, size_t len
)
139 slen
= (ssize_t
) len
;
140 while (t
&& *t
&& slen
--) {
142 if (c
== '<' || c
== '>' || c
== '&') {
143 html_raw(txt
, t
- txt
);
155 html_raw(txt
, t
- txt
);
159 void html_attrf(const char *fmt
, ...)
162 struct strbuf sb
= STRBUF_INIT
;
165 strbuf_vaddf(&sb
, fmt
, ap
);
172 void html_attr(const char *txt
)
177 if (c
== '<' || c
== '>' || c
== '\'' || c
== '\"' || c
== '&') {
178 html_raw(txt
, t
- txt
);
197 void html_url_path(const char *txt
)
201 unsigned char c
= *t
;
202 const char *e
= url_escape_table
[c
];
203 if (e
&& c
!= '+' && c
!= '&') {
204 html_raw(txt
, t
- txt
);
214 void html_url_arg(const char *txt
)
218 unsigned char c
= *t
;
219 const char *e
= url_escape_table
[c
];
223 html_raw(txt
, t
- txt
);
233 void html_header_arg_in_quotes(const char *txt
)
237 unsigned char c
= *t
;
238 const char *e
= NULL
;
248 html_raw(txt
, t
- txt
);
259 void html_hidden(const char *name
, const char *value
)
261 html("<input type='hidden' name='");
268 void html_option(const char *value
, const char *text
, const char *selected_value
)
270 html("<option value='");
273 if (selected_value
&& !strcmp(selected_value
, value
))
274 html(" selected='selected'");
280 void html_intoption(int value
, const char *text
, int selected_value
)
282 htmlf("<option value='%d'%s>", value
,
283 value
== selected_value
? " selected='selected'" : "");
288 void html_link_open(const char *url
, const char *title
, const char *class)
303 void html_link_close(void)
308 void html_fileperm(unsigned short mode
)
310 htmlf("%c%c%c", (mode
& 4 ? 'r' : '-'),
311 (mode
& 2 ? 'w' : '-'), (mode
& 1 ? 'x' : '-'));
314 int html_include(const char *filename
)
320 if (!(f
= fopen(filename
, "r"))) {
321 fprintf(stderr
, "[cgit] Failed to include file %s: %s (%d).\n",
322 filename
, strerror(errno
), errno
);
325 while ((len
= fread(buf
, 1, 4096, f
)) > 0)
331 void http_parse_querystring(const char *txt
, void (*fn
)(const char *name
, const char *value
))
336 char *name
= url_decode_parameter_name(&t
);
338 char *value
= url_decode_parameter_value(&t
);