/* MAPIStoreFSMessage.m - this file is part of SOGo * * Copyright (C) 2011 Inverse inc * * Author: Wolfgang Sourdeau * * This file is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3, or (at your option) * any later version. * * This file 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #import #import #import #import "MAPIStoreContext.h" #import "MAPIStorePropertySelectors.h" #import "SOGoMAPIFSMessage.h" #import "MAPIStoreFSMessage.h" #import "MAPIStoreTypes.h" #import "NSData+MAPIStore.h" #undef DEBUG #include #include @implementation MAPIStoreFSMessage + (int) getAvailableProperties: (struct SPropTagArray **) propertiesP inMemCtx: (TALLOC_CTX *) memCtx { struct SPropTagArray *properties; NSUInteger count; enum MAPITAGS faiProperties[] = { 0x68350102, 0x683c0102, 0x683e0102, 0x683f0102, 0x68410003, 0x68420102, 0x68450102, 0x68460003 }; properties = talloc_zero (memCtx, struct SPropTagArray); properties->cValues = MAPIStoreSupportedPropertiesCount + 8; properties->aulPropTag = talloc_array (NULL, enum MAPITAGS, MAPIStoreSupportedPropertiesCount + 8); for (count = 0; count < MAPIStoreSupportedPropertiesCount; count++) properties->aulPropTag[count] = MAPIStoreSupportedProperties[count]; /* FIXME (hack): append a few undocumented properties that can be added to FAI messages */ for (count = 0; count < 8; count++) properties->aulPropTag[MAPIStoreSupportedPropertiesCount+count] = faiProperties[count]; *propertiesP = properties; return MAPISTORE_SUCCESS; } - (void) save { uint64_t newVersion; if ([attachmentKeys count] > 0) [properties setObject: attachmentParts forKey: @"attachments"]; newVersion = exchange_globcnt ([[self context] getNewChangeNumber] >> 16); [properties setObject: [NSNumber numberWithUnsignedLongLong: newVersion] forKey: @"version"]; [self logWithFormat: @"%d props in dict", [properties count]]; [sogoObject appendProperties: properties]; [sogoObject save]; [self resetProperties]; } - (NSDate *) creationTime { return [sogoObject creationTime]; } - (NSDate *) lastModificationTime { return [sogoObject lastModificationTime]; } @end