123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- /*
- * 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 "phpconfig.h"
- #include <kopano/platform.h>
- #include <kopano/ecversion.h>
- #include <cstdio>
- #include <ctime>
- #include <cmath>
- extern "C" {
- // Remove these defines to remove warnings
- #undef PACKAGE_VERSION
- #undef PACKAGE_TARNAME
- #undef PACKAGE_NAME
- #undef PACKAGE_STRING
- #undef PACKAGE_BUGREPORT
-
- #include "php.h"
- #include "php_globals.h"
- #include "ext/standard/info.h"
- #include "ext/standard/php_string.h"
- }
- // A very, very nice PHP #define that causes link errors in MAPI when you have multiple
- // files referencing MAPI....
- #undef inline
- /***************************************************************
- * MAPI Includes
- ***************************************************************/
- #include <mapi.h>
- #include <mapix.h>
- #include <mapiutil.h>
- #include <mapispi.h>
- #include <mapitags.h>
- #include <mapicode.h>
- #define USES_IID_IMAPIProp
- #define USES_IID_IMAPIContainer
- #define USES_IID_IMsgStore
- #define USES_IID_IMessage
- #define USES_IID_IExchangeManageStore
- #include <edkguid.h>
- #include <edkmdb.h>
- #include "ECImportHierarchyChangesProxy.h"
- #include "typeconversion.h"
- ECImportHierarchyChangesProxy::ECImportHierarchyChangesProxy(zval *lpObj TSRMLS_DC) :
- m_cRef(1), m_lpObj(lpObj)
- {
- #if ZEND_MODULE_API_NO >= 20071006
- Z_ADDREF_P(m_lpObj);
- #else
- ZVAL_ADDREF(m_lpObj);
- #endif
- #ifdef ZTS
- this->TSRMLS_C = TSRMLS_C;
- #endif
- }
- ECImportHierarchyChangesProxy::~ECImportHierarchyChangesProxy() {
- zval_ptr_dtor(&m_lpObj);
- }
- ULONG ECImportHierarchyChangesProxy::AddRef() {
- return ++m_cRef;
- }
- ULONG ECImportHierarchyChangesProxy::Release() {
- if (--m_cRef == 0) {
- delete this;
- return 0;
- }
-
- return m_cRef;
- }
- HRESULT ECImportHierarchyChangesProxy::QueryInterface(REFIID iid, void **lpvoid) {
- if(iid == IID_IExchangeImportHierarchyChanges) {
- AddRef();
- *lpvoid = this;
- return hrSuccess;
- }
- return MAPI_E_INTERFACE_NOT_SUPPORTED;
- }
- HRESULT ECImportHierarchyChangesProxy::GetLastError(HRESULT hResult, ULONG ulFlags, LPMAPIERROR *lppMAPIError) {
- return MAPI_E_NO_SUPPORT;
- }
- HRESULT ECImportHierarchyChangesProxy::Config(LPSTREAM lpStream, ULONG ulFlags) {
- HRESULT hr = hrSuccess;
-
- zval *pvalFuncName;
- zval *pvalReturn;
- zval *pvalArgs[2];
-
- MAKE_STD_ZVAL(pvalFuncName);
- MAKE_STD_ZVAL(pvalReturn);
-
- MAKE_STD_ZVAL(pvalArgs[0]);
- MAKE_STD_ZVAL(pvalArgs[1]);
- if (lpStream != nullptr)
- ZVAL_RESOURCE(pvalArgs[0], (long)lpStream);
- else
- ZVAL_NULL(pvalArgs[0]);
-
- ZVAL_LONG(pvalArgs[1], ulFlags);
-
- ZVAL_STRING(pvalFuncName, "Config" , 1);
-
- if(call_user_function(NULL, &m_lpObj, pvalFuncName, pvalReturn, 2, pvalArgs TSRMLS_CC) == FAILURE) {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "Config method not present on ImportHierarchyChanges object");
- hr = MAPI_E_CALL_FAILED;
- goto exit;
- }
-
- convert_to_long_ex(&pvalReturn);
-
- hr = pvalReturn->value.lval;
- exit:
- zval_ptr_dtor(&pvalFuncName);
- zval_ptr_dtor(&pvalReturn);
- zval_ptr_dtor(&pvalArgs[0]);
- zval_ptr_dtor(&pvalArgs[1]);
-
- return hr;
- }
- HRESULT ECImportHierarchyChangesProxy::UpdateState(LPSTREAM lpStream) {
- HRESULT hr = hrSuccess;
-
- zval *pvalFuncName;
- zval *pvalReturn;
- zval *pvalArgs[1];
-
- MAKE_STD_ZVAL(pvalFuncName);
- MAKE_STD_ZVAL(pvalReturn);
-
- MAKE_STD_ZVAL(pvalArgs[0]);
- if (lpStream != nullptr)
- ZVAL_RESOURCE(pvalArgs[0], (long)lpStream);
- else
- ZVAL_NULL(pvalArgs[0]);
-
- ZVAL_STRING(pvalFuncName, "UpdateState" , 1);
-
- if(call_user_function(NULL, &m_lpObj, pvalFuncName, pvalReturn, 1, pvalArgs TSRMLS_CC) == FAILURE) {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "UpdateState method not present on ImportHierarchyChanges object");
- hr = MAPI_E_CALL_FAILED;
- goto exit;
- }
-
- convert_to_long_ex(&pvalReturn);
-
- hr = pvalReturn->value.lval;
- exit:
- zval_ptr_dtor(&pvalFuncName);
- zval_ptr_dtor(&pvalReturn);
- zval_ptr_dtor(&pvalArgs[0]);
-
- return hr;
- }
- HRESULT ECImportHierarchyChangesProxy::ImportFolderChange(ULONG cValues, LPSPropValue lpPropArray) {
- zval *pvalFuncName;
- zval *pvalReturn;
- zval *pvalArgs[1];
- HRESULT hr = hrSuccess;
-
- MAKE_STD_ZVAL(pvalFuncName);
- MAKE_STD_ZVAL(pvalReturn);
- hr = PropValueArraytoPHPArray(cValues, lpPropArray, &pvalArgs[0] TSRMLS_CC);
- if(hr != hrSuccess) {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to convert MAPI propvalue array to PHP");
- goto exit;
- }
-
- ZVAL_STRING(pvalFuncName, "ImportFolderChange", 1);
-
- if(call_user_function(NULL, &m_lpObj, pvalFuncName, pvalReturn, 1, pvalArgs TSRMLS_CC) == FAILURE) {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "ImportFolderChange method not present on ImportHierarchyChanges object");
- hr = MAPI_E_CALL_FAILED;
- goto exit;
- }
-
- convert_to_long_ex(&pvalReturn);
-
- hr = pvalReturn->value.lval;
-
- if(hr != hrSuccess)
- goto exit;
- exit:
- zval_ptr_dtor(&pvalFuncName);
- zval_ptr_dtor(&pvalReturn);
- zval_ptr_dtor(&pvalArgs[0]);
-
- return hr;
- }
- HRESULT ECImportHierarchyChangesProxy::ImportFolderDeletion(ULONG ulFlags, LPENTRYLIST lpSourceEntryList) {
- HRESULT hr = hrSuccess;
-
- zval *pvalFuncName;
- zval *pvalReturn;
- zval *pvalArgs[2];
-
- MAKE_STD_ZVAL(pvalFuncName);
- MAKE_STD_ZVAL(pvalReturn);
-
- MAKE_STD_ZVAL(pvalArgs[0]);
- ZVAL_LONG(pvalArgs[0], ulFlags);
- SBinaryArraytoPHPArray(lpSourceEntryList, &pvalArgs[1] TSRMLS_CC);
- ZVAL_STRING(pvalFuncName, "ImportFolderDeletion" , 1);
-
- if(call_user_function(NULL, &m_lpObj, pvalFuncName, pvalReturn, 2, pvalArgs TSRMLS_CC) == FAILURE) {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "ImportFolderDeletion method not present on ImportHierarchyChanges object");
- hr = MAPI_E_CALL_FAILED;
- goto exit;
- }
-
- convert_to_long_ex(&pvalReturn);
-
- hr = pvalReturn->value.lval;
- exit:
- zval_ptr_dtor(&pvalFuncName);
- zval_ptr_dtor(&pvalReturn);
- zval_ptr_dtor(&pvalArgs[0]);
- zval_ptr_dtor(&pvalArgs[1]);
-
- return hr;
- }
|