123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- /*
- * 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 <utility>
- #include "vfreebusy.h"
- #include <mapiutil.h>
- #include <kopano/mapiext.h>
- #include "nameids.h"
- using namespace std;
- namespace KC {
- /**
- * Converts a VFREEBUSY object to separate parts
- *
- * @param[in] lpFbcomp The ical component containing the VFREEBUSY
- * @param[out] lptStart Returns the DTSTART property
- * @param[out] lptEnd Returns the DTEND property
- * @param[out] lpstrUID Returns the UID property
- * @param[out] lstUsers Appends any email addresses of ATTENDEEs listed
- *
- * @return Always hrSuccess
- */
- HRESULT HrGetFbInfo(icalcomponent *lpFbcomp, time_t *lptStart, time_t *lptEnd, std::string *lpstrUID, std::list<std::string> *lstUsers)
- {
- HRESULT hr = hrSuccess;
- icalproperty *lpicProp = NULL;
- std::string strEmail;
- // DTSTART
- lpicProp = icalcomponent_get_first_property(lpFbcomp, ICAL_DTSTART_PROPERTY);
- if (lpicProp)
- *lptStart = icaltime_as_timet (icalproperty_get_dtstart (lpicProp));
- // DTEND
- lpicProp = icalcomponent_get_first_property(lpFbcomp, ICAL_DTEND_PROPERTY);
- if (lpicProp)
- *lptEnd = icaltime_as_timet (icalproperty_get_dtend (lpicProp));
- // UID
- lpicProp = icalcomponent_get_first_property(lpFbcomp, ICAL_UID_PROPERTY);
- if (lpicProp)
- *lpstrUID = icalproperty_get_uid(lpicProp);
- // ATTENDEE
- lpicProp = icalcomponent_get_first_property(lpFbcomp, ICAL_ATTENDEE_PROPERTY);
- while (lpicProp) {
- strEmail = icalproperty_get_attendee(lpicProp);
- if (strncasecmp(strEmail.c_str(), "mailto:", 7) == 0) {
- strEmail.erase(0, 7);
- }
- lstUsers->push_back(std::move(strEmail));
- lpicProp = icalcomponent_get_next_property(lpFbcomp, ICAL_ATTENDEE_PROPERTY);
- }
- return hr;
- }
- /**
- * Converts a MAPI freebusy block to a VFREEBUSY ical component.
- *
- * @param[in] lpsFbblk MAPI freebusy info blocks
- * @param[in] ulBlocks Number of blocks in lpsFbblk
- * @param[in] tDtStart Unix timestamp with the start date
- * @param[in] tDtEnd Unix timestamp with the end date
- * @param[in] strOrganiser The email address of the organiser
- * @param[in] strUser The email address of an attendee
- * @param[in] strUID UID of the freebusy data
- * @param[out] lpicFbComponent new VFREEBUSY ical component
- *
- * @return MAPI error code
- */
- HRESULT HrFbBlock2ICal(FBBlock_1 *lpsFbblk, LONG ulBlocks, time_t tDtStart, time_t tDtEnd, const std::string &strOrganiser, const std::string &strUser, const std::string &strUID, icalcomponent **lpicFbComponent)
- {
- icalcomponent *lpFbComp = NULL;
- icaltimetype ittStamp;
- icalproperty *lpicProp = NULL;
- icalperiodtype icalPeriod;
- icalparameter *icalParam = NULL;
- time_t tStart = 0;
- time_t tEnd = 0;
- std::string strEmail;
- lpFbComp = icalcomponent_new(ICAL_VFREEBUSY_COMPONENT);
- if (lpFbComp == NULL)
- return MAPI_E_INVALID_PARAMETER;
-
- //DTSTART
- ittStamp = icaltime_from_timet_with_zone(tDtStart, false, icaltimezone_get_utc_timezone());
- lpicProp = icalproperty_new(ICAL_DTSTART_PROPERTY);
- if (lpicProp == NULL)
- return MAPI_E_NOT_ENOUGH_MEMORY;
- icalproperty_set_value(lpicProp, icalvalue_new_datetime(ittStamp));
- icalcomponent_add_property(lpFbComp, lpicProp);
- //DTEND
- ittStamp = icaltime_from_timet_with_zone(tDtEnd, false, icaltimezone_get_utc_timezone());
- lpicProp = icalproperty_new(ICAL_DTEND_PROPERTY);
- if (lpicProp == NULL)
- return MAPI_E_NOT_ENOUGH_MEMORY;
- icalproperty_set_value(lpicProp, icalvalue_new_datetime(ittStamp));
- icalcomponent_add_property(lpFbComp, lpicProp);
- //DTSTAMP
- ittStamp = icaltime_from_timet_with_zone(time(NULL), false, icaltimezone_get_utc_timezone());
- lpicProp = icalproperty_new(ICAL_DTSTAMP_PROPERTY);
- if (lpicProp == NULL)
- return MAPI_E_NOT_ENOUGH_MEMORY;
- icalproperty_set_value(lpicProp, icalvalue_new_datetime(ittStamp));
- icalcomponent_add_property(lpFbComp, lpicProp);
-
- //UID
- lpicProp = icalproperty_new(ICAL_UID_PROPERTY);
- if (lpicProp == NULL)
- return MAPI_E_NOT_ENOUGH_MEMORY;
- icalproperty_set_uid(lpicProp, strUID.c_str());
- icalcomponent_add_property(lpFbComp, lpicProp);
- //ORGANIZER
- lpicProp = icalproperty_new(ICAL_ORGANIZER_PROPERTY);
- if (lpicProp == NULL)
- return MAPI_E_NOT_ENOUGH_MEMORY;
- icalproperty_set_organizer(lpicProp, strOrganiser.c_str());
- icalcomponent_add_property(lpFbComp, lpicProp);
-
- //ATTENDEE
- strEmail = "mailto:" + strUser;
- lpicProp = icalproperty_new_attendee(strEmail.c_str());
- if (lpicProp == NULL)
- return MAPI_E_NOT_ENOUGH_MEMORY;
-
- // param PARTSTAT
- icalParam = icalparameter_new_partstat(ICAL_PARTSTAT_ACCEPTED);
- icalproperty_add_parameter(lpicProp, icalParam);
-
- // param CUTYPE
- icalParam = icalparameter_new_cutype(ICAL_CUTYPE_INDIVIDUAL);
- icalproperty_add_parameter(lpicProp, icalParam);
- icalcomponent_add_property(lpFbComp, lpicProp);
- // add all freebusy blocks
- for (int i = 0; i < ulBlocks; ++i) {
- // FREEBUSY
- lpicProp = icalproperty_new(ICAL_FREEBUSY_PROPERTY);
- if (lpicProp == NULL)
- return MAPI_E_NOT_ENOUGH_MEMORY;
- RTimeToUnixTime(lpsFbblk[i].m_tmStart, &tStart);
- RTimeToUnixTime(lpsFbblk[i].m_tmEnd, &tEnd);
- icalPeriod.start = icaltime_from_timet_with_zone(tStart, false, icaltimezone_get_utc_timezone());
- icalPeriod.end = icaltime_from_timet_with_zone(tEnd, false, icaltimezone_get_utc_timezone());
-
- icalproperty_set_freebusy(lpicProp, icalPeriod);
- switch (lpsFbblk[i].m_fbstatus)
- {
- case fbBusy:
- icalParam = icalparameter_new_fbtype (ICAL_FBTYPE_BUSY);
- break;
- case fbTentative:
- icalParam = icalparameter_new_fbtype (ICAL_FBTYPE_BUSYTENTATIVE);
- break;
- case fbOutOfOffice:
- icalParam = icalparameter_new_fbtype (ICAL_FBTYPE_BUSYUNAVAILABLE);
- break;
- default:
- icalParam = icalparameter_new_fbtype (ICAL_FBTYPE_FREE);
- break;
- }
-
- icalproperty_add_parameter (lpicProp, icalParam);
- icalcomponent_add_property(lpFbComp,lpicProp);
- }
-
- icalcomponent_end_component(lpFbComp, ICAL_VFREEBUSY_COMPONENT);
- *lpicFbComponent = lpFbComp;
- return hrSuccess;
- }
- } /* namespace */
|