mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 19:18:06 +00:00
348 lines
13 KiB
C++
348 lines
13 KiB
C++
/*
|
|
* c-chat-message.cpp
|
|
* Copyright (C) 2010-2018 Belledonne Communications SARL
|
|
*
|
|
* This program 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 2
|
|
* 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "linphone/api/c-chat-message.h"
|
|
#include "linphone/utils/utils.h"
|
|
#include "linphone/wrapper_utils.h"
|
|
|
|
#include "ortp/b64.h"
|
|
|
|
#include "address/address.h"
|
|
#include "c-wrapper/c-wrapper.h"
|
|
#include "chat/chat-message/chat-message-p.h"
|
|
#include "chat/chat-room/chat-room-p.h"
|
|
#include "chat/chat-room/real-time-text-chat-room-p.h"
|
|
#include "chat/notification/imdn.h"
|
|
#include "content/content-type.h"
|
|
#include "content/content.h"
|
|
|
|
// =============================================================================
|
|
|
|
using namespace std;
|
|
|
|
static void _linphone_chat_message_constructor (LinphoneChatMessage *msg);
|
|
static void _linphone_chat_message_destructor (LinphoneChatMessage *msg);
|
|
|
|
L_DECLARE_C_OBJECT_IMPL_WITH_XTORS(ChatMessage,
|
|
_linphone_chat_message_constructor, _linphone_chat_message_destructor,
|
|
LinphoneChatMessageCbs *cbs;
|
|
LinphoneAddress *from; // cache for shared_ptr<Address>
|
|
LinphoneAddress *to; // cache for shared_ptr<Address>
|
|
LinphoneChatMessageStateChangedCb message_state_changed_cb;
|
|
void *message_state_changed_user_data;
|
|
|
|
struct Cache {
|
|
string contentType;
|
|
string textContentBody;
|
|
string customHeaderValue;
|
|
} mutable cache;
|
|
)
|
|
|
|
static void _linphone_chat_message_constructor (LinphoneChatMessage *msg) {
|
|
msg->cbs = linphone_chat_message_cbs_new();
|
|
new(&msg->cache) LinphoneChatMessage::Cache();
|
|
}
|
|
|
|
static void _linphone_chat_message_destructor (LinphoneChatMessage *msg) {
|
|
linphone_chat_message_cbs_unref(msg->cbs);
|
|
msg->cbs = nullptr;
|
|
if (msg->from)
|
|
linphone_address_unref(msg->from);
|
|
if (msg->to)
|
|
linphone_address_unref(msg->to);
|
|
|
|
msg->cache.~Cache();
|
|
}
|
|
|
|
// =============================================================================
|
|
// Reference and user data handling functions.
|
|
// =============================================================================
|
|
|
|
LinphoneChatMessage *linphone_chat_message_ref (LinphoneChatMessage *msg) {
|
|
belle_sip_object_ref(msg);
|
|
return msg;
|
|
}
|
|
|
|
void linphone_chat_message_unref (LinphoneChatMessage *msg) {
|
|
belle_sip_object_unref(msg);
|
|
}
|
|
|
|
void * linphone_chat_message_get_user_data (const LinphoneChatMessage *msg) {
|
|
return L_GET_USER_DATA_FROM_C_OBJECT(msg);
|
|
}
|
|
|
|
void linphone_chat_message_set_user_data (LinphoneChatMessage *msg, void *ud) {
|
|
L_SET_USER_DATA_FROM_C_OBJECT(msg, ud);
|
|
}
|
|
|
|
LinphoneChatMessageCbs *linphone_chat_message_get_callbacks(const LinphoneChatMessage *msg) {
|
|
return msg->cbs;
|
|
}
|
|
|
|
// =============================================================================
|
|
// Getter and setters
|
|
// =============================================================================
|
|
|
|
LinphoneChatRoom *linphone_chat_message_get_chat_room(const LinphoneChatMessage *msg) {
|
|
return L_GET_C_BACK_PTR(L_GET_CPP_PTR_FROM_C_OBJECT(msg)->getChatRoom());
|
|
}
|
|
|
|
const char *linphone_chat_message_get_external_body_url(const LinphoneChatMessage *msg) {
|
|
return L_STRING_TO_C(L_GET_PRIVATE_FROM_C_OBJECT(msg)->getExternalBodyUrl());
|
|
}
|
|
|
|
void linphone_chat_message_set_external_body_url(LinphoneChatMessage *msg, const char *url) {
|
|
L_GET_PRIVATE_FROM_C_OBJECT(msg)->setExternalBodyUrl(L_C_TO_STRING(url));
|
|
}
|
|
|
|
time_t linphone_chat_message_get_time(const LinphoneChatMessage *msg) {
|
|
return L_GET_CPP_PTR_FROM_C_OBJECT(msg)->getTime();
|
|
}
|
|
|
|
bool_t linphone_chat_message_is_secured(LinphoneChatMessage *msg) {
|
|
return L_GET_CPP_PTR_FROM_C_OBJECT(msg)->isSecured();
|
|
}
|
|
|
|
bool_t linphone_chat_message_is_outgoing(LinphoneChatMessage *msg) {
|
|
return L_GET_CPP_PTR_FROM_C_OBJECT(msg)->getDirection() == LinphonePrivate::ChatMessage::Direction::Outgoing;
|
|
}
|
|
|
|
LinphoneChatMessageState linphone_chat_message_get_state(const LinphoneChatMessage *msg) {
|
|
return ((LinphoneChatMessageState)L_GET_CPP_PTR_FROM_C_OBJECT(msg)->getState());
|
|
}
|
|
|
|
const char* linphone_chat_message_get_message_id(const LinphoneChatMessage *msg) {
|
|
return L_GET_CPP_PTR_FROM_C_OBJECT(msg)->getImdnMessageId().c_str();
|
|
}
|
|
|
|
bool_t linphone_chat_message_is_read(LinphoneChatMessage *msg) {
|
|
return L_GET_CPP_PTR_FROM_C_OBJECT(msg)->isRead();
|
|
}
|
|
|
|
const char *linphone_chat_message_get_appdata(const LinphoneChatMessage *msg) {
|
|
return L_STRING_TO_C(L_GET_PRIVATE_FROM_C_OBJECT(msg)->getAppdata());
|
|
}
|
|
|
|
void linphone_chat_message_set_appdata(LinphoneChatMessage *msg, const char *data) {
|
|
L_GET_PRIVATE_FROM_C_OBJECT(msg)->setAppdata(L_C_TO_STRING(data));
|
|
}
|
|
|
|
const LinphoneAddress *linphone_chat_message_get_from_address(LinphoneChatMessage *msg) {
|
|
if (msg->from)
|
|
linphone_address_unref(msg->from);
|
|
msg->from = linphone_address_new(L_GET_CPP_PTR_FROM_C_OBJECT(msg)->getFromAddress().asString().c_str());
|
|
return msg->from;
|
|
}
|
|
|
|
const LinphoneAddress *linphone_chat_message_get_to_address(LinphoneChatMessage *msg) {
|
|
if (msg->to)
|
|
linphone_address_unref(msg->to);
|
|
msg->to = linphone_address_new(L_GET_CPP_PTR_FROM_C_OBJECT(msg)->getToAddress().asString().c_str());
|
|
return msg->to;
|
|
}
|
|
|
|
const char *linphone_chat_message_get_file_transfer_filepath(LinphoneChatMessage *msg) {
|
|
return L_STRING_TO_C(L_GET_PRIVATE_FROM_C_OBJECT(msg)->getFileTransferFilepath());
|
|
}
|
|
|
|
void linphone_chat_message_set_file_transfer_filepath(LinphoneChatMessage *msg, const char *filepath) {
|
|
L_GET_PRIVATE_FROM_C_OBJECT(msg)->setFileTransferFilepath(L_C_TO_STRING(filepath));
|
|
}
|
|
|
|
void linphone_chat_message_add_custom_header(
|
|
LinphoneChatMessage *msg,
|
|
const char *header_name,
|
|
const char *header_value
|
|
) {
|
|
L_GET_PRIVATE_FROM_C_OBJECT(msg)->addSalCustomHeader(L_C_TO_STRING(header_name), L_C_TO_STRING(header_value));
|
|
}
|
|
|
|
void linphone_chat_message_remove_custom_header(LinphoneChatMessage *msg, const char *header_name) {
|
|
L_GET_PRIVATE_FROM_C_OBJECT(msg)->removeSalCustomHeader(L_C_TO_STRING(header_name));
|
|
}
|
|
|
|
const char *linphone_chat_message_get_custom_header(LinphoneChatMessage *msg, const char *header_name) {
|
|
msg->cache.customHeaderValue = L_GET_PRIVATE_FROM_C_OBJECT(msg)->getSalCustomHeaderValue(L_C_TO_STRING(header_name));
|
|
return L_STRING_TO_C(msg->cache.customHeaderValue);
|
|
}
|
|
|
|
const LinphoneErrorInfo *linphone_chat_message_get_error_info(const LinphoneChatMessage *msg) {
|
|
return L_GET_CPP_PTR_FROM_C_OBJECT(msg)->getErrorInfo();
|
|
}
|
|
|
|
bool_t linphone_chat_message_get_to_be_stored(const LinphoneChatMessage *message) {
|
|
return L_GET_CPP_PTR_FROM_C_OBJECT(message)->getToBeStored();
|
|
}
|
|
|
|
void linphone_chat_message_set_to_be_stored(LinphoneChatMessage *message, bool_t to_be_stored) {
|
|
L_GET_CPP_PTR_FROM_C_OBJECT(message)->setToBeStored(!!to_be_stored);
|
|
}
|
|
|
|
// =============================================================================
|
|
// Methods
|
|
// =============================================================================
|
|
|
|
LinphoneStatus linphone_chat_message_download_file(LinphoneChatMessage *msg) {
|
|
return ((LinphoneStatus)L_GET_PRIVATE_FROM_C_OBJECT(msg)->downloadFile());
|
|
}
|
|
|
|
void linphone_chat_message_cancel_file_transfer(LinphoneChatMessage *msg) {
|
|
L_GET_CPP_PTR_FROM_C_OBJECT(msg)->cancelFileTransfer();
|
|
}
|
|
|
|
void linphone_chat_message_send (LinphoneChatMessage *msg) {
|
|
L_GET_CPP_PTR_FROM_C_OBJECT(msg)->send();
|
|
}
|
|
|
|
void linphone_chat_message_resend(LinphoneChatMessage *msg) {
|
|
L_GET_CPP_PTR_FROM_C_OBJECT(msg)->send();
|
|
}
|
|
|
|
void linphone_chat_message_resend_2(LinphoneChatMessage *msg) {
|
|
L_GET_CPP_PTR_FROM_C_OBJECT(msg)->send();
|
|
}
|
|
|
|
LinphoneStatus linphone_chat_message_put_char(LinphoneChatMessage *msg, uint32_t character) {
|
|
return ((LinphoneStatus)L_GET_CPP_PTR_FROM_C_OBJECT(msg)->putCharacter(character));
|
|
}
|
|
|
|
void linphone_chat_message_add_text_content(LinphoneChatMessage *msg, const char *c_content) {
|
|
LinphonePrivate::Content *content = new LinphonePrivate::Content();
|
|
LinphonePrivate::ContentType contentType = LinphonePrivate::ContentType::PlainText;
|
|
content->setContentType(contentType);
|
|
content->setBody(L_C_TO_STRING(c_content));
|
|
L_GET_CPP_PTR_FROM_C_OBJECT(msg)->addContent(*content);
|
|
}
|
|
|
|
bool_t linphone_chat_message_has_text_content(const LinphoneChatMessage *msg) {
|
|
return L_GET_PRIVATE_FROM_C_OBJECT(msg)->hasTextContent();
|
|
}
|
|
|
|
const char *linphone_chat_message_get_text_content(const LinphoneChatMessage *msg) {
|
|
const LinphonePrivate::Content *content = L_GET_PRIVATE_FROM_C_OBJECT(msg)->getTextContent();
|
|
if (content->isEmpty())
|
|
return nullptr;
|
|
msg->cache.textContentBody = content->getBodyAsString();
|
|
return L_STRING_TO_C(msg->cache.textContentBody);
|
|
}
|
|
|
|
bool_t linphone_chat_message_is_file_transfer_in_progress(LinphoneChatMessage *msg) {
|
|
return L_GET_CPP_PTR_FROM_C_OBJECT(msg)->isFileTransferInProgress();
|
|
}
|
|
|
|
// =============================================================================
|
|
// Old listener
|
|
// =============================================================================
|
|
|
|
LinphoneChatMessageStateChangedCb linphone_chat_message_get_message_state_changed_cb(LinphoneChatMessage* msg) {
|
|
return msg->message_state_changed_cb;
|
|
}
|
|
|
|
void linphone_chat_message_set_message_state_changed_cb(LinphoneChatMessage* msg, LinphoneChatMessageStateChangedCb cb) {
|
|
msg->message_state_changed_cb = cb;
|
|
}
|
|
|
|
void linphone_chat_message_set_message_state_changed_cb_user_data(LinphoneChatMessage* msg, void *user_data) {
|
|
msg->message_state_changed_user_data = user_data;
|
|
}
|
|
|
|
void * linphone_chat_message_get_message_state_changed_cb_user_data(LinphoneChatMessage* msg) {
|
|
return msg->message_state_changed_user_data;
|
|
}
|
|
|
|
// =============================================================================
|
|
// Structure has changed, hard to keep the behavior
|
|
// =============================================================================
|
|
|
|
const char *linphone_chat_message_get_content_type(LinphoneChatMessage *msg) {
|
|
msg->cache.contentType = L_GET_PRIVATE_FROM_C_OBJECT(msg)->getContentType().asString();
|
|
return L_STRING_TO_C(msg->cache.contentType);
|
|
}
|
|
|
|
void linphone_chat_message_set_content_type(LinphoneChatMessage *msg, const char *content_type) {
|
|
L_GET_PRIVATE_FROM_C_OBJECT(msg)->setContentType(LinphonePrivate::ContentType(L_C_TO_STRING(content_type)));
|
|
}
|
|
|
|
const char *linphone_chat_message_get_text(LinphoneChatMessage *msg) {
|
|
return L_STRING_TO_C(L_GET_PRIVATE_FROM_C_OBJECT(msg)->getText());
|
|
}
|
|
|
|
int linphone_chat_message_set_text(LinphoneChatMessage *msg, const char* text) {
|
|
L_GET_PRIVATE_FROM_C_OBJECT(msg)->setText(L_C_TO_STRING(text));
|
|
return 0;
|
|
}
|
|
|
|
LinphoneContent *linphone_chat_message_get_file_transfer_information(LinphoneChatMessage *msg) {
|
|
return L_GET_PRIVATE_FROM_C_OBJECT(msg)->getFileTransferInformation();
|
|
}
|
|
|
|
// =============================================================================
|
|
// Nothing to do, they call other C API methods
|
|
// =============================================================================
|
|
|
|
const LinphoneAddress *linphone_chat_message_get_peer_address(LinphoneChatMessage *msg) {
|
|
return linphone_chat_room_get_peer_address(linphone_chat_message_get_chat_room(msg));
|
|
}
|
|
|
|
const LinphoneAddress *linphone_chat_message_get_local_address(LinphoneChatMessage *msg) {
|
|
if (L_GET_CPP_PTR_FROM_C_OBJECT(msg)->getDirection() == LinphonePrivate::ChatMessage::Direction::Outgoing)
|
|
return linphone_chat_message_get_from_address(msg);
|
|
return linphone_chat_message_get_to_address(msg);
|
|
}
|
|
|
|
LinphoneReason linphone_chat_message_get_reason(LinphoneChatMessage *msg) {
|
|
return linphone_error_info_get_reason(linphone_chat_message_get_error_info(msg));
|
|
}
|
|
|
|
bool_t linphone_chat_message_is_file_transfer(LinphoneChatMessage *msg) {
|
|
return L_GET_PRIVATE_FROM_C_OBJECT(msg)->hasFileTransferContent();
|
|
}
|
|
|
|
bool_t linphone_chat_message_is_text(LinphoneChatMessage *msg) {
|
|
return L_GET_PRIVATE_FROM_C_OBJECT(msg)->hasTextContent();
|
|
}
|
|
|
|
const char *linphone_chat_message_state_to_string(const LinphoneChatMessageState state) {
|
|
switch (state) {
|
|
case LinphoneChatMessageStateIdle:
|
|
return "LinphoneChatMessageStateIdle";
|
|
case LinphoneChatMessageStateInProgress:
|
|
return "LinphoneChatMessageStateInProgress";
|
|
case LinphoneChatMessageStateDelivered:
|
|
return "LinphoneChatMessageStateDelivered";
|
|
case LinphoneChatMessageStateNotDelivered:
|
|
return "LinphoneChatMessageStateNotDelivered";
|
|
case LinphoneChatMessageStateFileTransferError:
|
|
return "LinphoneChatMessageStateFileTransferError";
|
|
case LinphoneChatMessageStateFileTransferDone:
|
|
return "LinphoneChatMessageStateFileTransferDone ";
|
|
case LinphoneChatMessageStateDeliveredToUser:
|
|
return "LinphoneChatMessageStateDeliveredToUser";
|
|
case LinphoneChatMessageStateDisplayed:
|
|
return "LinphoneChatMessageStateDisplayed";
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
void linphone_chat_message_start_file_download(LinphoneChatMessage *msg,
|
|
LinphoneChatMessageStateChangedCb status_cb, void *ud) {
|
|
msg->message_state_changed_cb = status_cb;
|
|
msg->message_state_changed_user_data = ud;
|
|
linphone_chat_message_download_file(msg);
|
|
}
|