In reply statuses
FossilOrigin-Name: fb91abcaff864dfbfa119ca2162cd355767165cfb0f549e5de41b742cf0a5c47
This commit is contained in:
parent
2fb579ee96
commit
af80738751
2 changed files with 30 additions and 14 deletions
35
src/status.c
35
src/status.c
|
@ -240,29 +240,38 @@ char* construct_status_interaction_profiles(struct mstdnt_account* reblogs,
|
|||
return construct_func_strings(construct_status_interaction_profiles_voidwrap, &args, arr_size, ret_size);
|
||||
}
|
||||
|
||||
char* get_in_reply_to(mastodont_t* api, struct mstdnt_status* status, size_t* size)
|
||||
{
|
||||
struct mstdnt_storage storage = { 0 };
|
||||
struct mstdnt_account acct = { 0 };
|
||||
|
||||
int res = mastodont_get_account(api,
|
||||
config_experimental_lookup,
|
||||
status->in_reply_to_account_id,
|
||||
&acct,
|
||||
&storage);
|
||||
|
||||
char* construct_in_reply_to(mastodont_t* api, struct mstdnt_status* status, size_t* size)
|
||||
char* html = construct_in_reply_to(status, res ? &acct : NULL, size);
|
||||
|
||||
mastodont_storage_cleanup(&storage);
|
||||
return html;
|
||||
}
|
||||
|
||||
char* construct_in_reply_to(struct mstdnt_status* status,
|
||||
struct mstdnt_account* account,
|
||||
size_t* size)
|
||||
{
|
||||
char* irt_html;
|
||||
size_t s;
|
||||
struct mstdnt_storage storage;
|
||||
struct mstdnt_account acct;
|
||||
|
||||
mastodont_get_account(api,
|
||||
config_experimental_lookup,
|
||||
status->in_reply_to_account_id,
|
||||
&acct,
|
||||
&storage);
|
||||
|
||||
|
||||
s = easprintf(&irt_html, data_in_reply_to_html,
|
||||
config_url_prefix,
|
||||
status->in_reply_to_id,
|
||||
L10N[L10N_EN_US][L10N_IN_REPLY_TO],
|
||||
acct.acct);
|
||||
account ? account->acct : status->in_reply_to_id);
|
||||
|
||||
if (size) *size = s;
|
||||
|
||||
mastodont_storage_cleanup(&storage);
|
||||
return irt_html;
|
||||
}
|
||||
|
||||
|
@ -422,7 +431,7 @@ char* construct_status(mastodont_t* api,
|
|||
notification_type_svg(notif->type));
|
||||
|
||||
if (status->in_reply_to_id && status->in_reply_to_account_id)
|
||||
in_reply_to_str = construct_in_reply_to(api, status, NULL);
|
||||
in_reply_to_str = get_in_reply_to(api, status, NULL);
|
||||
|
||||
size_t s = easprintf(&stat_html, data_status_html,
|
||||
status->id,
|
||||
|
|
|
@ -45,7 +45,13 @@ char* construct_post_box(char* reply_id,
|
|||
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);
|
||||
|
||||
// Reply to
|
||||
char* get_in_reply_to(mastodont_t* api, struct mstdnt_status* status, size_t* size);
|
||||
char* construct_in_reply_to(struct mstdnt_status* status,
|
||||
struct mstdnt_account* account,
|
||||
size_t* size);
|
||||
|
||||
char* construct_status_interactions(int fav_count,
|
||||
int reblog_count,
|
||||
struct mstdnt_account* fav_accounts,
|
||||
|
@ -53,6 +59,7 @@ char* construct_status_interactions(int fav_count,
|
|||
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,
|
||||
|
|
Loading…
Reference in a new issue