123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- #include "xs.h"
- #include "xs_regex.h"
- #include "snac.h"
- struct {
- const char *key;
- const char *value;
- } smileys[] = {
- { ":-)", "🙂" },
- { ":-D", "😀" },
- { "X-D", "😆" },
- { ";-)", "😉" },
- { "B-)", "😎" },
- { ":-(", "😞" },
- { ":-*", "😘" },
- { ":-/", "😕" },
- { "8-o", "😲" },
- { "%-)", "🤪" },
- { ":_(", "😢" },
- { ":-|", "😐" },
- { "<3", "💓" },
- { ":facepalm:", "🤦" },
- { ":shrug:", "🤷" },
- { ":shrug2:", "¯\\_(ツ)_/¯" },
- { ":eyeroll:", "🙄" },
- { ":beer:", "🍺" },
- { ":beers:", "🍻" },
- { ":munch:", "😱" },
- { ":thumb:", "👍" },
- { NULL, NULL }
- };
- static d_char *format_line(const char *line)
- {
- d_char *s = xs_str_new(NULL);
- char *p, *v;
-
- xs *sm = xs_regex_split(line,
- "(`[^`]+`|\\*\\*?[^\\*]+\\*?\\*|https?:/" "/[^[:space:]]+)");
- int n = 0;
- p = sm;
- while (xs_list_iter(&p, &v)) {
- if ((n & 0x1)) {
-
- if (xs_startswith(v, "`")) {
- xs *s1 = xs_crop_i(xs_dup(v), 1, -1);
- xs *s2 = xs_fmt("<code>%s</code>", s1);
- s = xs_str_cat(s, s2);
- }
- else
- if (xs_startswith(v, "**")) {
- xs *s1 = xs_crop_i(xs_dup(v), 2, -2);
- xs *s2 = xs_fmt("<b>%s</b>", s1);
- s = xs_str_cat(s, s2);
- }
- else
- if (xs_startswith(v, "*")) {
- xs *s1 = xs_crop_i(xs_dup(v), 1, -1);
- xs *s2 = xs_fmt("<i>%s</i>", s1);
- s = xs_str_cat(s, s2);
- }
- else
- if (xs_startswith(v, "http")) {
- xs *v2 = xs_strip_chars_i(xs_dup(v), ".");
- xs *s1 = xs_fmt("<a href=\"%s\" target=\"_blank\">%s</a>", v2, v);
- s = xs_str_cat(s, s1);
- }
- else
- s = xs_str_cat(s, v);
- }
- else
-
- s = xs_str_cat(s, v);
- n++;
- }
- return s;
- }
- d_char *not_really_markdown(const char *content)
- {
- d_char *s = xs_str_new(NULL);
- int in_pre = 0;
- int in_blq = 0;
- xs *list;
- char *p, *v;
-
- list = xs_split(content, "\n");
- p = list;
- while (xs_list_iter(&p, &v)) {
- xs *ss = NULL;
- if (strcmp(v, "```") == 0) {
- if (!in_pre)
- s = xs_str_cat(s, "<pre>");
- else
- s = xs_str_cat(s, "</pre>");
- in_pre = !in_pre;
- continue;
- }
- if (in_pre)
- ss = xs_dup(v);
- else
- ss = xs_strip_i(format_line(v));
- if (xs_startswith(ss, ">")) {
-
- ss = xs_strip_i(xs_crop_i(ss, 1, 0));
- if (!in_blq) {
- s = xs_str_cat(s, "<blockquote>");
- in_blq = 1;
- }
- s = xs_str_cat(s, ss);
- s = xs_str_cat(s, "<br>");
- continue;
- }
- if (in_blq) {
- s = xs_str_cat(s, "</blockquote>");
- in_blq = 0;
- }
- s = xs_str_cat(s, ss);
- s = xs_str_cat(s, "<br>");
- }
- if (in_blq)
- s = xs_str_cat(s, "</blockquote>");
- if (in_pre)
- s = xs_str_cat(s, "</pre>");
-
- s = xs_replace_i(s, "<br><br><blockquote>", "<br><blockquote>");
- s = xs_replace_i(s, "</blockquote><br>", "</blockquote>");
- s = xs_replace_i(s, "</pre><br>", "</pre>");
- {
-
- int n;
- for (n = 0; smileys[n].key; n++)
- s = xs_replace_i(s, smileys[n].key, smileys[n].value);
- }
- return s;
- }
- const char *valid_tags[] = {
- "a", "p", "br", "br/", "blockquote", "ul", "li",
- "span", "i", "b", "pre", "code", "em", "strong", NULL
- };
- d_char *sanitize(const char *content)
- {
- d_char *s = xs_str_new(NULL);
- xs *sl;
- int n = 0;
- char *p, *v;
- sl = xs_regex_split(content, "</?[^>]+>");
- p = sl;
- while (xs_list_iter(&p, &v)) {
- if (n & 0x1) {
- xs *s1 = xs_strip_i(xs_crop_i(xs_dup(v), v[1] == '/' ? 2 : 1, -1));
- xs *l1 = xs_split_n(s1, " ", 1);
- xs *tag = xs_tolower_i(xs_dup(xs_list_get(l1, 0)));
- xs *s2 = NULL;
- int i;
-
- for (i = 0; valid_tags[i]; i++) {
- if (strcmp(tag, valid_tags[i]) == 0)
- break;
- }
- if (valid_tags[i]) {
-
- xs *el = xs_regex_match(v, "(href|rel|class|target)=\"[^\"]*\"");
- xs *s3 = xs_join(el, " ");
- s2 = xs_fmt("<%s%s%s%s>",
- v[1] == '/' ? "/" : "", tag, xs_list_len(el) ? " " : "", s3);
- }
- else {
-
- s2 = xs_replace(v, "<", "<");
- }
- s = xs_str_cat(s, s2);
- }
- else {
-
- s = xs_str_cat(s, v);
- }
- n++;
- }
- return s;
- }
|