/* * Treebird - Lightweight frontend for Pleroma * Copyright (C) 2022 Nekobit * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ #include #include #include "string.h" #include "emoji.h" #include "easprintf.h" #include "string_helpers.h" // Pages #include "../static/emoji.ctmpl" #include "../static/emoji_picker.ctmpl" enum emoji_categories { EMO_CAT_SMILEYS, EMO_CAT_ANIMALS, EMO_CAT_FOOD, EMO_CAT_TRAVEL, EMO_CAT_ACTIVITIES, EMO_CAT_OBJECTS, EMO_CAT_SYMBOLS, EMO_CAT_FLAGS, EMO_CAT_LEN }; char* emojify(char* content, struct mstdnt_emoji* emos, size_t emos_len) { if (!content) return NULL; size_t sc_len; char* oldres = NULL; char* res = content; char* emoji_url_str; char* coloned; for (size_t i = 0; i < emos_len; ++i) { oldres = res; // Add colons around string sc_len = strlen(emos[i].shortcode); // 3 = \0 and two : coloned = malloc(sc_len+3); coloned[0] = ':'; strncpy(coloned + 1, emos[i].shortcode, sc_len); coloned[sc_len+1] = ':'; coloned[sc_len+2] = '\0'; easprintf(&emoji_url_str, "", emos[i].url); res = strrepl(res, coloned, emoji_url_str, STRREPL_ALL); if (oldres != content && res != oldres) free(oldres); // Cleanup free(emoji_url_str); free(coloned); } return res; } struct construct_emoji_picker_args { char* status_id; unsigned index; }; char* construct_emoji(struct emoji_info* emoji, char* status_id, size_t* size) { if (!emoji) return NULL; struct emoji_template data = { .status_id = status_id, .emoji = emoji->codes }; return tmpl_gen_emoji(&data, size); } static char* construct_emoji_voidwrap(void* passed, size_t index, size_t* res) { struct construct_emoji_picker_args* args = passed; size_t calc_index = index + args->index; return construct_emoji(emojos + calc_index, args->status_id, res); } #define EMOJI_PICKER_ARGS(this_index) { .status_id = status_id, .index = this_index } char* construct_emoji_picker(char* status_id, size_t* size) { char* emoji_picker_html; struct construct_emoji_picker_args args[EMO_CAT_LEN] = { EMOJI_PICKER_ARGS(EMOJO_CAT_SMILEY), EMOJI_PICKER_ARGS(EMOJO_CAT_ANIMALS), EMOJI_PICKER_ARGS(EMOJO_CAT_FOOD), EMOJI_PICKER_ARGS(EMOJO_CAT_TRAVEL), EMOJI_PICKER_ARGS(EMOJO_CAT_ACTIVITIES), EMOJI_PICKER_ARGS(EMOJO_CAT_OBJECTS), EMOJI_PICKER_ARGS(EMOJO_CAT_SYMBOLS), EMOJI_PICKER_ARGS(EMOJO_CAT_FLAGS), }; char* emojis[EMO_CAT_LEN]; // TODO refactor to use #define lol emojis[EMO_CAT_SMILEYS] = construct_func_strings(construct_emoji_voidwrap, args + EMO_CAT_SMILEYS, EMOJO_CAT_ANIMALS - EMOJO_CAT_SMILEY, NULL); emojis[EMO_CAT_ANIMALS] = construct_func_strings(construct_emoji_voidwrap, args + EMO_CAT_ANIMALS, EMOJO_CAT_FOOD - EMOJO_CAT_ANIMALS, NULL); emojis[EMO_CAT_FOOD] = construct_func_strings(construct_emoji_voidwrap, args + EMO_CAT_FOOD, EMOJO_CAT_TRAVEL - EMOJO_CAT_FOOD, NULL); emojis[EMO_CAT_TRAVEL] = construct_func_strings(construct_emoji_voidwrap, args + EMO_CAT_TRAVEL, EMOJO_CAT_ACTIVITIES - EMOJO_CAT_TRAVEL, NULL); emojis[EMO_CAT_ACTIVITIES] = construct_func_strings(construct_emoji_voidwrap, args + EMO_CAT_ACTIVITIES, EMOJO_CAT_OBJECTS - EMOJO_CAT_ACTIVITIES, NULL); emojis[EMO_CAT_OBJECTS] = construct_func_strings(construct_emoji_voidwrap, args + EMO_CAT_OBJECTS, EMOJO_CAT_SYMBOLS - EMOJO_CAT_OBJECTS, NULL); emojis[EMO_CAT_SYMBOLS] = construct_func_strings(construct_emoji_voidwrap, args + EMO_CAT_SYMBOLS, EMOJO_CAT_FLAGS - EMOJO_CAT_SYMBOLS, NULL); emojis[EMO_CAT_FLAGS] = construct_func_strings(construct_emoji_voidwrap, args + EMO_CAT_FLAGS, EMOJO_CAT_MAX - EMOJO_CAT_FLAGS, NULL); struct emoji_picker_template data = { .emojis_smileys = emojis[EMO_CAT_SMILEYS], .emojis_animals = emojis[EMO_CAT_ANIMALS], .emojis_food = emojis[EMO_CAT_FOOD], .emojis_travel = emojis[EMO_CAT_TRAVEL], .emojis_activities = emojis[EMO_CAT_ACTIVITIES], .emojis_objects = emojis[EMO_CAT_OBJECTS], .emojis_symbols = emojis[EMO_CAT_SYMBOLS], .emojis_flags = emojis[EMO_CAT_FLAGS], }; emoji_picker_html = tmpl_gen_emoji_picker(&data, size); for (size_t i = 0; i < EMO_CAT_LEN; ++i) free(emojis[i]); return emoji_picker_html; }