123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 |
- /*
- * Copyright 2017 - Kopano and its licensors
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * 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 Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- #include <kopano/zcdefs.h>
- #include <algorithm>
- #include <memory>
- #include <new>
- #include <kopano/ECRestriction.h>
- #include <kopano/charset/convert.h>
- #include <kopano/mapiext.h>
- #include <kopano/mapiguidext.h>
- #include <kopano/memory.hpp>
- #include <kopano/namedprops.h>
- #include <kopano/platform.h>
- #include <kopano/stringutil.h>
- #include <libical/vcc.h>
- #include <libical/vobject.h>
- #include <mapi.h>
- #include <mapiutil.h>
- #include <mapix.h>
- #include <vector>
- #include "vcftomapi.hpp"
- using namespace KCHL;
- namespace KC {
- class vcftomapi_impl _kc_final : public vcftomapi {
- public:
- /*
- * - lpPropObj to lookup named properties
- * - Addressbook (Global AddressBook for looking up users)
- */
- vcftomapi_impl(IMAPIProp *o) : vcftomapi(o) {}
- HRESULT parse_vcf(const std::string &) _kc_override;
- HRESULT get_item(IMessage *) _kc_override;
- private:
- HRESULT save_props(const std::list<SPropValue> &, IMAPIProp *);
- HRESULT handle_N(VObject *);
- HRESULT handle_TEL_EMAIL(VObject *);
- HRESULT vobject_to_prop(VObject *, SPropValue &, ULONG proptype);
- HRESULT vobject_to_named_prop(VObject *, SPropValue &, ULONG named_proptype);
- HRESULT unicode_to_named_prop(const wchar_t *, SPropValue &, ULONG named_proptype);
- };
- /**
- * Create a class implementing the ICalToMapi "interface".
- */
- HRESULT create_vcftomapi(IMAPIProp *prop, vcftomapi **ret)
- {
- if (prop == nullptr || ret == nullptr)
- return MAPI_E_INVALID_PARAMETER;
- *ret = new(std::nothrow) vcftomapi_impl(prop);
- return *ret != nullptr ? hrSuccess : MAPI_E_NOT_ENOUGH_MEMORY;
- }
- HRESULT vcftomapi_impl::handle_N(VObject *v)
- {
- VObjectIterator tt;
- for (initPropIterator(&tt, v); moreIteration(&tt); ) {
- auto vv = nextVObject(&tt);
- auto name = vObjectName(vv);
- SPropValue s;
- if (strcmp(name, VCFamilyNameProp) == 0) {
- auto ret = vobject_to_prop(vv, s, PR_SURNAME);
- if (ret != hrSuccess)
- return ret;
- props.push_back(s);
- } else if (strcmp(name, VCGivenNameProp) == 0) {
- auto ret = vobject_to_prop(vv, s, PR_GIVEN_NAME);
- if (ret != hrSuccess)
- return ret;
- props.push_back(s);
- }
- }
- return hrSuccess;
- }
- HRESULT vcftomapi_impl::handle_TEL_EMAIL(VObject *v)
- {
- bool tel = strcmp(vObjectName(v), VCTelephoneProp) == 0;
- VObjectIterator t;
- for (initPropIterator(&t, v); moreIteration(&t); ) {
- auto vv = nextVObject(&t);
- auto name = vObjectName(vv);
- SPropValue s;
- const char *namep = strcmp(name, "TYPE") == 0 ? vObjectStringZValue(vv) : name;
- auto tokens = tokenize(namep, ',');
- for (auto const &token : tokens) {
- /* telephone */
- if (tel && strcasecmp(token.c_str(), "HOME") == 0) {
- auto ret = vobject_to_prop(v, s, PR_HOME_TELEPHONE_NUMBER);
- if (ret != hrSuccess)
- return ret;
- props.push_back(s);
- }
- if (tel && strcasecmp(token.c_str(), "MOBILE") == 0) {
- auto ret = vobject_to_prop(v, s, PR_MOBILE_TELEPHONE_NUMBER);
- if (ret != hrSuccess)
- return ret;
- props.push_back(s);
- }
- if (tel)
- continue;
- /* email */
- vobject_to_named_prop(v, s, 0x8083);
- props.push_back(s);
- auto ret = unicode_to_named_prop(L"SMTP", s, 0x8082);
- if (ret != hrSuccess)
- return ret;
- props.push_back(s);
- }
- }
- return hrSuccess;
- }
- /**
- * Parses an ICal string (with a certain charset) and converts the
- * data in memory. The real MAPI object can be retrieved using
- * GetItem().
- */
- HRESULT vcftomapi_impl::parse_vcf(const std::string &ical)
- {
- HRESULT hr = hrSuccess;
- auto v = Parse_MIME(ical.c_str(), ical.length());
- if (v == nullptr)
- return MAPI_E_CORRUPT_DATA;
- auto v_orig = v;
- VObjectIterator t;
- for (initPropIterator(&t, v); moreIteration(&t); ) {
- v = nextVObject(&t);
- auto name = vObjectName(v);
- if (strcmp(name, VCNameProp) == 0) {
- hr = handle_N(v);
- if (hr != hrSuccess)
- return hr;
- } else if (strcmp(name, VCFullNameProp) == 0) {
- SPropValue s;
- hr = vobject_to_prop(v, s, PR_DISPLAY_NAME);
- if (hr != hrSuccess)
- return hr;
- props.push_back(s);
- } else if (strcmp(name, VCTelephoneProp) == 0 ||
- strcmp(name, VCEmailAddressProp) == 0) {
- hr = handle_TEL_EMAIL(v);
- if (hr != hrSuccess)
- return hr;
- }
- }
- cleanVObject(v_orig);
- return hr;
- }
- HRESULT vcftomapi_impl::vobject_to_prop(VObject *v, SPropValue &s, ULONG proptype)
- {
- auto value_type = vObjectValueType(v);
- if (value_type == VCVT_STRINGZ) {
- s.ulPropTag = CHANGE_PROP_TYPE(proptype, PT_STRING8);
- auto val = vObjectStringZValue(v);
- auto ret = MAPIAllocateBuffer(strlen(val) + 1, reinterpret_cast<void **>(&s.Value.lpszA));
- if (ret != hrSuccess)
- return ret;
- strcpy(s.Value.lpszA, val);
- }
- else if (value_type == VCVT_USTRINGZ) {
- s.ulPropTag = CHANGE_PROP_TYPE(proptype, PT_UNICODE);
- auto uval = vObjectUStringZValue(v);
- auto ret = MAPIAllocateBuffer(sizeof(wchar_t) * (wcslen(uval) + 1), reinterpret_cast<void **>(&s.Value.lpszW));
- if (ret != hrSuccess)
- return ret;
- wcscpy(s.Value.lpszW, uval);
- }
- return hrSuccess;
- }
- HRESULT vcftomapi_impl::vobject_to_named_prop(VObject *v, SPropValue &s,
- ULONG named_proptype)
- {
- HRESULT hr;
- MAPINAMEID name;
- MAPINAMEID *namep = &name;
- memory_ptr<SPropTagArray> proptag;
- name.lpguid = const_cast<GUID *>(&PSETID_Address);
- name.ulKind = MNID_ID;
- name.Kind.lID = named_proptype;
- hr = m_propobj->GetIDsFromNames(1, &namep, MAPI_CREATE, &~proptag);
- if (hr != hrSuccess)
- return hr;
- hr = vobject_to_prop(v, s, proptag->aulPropTag[0]);
- if (hr != hrSuccess)
- return hr;
- return hrSuccess;
- }
- HRESULT vcftomapi_impl::unicode_to_named_prop(const wchar_t *v, SPropValue &s,
- ULONG named_proptype)
- {
- MAPINAMEID name;
- MAPINAMEID *namep = &name;
- memory_ptr<SPropTagArray> proptag;
- name.lpguid = const_cast<GUID *>(&PSETID_Address);
- name.ulKind = MNID_ID;
- name.Kind.lID = named_proptype;
- HRESULT hr = m_propobj->GetIDsFromNames(1, &namep,
- MAPI_CREATE, &~proptag);
- if (hr != hrSuccess)
- return hr;
- s.ulPropTag = CHANGE_PROP_TYPE(proptag->aulPropTag[0], PT_UNICODE);
- auto ret = MAPIAllocateBuffer(sizeof(wchar_t) * (wcslen(v) + 1),
- reinterpret_cast<void **>(&s.Value.lpszW));
- if (ret != hrSuccess)
- return hr;
- wcscpy(s.Value.lpszW, v);
- return hrSuccess;
- }
- /**
- * Sets mapi properties in Imessage object from the icalitem.
- */
- HRESULT vcftomapi_impl::get_item(IMessage *msg)
- {
- if (msg == nullptr)
- return MAPI_E_INVALID_PARAMETER;
- SPropValue s;
- s.ulPropTag = CHANGE_PROP_TYPE(PR_MESSAGE_CLASS, PT_STRING8);
- s.Value.lpszA = const_cast<char *>("IPM.Contact");
- HRESULT hr = HrSetOneProp(msg, &s);
- if (hr != hrSuccess)
- return hr;
- return save_props(props, msg);
- }
- /**
- * Helper function for GetItem. Saves all properties converted from
- * ICal to MAPI in the MAPI object. Does not call SaveChanges.
- *
- * @param[in] lpPropList list of properties to save in lpMapiProp
- * @param[in] lpMapiProp The MAPI object to save properties in
- *
- * @return MAPI error code
- */
- HRESULT vcftomapi_impl::save_props(const std::list<SPropValue> &proplist,
- IMAPIProp *mapiprop)
- {
- memory_ptr<SPropValue> propvals;
- HRESULT hr = MAPIAllocateBuffer(proplist.size() * sizeof(SPropValue),
- &~propvals);
- if (hr != hrSuccess)
- return hr;
- size_t i = 0;
- for (const auto &prop : proplist)
- propvals[i++] = prop;
- auto ret = mapiprop->SetProps(i, propvals, nullptr);
- for (const auto &prop : proplist) {
- if (PROP_TYPE(prop.ulPropTag) == PT_UNICODE)
- MAPIFreeBuffer(prop.Value.lpszW);
- else if (PROP_TYPE(prop.ulPropTag) == PT_STRING8)
- MAPIFreeBuffer(prop.Value.lpszA);
- }
- return ret;
- }
- } /* namespace */
|