forked from mirrors/treebird
2ef8740731
FossilOrigin-Name: f8e983bd3be01d2f49bcef3af3f3784dade144e7bbbb15d8ab1127938edcf84d
151 lines
3.9 KiB
C
151 lines
3.9 KiB
C
/*
|
|
* RatFE - 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 "timeline.h"
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include "base_page.h"
|
|
#include "../config.h"
|
|
#include "index.h"
|
|
#include "status.h"
|
|
#include "easprintf.h"
|
|
#include "reply.h"
|
|
|
|
void tl_public(mastodont_t* api, int local)
|
|
{
|
|
int cleanup = 0;
|
|
size_t status_count, statuses_html_count;
|
|
struct mstdnt_status* statuses;
|
|
struct mstdnt_storage storage = { 0 };
|
|
char* status_format, *post_box;
|
|
char* output = NULL;
|
|
|
|
struct mstdnt_timeline_public_args args = {
|
|
.local = local,
|
|
.remote = 0,
|
|
.only_media = 0,
|
|
.max_id = NULL,
|
|
.since_id = NULL,
|
|
.min_id = NULL,
|
|
.limit = 20,
|
|
};
|
|
|
|
try_post_status(api);
|
|
|
|
if (mastodont_timeline_public(api, &args, &storage, &statuses, &status_count))
|
|
{
|
|
status_format = "An error occured loading the timeline";
|
|
}
|
|
else {
|
|
// Construct statuses into HTML
|
|
status_format = construct_statuses(statuses, status_count, &statuses_html_count);
|
|
if (!status_format)
|
|
status_format = "Error in malloc!";
|
|
cleanup = 1;
|
|
}
|
|
|
|
// Create post box
|
|
post_box = construct_post_box(NULL, "", NULL);
|
|
easprintf(&output, "%s %s", post_box, status_format);
|
|
|
|
struct base_page b = {
|
|
.locale = L10N_EN_US,
|
|
.content = output,
|
|
.sidebar_right = NULL
|
|
};
|
|
|
|
// Output
|
|
render_base_page(&b);
|
|
|
|
// Cleanup
|
|
mastodont_storage_cleanup(&storage);
|
|
if (cleanup) free(status_format);
|
|
if (post_box) free(post_box);
|
|
if (output) free(output);
|
|
}
|
|
|
|
void tl_list(mastodont_t* api, char* list_id)
|
|
{
|
|
int cleanup = 0;
|
|
size_t status_count, statuses_html_count;
|
|
struct mstdnt_status* statuses;
|
|
struct mstdnt_storage storage = { 0 };
|
|
char* status_format, *post_box;
|
|
char* output = NULL;
|
|
|
|
struct mstdnt_timeline_list_args args = {
|
|
.max_id = NULL,
|
|
.since_id = NULL,
|
|
.min_id = NULL,
|
|
.limit = 20,
|
|
};
|
|
|
|
try_post_status(api);
|
|
|
|
if (mastodont_timeline_list(api, list_id, &args, &storage, &statuses, &status_count))
|
|
{
|
|
status_format = "An error occured loading the timeline";
|
|
}
|
|
else {
|
|
// Construct statuses into HTML
|
|
status_format = construct_statuses(statuses, status_count, &statuses_html_count);
|
|
if (!status_format)
|
|
status_format = "Error in malloc!";
|
|
cleanup = 1;
|
|
}
|
|
|
|
// Create post box
|
|
post_box = construct_post_box(NULL, "", NULL);
|
|
easprintf(&output, "%s %s", post_box, status_format);
|
|
|
|
struct base_page b = {
|
|
.locale = L10N_EN_US,
|
|
.content = output,
|
|
.sidebar_right = NULL
|
|
};
|
|
|
|
// Output
|
|
render_base_page(&b);
|
|
|
|
// Cleanup
|
|
mastodont_storage_cleanup(&storage);
|
|
if (cleanup) free(status_format);
|
|
if (post_box) free(post_box);
|
|
}
|
|
|
|
|
|
void content_tl_federated(mastodont_t* api, char** data, size_t data_size)
|
|
{
|
|
(void)data;
|
|
(void)data_size;
|
|
tl_public(api, 0);
|
|
}
|
|
|
|
void content_tl_local(mastodont_t* api, char** data, size_t data_size)
|
|
{
|
|
(void)data;
|
|
(void)data_size;
|
|
tl_public(api, 1);
|
|
}
|
|
|
|
void content_tl_list(mastodont_t* api, char** data, size_t data_size)
|
|
{
|
|
(void)data;
|
|
(void)data_size;
|
|
tl_list(api, data[0]);
|
|
}
|