2023-07-25 11:53:09 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
* Copyright © 2023 The TokTok team.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "events_alloc.h"
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "../bin_pack.h"
|
|
|
|
#include "../bin_unpack.h"
|
|
|
|
#include "../ccompat.h"
|
|
|
|
#include "../tox.h"
|
|
|
|
#include "../tox_events.h"
|
|
|
|
#include "../tox_unpack.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************
|
|
|
|
*
|
|
|
|
* :: struct and accessors
|
|
|
|
*
|
|
|
|
*****************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
struct Tox_Event_Group_Moderation {
|
|
|
|
uint32_t group_number;
|
|
|
|
uint32_t source_peer_id;
|
|
|
|
uint32_t target_peer_id;
|
|
|
|
Tox_Group_Mod_Event mod_type;
|
|
|
|
};
|
|
|
|
|
|
|
|
non_null()
|
|
|
|
static void tox_event_group_moderation_set_group_number(Tox_Event_Group_Moderation *group_moderation,
|
|
|
|
uint32_t group_number)
|
|
|
|
{
|
|
|
|
assert(group_moderation != nullptr);
|
|
|
|
group_moderation->group_number = group_number;
|
|
|
|
}
|
|
|
|
uint32_t tox_event_group_moderation_get_group_number(const Tox_Event_Group_Moderation *group_moderation)
|
|
|
|
{
|
|
|
|
assert(group_moderation != nullptr);
|
|
|
|
return group_moderation->group_number;
|
|
|
|
}
|
|
|
|
|
|
|
|
non_null()
|
|
|
|
static void tox_event_group_moderation_set_source_peer_id(Tox_Event_Group_Moderation *group_moderation,
|
|
|
|
uint32_t source_peer_id)
|
|
|
|
{
|
|
|
|
assert(group_moderation != nullptr);
|
|
|
|
group_moderation->source_peer_id = source_peer_id;
|
|
|
|
}
|
|
|
|
uint32_t tox_event_group_moderation_get_source_peer_id(const Tox_Event_Group_Moderation *group_moderation)
|
|
|
|
{
|
|
|
|
assert(group_moderation != nullptr);
|
|
|
|
return group_moderation->source_peer_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
non_null()
|
|
|
|
static void tox_event_group_moderation_set_target_peer_id(Tox_Event_Group_Moderation *group_moderation,
|
|
|
|
uint32_t target_peer_id)
|
|
|
|
{
|
|
|
|
assert(group_moderation != nullptr);
|
|
|
|
group_moderation->target_peer_id = target_peer_id;
|
|
|
|
}
|
|
|
|
uint32_t tox_event_group_moderation_get_target_peer_id(const Tox_Event_Group_Moderation *group_moderation)
|
|
|
|
{
|
|
|
|
assert(group_moderation != nullptr);
|
|
|
|
return group_moderation->target_peer_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
non_null()
|
|
|
|
static void tox_event_group_moderation_set_mod_type(Tox_Event_Group_Moderation *group_moderation,
|
|
|
|
Tox_Group_Mod_Event mod_type)
|
|
|
|
{
|
|
|
|
assert(group_moderation != nullptr);
|
|
|
|
group_moderation->mod_type = mod_type;
|
|
|
|
}
|
|
|
|
Tox_Group_Mod_Event tox_event_group_moderation_get_mod_type(const Tox_Event_Group_Moderation *group_moderation)
|
|
|
|
{
|
|
|
|
assert(group_moderation != nullptr);
|
|
|
|
return group_moderation->mod_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
non_null()
|
2023-12-27 12:37:22 +01:00
|
|
|
static void tox_event_group_moderation_construct(Tox_Event_Group_Moderation *group_moderation)
|
|
|
|
{
|
|
|
|
*group_moderation = (Tox_Event_Group_Moderation) {
|
|
|
|
0
|
|
|
|
};
|
|
|
|
}
|
|
|
|
non_null()
|
|
|
|
static void tox_event_group_moderation_destruct(Tox_Event_Group_Moderation *group_moderation, const Memory *mem)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool tox_event_group_moderation_pack(
|
2023-07-25 11:53:09 +02:00
|
|
|
const Tox_Event_Group_Moderation *event, Bin_Pack *bp)
|
|
|
|
{
|
|
|
|
assert(event != nullptr);
|
|
|
|
return bin_pack_array(bp, 2)
|
|
|
|
&& bin_pack_u32(bp, TOX_EVENT_GROUP_MODERATION)
|
|
|
|
&& bin_pack_array(bp, 4)
|
|
|
|
&& bin_pack_u32(bp, event->group_number)
|
|
|
|
&& bin_pack_u32(bp, event->source_peer_id)
|
|
|
|
&& bin_pack_u32(bp, event->target_peer_id)
|
|
|
|
&& bin_pack_u32(bp, event->mod_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
non_null()
|
2023-12-27 12:37:22 +01:00
|
|
|
static bool tox_event_group_moderation_unpack_into(
|
2023-07-25 11:53:09 +02:00
|
|
|
Tox_Event_Group_Moderation *event, Bin_Unpack *bu)
|
|
|
|
{
|
|
|
|
assert(event != nullptr);
|
2023-11-13 15:03:22 +01:00
|
|
|
if (!bin_unpack_array_fixed(bu, 4, nullptr)) {
|
2023-07-25 11:53:09 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bin_unpack_u32(bu, &event->group_number)
|
|
|
|
&& bin_unpack_u32(bu, &event->source_peer_id)
|
|
|
|
&& bin_unpack_u32(bu, &event->target_peer_id)
|
2023-12-27 12:37:22 +01:00
|
|
|
&& tox_group_mod_event_unpack(bu, &event->mod_type);
|
2023-07-25 11:53:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************
|
|
|
|
*
|
2023-12-27 12:37:22 +01:00
|
|
|
* :: new/free/add/get/size/unpack
|
2023-07-25 11:53:09 +02:00
|
|
|
*
|
|
|
|
*****************************************************/
|
|
|
|
|
2023-12-27 12:37:22 +01:00
|
|
|
const Tox_Event_Group_Moderation *tox_event_get_group_moderation(const Tox_Event *event)
|
2023-07-25 11:53:09 +02:00
|
|
|
{
|
2023-12-27 12:37:22 +01:00
|
|
|
return event->type == TOX_EVENT_GROUP_MODERATION ? event->data.group_moderation : nullptr;
|
|
|
|
}
|
2023-07-25 11:53:09 +02:00
|
|
|
|
2023-12-27 12:37:22 +01:00
|
|
|
Tox_Event_Group_Moderation *tox_event_group_moderation_new(const Memory *mem)
|
|
|
|
{
|
|
|
|
Tox_Event_Group_Moderation *const group_moderation =
|
|
|
|
(Tox_Event_Group_Moderation *)mem_alloc(mem, sizeof(Tox_Event_Group_Moderation));
|
2023-07-25 11:53:09 +02:00
|
|
|
|
2023-12-27 12:37:22 +01:00
|
|
|
if (group_moderation == nullptr) {
|
|
|
|
return nullptr;
|
2023-07-25 11:53:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tox_event_group_moderation_construct(group_moderation);
|
|
|
|
return group_moderation;
|
|
|
|
}
|
|
|
|
|
2023-12-27 12:37:22 +01:00
|
|
|
void tox_event_group_moderation_free(Tox_Event_Group_Moderation *group_moderation, const Memory *mem)
|
2023-07-25 11:53:09 +02:00
|
|
|
{
|
2023-12-27 12:37:22 +01:00
|
|
|
if (group_moderation != nullptr) {
|
|
|
|
tox_event_group_moderation_destruct(group_moderation, mem);
|
2023-07-25 11:53:09 +02:00
|
|
|
}
|
2023-12-27 12:37:22 +01:00
|
|
|
mem_delete(mem, group_moderation);
|
2023-07-25 11:53:09 +02:00
|
|
|
}
|
|
|
|
|
2023-12-27 12:37:22 +01:00
|
|
|
non_null()
|
|
|
|
static Tox_Event_Group_Moderation *tox_events_add_group_moderation(Tox_Events *events, const Memory *mem)
|
2023-07-25 11:53:09 +02:00
|
|
|
{
|
2023-12-27 12:37:22 +01:00
|
|
|
Tox_Event_Group_Moderation *const group_moderation = tox_event_group_moderation_new(mem);
|
|
|
|
|
|
|
|
if (group_moderation == nullptr) {
|
|
|
|
return nullptr;
|
2023-07-25 11:53:09 +02:00
|
|
|
}
|
|
|
|
|
2023-12-27 12:37:22 +01:00
|
|
|
Tox_Event event;
|
|
|
|
event.type = TOX_EVENT_GROUP_MODERATION;
|
|
|
|
event.data.group_moderation = group_moderation;
|
|
|
|
|
|
|
|
tox_events_add(events, &event);
|
|
|
|
return group_moderation;
|
2023-07-25 11:53:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const Tox_Event_Group_Moderation *tox_events_get_group_moderation(const Tox_Events *events, uint32_t index)
|
|
|
|
{
|
2023-12-27 12:37:22 +01:00
|
|
|
uint32_t group_moderation_index = 0;
|
|
|
|
const uint32_t size = tox_events_get_size(events);
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < size; ++i) {
|
|
|
|
if (group_moderation_index > index) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (events->events[i].type == TOX_EVENT_GROUP_MODERATION) {
|
|
|
|
const Tox_Event_Group_Moderation *group_moderation = events->events[i].data.group_moderation;
|
|
|
|
if (group_moderation_index == index) {
|
|
|
|
return group_moderation;
|
|
|
|
}
|
|
|
|
++group_moderation_index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
2023-07-25 11:53:09 +02:00
|
|
|
}
|
|
|
|
|
2023-12-27 12:37:22 +01:00
|
|
|
uint32_t tox_events_get_group_moderation_size(const Tox_Events *events)
|
2023-07-25 11:53:09 +02:00
|
|
|
{
|
2023-12-27 12:37:22 +01:00
|
|
|
uint32_t group_moderation_size = 0;
|
|
|
|
const uint32_t size = tox_events_get_size(events);
|
2023-07-25 11:53:09 +02:00
|
|
|
|
|
|
|
for (uint32_t i = 0; i < size; ++i) {
|
2023-12-27 12:37:22 +01:00
|
|
|
if (events->events[i].type == TOX_EVENT_GROUP_MODERATION) {
|
|
|
|
++group_moderation_size;
|
2023-07-25 11:53:09 +02:00
|
|
|
}
|
|
|
|
}
|
2023-12-27 12:37:22 +01:00
|
|
|
|
|
|
|
return group_moderation_size;
|
2023-07-25 11:53:09 +02:00
|
|
|
}
|
|
|
|
|
2023-12-27 12:37:22 +01:00
|
|
|
bool tox_event_group_moderation_unpack(
|
|
|
|
Tox_Event_Group_Moderation **event, Bin_Unpack *bu, const Memory *mem)
|
2023-07-25 11:53:09 +02:00
|
|
|
{
|
2023-12-27 12:37:22 +01:00
|
|
|
assert(event != nullptr);
|
|
|
|
*event = tox_event_group_moderation_new(mem);
|
2023-07-25 11:53:09 +02:00
|
|
|
|
2023-12-27 12:37:22 +01:00
|
|
|
if (*event == nullptr) {
|
2023-07-25 11:53:09 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-12-27 12:37:22 +01:00
|
|
|
return tox_event_group_moderation_unpack_into(*event, bu);
|
|
|
|
}
|
|
|
|
|
|
|
|
non_null()
|
|
|
|
static Tox_Event_Group_Moderation *tox_event_group_moderation_alloc(void *user_data)
|
|
|
|
{
|
|
|
|
Tox_Events_State *state = tox_events_alloc(user_data);
|
|
|
|
assert(state != nullptr);
|
|
|
|
|
|
|
|
if (state->events == nullptr) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
Tox_Event_Group_Moderation *group_moderation = tox_events_add_group_moderation(state->events, state->mem);
|
|
|
|
|
|
|
|
if (group_moderation == nullptr) {
|
|
|
|
state->error = TOX_ERR_EVENTS_ITERATE_MALLOC;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return group_moderation;
|
2023-07-25 11:53:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************
|
|
|
|
*
|
|
|
|
* :: event handler
|
|
|
|
*
|
|
|
|
*****************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
void tox_events_handle_group_moderation(Tox *tox, uint32_t group_number, uint32_t source_peer_id, uint32_t target_peer_id, Tox_Group_Mod_Event mod_type,
|
|
|
|
void *user_data)
|
|
|
|
{
|
2023-12-27 12:37:22 +01:00
|
|
|
Tox_Event_Group_Moderation *group_moderation = tox_event_group_moderation_alloc(user_data);
|
2023-07-25 11:53:09 +02:00
|
|
|
|
|
|
|
if (group_moderation == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
tox_event_group_moderation_set_group_number(group_moderation, group_number);
|
|
|
|
tox_event_group_moderation_set_source_peer_id(group_moderation, source_peer_id);
|
|
|
|
tox_event_group_moderation_set_target_peer_id(group_moderation, target_peer_id);
|
|
|
|
tox_event_group_moderation_set_mod_type(group_moderation, mod_type);
|
|
|
|
}
|