mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-21 21:28:08 +00:00
172 lines
5 KiB
C++
172 lines
5 KiB
C++
/*
|
|
* chat-message-p.h
|
|
* Copyright (C) 2010-2017 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.
|
|
*/
|
|
|
|
#ifndef _CHAT_MESSAGE_P_H_
|
|
#define _CHAT_MESSAGE_P_H_
|
|
|
|
#include <belle-sip/types.h>
|
|
|
|
#include "chat/chat-message/chat-message.h"
|
|
#include "chat/chat-room/chat-room-id.h"
|
|
#include "chat/modifier/file-transfer-chat-message-modifier.h"
|
|
#include "chat/notification/imdn.h"
|
|
#include "content/content-type.h"
|
|
#include "content/content.h"
|
|
#include "content/file-content.h"
|
|
#include "content/file-transfer-content.h"
|
|
#include "db/main-db-chat-message-key.h"
|
|
#include "event-log/conference/conference-chat-message-event.h"
|
|
#include "object/object-p.h"
|
|
#include "sal/sal.h"
|
|
|
|
// =============================================================================
|
|
|
|
LINPHONE_BEGIN_NAMESPACE
|
|
|
|
class ChatMessagePrivate : public ObjectPrivate {
|
|
friend class CpimChatMessageModifier;
|
|
friend class EncryptionChatMessageModifier;
|
|
friend class MultipartChatMessageModifier;
|
|
|
|
public:
|
|
enum Step {
|
|
None = 1 << 0,
|
|
FileUpload = 1 << 1,
|
|
Multipart = 1 << 2,
|
|
Encryption = 1 << 3,
|
|
Cpim = 1 << 4
|
|
};
|
|
|
|
ChatMessagePrivate () = default;
|
|
|
|
void setApplyModifiers (bool value) { applyModifiers = value; }
|
|
|
|
void setDirection (ChatMessage::Direction dir);
|
|
|
|
void setState(ChatMessage::State state, bool force = false);
|
|
|
|
void setTime(time_t time);
|
|
|
|
void setIsReadOnly(bool readOnly);
|
|
|
|
void setImdnMessageId (const std::string &imdnMessageId);
|
|
|
|
inline void forceFromAddress (const IdentityAddress &fromAddress) {
|
|
this->fromAddress = fromAddress;
|
|
}
|
|
|
|
inline void forceToAddress (const IdentityAddress &toAddress) {
|
|
this->toAddress = toAddress;
|
|
}
|
|
|
|
belle_http_request_t *getHttpRequest() const;
|
|
void setHttpRequest(belle_http_request_t *request);
|
|
|
|
SalOp *getSalOp() const;
|
|
void setSalOp(SalOp *op);
|
|
|
|
SalCustomHeader *getSalCustomHeaders() const;
|
|
void setSalCustomHeaders(SalCustomHeader *headers);
|
|
|
|
void addSalCustomHeader(const std::string& name, const std::string& value);
|
|
void removeSalCustomHeader(const std::string& name);
|
|
std::string getSalCustomHeaderValue(const std::string& name);
|
|
|
|
void loadFileTransferUrlFromBodyToContent();
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// Deprecated methods only used for C wrapper, to be removed some day...
|
|
// -----------------------------------------------------------------------------
|
|
|
|
const ContentType &getContentType();
|
|
void setContentType(const ContentType &contentType);
|
|
|
|
const std::string &getText();
|
|
void setText(const std::string &text);
|
|
|
|
const std::string &getFileTransferFilepath () const;
|
|
void setFileTransferFilepath (const std::string &path);
|
|
|
|
const std::string &getAppdata () const;
|
|
void setAppdata (const std::string &appData);
|
|
|
|
const std::string &getExternalBodyUrl () const;
|
|
|
|
bool hasTextContent() const;
|
|
const Content* getTextContent() const;
|
|
|
|
bool hasFileTransferContent() const;
|
|
const Content* getFileTransferContent() const;
|
|
|
|
LinphoneContent *getFileTransferInformation() const;
|
|
void setFileTransferInformation(const LinphoneContent *content);
|
|
|
|
bool downloadFile ();
|
|
|
|
void sendImdn(Imdn::Type imdnType, LinphoneReason reason);
|
|
|
|
LinphoneReason receive();
|
|
void send();
|
|
|
|
void store();
|
|
|
|
private:
|
|
// TODO: Clean attributes.
|
|
time_t time = ::ms_time(0); // TODO: Change me in all files.
|
|
std::string imdnId;
|
|
std::string rttMessage;
|
|
bool isSecured = false;
|
|
bool isReadOnly = false;
|
|
std::list<Content* > contents;
|
|
Content internalContent;
|
|
std::unordered_map<std::string, std::string> customHeaders;
|
|
mutable LinphoneErrorInfo * errorInfo = nullptr;
|
|
SalOp *salOp = nullptr;
|
|
SalCustomHeader *salCustomHeaders = nullptr;
|
|
unsigned char currentSendStep = Step::None;
|
|
unsigned char currentRecvStep = Step::None;
|
|
bool applyModifiers = true;
|
|
FileTransferChatMessageModifier fileTransferChatMessageModifier;
|
|
|
|
// Cache for returned values, used for compatibility with previous C API
|
|
std::string fileTransferFilePath;
|
|
ContentType cContentType;
|
|
std::string cText;
|
|
|
|
// TODO: Remove my comment. VARIABLES OK.
|
|
// Do not expose.
|
|
|
|
public:
|
|
mutable MainDbChatMessageKey dbKey;
|
|
|
|
private:
|
|
std::weak_ptr<ChatRoom> chatRoom;
|
|
ChatRoomId chatRoomId;
|
|
IdentityAddress fromAddress;
|
|
IdentityAddress toAddress;
|
|
|
|
ChatMessage::State state = ChatMessage::State::Idle;
|
|
ChatMessage::Direction direction = ChatMessage::Direction::Incoming;
|
|
|
|
L_DECLARE_PUBLIC(ChatMessage);
|
|
};
|
|
|
|
LINPHONE_END_NAMESPACE
|
|
|
|
#endif // ifndef _CHAT_MESSAGE_P_H_
|