mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-20 12:38:09 +00:00
122 lines
4.2 KiB
C++
122 lines
4.2 KiB
C++
/*
|
|
* content-manager.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 <belle-sip/belle-sip.h>
|
|
|
|
#include "content-manager.h"
|
|
#include "content-type.h"
|
|
#include "content/content.h"
|
|
|
|
#define MULTIPART_BOUNDARY "---------------------------14737809831466499882746641449"
|
|
|
|
// =============================================================================
|
|
|
|
using namespace std;
|
|
|
|
LINPHONE_BEGIN_NAMESPACE
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
list<Content> ContentManager::multipartToContentList (const Content &content) {
|
|
belle_sip_multipart_body_handler_t *mpbh = belle_sip_multipart_body_handler_new_from_buffer(
|
|
(void *)content.getBodyAsString().c_str(),
|
|
content.getBodyAsString().length(),
|
|
MULTIPART_BOUNDARY
|
|
);
|
|
belle_sip_object_ref(mpbh);
|
|
|
|
list<Content> contents;
|
|
for (const belle_sip_list_t *parts = belle_sip_multipart_body_handler_get_parts(mpbh); parts; parts = parts->next) {
|
|
belle_sip_body_handler_t *part = BELLE_SIP_BODY_HANDLER(parts->data);
|
|
const belle_sip_list_t *part_headers = belle_sip_body_handler_get_headers(part);
|
|
belle_sip_header_content_type_t *part_content_type = nullptr;
|
|
for (belle_sip_list_t *it = (belle_sip_list_t *)part_headers; it; it = it->next) {
|
|
belle_sip_header_t *header = BELLE_SIP_HEADER(it->data);
|
|
if (strcasecmp("Content-Type", belle_sip_header_get_name(header)) == 0) {
|
|
part_content_type = BELLE_SIP_HEADER_CONTENT_TYPE(header);
|
|
break;
|
|
}
|
|
}
|
|
|
|
Content retContent;
|
|
retContent.setBody((const char *)belle_sip_memory_body_handler_get_buffer(BELLE_SIP_MEMORY_BODY_HANDLER(part)));
|
|
retContent.setContentType(ContentType(
|
|
belle_sip_header_content_type_get_type(part_content_type),
|
|
belle_sip_header_content_type_get_subtype(part_content_type)
|
|
));
|
|
contents.push_back(retContent);
|
|
}
|
|
|
|
belle_sip_object_unref(mpbh);
|
|
return contents;
|
|
}
|
|
|
|
Content ContentManager::contentListToMultipart (const list<Content> &contents) {
|
|
belle_sip_memory_body_handler_t *mbh = nullptr;
|
|
belle_sip_multipart_body_handler_t *mpbh = belle_sip_multipart_body_handler_new(
|
|
nullptr, nullptr, nullptr, MULTIPART_BOUNDARY
|
|
);
|
|
belle_sip_object_ref(mpbh);
|
|
|
|
for (const auto &content : contents) {
|
|
const ContentType &contentType = content.getContentType();
|
|
stringstream subtype;
|
|
subtype << contentType.getSubType() << "; charset=\"UTF-8\"";
|
|
belle_sip_header_t *cContentType = BELLE_SIP_HEADER(
|
|
belle_sip_header_content_type_create(
|
|
contentType.getType().c_str(),
|
|
subtype.str().c_str()
|
|
)
|
|
);
|
|
|
|
string body = content.getBodyAsString();
|
|
mbh = belle_sip_memory_body_handler_new_copy_from_buffer(
|
|
(void *)body.c_str(), body.length(), nullptr, nullptr
|
|
);
|
|
belle_sip_body_handler_add_header(BELLE_SIP_BODY_HANDLER(mbh), cContentType);
|
|
|
|
const list<pair<string,string>> headers = content.getHeaders();
|
|
for (const auto &header : headers) {
|
|
belle_sip_header_t *additionalHeader = BELLE_SIP_HEADER(
|
|
belle_sip_header_create(
|
|
header.first.c_str(),
|
|
header.second.c_str()
|
|
)
|
|
);
|
|
belle_sip_body_handler_add_header(BELLE_SIP_BODY_HANDLER(mbh), additionalHeader);
|
|
}
|
|
|
|
belle_sip_multipart_body_handler_add_part(mpbh, BELLE_SIP_BODY_HANDLER(mbh));
|
|
}
|
|
char *desc = belle_sip_object_to_string(mpbh);
|
|
|
|
Content content;
|
|
content.setBody(desc);
|
|
ContentType contentType = ContentType::Multipart;
|
|
string boundary = "boundary=" + string(MULTIPART_BOUNDARY);
|
|
contentType.setParameter(boundary);
|
|
content.setContentType(contentType);
|
|
|
|
belle_sip_free(desc);
|
|
belle_sip_object_unref(mpbh);
|
|
|
|
return content;
|
|
}
|
|
|
|
LINPHONE_END_NAMESPACE
|