Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added copyright and license header to the C++ source and header files in the contacte...
[xestiaab/.git] / source / contacteditor / frmContactEditor-LoadPhoto.cpp
1 // frmContactEditor-LoadPhoto.cpp - frmContactEditor load photo subroutines.
2 //
3 // (c) 2012-2015 Xestia Software Development.
4 //
5 // This file is part of Xestia Address Book.
6 //
7 // Xestia Address Book is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by the
9 // Free Software Foundation, version 3 of the license.
10 //
11 // Xestia Address Book is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License along
17 // with Xestia Address Book. If not, see <http://www.gnu.org/licenses/>
19 #include "frmContactEditor.h"
20 #include "../common/base64.h"
22 void frmContactEditor::LoadPhoto(wxString wxSPropertySeg1, wxString wxSPropertySeg2, int *PhotoCount){
24         size_t intPropertyLen = wxSPropertySeg1.Len();
25         std::map<int, int> SplitPoints;
26         std::map<int, int> SplitLength;
27         std::map<int, int>::iterator SLiter;                    
28         wxString PropertyData;
29         wxString PropertyName;
30         wxString PropertyValue;
31         wxString PropertyTokens;
32         bool FirstToken = TRUE;
33         int intSplitsFound = 0;
34         int intSplitSize = 0;
35         int intPrevValue = 7;
36         int intPref = 0;                        
37         int intType = 0;
38         long ListCtrlIndex;
39         
40         SplitValues(&wxSPropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
41         
42         intPrevValue = 6;
43         
44         // Look for type before continuing.                     
45         
46         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
47         intiter != SplitPoints.end(); ++intiter){
48         
49                 SLiter = SplitLength.find(intiter->first);
50         
51                 PropertyData = wxSPropertySeg1.Mid(intPrevValue, (SLiter->second));
52                 
53                 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
54                 PropertyName = PropertyElement.GetNextToken();                          
55                 PropertyValue = PropertyElement.GetNextToken();
56                 
57                 intPrevValue = intiter->second;
58                 
59                 if (PropertyName == wxT("TYPE")){
60                 
61                         if (PropertyValue == wxT("work")){
62                         
63                                 intType = 2;                                    
64                         
65                         } else if (PropertyValue == wxT("home")){
67                                 intType = 1;
68                         
69                         } else {
70                         
71                                 intType = 0;
72                         
73                         }
74                 
75                 }
76         
77         }
78         
79         // Setup blank lines for later on.
80         
81         PicturesList.insert(std::make_pair(intValueSeek, ""));
82         PicturesListType.insert(std::make_pair(intValueSeek, wxT("")));
83         PicturesListAltID.insert(std::make_pair(intValueSeek, wxT("")));
84         PicturesListPID.insert(std::make_pair(intValueSeek, wxT("")));
85         PicturesListPref.insert(std::make_pair(intValueSeek, 0));
86         PicturesListPicEncType.insert(std::make_pair(intValueSeek, wxT("")));
87         PicturesListPictureType.insert(std::make_pair(intValueSeek, wxT("")));                  
88         PicturesListTokens.insert(std::make_pair(intValueSeek, wxT("")));
89         PicturesListMediatype.insert(std::make_pair(intValueSeek, wxT("")));
91         intPrevValue = 6;
93         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
94         intiter != SplitPoints.end(); ++intiter){
95         
96                 SLiter = SplitLength.find(intiter->first);
97         
98                 PropertyData = wxSPropertySeg1.Mid(intPrevValue, (SLiter->second));
99                 
100                 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
101                 PropertyName = PropertyElement.GetNextToken();                          
102                 PropertyValue = PropertyElement.GetNextToken();
103                 
104                 intPrevValue = intiter->second;
105                 
106                 // Process properties.
107                 
108                 size_t intPropertyValueLen = PropertyValue.Len();
109                 
110                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
111                         
112                         PropertyValue.Trim();
113                         PropertyValue.RemoveLast();
114                         
115                 }                               
116                 
117                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
118                         
119                         PropertyValue.Remove(0, 1);
120                         
121                 }
122                 
123                 ProcessCaptureStrings(&PropertyValue);          
124                 
125                 if (PropertyName == wxT("ALTID")){
127                         if (intType == 0){ PicturesListAltID.erase(intValueSeek); PicturesListAltID.insert(std::make_pair(intValueSeek, PropertyValue)); }
128                         else if (intType == 1){ PicturesListAltID.erase(intValueSeek); PicturesListAltID.insert(std::make_pair(intValueSeek, PropertyValue)); }
129                         else if (intType == 2){ PicturesListAltID.erase(intValueSeek); PicturesListAltID.insert(std::make_pair(intValueSeek, PropertyValue)); }
130                 
131                 } else if (PropertyName == wxT("PID")){
133                         if (intType == 0){ PicturesListPID.erase(intValueSeek); PicturesListPID.insert(std::make_pair(intValueSeek, PropertyValue)); }
134                         else if (intType == 1){ PicturesListPID.erase(intValueSeek); PicturesListPID.insert(std::make_pair(intValueSeek, PropertyValue)); }
135                         else if (intType == 2){ PicturesListPID.erase(intValueSeek); PicturesListPID.insert(std::make_pair(intValueSeek, PropertyValue)); }
136                 
137                 } else if (PropertyName == wxT("PREF")){
138                         
139                         intPref = wxAtoi(PropertyValue);
140                 
141                         if (intType == 0){ PicturesListPref.erase(intValueSeek); PicturesListPref.insert(std::make_pair(intValueSeek, intPref)); }
142                         else if (intType == 1){ PicturesListPref.erase(intValueSeek); PicturesListPref.insert(std::make_pair(intValueSeek, intPref)); }
143                         else if (intType == 2){ PicturesListPref.erase(intValueSeek); PicturesListPref.insert(std::make_pair(intValueSeek, intPref)); }
144                 
145                 } else if (PropertyName == wxT("MEDIATYPE")){
146                 
147                         if (intType == 0){ PicturesListMediatype.erase(intValueSeek); PicturesListMediatype.insert(std::make_pair(intValueSeek, PropertyValue)); }
148                         else if (intType == 1){ PicturesListMediatype.erase(intValueSeek); PicturesListMediatype.insert(std::make_pair(intValueSeek, PropertyValue)); }
149                         else if (intType == 2){ PicturesListMediatype.erase(intValueSeek); PicturesListMediatype.insert(std::make_pair(intValueSeek, PropertyValue)); }
150                 
151                 } else {
152                 
153                         // Something else we don't know about so append
154                         // to the tokens variable.
155                         
156                         if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
157                         
158                                 if (FirstToken == TRUE){
159                                 
160                                         PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
161                                         FirstToken = FALSE;
162                                 
163                                 } else {
164                                 
165                                         PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
166                                 
167                                 }
168                         
169                         }
170                 
171                 }
172         
173         }       
174         
175         intPropertyLen = wxSPropertySeg2.Len();
176         SplitPoints.clear();
177         SplitLength.clear();
178         intSplitsFound = 0;
179         intSplitSize = 0;
180         intPrevValue = 0;                       
181         
182         ProcessCaptureStrings(&wxSPropertySeg2);
183         
184         for (int i = 0; i <= intPropertyLen; i++){
186                 intSplitSize++;
187         
188                 if (wxSPropertySeg2.Mid(i, 1) == wxT(";")){
189         
190                         intSplitsFound++;
191                         SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
192                         
193                         if (intSplitsFound == 6){ 
194                         
195                                 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
196                                 break; 
197                                 
198                         } else {
199                         
200                                 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
201                         
202                         }
203                         
204                         intSplitSize = 0;                                       
205         
206                 }
208         }
209         
210         wxString wxSPhotoURI;
211         wxString wxSPhotoMIME;
212         wxString wxSPhotoEncoding;
213         wxString wxSPhotoData;
214         std::string base64enc;
215         
216         if (intSplitsFound == 0){
217         
218         } else {
219         
220                 std::map<int, int>::iterator striter;
221         
222                 striter = SplitLength.find(1);
223         
224                 wxStringTokenizer wSTDataType(wxSPropertySeg2.Mid(0, striter->second), wxT(":"));
225         
226                 while (wSTDataType.HasMoreTokens() == TRUE){
227                 
228                         wxSPhotoURI = wSTDataType.GetNextToken();
229                         wxSPhotoMIME = wSTDataType.GetNextToken();
230                         break;
231                 
232                 }                       
233         
234                 wxStringTokenizer wSTDataInfo(wxSPropertySeg2.Mid((striter->second + 1)), wxT(","));                    
235         
236                 while (wSTDataInfo.HasMoreTokens() == TRUE){
237                 
238                         wxSPhotoEncoding = wSTDataInfo.GetNextToken();
239                         wxSPhotoData = wSTDataInfo.GetNextToken();                                      
240                         base64enc = wxSPhotoData.mb_str();
241                         break;
242                 
243                 }
244         
245         }
246         
247         // Add the data to the General/Home/Work address variables.
248         
249         wxListItem coldata;
251         coldata.SetId(intValueSeek);
252         coldata.SetData(intValueSeek);
253         coldata.SetText(_("Picture"));
254         
255         ListCtrlIndex = lboPictures->InsertItem(coldata);
256                 
257         if (intPref > 0 && intPref < 101){
258                 
259                 lboPictures->SetItem(ListCtrlIndex, 2, wxString::Format(wxT("%i"), intPref));
260         
261         }
262                 
263         PicturesList.erase(intValueSeek);
264         PicturesListType.erase(intValueSeek);
265         PicturesListTokens.erase(intValueSeek);
266         PicturesListPictureType.erase(intValueSeek);
267         PicturesListPicEncType.erase(intValueSeek);
268         PicturesList.insert(std::make_pair(intValueSeek, base64enc));
269         PicturesListPictureType.insert(std::make_pair(intValueSeek, wxSPhotoMIME));
270         PicturesListPicEncType.insert(std::make_pair(intValueSeek, wxSPhotoEncoding));
271         
272         if (intType == 0){
273         
274                 PicturesListType.insert(std::make_pair(intValueSeek, wxT("")));
275         
276         } else if (intType == 1){
277         
278                 PicturesListType.insert(std::make_pair(intValueSeek, wxT("home")));
279                 lboPictures->SetItem(ListCtrlIndex, 1, _("Home"));
280         
281         } else if (intType == 2){
282         
283                 PicturesListType.insert(std::make_pair(intValueSeek, wxT("work")));
284                 lboPictures->SetItem(ListCtrlIndex, 1, _("Work"));
285         
286         }
287         
288         PicturesListTokens.insert(std::make_pair(intValueSeek, PropertyTokens));
289         
290         PhotoCount++;
291         intValueSeek++;
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