1 // frmContactEditor-LoadLogo.cpp - frmContactEditor load logo subroutines.
3 // (c) 2012-2015 Xestia Software Development.
5 // This file is part of Xestia Address Book.
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.
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.
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::LoadLogo(wxString wxSPropertySeg1, wxString wxSPropertySeg2, int *LogoCount){
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;
40 SplitValues(&wxSPropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
44 // Look for type before continuing.
46 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
47 intiter != SplitPoints.end(); ++intiter){
49 SLiter = SplitLength.find(intiter->first);
51 PropertyData = wxSPropertySeg1.Mid(intPrevValue, (SLiter->second));
53 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
54 PropertyName = PropertyElement.GetNextToken();
55 PropertyValue = PropertyElement.GetNextToken();
57 intPrevValue = intiter->second;
59 if (PropertyName == wxT("TYPE")){
61 if (PropertyValue == wxT("work")){
65 } else if (PropertyValue == wxT("home")){
79 // Setup blank lines for later on.
81 LogosList.insert(std::make_pair(intValueSeek, ""));
82 LogosListType.insert(std::make_pair(intValueSeek, wxT("")));
83 LogosListAltID.insert(std::make_pair(intValueSeek, wxT("")));
84 LogosListPID.insert(std::make_pair(intValueSeek, wxT("")));
85 LogosListPref.insert(std::make_pair(intValueSeek, 0));
86 LogosListPicEncType.insert(std::make_pair(intValueSeek, wxT("")));
87 LogosListPictureType.insert(std::make_pair(intValueSeek, wxT("")));
88 LogosListTokens.insert(std::make_pair(intValueSeek, wxT("")));
89 LogosListMediatype.insert(std::make_pair(intValueSeek, wxT("")));
93 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
94 intiter != SplitPoints.end(); ++intiter){
96 SLiter = SplitLength.find(intiter->first);
98 PropertyData = wxSPropertySeg1.Mid(intPrevValue, (SLiter->second));
100 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
101 PropertyName = PropertyElement.GetNextToken();
102 PropertyValue = PropertyElement.GetNextToken();
104 intPrevValue = intiter->second;
106 // Process properties.
108 size_t intPropertyValueLen = PropertyValue.Len();
110 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
112 PropertyValue.Trim();
113 PropertyValue.RemoveLast();
117 if (PropertyValue.Mid(0, 1) == wxT("\"")){
119 PropertyValue.Remove(0, 1);
123 ProcessCaptureStrings(&PropertyValue);
125 if (PropertyName == wxT("ALTID")){
127 if (intType == 0){ LogosListAltID.erase(intValueSeek); LogosListAltID.insert(std::make_pair(intValueSeek, PropertyValue)); }
128 else if (intType == 1){ LogosListAltID.erase(intValueSeek); LogosListAltID.insert(std::make_pair(intValueSeek, PropertyValue)); }
129 else if (intType == 2){ LogosListAltID.erase(intValueSeek); LogosListAltID.insert(std::make_pair(intValueSeek, PropertyValue)); }
131 } else if (PropertyName == wxT("PID")){
133 if (intType == 0){ LogosListPID.erase(intValueSeek); LogosListPID.insert(std::make_pair(intValueSeek, PropertyValue)); }
134 else if (intType == 1){ LogosListPID.erase(intValueSeek); LogosListPID.insert(std::make_pair(intValueSeek, PropertyValue)); }
135 else if (intType == 2){ LogosListPID.erase(intValueSeek); LogosListPID.insert(std::make_pair(intValueSeek, PropertyValue)); }
137 } else if (PropertyName == wxT("PREF")){
139 intPref = wxAtoi(PropertyValue);
141 if (intType == 0){ LogosListPref.erase(intValueSeek); LogosListPref.insert(std::make_pair(intValueSeek, intPref)); }
142 else if (intType == 1){ LogosListPref.erase(intValueSeek); LogosListPref.insert(std::make_pair(intValueSeek, intPref)); }
143 else if (intType == 2){ LogosListPref.erase(intValueSeek); LogosListPref.insert(std::make_pair(intValueSeek, intPref)); }
145 } else if (PropertyName == wxT("MEDIATYPE")){
147 if (intType == 0){ LogosListMediatype.erase(intValueSeek); LogosListMediatype.insert(std::make_pair(intValueSeek, PropertyValue)); }
148 else if (intType == 1){ LogosListMediatype.erase(intValueSeek); LogosListMediatype.insert(std::make_pair(intValueSeek, PropertyValue)); }
149 else if (intType == 2){ LogosListMediatype.erase(intValueSeek); LogosListMediatype.insert(std::make_pair(intValueSeek, PropertyValue)); }
153 // Something else we don't know about so append
154 // to the tokens variable.
156 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
158 if (FirstToken == TRUE){
160 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
165 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
175 intPropertyLen = wxSPropertySeg2.Len();
182 wxString wxSPhotoURI;
183 wxString wxSPhotoMIME;
184 wxString wxSPhotoEncoding;
185 wxString wxSPhotoData;
186 std::string base64enc;
188 ProcessCaptureStrings(&wxSPropertySeg2);
190 if (intSplitsFound == 0){
194 std::map<int, int>::iterator striter;
196 striter = SplitLength.find(1);
198 wxStringTokenizer wSTDataType(wxSPropertySeg2.Mid(0, striter->second), wxT(":"));
200 while (wSTDataType.HasMoreTokens() == TRUE){
202 wxSPhotoURI = wSTDataType.GetNextToken();
203 wxSPhotoMIME = wSTDataType.GetNextToken();
208 wxStringTokenizer wSTDataInfo(wxSPropertySeg2.Mid((striter->second + 1)), wxT(","));
210 while (wSTDataInfo.HasMoreTokens() == TRUE){
212 wxSPhotoEncoding = wSTDataInfo.GetNextToken();
213 wxSPhotoData = wSTDataInfo.GetNextToken();
214 base64enc = wxSPhotoData.mb_str();
221 // Add the data to the General/Home/Work address variables.
225 coldata.SetId(intValueSeek);
226 coldata.SetData(intValueSeek);
227 coldata.SetText(_("Picture"));
229 ListCtrlIndex = lboLogos->InsertItem(coldata);
231 if (intPref > 0 && intPref < 101){
233 lboLogos->SetItem(ListCtrlIndex, 2, wxString::Format(wxT("%i"), intPref));
237 LogosList.erase(intValueSeek);
238 LogosListType.erase(intValueSeek);
239 LogosListTokens.erase(intValueSeek);
240 LogosListPictureType.erase(intValueSeek);
241 LogosListPicEncType.erase(intValueSeek);
242 LogosList.insert(std::make_pair(intValueSeek, base64enc));
243 LogosListPictureType.insert(std::make_pair(intValueSeek, wxSPhotoMIME));
244 LogosListPicEncType.insert(std::make_pair(intValueSeek, wxSPhotoEncoding));
248 LogosListType.insert(std::make_pair(intValueSeek, wxT("")));
250 } else if (intType == 1){
252 LogosListType.insert(std::make_pair(intValueSeek, wxT("home")));
253 lboLogos->SetItem(ListCtrlIndex, 1, _("Home"));
255 } else if (intType == 2){
257 LogosListType.insert(std::make_pair(intValueSeek, wxT("work")));
258 lboLogos->SetItem(ListCtrlIndex, 1, _("Work"));
262 LogosListTokens.insert(std::make_pair(intValueSeek, PropertyTokens));