tox-weechat/src/tox-weechat-friend-requests.c

153 lines
4.2 KiB
C
Raw Normal View History

2014-09-18 16:55:52 +00:00
/*
* Copyright (c) 2014 Håvard Pettersson <haavard.pettersson@gmail.com>
*
* This file is part of Tox-WeeChat.
*
* Tox-WeeChat is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Tox-WeeChat 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Tox-WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
2014-09-02 16:47:08 +00:00
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <weechat/weechat-plugin.h>
#include <tox/tox.h>
#include "tox-weechat.h"
#include "tox-weechat-identities.h"
2014-09-02 16:47:08 +00:00
#include "tox-weechat-utils.h"
#include "tox-weechat-friend-requests.h"
/**
* Add a new friend request to an identity.
*
* Returns 0 on success, -1 on a full friend list.
*/
int
tox_weechat_friend_request_add(struct t_tox_weechat_identity *identity,
2014-09-17 23:01:36 +00:00
const uint8_t *client_id,
const char *message)
2014-09-02 16:47:08 +00:00
{
2014-09-17 23:01:36 +00:00
// check friend request count
struct t_config_option *option =
identity->options[TOX_WEECHAT_IDENTITY_OPTION_MAX_FRIEND_REQUESTS];
unsigned int max_requests = weechat_config_integer(option);
2014-09-17 23:01:36 +00:00
if (identity->friend_request_count >= max_requests)
return -1;
2014-09-02 16:47:08 +00:00
2014-09-17 23:01:36 +00:00
struct t_tox_weechat_friend_request *request = malloc(sizeof(*request));
2014-09-07 01:04:42 +00:00
request->identity = identity;
2014-09-17 23:01:36 +00:00
request->message = strdup(message);
memcpy(request->tox_id, client_id, TOX_CLIENT_ID_SIZE);
2014-09-17 23:01:36 +00:00
// add to list
2014-09-07 01:04:42 +00:00
request->prev_request = identity->last_friend_request;
request->next_request = NULL;
2014-09-02 16:47:08 +00:00
2014-09-07 01:04:42 +00:00
if (identity->friend_requests == NULL)
identity->friend_requests = request;
else
identity->last_friend_request->next_request = request;
identity->last_friend_request = request;
++(identity->friend_request_count);
return 0;
2014-09-02 16:47:08 +00:00
}
/**
* Remove and free a friend request from its identity.
*/
2014-09-02 16:47:08 +00:00
void
2014-09-07 01:04:42 +00:00
tox_weechat_friend_request_remove(struct t_tox_weechat_friend_request *request)
2014-09-02 16:47:08 +00:00
{
struct t_tox_weechat_identity *identity = request->identity;
if (request == identity->last_friend_request)
2014-09-17 23:01:36 +00:00
identity->last_friend_request = request->prev_request;
2014-09-07 01:04:42 +00:00
if (request->prev_request)
request->prev_request->next_request = request->next_request;
2014-09-17 23:01:36 +00:00
else
identity->friend_requests = request->next_request;
2014-09-07 01:04:42 +00:00
if (request->next_request)
request->next_request->prev_request = request->prev_request;
2014-09-02 16:47:08 +00:00
2014-09-17 23:01:36 +00:00
--(identity->friend_request_count);
2014-09-02 16:47:08 +00:00
tox_weechat_friend_request_free(request);
2014-09-02 16:47:08 +00:00
}
/**
2014-09-20 21:27:28 +00:00
* Accept a friend request. Remove and free the request.
*/
2014-09-02 16:47:08 +00:00
void
tox_weechat_accept_friend_request(struct t_tox_weechat_friend_request *request)
2014-09-02 16:47:08 +00:00
{
tox_add_friend_norequest(request->identity->tox, request->tox_id);
2014-09-02 16:47:08 +00:00
tox_weechat_friend_request_remove(request);
}
2014-09-20 21:27:28 +00:00
/**
* Decline a friend request. Remove and free the request.
*/
void
tox_weechat_decline_friend_request(struct t_tox_weechat_friend_request *request)
{
tox_weechat_friend_request_remove(request);
}
/**
* Return the friend request from the identity with the number num.
*/
2014-09-07 01:04:42 +00:00
struct t_tox_weechat_friend_request *
tox_weechat_friend_request_with_num(struct t_tox_weechat_identity *identity,
unsigned int num)
2014-09-02 16:47:08 +00:00
{
if (num >= identity->friend_request_count) return NULL;
2014-09-02 16:47:08 +00:00
unsigned int i = 0;
2014-09-07 01:04:42 +00:00
struct t_tox_weechat_friend_request *request = identity->friend_requests;
while (i != num && request->next_request)
2014-09-02 16:47:08 +00:00
{
2014-09-07 01:04:42 +00:00
request = request->next_request;
2014-09-02 16:47:08 +00:00
++i;
}
return request;
}
/**
* Free a friend request.
*/
2014-09-17 23:01:36 +00:00
void
tox_weechat_friend_request_free(struct t_tox_weechat_friend_request *request)
{
free(request->message);
free(request);
2014-09-02 16:47:08 +00:00
}
/**
* Free all friend requests from an identity.
*/
2014-09-02 16:47:08 +00:00
void
2014-09-17 23:01:36 +00:00
tox_weechat_friend_request_free_identity(struct t_tox_weechat_identity *identity)
2014-09-02 16:47:08 +00:00
{
2014-09-07 01:04:42 +00:00
while (identity->friend_requests)
tox_weechat_friend_request_remove(identity->friend_requests);
2014-09-02 16:47:08 +00:00
}