You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pEpJSONServerAdapter/server/pEp-types.cc

724 lines
15 KiB
C++

#include "pEp-types.hh"
#include "pEp-utils.hh"
#include "pEp-utils-json.hh"
#include "json-adapter.hh"
#include <pEp/pEp_string.h>
#include <pEp/status_to_string.hh> // from libpEpAdapter
#include <iostream> // Just to print debug stuff to std::cerr
#include "base64.hh"
using pEp::utility::from_json_object;
using pEp::utility::to_json_object;
namespace
{
std::string base64_from_json_object(const js::Object& obj, const std::string& key)
{
const std::string b64String = from_json_object<std::string, js::str_type> (obj, key);
return base64_decode(b64String);
}
void to_base64_json_object(js::Object& obj, const std::string& key, char *value, size_t size)
{
if(value != nullptr && size>0)
{
const std::string raw_string(value, value+size);
obj.emplace_back( key, js::Value( base64_encode( raw_string ) ) );
}
}
} // end of anonymous namespace
template<>
In<PEP_SESSION, ParamFlag::NoInput>::~In()
{
// no automatic release!
}
template<>
In<const timestamp*>::~In()
{
free_timestamp(const_cast<timestamp*>(value)); // FIXME: is that const_cast okay?
}
template<>
In<message*>::~In()
{
free_message(value);
}
template<>
In<stringlist_t*, ParamFlag::Default>::~In()
{
free_stringlist(value);
}
template<>
In<stringlist_t*, ParamFlag::DontOwn>::~In()
{
}
template<>
In<pEp_identity*>::~In()
{
free_identity(value);
}
template<>
In<const pEp_identity*>::~In()
{
free_identity(const_cast<pEp_identity*>(value));
}
template<>
Out<pEp_identity*>::~Out()
{
free_identity(value);
}
template<>
Out<identity_list*>::~Out()
{
free_identity_list(value);
}
template<>
In<const identity_list*>::~In()
{
free_identity_list(const_cast<identity_list*>(value));
}
template<>
In<PEP_enc_format>::~In()
{
// nothing to do here. :-)
}
template<>
In<PEP_rating>::~In()
{
// nothing to do here. :-)
}
template<>
In<sync_handshake_signal>::~In()
{
// nothing to do here. :-)
}
template<>
In<sync_handshake_result>::~In()
{
// nothing to do here. :-)
}
template<>
Out<stringlist_t*, ParamFlag::Default>::~Out()
{
free_stringlist(value);
}
template<>
Out<stringlist_t*, ParamFlag::DontOwn>::~Out()
{
// don't call free_stringlist()!
}
template<>
Out<stringpair_list_t*>::~Out()
{
free_stringpair_list(value);
}
template<>
Out<_message*>::~Out()
{
free_message(value);
}
template<>
Out<PEP_rating>::~Out()
{
}
template<>
Out<PEP_comm_type>::~Out()
{
}
template<>
Out<PEP_STATUS>::~Out()
{
}
// used for strings that shall be _owned_ by the pEpEngine only!
template<>
char* from_json<char*>(const js::Value& v)
{
if(v.is_null())
{
return nullptr;
}
const std::string& ss = v.get_str();
char* s = new_string(ss.c_str(), ss.size() );
return s;
}
template<>
message* from_json<message*>(const js::Value& v)
{
if(v.is_null())
{
return nullptr;
}
const js::Object& o = v.get_obj();
auto msg = pEp::utility::make_c_ptr(new_message(PEP_dir_incoming), &free_message );
// fetch values from v and put them into msg
msg->dir = from_json_object<PEP_msg_direction, js::int_type>(o, "dir");
msg->id = from_json_object<char*, js::str_type>(o, "id");
msg->shortmsg = from_json_object<char*, js::str_type>(o, "shortmsg");
msg->longmsg = from_json_object<char*, js::str_type>(o, "longmsg");
msg->longmsg_formatted = from_json_object<char*, js::str_type>(o, "longmsg_formatted");
msg->attachments = from_json_object<bloblist_t*, js::array_type>(o, "attachments");
msg->sent = from_json_object<timestamp*, js::int_type>(o, "sent");
msg->recv = from_json_object<timestamp*, js::int_type>(o, "recv");
msg->from = from_json_object<pEp_identity* , js::obj_type> (o, "from");
msg->to = from_json_object<identity_list*, js::array_type>(o, "to");
msg->recv_by = from_json_object<pEp_identity* , js::obj_type> (o, "recv_by");
msg->cc = from_json_object<identity_list*, js::array_type>(o, "cc");
msg->bcc = from_json_object<identity_list*, js::array_type>(o, "bcc");
msg->reply_to = from_json_object<identity_list*, js::array_type>(o, "reply_to");
msg->in_reply_to = from_json_object<stringlist_t*, js::array_type>(o, "in_reply_to");
// TODO: refering_msg_ref
msg->references = from_json_object<stringlist_t*, js::array_type>(o, "references");
// TODO: refered_by
msg->keywords = from_json_object<stringlist_t*, js::int_type>(o, "keywords");
msg->comments = from_json_object<char*, js::str_type>(o, "comments");
msg->opt_fields = from_json_object<stringpair_list_t*, js::array_type>(o, "opt_fields");
msg->enc_format = from_json_object<PEP_enc_format, js::int_type>(o, "enc_format");
return msg.release();
}
template<>
pEp_identity* from_json<pEp_identity*>(const js::Value& v)
{
if(v.is_null())
{
return nullptr;
}
const js::Object& o = v.get_obj();
auto address = pEp::utility::make_c_ptr(from_json_object<char*, js::str_type>(o, "address") , &free_string );
auto fingerprint = pEp::utility::make_c_ptr(from_json_object<char*, js::str_type>(o, "fpr") , &free_string );
auto user_id = pEp::utility::make_c_ptr(from_json_object<char*, js::str_type>(o, "user_id") , &free_string );
auto username = pEp::utility::make_c_ptr(from_json_object<char*, js::str_type>(o, "username") , &free_string );
auto lang = pEp::utility::make_c_ptr(from_json_object<char*, js::str_type>(o, "lang") , &free_string );
auto ident = pEp::utility::make_c_ptr( new_identity
(
address.get(),
fingerprint.get(),
user_id.get(),
username.get()
), &free_identity );
ident->comm_type = from_json_object<PEP_comm_type, js::int_type>(o, "comm_type");
if(lang && lang.get()[0] && lang.get()[1])
{
strncpy(ident->lang, lang.get(), 3);
}
ident->flags = from_json_object<unsigned, js::int_type>(o, "flags");
return ident.release();
}
template<>
const pEp_identity* from_json<const pEp_identity*>(const js::Value& v)
{
return from_json<pEp_identity*>(v);
}
template<>
7 years ago
js::Value to_json<message const*>(message const* const& msg)
{
if(msg == nullptr)
{
return js::Value();
}
js::Object o;
to_json_object(o, "dir" , msg->dir);
to_json_object(o, "id" , msg->id);
to_json_object(o, "shortmsg", msg->shortmsg);
to_json_object(o, "longmsg" , msg->longmsg);
to_json_object(o, "longmsg_formatted" , msg->longmsg_formatted);
to_json_object(o, "attachments", msg->attachments);
to_json_object(o, "sent" , msg->sent);
to_json_object(o, "recv" , msg->recv);
to_json_object(o, "from" , msg->from);
to_json_object(o, "to" , msg->to);
to_json_object(o, "recv_by" , msg->recv_by);
to_json_object(o, "cc" , msg->cc);
to_json_object(o, "bcc" , msg->bcc);
to_json_object(o, "reply_to", msg->reply_to);
to_json_object(o, "in_reply_to" , msg->in_reply_to);
// TODO: refering_msg_ref
to_json_object(o, "references", msg->references);
// TODO: refered_by
to_json_object(o, "keywords", msg->keywords);
to_json_object(o, "comments", msg->comments);
to_json_object(o, "opt_fields", msg->opt_fields);
to_json_object(o, "enc_format", msg->enc_format);
return js::Value( std::move(o) );
}
7 years ago
template<>
js::Value to_json<message*>(message* const& msg)
{
return to_json( const_cast<const message*>(msg) );
}
template<>
stringlist_t* from_json<stringlist_t*>(const js::Value& v)
{
if(v.is_null())
{
return nullptr;
}
const js::Array& a = v.get_array();
auto sl = pEp::utility::make_c_ptr(new_stringlist( nullptr ), &free_stringlist );
for(const js::Value& v : a )
{
const std::string& s = v.get_str();
stringlist_add(sl.get(), s.c_str() );
}
return sl.release();
}
template<>
const stringlist_t* from_json<const stringlist_t*>(const js::Value& v)
{
return const_cast<const stringlist_t*>( from_json<stringlist_t*>(v) );
}
template<>
identity_list* from_json<identity_list*>(const js::Value& v)
{
if(v.is_null())
{
return nullptr;
}
const js::Array& a = v.get_array();
auto il = pEp::utility::make_c_ptr(new_identity_list( nullptr ), &free_identity_list);
for(const js::Value& v : a )
{
pEp_identity* id = from_json<pEp_identity*>(v);
identity_list_add(il.get(), id );
}
return il.release();
}
template<>
const identity_list* from_json<const identity_list*>(const js::Value& v)
{
return from_json<identity_list*>(v);
}
template<>
_bloblist_t* from_json<_bloblist_t*>(const js::Value& v)
{
if(v.is_null())
{
return nullptr;
}
const js::Array& a = v.get_array();
if(a.empty())
return nullptr;
auto element = a.begin();
_bloblist_t* bl = NULL;
for(; element!=a.end(); ++element)
{
const auto oelem = element->get_obj();
// FIXME: change base64 decoder that it decodes into output array directly to avoid copying.
std::string v = base64_from_json_object(oelem, "value");
size_t vs = v.size();
char* vc = new_string(nullptr, vs + 1);
if(vc == NULL)
throw std::runtime_error("Out of memory while allocating blob");
memcpy(vc, v.c_str(), vs + 1 );
// must use unique_ptr<char> instead of std::string to handle NULL values differently from empty strings:
auto mime_type = pEp::utility::make_c_ptr( from_json_object<char*, js::str_type>(oelem, "mime_type"), &free_string );
auto filename = pEp::utility::make_c_ptr( from_json_object<char*, js::str_type>(oelem, "filename") , &free_string );
bl = bloblist_add(bl, vc, vs, mime_type.get(), filename.get());
if(bl == NULL)
throw std::runtime_error("Couldn't add blob to bloblist");
}
return bl;
}
template<>
js::Value to_json<_bloblist_t*>(_bloblist_t* const& bl)
{
_bloblist_t* b = bl;
js::Array a;
while(b)
{
js::Object o;
if(b->value)
{
to_base64_json_object(o, "value", b->value, b->size);
}
o.emplace_back( "size", boost::uint64_t(b->size) );
if(b->mime_type)
{
o.emplace_back( "mime_type", b->mime_type );
}
if(b->filename)
{
o.emplace_back( "filename", b->filename );
}
a.push_back( std::move(o) );
b = b->next;
}
return js::Value( std::move(a) );
}
template<>
stringpair_t* from_json<stringpair_t*>(const js::Value& v)
{
if(v.is_null())
{
return nullptr;
}
const js::Object& o = v.get_obj();
char* key = from_json_object<char*, js::str_type>(o, "key");
char* val = from_json_object<char*, js::str_type>(o, "value");
stringpair_t* sp = new_stringpair( key, val );
free(val);
free(key);
return sp;
}
template<>
stringpair_list_t* from_json<stringpair_list_t*>(const js::Value& v)
{
if(v.is_null())
{
return nullptr;
}
const js::Array& a = v.get_array();
if(a.empty())
return nullptr;
auto element = a.begin();
stringpair_list_t* spl = new_stringpair_list( from_json<stringpair_t*>(*element) );
++element;
for(; element!=a.end(); ++element)
{
spl = stringpair_list_add(spl, from_json<stringpair_t*>(*element) );
}
return spl;
}
template<>
js::Value to_json<stringpair_list_t*>(stringpair_list_t* const& osl)
{
stringpair_list_t* spl = osl;
js::Array a;
while(spl)
{
if(spl->value)
{
js::Object o;
o.emplace_back( "key", spl->value->key );
o.emplace_back( "value", spl->value->value );
a.push_back( std::move(o) );
}
spl = spl->next;
}
return js::Value( std::move(a) );
}
template<>
tm* from_json<tm*>(const js::Value& v)
{
return new_timestamp( v.get_int64() );
}
template<>
const tm* from_json<const tm*>(const js::Value& v)
{
return new_timestamp( v.get_int64() );
}
template<>
js::Value to_json<const stringlist_t*>(const stringlist_t* const& osl)
{
const stringlist_t* sl = osl;
js::Array a;
while(sl)
{
if(sl->value)
{
std::string value = sl->value;
a.push_back( std::move(value) );
}
sl = sl->next;
}
return js::Value( std::move(a) );
}
template<>
js::Value to_json<stringlist_t*>(stringlist_t* const& osl)
{
return to_json<const stringlist_t*>(osl);
}
template<>
js::Value to_json<const pEp_identity*>(const pEp_identity* const& id)
{
if(id == nullptr)
{
return js::Value();
}
js::Object o;
to_json_object(o, "address" , id->address);
to_json_object(o, "fpr" , id->fpr);
to_json_object(o, "user_id" , id->user_id);
to_json_object(o, "username", id->username);
o.emplace_back( "comm_type" , js::Value( int( id->comm_type) ));
if(id->lang[0] && id->lang[1])
o.emplace_back( "lang", js::Value( std::string( id->lang, id->lang+2) ));
return js::Value( std::move(o) );
}
template<>
js::Value to_json<pEp_identity*>(pEp_identity* const& id)
{
return to_json( const_cast<const pEp_identity*>(id) );
}
template<>
js::Value to_json<identity_list*>(identity_list* const& idl)
{
identity_list* il = idl;
js::Array a;
while(il)
{
const js::Value value = to_json<pEp_identity*>(il->ident);
a.push_back(value);
il = il->next;
}
return js::Value( std::move(a) );
}
template<>
js::Value to_json<PEP_rating>(const PEP_rating& rating)
{
js::Object o;
6 years ago
o.emplace_back( "rating", int(rating) );
return o;
}
template<>
PEP_rating from_json<PEP_rating>(const js::Value& v)
{
const js::Object& o = v.get_obj();
return from_json_object<PEP_rating, js::int_type>(o, "rating");
}
template<>
js::Value to_json<PEP_STATUS>(const PEP_STATUS& status)
{
js::Object o;
o.emplace_back( "status", int(status) );
o.emplace_back( "hex", ::pEp::status_to_string(status) );
return o;
}
template<>
PEP_enc_format from_json<PEP_enc_format>(const js::Value& v)
{
return PEP_enc_format(v.get_int());
}
template<>
js::Value to_json<PEP_enc_format>(const PEP_enc_format& v)
{
return js::Value( int(v) );
}
template<>
PEP_msg_direction from_json<PEP_msg_direction>(const js::Value& v)
{
return PEP_msg_direction(v.get_int());
}
template<>
js::Value to_json<PEP_msg_direction>(const PEP_msg_direction& v)
{
return js::Value( int(v) );
}
template<>
js::Value to_json<sync_handshake_signal>(const sync_handshake_signal& s)
{
js::Object o;
o.emplace_back( "sync_handshake_signal", int(s) );
return o;
}
template<>
PEP_comm_type from_json<PEP_comm_type>(const js::Value& v)
{
return PEP_comm_type(v.get_int());
}
template<>
sync_handshake_result from_json<sync_handshake_result>(const js::Value& v)
{
return sync_handshake_result(v.get_int());
}
template<>
js::Value to_json<PEP_comm_type>(const PEP_comm_type& v)
{
return js::Value( int(v) );
}
template<>
js::Value Type2String<PEP_SESSION>::get() { return "Session"; }
template<>
js::Value Type2String<_message*>::get() { return "Message"; }
template<>
js::Value Type2String<const timestamp*>::get() { return "Timestamp"; }
template<>
js::Value Type2String<pEp_identity*>::get() { return "Identity"; }
template<>
js::Value Type2String<const pEp_identity*>::get() { return "Identity"; }
template<>
js::Value Type2String<identity_list*>::get() { return "IdentityList"; }
template<>
js::Value Type2String<const identity_list*>::get() { return "IdentityList"; }
template<>
js::Value Type2String<_stringlist_t*>::get() { return "StringList"; }
template<>
js::Value Type2String<stringpair_list_t*>::get() { return "StringPairList"; }
template<>
js::Value Type2String<_PEP_rating>::get() { return "PEP_rating"; }
template<>
js::Value Type2String<_PEP_enc_format>::get() { return "PEP_enc_format"; }
template<>
js::Value Type2String<sync_handshake_result>::get() { return "PEP_sync_handshake_result"; }
template<>
js::Value Type2String<_PEP_comm_type>::get() { return "PEP_comm_type"; }
template<>
js::Value Type2String<PEP_STATUS>::get() { return "PEP_STATUS"; }
template<>
js::Value Type2String<Language>::get() { return "Language"; }
template<>
js::Value Type2String<JsonAdapter *>::get() { return "JsonAdapter"; }