123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- /*
- * 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 <new>
- #include <kopano/platform.h>
- #include <kopano/memory.hpp>
- #include <kopano/ECInterfaceDefs.h>
- #include "ECFreeBusyUpdate.h"
- #include "freebusytags.h"
- #include "freebusyutil.h"
- using namespace KCHL;
- namespace KC {
- ECFreeBusyUpdate::ECFreeBusyUpdate(IMessage *lpMessage) :
- m_lpMessage(lpMessage)
- {
- if(m_lpMessage)
- m_lpMessage->AddRef();
- }
- ECFreeBusyUpdate::~ECFreeBusyUpdate(void)
- {
- if(m_lpMessage)
- m_lpMessage->Release();
- }
- HRESULT ECFreeBusyUpdate::Create(IMessage* lpMessage, ECFreeBusyUpdate **lppECFreeBusyUpdate)
- {
- HRESULT hr = hrSuccess;
- auto lpECFreeBusyUpdate = new(std::nothrow) ECFreeBusyUpdate(lpMessage);
- if (lpECFreeBusyUpdate == nullptr)
- return MAPI_E_NOT_ENOUGH_MEMORY;
- hr = lpECFreeBusyUpdate->QueryInterface(IID_ECFreeBusyUpdate, (void **)lppECFreeBusyUpdate);
- if(hr != hrSuccess)
- delete lpECFreeBusyUpdate;
- return hr;
- }
- HRESULT ECFreeBusyUpdate::QueryInterface(REFIID refiid, void** lppInterface)
- {
- REGISTER_INTERFACE2(ECFreeBusyUpdate, this);
- REGISTER_INTERFACE2(ECUnknown, this);
- REGISTER_INTERFACE2(IFreeBusyUpdate, &this->m_xFreeBusyUpdate);
- REGISTER_INTERFACE2(IUnknown, &this->m_xFreeBusyUpdate);
- return MAPI_E_INTERFACE_NOT_SUPPORTED;
- }
- HRESULT ECFreeBusyUpdate::PublishFreeBusy(FBBlock_1 *lpBlocks, ULONG nBlocks)
- {
- if(nBlocks > 0 && lpBlocks == NULL)
- return MAPI_E_INVALID_PARAMETER;
- for (ULONG i = 0; i < nBlocks; ++i)
- m_fbBlockList.Add(&lpBlocks[i]);
- return S_OK;
- }
- HRESULT ECFreeBusyUpdate::ResetPublishedFreeBusy()
- {
- m_fbBlockList.Clear();
- return S_OK;
- }
- HRESULT ECFreeBusyUpdate::SaveChanges(FILETIME ftStart, FILETIME ftEnd)
- {
- HRESULT hr = hrSuccess;
- ULONG cValues = 0;
- ULONG cProps = 0;
- ULONG ulMonths;
- memory_ptr<SPropValue> lpPropArray, lpPropFBDataArray;
- LONG rtmStart = 0;
- LONG rtmEnd = 0;
- FILETIME ft;
- time_t tmUnixStart;
- time_t tmUnixEnd;
- struct tm tmStart;
- struct tm tmEnd;
- static constexpr const SizedSPropTagArray(8, sPropsFBDelete) = {
- 8,
- {
- PR_FREEBUSY_ALL_EVENTS,
- PR_FREEBUSY_ALL_MONTHS,
- PR_FREEBUSY_BUSY_EVENTS,
- PR_FREEBUSY_BUSY_MONTHS,
- PR_FREEBUSY_OOF_EVENTS,
- PR_FREEBUSY_OOF_MONTHS,
- PR_FREEBUSY_TENTATIVE_EVENTS,
- PR_FREEBUSY_TENTATIVE_MONTHS
- }
- };
- FileTimeToRTime(&ftStart, &rtmStart);
- FileTimeToRTime(&ftEnd, &rtmEnd);
- if(m_lpMessage == NULL)
- {
- hr = MAPI_E_INVALID_OBJECT;
- goto exit;
- }
- if((ULONG)rtmStart > (ULONG)rtmEnd)
- {
- hr = MAPI_E_BAD_VALUE;
- goto exit;
- }
- GetSystemTimeAsFileTime(&ft);
- // Restrict on start and end date
- m_fbBlockList.Restrict(rtmStart, rtmEnd);
- //Calculate months
- RTimeToUnixTime(rtmStart, &tmUnixStart);
- RTimeToUnixTime(rtmEnd, &tmUnixEnd);
- gmtime_safe(&tmUnixStart, &tmStart);
- gmtime_safe(&tmUnixEnd, &tmEnd);
- ulMonths = DiffYearMonthToMonth(&tmStart, &tmEnd);
- if(ulMonths == 0)
- ++ulMonths;
- cValues = 9;
- cProps = 0;
- hr = MAPIAllocateBuffer(sizeof(SPropValue) * cValues, &~lpPropArray);
- if (hr != hrSuccess)
- goto exit;
- lpPropArray[cProps].ulPropTag = PR_FREEBUSY_LAST_MODIFIED;
- lpPropArray[cProps++].Value.ft = ft;
- lpPropArray[cProps].ulPropTag = PR_FREEBUSY_START_RANGE;
- lpPropArray[cProps++].Value.l = rtmStart;
- lpPropArray[cProps].ulPropTag = PR_FREEBUSY_END_RANGE;
- lpPropArray[cProps++].Value.l = rtmEnd;
- lpPropArray[cProps].ulPropTag = PR_FREEBUSY_NUM_MONTHS;
- lpPropArray[cProps++].Value.l = ulMonths;
- hr = m_lpMessage->SetProps(cProps, lpPropArray, NULL);
- if(hr != hrSuccess)
- goto exit;
- // Delete all free/busy data properties
- hr = m_lpMessage->DeleteProps(sPropsFBDelete, NULL);
- if(hr != hrSuccess)
- goto exit;
- if (CreateFBProp(fbKopanoAllBusy, ulMonths, PR_FREEBUSY_ALL_MONTHS,
- PR_FREEBUSY_ALL_EVENTS, &m_fbBlockList, &~lpPropFBDataArray) == hrSuccess) {
- hr = m_lpMessage->SetProps(2, lpPropFBDataArray, NULL);
- if(hr != hrSuccess)
- goto exit;
- }
- if (CreateFBProp(fbBusy, ulMonths, PR_FREEBUSY_BUSY_MONTHS,
- PR_FREEBUSY_BUSY_EVENTS, &m_fbBlockList, &~lpPropFBDataArray) == hrSuccess) {
- hr = m_lpMessage->SetProps(2, lpPropFBDataArray, NULL);
- if(hr != hrSuccess)
- goto exit;
- }
- if (CreateFBProp(fbTentative, ulMonths, PR_FREEBUSY_TENTATIVE_MONTHS,
- PR_FREEBUSY_TENTATIVE_EVENTS, &m_fbBlockList, &~lpPropFBDataArray) == hrSuccess) {
- hr = m_lpMessage->SetProps(2, lpPropFBDataArray, NULL);
- if(hr != hrSuccess)
- goto exit;
- }
- if (CreateFBProp(fbOutOfOffice, ulMonths, PR_FREEBUSY_OOF_MONTHS,
- PR_FREEBUSY_OOF_EVENTS, &m_fbBlockList, &~lpPropFBDataArray) == hrSuccess) {
- hr = m_lpMessage->SetProps(2, lpPropFBDataArray, NULL);
- if(hr != hrSuccess)
- goto exit;
- }
- hr = m_lpMessage->SaveChanges(KEEP_OPEN_READWRITE);
- if(hr != hrSuccess)
- goto exit;
- exit:
- m_fbBlockList.Reset();
- return hr;
- }
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusyUpdate, FreeBusyUpdate, QueryInterface, (REFIID, refiid), (void**, lppInterface))
- DEF_ULONGMETHOD1(TRACE_MAPI, ECFreeBusyUpdate, FreeBusyUpdate, AddRef, (void))
- DEF_ULONGMETHOD1(TRACE_MAPI, ECFreeBusyUpdate, FreeBusyUpdate, Release, (void))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusyUpdate, FreeBusyUpdate, Reload, (void))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusyUpdate, FreeBusyUpdate, PublishFreeBusy, (FBBlock_1 *, lpBlocks), (ULONG, nBlocks))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusyUpdate, FreeBusyUpdate, RemoveAppt, (void))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusyUpdate, FreeBusyUpdate, ResetPublishedFreeBusy, (void))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusyUpdate, FreeBusyUpdate, ChangeAppt, (void))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusyUpdate, FreeBusyUpdate, SaveChanges, (FILETIME, ftBegin), (FILETIME, ftEnd))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusyUpdate, FreeBusyUpdate, GetFBTimes, (void))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusyUpdate, FreeBusyUpdate, Intersect, (void))
- } /* namespace */
|