123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373 |
- /*
- * Copyright 2005 - 2016 Zarafa 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/platform.h>
- #include <kopano/memory.hpp>
- #include "ProtocolBase.h"
- #include <kopano/stringutil.h>
- #include <kopano/CommonUtil.h>
- #include "CalDavUtil.h"
- #include <kopano/mapi_ptr.h>
- using namespace std;
- using namespace KCHL;
- ProtocolBase::ProtocolBase(Http *lpRequest, IMAPISession *lpSession,
- const std::string &strSrvTz, const std::string &strCharset) :
- m_lpRequest(lpRequest), m_lpSession(lpSession), m_strSrvTz(strSrvTz),
- m_strCharset(strCharset)
- {
- }
- ProtocolBase::~ProtocolBase()
- {
- if (m_lpLoginUser)
- m_lpLoginUser->Release();
- if (m_lpActiveUser)
- m_lpActiveUser->Release();
- if (m_lpIPMSubtree)
- m_lpIPMSubtree->Release();
- if (m_lpUsrFld)
- m_lpUsrFld->Release();
- if (m_lpAddrBook)
- m_lpAddrBook->Release();
- if (m_lpDefStore)
- m_lpDefStore->Release();
- if (m_lpActiveStore)
- m_lpActiveStore->Release();
- }
- /**
- * Opens the store and folders required for the Request. Also checks
- * if DELETE or RENAME actions are allowed on the folder.
- *
- * @return MAPI error code
- * @retval MAPI_E_NO_ACCESS Not enough permissions to open the folder or store
- * @retval MAPI_E_NOT_FOUND Folder requested by client not found
- */
- HRESULT ProtocolBase::HrInitializeClass()
- {
- HRESULT hr = hrSuccess;
- std::string strUrl;
- std::string strMethod;
- string strFldOwner;
- string strFldName;
- memory_ptr<SPropValue> lpDefaultProp, lpFldProp;
- SPropValuePtr lpEntryID;
- ULONG ulRes = 0;
- bool bIsPublic = false;
- ULONG ulType = 0;
- MAPIFolderPtr lpRoot;
- /* URLs
- *
- * /caldav/ | depth: 0 results in root props, depth: 1 results in 0 + calendar FOLDER list current user. eg: the same happens /caldav/self/
- * /caldav/self/ | depth: 0 results in root props, depth: 1 results in 0 + calendar FOLDER list current user. see ^^
- * /caldav/self/Calendar/ | depth: 0 results in root props, depth: 1 results in 0 + _GIVEN_ calendar CONTENTS list current user.
- * /caldav/self/_NAMED_FOLDER_ID_/ (evo has date? still??) (we also do hexed entryids?)
- * /caldav/other/[...]
- * /caldav/public/[...]
- *
- * /caldav/user/folder/folder/ | subfolders are not allowed!
- * /caldav/user/folder/id.ics | a message (note: not ending in /)
- */
- m_lpRequest->HrGetUrl(&strUrl);
- m_lpRequest->HrGetUser(&m_wstrUser);
- m_lpRequest->HrGetMethod(&strMethod);
- HrParseURL(strUrl, &m_ulUrlFlag, &strFldOwner, &strFldName);
- m_wstrFldOwner = U2W(strFldOwner);
- m_wstrFldName = U2W(strFldName);
- bIsPublic = m_ulUrlFlag & REQ_PUBLIC;
- if (m_wstrFldOwner.empty())
- m_wstrFldOwner = m_wstrUser;
- hr = m_lpSession->OpenAddressBook(0, NULL, 0, &m_lpAddrBook);
- if(hr != hrSuccess)
- {
- ec_log_err("Error opening addressbook, error code: 0x%08X", hr);
- return hr;
- }
- // default store required for various actions (delete, freebusy, ...)
- hr = HrOpenDefaultStore(m_lpSession, &m_lpDefStore);
- if(hr != hrSuccess)
- {
- ec_log_err("Error opening default store of user %ls, error code: 0x%08X", m_wstrUser.c_str(), hr);
- return hr;
- }
- hr = HrGetOwner(m_lpSession, m_lpDefStore, &m_lpLoginUser);
- if(hr != hrSuccess)
- return hr;
- /*
- * Set m_lpActiveStore
- */
- if (bIsPublic)
- {
- // open public
- hr = HrOpenECPublicStore(m_lpSession, &m_lpActiveStore);
- if (hr != hrSuccess) {
- ec_log_err("Unable to open public store with user %ls, error code: 0x%08X", m_wstrUser.c_str(), hr);
- return hr;
- }
- } else if (wcscasecmp(m_wstrUser.c_str(), m_wstrFldOwner.c_str())) {
- // open shared store
- hr = HrOpenUserMsgStore(m_lpSession, (WCHAR*)m_wstrFldOwner.c_str(), &m_lpActiveStore);
- if (hr != hrSuccess) {
- ec_log_err("Unable to open store of user %ls with user %ls, error code: 0x%08X", m_wstrFldOwner.c_str(), m_wstrUser.c_str(), hr);
- return hr;
- }
- m_ulFolderFlag |= SHARED_FOLDER;
- } else {
- // @todo, make auto pointers
- hr = m_lpDefStore->QueryInterface(IID_IMsgStore, (void**)&m_lpActiveStore);
- if (hr != hrSuccess)
- return hr;
- }
- // Retrieve named properties
- hr = HrLookupNames(m_lpActiveStore, &~m_lpNamedProps);
- if (hr != hrSuccess)
- return hr;
- // get active user info
- if (bIsPublic)
- hr = m_lpLoginUser->QueryInterface(IID_IMailUser, (void**)&m_lpActiveUser);
- else
- hr = HrGetOwner(m_lpSession, m_lpActiveStore, &m_lpActiveUser);
- if(hr != hrSuccess)
- return hr;
- /*
- * Set m_lpIPMSubtree, used for CopyFolder, CreateFolder, DeleteFolder
- */
- hr = OpenSubFolder(m_lpActiveStore, NULL, '/', bIsPublic, false, &m_lpIPMSubtree);
- if(hr != hrSuccess)
- {
- ec_log_err("Error opening IPM SUBTREE, using user %ls, error code: 0x%08X", m_wstrUser.c_str(), hr);
- return hr;
- }
- // Get active store default calendar to prevent delete action on this folder
- hr = m_lpActiveStore->OpenEntry(0, nullptr, nullptr, 0, &ulType, &~lpRoot);
- if(hr != hrSuccess)
- {
- ec_log_err("Error opening root container, using user %ls, error code: 0x%08X", m_wstrUser.c_str(), hr);
- return hr;
- }
- if (!bIsPublic) {
- // get default calendar entryid for non-public stores
- hr = HrGetOneProp(lpRoot, PR_IPM_APPOINTMENT_ENTRYID, &~lpDefaultProp);
- if(hr != hrSuccess)
- {
- ec_log_err("Error retrieving Entry id of Default calendar for user %ls, error code: 0x%08X", m_wstrUser.c_str(), hr);
- return hr;
- }
- }
- /*
- * Set m_lpUsrFld
- */
- if (strMethod.compare("MKCALENDAR") == 0 && (m_ulUrlFlag & SERVICE_CALDAV))
- {
- // created in the IPM_SUBTREE
- hr = OpenSubFolder(m_lpActiveStore, NULL, '/', bIsPublic,
- false, &m_lpUsrFld);
- if(hr != hrSuccess)
- {
- ec_log_err("Error opening IPM_SUBTREE folder of user %ls, error code: 0x%08X", m_wstrUser.c_str(), hr);
- return hr;
- }
- }
- else if(!m_wstrFldName.empty())
- {
- // @note, caldav allows creation of calendars for non-existing urls, but since this can also use IDs, I am not sure we want to.
- hr = HrFindFolder(m_lpActiveStore, m_lpIPMSubtree, m_lpNamedProps, m_wstrFldName, &m_lpUsrFld);
- if(hr != hrSuccess)
- {
- ec_log_err("Error opening named folder of user %ls, folder %ls, error code: 0x%08X", m_wstrUser.c_str(), m_wstrFldName.c_str(), hr);
- return hr;
- }
- m_ulFolderFlag |= SINGLE_FOLDER;
- // check if this is the default calendar folder to enable freebusy publishing
- if (lpDefaultProp &&
- HrGetOneProp(m_lpUsrFld, PR_ENTRYID, &~lpEntryID) == hrSuccess &&
- m_lpActiveStore->CompareEntryIDs(lpEntryID->Value.bin.cb, (LPENTRYID)lpEntryID->Value.bin.lpb,
- lpDefaultProp->Value.bin.cb, (LPENTRYID)lpDefaultProp->Value.bin.lpb, 0, &ulRes) == hrSuccess &&
- ulRes == TRUE)
- {
- // disable delete default folder, and enable fb publish
- m_blFolderAccess = false;
- m_ulFolderFlag |= DEFAULT_FOLDER;
- }
- }
- // default calendar
- else if (bIsPublic) {
- hr = m_lpIPMSubtree->QueryInterface(IID_IMAPIFolder, (void**)&m_lpUsrFld);
- if (hr != hrSuccess)
- return hr;
- } else {
- // open default calendar
- hr = m_lpActiveStore->OpenEntry(lpDefaultProp->Value.bin.cb, (LPENTRYID)lpDefaultProp->Value.bin.lpb, NULL, MAPI_BEST_ACCESS, &ulType, (LPUNKNOWN*)&m_lpUsrFld);
- if (hr != hrSuccess)
- {
- ec_log_err("Unable to open default calendar for user %ls, error code: 0x%08X", m_wstrUser.c_str(), hr);
- return hr;
- }
- // we already know we don't want to delete this folder
- m_blFolderAccess = false;
- m_ulFolderFlag |= DEFAULT_FOLDER;
- }
- /*
- * Workaround for old users with sunbird / lightning on old url base.
- */
- {
- vector<string> parts;
- parts = tokenize(strUrl, '/', true);
- m_lpRequest->HrGetHeaderValue("User-Agent", &strAgent);
- // /caldav/
- // /caldav/username/ (which we return in XML data! (and shouldn't)), since this isn't a calendar, but /caldav/username/Calendar/ is.
- if ((strAgent.find("Sunbird/1") != string::npos || strAgent.find("Lightning/1") != string::npos) && parts.size() <= 2) {
- // Mozilla Sunbird / Lightning doesn't handle listing of calendars, only contents.
- // We therefore redirect them to the default calendar url.
- SPropValuePtr ptrDisplayName;
- string strLocation = "/caldav/" + urlEncode(m_wstrFldOwner, "utf-8");
- if (HrGetOneProp(m_lpUsrFld, PR_DISPLAY_NAME_W, &~ptrDisplayName) == hrSuccess) {
- std::string part = urlEncode(ptrDisplayName->Value.lpszW, "UTF-8");
- strLocation += "/" + part + "/";
- } else {
- // return 404 ?
- strLocation += "/Calendar/";
- }
- m_lpRequest->HrResponseHeader(301, "Moved Permanently");
- m_lpRequest->HrResponseHeader("Location", m_converter.convert_to<string>(strLocation));
- return MAPI_E_NOT_ME;
- }
- }
- /*
- * Check delete / rename access on folder, if not already blocked.
- */
- if (m_blFolderAccess &&
- // lpDefaultProp already should contain PR_IPM_APPOINTMENT_ENTRYID
- lpDefaultProp != nullptr) {
- ULONG ulCmp;
- hr = HrGetOneProp(m_lpUsrFld, PR_ENTRYID, &~lpFldProp);
- if (hr != hrSuccess)
- return hr;
- hr = m_lpSession->CompareEntryIDs(lpDefaultProp->Value.bin.cb, (LPENTRYID)lpDefaultProp->Value.bin.lpb,
- lpFldProp->Value.bin.cb, (LPENTRYID)lpFldProp->Value.bin.lpb, 0, &ulCmp);
- if (hr != hrSuccess || ulCmp == TRUE)
- m_blFolderAccess = false;
- }
- if (m_blFolderAccess) {
- hr = HrGetOneProp(m_lpUsrFld, PR_SUBFOLDERS, &~lpFldProp);
- if(hr != hrSuccess)
- return hr;
- if(lpFldProp->Value.b == (unsigned short)true && !strMethod.compare("DELETE"))
- m_blFolderAccess = false;
- }
- return hr;
- }
- /**
- * converts widechar to utf-8 string
- * @param[in] strWinChar source string(windows-1252) to be converted
- * @return string converted string (utf-8)
- */
- std::string ProtocolBase::W2U(const std::wstring &strWideChar)
- {
- return m_converter.convert_to<string>(m_strCharset.c_str(), strWideChar, rawsize(strWideChar), CHARSET_WCHAR);
- }
- /**
- * converts widechar to utf-8 string
- * @param[in] strWinChar source string(windows-1252) to be converted
- * @return string converted string (utf-8)
- */
- std::string ProtocolBase::W2U(const WCHAR* lpwWideChar)
- {
- return m_converter.convert_to<string>(m_strCharset.c_str(), lpwWideChar, rawsize(lpwWideChar), CHARSET_WCHAR);
- }
- /**
- * converts utf-8 string to widechar
- * @param[in] strUtfChar source string(utf-8) to be converted
- * @return wstring converted wide string
- */
- std::wstring ProtocolBase::U2W(const std::string &strUtfChar)
- {
- return m_converter.convert_to<wstring>(strUtfChar, rawsize(strUtfChar), m_strCharset.c_str());
- }
- /**
- * Convert SPropValue to string
- *
- * @param[in] lpSprop SPropValue to be converted
- * @return string
- */
- std::string ProtocolBase::SPropValToString(const SPropValue *lpSprop)
- {
- time_t tmUnixTime;
- std::string strRetVal;
-
- if (lpSprop == NULL)
- return std::string();
- if (PROP_TYPE(lpSprop->ulPropTag) == PT_SYSTIME)
- {
- FileTimeToUnixTime(lpSprop->Value.ft, &tmUnixTime);
- strRetVal = stringify_int64(tmUnixTime, false);
- }
- else if (PROP_TYPE(lpSprop->ulPropTag) == PT_STRING8)
- {
- strRetVal = lpSprop->Value.lpszA;
- }
- else if (PROP_TYPE(lpSprop->ulPropTag) == PT_UNICODE)
- {
- strRetVal = W2U(lpSprop->Value.lpszW);
- }
- //Global UID
- else if (PROP_TYPE(lpSprop->ulPropTag) == PT_BINARY)
- {
- HrGetICalUidFromBinUid(lpSprop->Value.bin, &strRetVal);
- }
- else if (PROP_TYPE(lpSprop->ulPropTag) == PT_LONG)
- {
- strRetVal = stringify(lpSprop->Value.ul, false);
- }
- return strRetVal;
- }
|