12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /*
- * 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 "ECDatabase.h"
- #include <mapidefs.h>
- #include <edkmdb.h>
- #include "ECSecurity.h"
- #include "ECSessionManager.h"
- #include "ECGenProps.h"
- #include "ECSession.h"
- #include <kopano/stringutil.h>
- #include "ECMailBoxTable.h"
- namespace KC {
- ECMailBoxTable::ECMailBoxTable(ECSession *lpSession, unsigned int ulFlags, const ECLocale &locale) :
- ECStoreObjectTable(lpSession, 0, NULL, 0, MAPI_STORE, ulFlags, TABLE_FLAG_OVERRIDE_HOME_MDB, locale)
- {
- m_ulStoreTypes = 3; // 1. Show all users store 2. Public stores
- }
- ECRESULT ECMailBoxTable::Create(ECSession *lpSession, unsigned int ulFlags, const ECLocale &locale, ECMailBoxTable **lppTable)
- {
- *lppTable = new(std::nothrow) ECMailBoxTable(lpSession, ulFlags, locale);
- if (*lppTable == nullptr)
- return KCERR_NOT_ENOUGH_MEMORY;
- (*lppTable)->AddRef();
- return erSuccess;
- }
- ECRESULT ECMailBoxTable::Load()
- {
- ECRESULT er = erSuccess;
- ECDatabase *lpDatabase = NULL;
- DB_RESULT lpDBResult;
- DB_ROW lpDBRow = NULL;
- std::string strQuery;
- std::list<unsigned int> lstObjIds;
- er = lpSession->GetDatabase(&lpDatabase);
- if (er != erSuccess)
- return er;
- Clear();
- //@todo Load all stores depends on m_ulStoreTypes, 1. privates, 2. publics or both
- strQuery = "SELECT hierarchy_id FROM stores";
- er = lpDatabase->DoSelect(strQuery, &lpDBResult);
- if(er != erSuccess)
- return er;
- while(1) {
- lpDBRow = lpDatabase->FetchRow(lpDBResult);
- if(lpDBRow == NULL)
- break;
- if (!lpDBRow[0])
- continue; // Broken store table?
- lstObjIds.push_back(atoui(lpDBRow[0]));
- }
- LoadRows(&lstObjIds, 0);
- return erSuccess;
- }
- } /* namespace */
|