Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added code to process ATTACH in CalendarEventObject.
authorSteve Brokenshire <sbrokenshire@xestia.co.uk>
Wed, 27 Jan 2016 13:28:19 +0000 (13:28 +0000)
committerSteve Brokenshire <sbrokenshire@xestia.co.uk>
Wed, 27 Jan 2016 13:28:19 +0000 (13:28 +0000)
source/objects/calendarevent/CalendarEvent.cpp

index 50b535b..f26420d 100644 (file)
@@ -180,6 +180,7 @@ void CalendarEventObject::ProcessData(){
        multimap<string,string> DataReceived;
        map<string,string> PropertyData;
        string *PropertyNameData = nullptr;
+       int ObjectSeekCount = 0;
        
        // Get the Date Time Stamp (DTSTAMP).
        
@@ -830,4 +831,66 @@ void CalendarEventObject::ProcessData(){
                
        }
        
+       // Process the data from ATTACH.
+       
+       DataReceived = ProcessTextVectors(&ObjectName, &ObjectData, true, "ATTACH");
+       
+       for(multimap<string,string>::iterator iter = DataReceived.begin(); 
+               iter != DataReceived.end(); 
+               ++iter){
+               
+               AttachListEncoding.push_back("");
+               AttachListValue.push_back("");
+               AttachListFormatType.push_back("");
+               AttachListTokens.push_back("");
+               AttachList.push_back("");
+                       
+               bool TokenData = false;
+               string PropertyTokens;
+               
+               PropertyNameData = (string*)&iter->first;
+               
+               PropertyData = SplitValues(*PropertyNameData);
+                       
+               for(map<string,string>::iterator dataiter = PropertyData.begin();
+                       dataiter != PropertyData.end(); dataiter++){
+                       
+                       if (dataiter->first == "ENCODING"){
+                               
+                               AttachListEncoding[ObjectSeekCount] = dataiter->second;
+                               
+                       } else if (dataiter->first == "VALUE"){
+                               
+                               AttachListValue[ObjectSeekCount] = dataiter->second;
+                               
+                       } else if (dataiter->first == "FMTTYPE"){
+                               
+                               AttachListFormatType[ObjectSeekCount] = dataiter->second;
+                               
+                       } else {
+                               
+                               if (TokenData == false){
+                                       TokenData = true;
+                               } else {
+                                       PropertyTokens += ";";
+                               }
+                               
+                               PropertyTokens += dataiter->first;
+                               PropertyTokens += "=";
+                               PropertyTokens += dataiter->second;
+                               
+                       }
+                               
+               }
+               
+               if (PropertyTokens.size() > 0){
+                       AttachListTokens[ObjectSeekCount] = PropertyTokens;
+               }
+                       
+               AttachList[ObjectSeekCount] = iter->second;
+               
+               ObjectSeekCount++;
+               
+       }
+       
 }
Xestia Software Development
Yn Maystri
© 2006 - 2019 Xestia Software Development
Software

Xestia Address Book
Xestia Calendar
Development

Xestia Gelforn
Everything else

About
News
Privacy Policy