treebird/src/lists.c
nekobit 64069fda7e Lists default size
FossilOrigin-Name: 8f604ab1ae2f1fc4ea9b780ec85be9c5683040aa15962bf497a19c30470f577a
2022-05-13 17:42:47 +00:00

98 lines
2.8 KiB
C

/*
* 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 <https://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include "base_page.h"
#include "../config.h"
#include "account.h"
#include "easprintf.h"
#include "error.h"
#include "status.h"
#include "lists.h"
#include "string_helpers.h"
// Files
#include "../static/index.chtml"
#include "../static/account.chtml"
#include "../static/list.chtml"
#include "../static/lists.chtml"
char* construct_list(struct mstdnt_list* list, int* size)
{
char* list_html;
size_t s = easprintf(&list_html, data_list_html,
config_url_prefix,
list->id,
list->title);
if (size) *size = s;
return list_html;
}
static char* construct_list_voidwrap(void* passed, size_t index, int* res)
{
return construct_list((struct mstdnt_list*)passed + index, res);
}
char* construct_lists(struct mstdnt_list* lists, size_t size, size_t* ret_size)
{
return construct_func_strings(construct_list_voidwrap, lists, size, ret_size);
}
char* construct_lists_view(char* lists_string, int* size)
{
char* list_string;
size_t s = easprintf(&list_string, data_lists_html, lists_string, config_url_prefix);
if (size) *size = s;
return list_string;
}
void content_lists(struct session* ssn, mastodont_t* api, char** data)
{
struct mstdnt_list* lists;
size_t size_list = 0;
struct mstdnt_storage storage = { 0 };
char* lists_format = NULL;
char* lists_page = NULL;
if (mastodont_get_lists(api, &lists, &storage, &size_list))
{
lists_page = construct_error(storage.error, E_ERROR, 1, NULL);
}
else {
lists_format = construct_lists(lists, size_list, NULL);
if (!lists_format)
lists_format = construct_error("No lists", E_ERROR, 1, NULL);
lists_page = construct_lists_view(lists_format, NULL);
}
struct base_page b = {
.category = BASE_CAT_LISTS,
.locale = L10N_EN_US,
.content = lists_page,
.sidebar_left = NULL
};
// Output
render_base_page(&b, ssn, api);
// Cleanup
mastodont_storage_cleanup(&storage);
if (lists_format) free(lists_format);
if (lists_page) free(lists_page);
}