0ff56024de
FossilOrigin-Name: 8eb8d0b20477dd8df24fea4fac37cdd47b6c5412c134749c43d1da7412feb633
99 lines
3.3 KiB
C
99 lines
3.3 KiB
C
/*
|
|
* This program is free software: you can redistribute it and/or modify it under
|
|
* the terms of the GNU Lesser 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 Lesser General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef MASTODONT_NOTIFICATION
|
|
#define MASTODONT_NOTIFICATION
|
|
#include <time.h>
|
|
#include "mastodont_types.h"
|
|
#include "mastodont_account.h"
|
|
#include "mastodont_status.h"
|
|
#include "mastodont_notif_types.h"
|
|
#include "mastodont_visibility_types.h"
|
|
#include <cjson/cJSON.h>
|
|
|
|
struct mstdnt_notification_pleroma
|
|
{
|
|
unsigned is_muted;
|
|
unsigned is_seen;
|
|
};
|
|
|
|
struct mstdnt_notification
|
|
{
|
|
char* id;
|
|
time_t created_at;
|
|
char* emoji;
|
|
struct mstdnt_account* account;
|
|
struct mstdnt_status* status;
|
|
struct mstdnt_notification_pleroma* pleroma;
|
|
mstdnt_notification_t type;
|
|
};
|
|
|
|
struct mstdnt_notifications_args
|
|
{
|
|
/* Bitmask */
|
|
mstdnt_notification_t exclude_types;
|
|
char* account_id;
|
|
/* Bitmask */
|
|
mstdnt_visibility_t* exclude_visibilities;
|
|
/* Bitmask */
|
|
mstdnt_visibility_t* include_types;
|
|
mstdnt_bool with_muted;
|
|
char* max_id;
|
|
char* min_id;
|
|
char* id;
|
|
char* since_id;
|
|
int offset;
|
|
int limit;
|
|
};
|
|
|
|
struct _mstdnt_notifications_result_cb_args
|
|
{
|
|
struct mstdnt_notification** notif;
|
|
size_t* size;
|
|
};
|
|
|
|
// Callback helpers
|
|
int mstdnt_notification_json_callback(cJSON* json, void* notif);
|
|
int mstdnt_notifications_json_callback(cJSON* json, void* _args);
|
|
|
|
int mstdnt_notification_json(struct mstdnt_notification* notif, cJSON* js);
|
|
int mstdnt_notification_pleroma_json(struct mstdnt_notification_pleroma* notif, cJSON* js);
|
|
|
|
int mstdnt_get_notifications(mstdnt_t* data,
|
|
struct mstdnt_args* m_args,
|
|
struct mstdnt_notifications_args* args,
|
|
struct mstdnt_storage* storage,
|
|
struct mstdnt_notification** notifs,
|
|
size_t* size);
|
|
|
|
int mstdnt_notifications_clear(mstdnt_t* data,
|
|
struct mstdnt_args* m_args,
|
|
struct mstdnt_storage* storage);
|
|
|
|
int mstdnt_notifications_read(mstdnt_t* data,
|
|
struct mstdnt_args* m_args,
|
|
struct mstdnt_notifications_args* args,
|
|
struct mstdnt_storage* storage,
|
|
struct mstdnt_notification* notification);
|
|
|
|
int mstdnt_notification_dismiss(mstdnt_t* data,
|
|
struct mstdnt_args* m_args,
|
|
struct mstdnt_storage* storage,
|
|
char* id);
|
|
|
|
void mstdnt_cleanup_notifications(struct mstdnt_notification* notif, size_t notif_len);
|
|
void mstdnt_cleanup_notification(struct mstdnt_notification* notif);
|
|
|
|
#endif /* MASTODONT_NOTIFICATION */
|