/* * blogc: A blog compiler. * Copyright (C) 2014-2018 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. */ #include #include #include #include #include "../common/error.h" #include "../common/utils.h" #include "settings.h" #include "utils.h" #include "atom.h" static const char atom_template[] = "\n" "\n" " {{ SITE_TITLE }}{%% ifdef FILTER_TAG %%} - " "{{ FILTER_TAG }}{%% endif %%}\n" " {{ BASE_URL }}%s\n" " {{ DATE_FIRST_FORMATTED }}\n" " \n" " \n" " \n" " {{ AUTHOR_NAME }}\n" " {{ AUTHOR_EMAIL }}\n" " \n" " {{ SITE_TAGLINE }}\n" " {%% block listing %%}\n" " \n" " {{ TITLE }}\n" " {{ BASE_URL }}%s\n" " {{ DATE_FORMATTED }}\n" " {{ DATE_FORMATTED }}\n" " \n" " \n" " {{ AUTHOR_NAME }}\n" " {{ AUTHOR_EMAIL }}\n" " \n" " \n" " \n" " {%% endblock %%}\n" "\n"; char* bm_atom_generate(bm_settings_t *settings) { if (settings == NULL) return NULL; const char *atom_prefix = bc_trie_lookup(settings->settings, "atom_prefix"); const char *atom_ext = bc_trie_lookup(settings->settings, "atom_ext"); const char *post_prefix = bc_trie_lookup(settings->settings, "post_prefix"); const char *post_ext = bc_trie_lookup(settings->settings, "html_ext"); bc_string_t *atom_url = bc_string_new(); if (atom_prefix[0] != '\0') bc_string_append_c(atom_url, '/'); bc_string_append(atom_url, atom_prefix); bc_string_append(atom_url, "{% ifdef FILTER_TAG %}/{{ FILTER_TAG }}"); if (atom_prefix[0] == '\0' && atom_ext[0] != '/') bc_string_append(atom_url, "{% else %}/index"); bc_string_append(atom_url, "{% endif %}"); bc_string_append(atom_url, atom_ext); char *post_url = bm_generate_filename(NULL, post_prefix, "{{ FILENAME }}", post_ext); char *entry_id = NULL; if (bc_str_to_bool(bc_trie_lookup(settings->settings, "atom_legacy_entry_id"))) { entry_id = bc_strdup_printf("%s%s/{{ FILENAME }}/", post_prefix[0] == '\0' ? "" : "/", post_prefix); } else { entry_id = bc_strdup(post_url); } char *rv = bc_strdup_printf(atom_template, atom_url->str, atom_url->str, entry_id, post_url); bc_string_free(atom_url, true); free(post_url); free(entry_id); return rv; } char* bm_atom_deploy(bm_settings_t *settings, bc_error_t **err) { if (settings == NULL || err == NULL || *err != NULL) return NULL; // this is not really portable char fname[] = "/tmp/blogc-make_XXXXXX"; int fd; if (-1 == (fd = mkstemp(fname))) { *err = bc_error_new_printf(BLOGC_MAKE_ERROR_ATOM, "Failed to create temporary atom template: %s", strerror(errno)); return NULL; } char *content = bm_atom_generate(settings); if (content == NULL) { close(fd); unlink(fname); return NULL; } if (-1 == write(fd, content, strlen(content))) { *err = bc_error_new_printf(BLOGC_MAKE_ERROR_ATOM, "Failed to write to temporary atom template: %s", strerror(errno)); free(content); close(fd); unlink(fname); return NULL; } free(content); close(fd); return bc_strdup(fname); } void bm_atom_destroy(const char *fname) { unlink(fname); }