treebird/src/status.h
me@ow.nekobit.net 05fde4a8d3 Show repeats and favorite ID's
FossilOrigin-Name: 52f0761589320bbc7c71e50b2c125d67f49ea12dc8af2404112aa2606ff17394
2022-04-22 19:12:51 +00:00

80 lines
3.3 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/>.
*/
#ifndef STATUS_H
#define STATUS_H
#include <stdint.h>
#include <mastodont.h>
#include "session.h"
// Flags
#define STATUS_NOOP 0
#define STATUS_FOCUSED (1<<0)
#define STATUS_EMOJI_PICKER (1<<1)
struct interact_profile_args
{
struct mstdnt_account* reblogs;
struct mstdnt_account* favourites;
size_t reblogs_len;
size_t favourites_len;
};
int try_post_status(struct session* ssn, mastodont_t* api);
int try_interact_status(struct session* ssn, mastodont_t* api, char* id);
void content_status_create(struct session* ssn, mastodont_t* api, char** data);
// HTML Builders
char* construct_post_box(char* reply_id,
char* default_content,
int* size);
char* construct_status(mastodont_t* api, struct mstdnt_status* status, int* size, struct mstdnt_notification* notif, uint8_t flags);
char* construct_statuses(mastodont_t* api, struct mstdnt_status* statuses, size_t size, size_t* ret_size);
char* construct_in_reply_to(mastodont_t* api, struct mstdnt_status* status, size_t* size);
char* construct_status_interactions(int fav_count,
int reblog_count,
struct mstdnt_account* fav_accounts,
size_t fav_accounts_len,
struct mstdnt_account* reblog_accounts,
size_t reblog_accounts_len,
size_t* size);
char* construct_status_interaction_profiles(struct mstdnt_account* reblogs,
struct mstdnt_account* favourites,
size_t reblogs_len,
size_t favourites_len,
size_t* ret_size);
char* construct_status_interaction_profile(struct interact_profile_args* args, size_t index, int* size);
char* construct_status_interactions_label(char* header, int val, size_t* size);
char* reformat_status(char* content, struct mstdnt_emoji* emos, size_t emos_len);
char* greentextify(char* content);
// Status frontends
void status_view(struct session* ssn, mastodont_t* api, char** data);
void status_reply(struct session* ssn, mastodont_t* api, char** data);
void status_interact(struct session* ssn, mastodont_t* api, char** data);
// Above wraps to the below function
void content_status(struct session* ssn, mastodont_t* api, char** data, int is_reply);
// Cleanup
void cleanup_media_ids(struct session* ssn, char** media_ids);
// Redirects
void notice_redirect(struct session* ssn, mastodont_t* api, char** data);
#endif // STATUS_H