Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Commented out UIDProcessed as this isn't needed now.
[xestiaab/.git] / source / contacteditor / frmContactEditor-Load.cpp
1 // frmContactEditor-Load.cpp - frmContactEditor load contact 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 <map>
21 #include <wx/ffile.h>
22 #include <wx/tokenzr.h>
23 #include <wx/datetime.h>
24 #include <wx/dir.h>
26 #include "frmContactEditor.h"
28 #include "../enums.h"
29 #include "../version.h"
30 #include "../vcard/vcard.h"
31 #include "../common/textprocessing.h"
32 #include "../common/dirs.h"
33 #include "cdo/ContactDataObject.h"
35 bool frmContactEditor::LoadContact(wxString Filename){
37         // Load the contact into the contact editor.
38         
39         wxFFile ContactFile;
40         wxString wxSContactString;
41         wxString ContactLine;
42         vCard ContactData;
43         XABViewMode XVMData;
44         if (StartupEditMode == FALSE){
45                 XVMData = MainPtr->GetViewMode();
46         }
47         
48         wxSContactFilename = Filename;
49         
50         // Check if we are using wxWidgets version 2.8 or less and
51         // execute the required command accordingly.
52         
53 #if wxABI_VERSION < 20900
54         ContactFile.Open(Filename.c_str(), wxT("r"));
55 #else
56         ContactFile.Open(Filename, wxT("r"));
57 #endif  
58         
59         if (ContactFile.IsOpened() == FALSE){
60         
61                 return FALSE;
62         
63         }
64         
65         ContactEditorData.LoadFile(Filename);
66         
67         ContactFile.ReadAll(&wxSContactString, wxConvAuto());
68         
69         // Split the lines.
70         
71         std::map<int, wxString> ContactFileLines;
72         std::map<int, wxString>::iterator striter;
73         
74         wxStringTokenizer wSTContactFileLines(wxSContactString, wxT("\r\n"));
76         int ContactLineSeek = 0;
78         while (wSTContactFileLines.HasMoreTokens() == TRUE){
80                 ContactLine = wSTContactFileLines.GetNextToken();
81                 ContactFileLines.insert(std::make_pair(ContactLineSeek, ContactLine));
82                 ContactLineSeek++;              
83         
84         }
86         // Get the line.
88         bool QuoteMode = FALSE;
89         bool PropertyFind = TRUE;
90         bool HasExtraNicknames = FALSE;
91         bool IgnoreGender = FALSE;
92         bool ExtraLineSeek = TRUE;
93         //bool BirthdayProcessed = FALSE;
94         //bool AnniversaryProcessed = FALSE;
95         bool FNProcessed = FALSE;
96         bool GenderProcessed = FALSE;
97         bool NameProcessed = FALSE;
98         //bool UIDProcessed = FALSE;
99         //bool KindProcessed = FALSE;
100         bool ETagFound = FALSE;
101         bool ETagOrigFound = FALSE;
102         bool VersionProcessed = FALSE;
103         int intExtraNickname = 0;
104         wxString wxSProperty;
105         wxString wxSPropertySeg1;
106         wxString wxSPropertySeg2;
107         wxString wxSPropertyNextLine;
108         size_t ContactLineLen = 0;
109         int QuoteBreakPoint = 0;
110         int FNCount = 0;
111         int NameCount = 0;
112         int NicknameCount = 0;
113         int ADRCount = 0;
114         int EmailCount = 0;
115         int IMPPCount = 0;
116         int TelCount = 0;
117         int LangCount = 0;
118         int TZCount = 0;
119         int GeoCount = 0;
120         int URLCount = 0;
121         int RelatedCount = 0;
122         int TitleCount = 0;
123         int RoleCount = 0;
124         int OrgCount = 0;
125         int NoteCount = 0;
126         int CategoryCount = 0;
127         int GroupCount = 0;
128         int PhotoCount = 0;
129         int LogoCount = 0;
130         int SoundCount = 0;
131         int CalAdrCount = 0;
132         int CalReqAdrCount = 0;
133         int FreeBusyCount = 0;
134         int KeyCount = 0;
135         int VendorCount = 0;
136         int XTokenCount = 0;
137         //int intValueSeek = 1;
139         // Process the unique ID (UID)
140         
141         UIDToken = ContactEditorData.UIDToken;
143         // Process the contact type (KIND) (frmContactEditor-LoadGroup.cpp)
145         LoadKind(&ContactEditorData.ContactKind);
147         // Process the Birthday (BDAY) (frmContactEditor-LoadBADays.cpp)
148         
149         LoadBirthday(&ContactEditorData.Birthday, &ContactEditorData.BirthdayText);
151         // Process the Anniversary (ANNIVERSARY) (frmContactEditor-LoadBADays.cpp)
152         
153         LoadAnniversary(&ContactEditorData.Anniversary, &ContactEditorData.AnniversaryText);
155         // Process the Gender (GENDER) (frmContactEditor-LoadGender.cpp)
156         
157         LoadGender(&ContactEditorData.Gender, &ContactEditorData.GenderDetails);
159         for (std::map<int,wxString>::iterator iter = ContactFileLines.begin(); 
160          iter != ContactFileLines.end(); ++iter){
161         
162                 // Find the colon which splits the start bit from the data part.
163                 
164                 ContactLine = iter->second;
165                 
166                 while (ExtraLineSeek == TRUE){
167                 
168                         // Check if there is extra data on the next line 
169                         // (indicated by space or tab at the start) and add data.
170                 
171                         iter++;
172                         
173                         if (iter == ContactFileLines.end()){
174                         
175                                 iter--;
176                                 break;
177                         
178                         }                       
179                 
180                         wxSPropertyNextLine = iter->second;
181                         
182                 
183                         if (wxSPropertyNextLine.Mid(0, 1) == wxT(" ") || wxSPropertyNextLine.Mid(0, 1) == wxT("\t")){
184                 
185                                 wxSPropertyNextLine.Remove(0, 1);
186                                 //wxSPropertyNextLine.Trim(FALSE);
187                                 //ContactLine.Trim();
188                                 ContactLine.Append(wxSPropertyNextLine);
189                 
190                         } else {
191                         
192                                 iter--;
193                                 ExtraLineSeek = FALSE;
194                         
195                         }
196                 
197                 }
199                 ContactLineLen = ContactLine.Len();
200                 
201                 // Make sure we are not in quotation mode.
202                 // Make sure colon does not have \ or \\ before it.
203                 
204                 for (int i = 0; i <= ContactLineLen; i++){
205                 
206                         if ((ContactLine.Mid(i, 1) == wxT(";") || ContactLine.Mid(i, 1) == wxT(":")) && PropertyFind == TRUE){
207                         
208                                 PropertyFind = FALSE;
209                         
210                         } else if (PropertyFind == TRUE){
211                         
212                                 wxSProperty.Append(ContactLine.Mid(i, 1));
213                         
214                         }               
215                 
216                         if (ContactLine.Mid(i, 1) == wxT("\"")){
217                         
218                                 if (QuoteMode == TRUE){
219                                 
220                                         QuoteMode = FALSE;
221                                 
222                                 } else {
223                         
224                                         QuoteMode = TRUE;
225                                         
226                                 }
227                         
228                         }
229                         
230                         if (ContactLine.Mid(i, 1) == wxT(":") && ContactLine.Mid((i - 1), 1) != wxT("\\") && QuoteMode == FALSE){
231                         
232                                 QuoteBreakPoint = i;
233                                 break;
234                         
235                         }
236                 
237                 }
238                 
239                 // Split that line at the point into two variables (ignore the colon).
240                 
241                 wxSPropertySeg1 = ContactLine.Mid(0, QuoteBreakPoint);
242                 wxSPropertySeg2 = ContactLine.Mid((QuoteBreakPoint + 1));
243                 
244                 // Add the data into the contact editor depending on what it is.                                
245                 
246                 if (wxSProperty == wxT("VERSION") && VersionProcessed == FALSE){
247                 
248                         // Check if version is 4.0, otherwise don't
249                         // load.
250                         
251                         if (wxSPropertySeg2 != wxT("4.0")){
252                                 wxMessageBox(_("This file is not a vCard 4.0 contact and is not supported under Xestia Address Book."),
253                                         _("Contact not supported"), wxICON_ERROR);
254                                 this->Close();
255                                 return FALSE;
256                         }
257                         
258                         VersionProcessed = TRUE;
259                 
260                 }/* if (wxSProperty == wxT("KIND") && KindProcessed == FALSE){
261                 
262                         // See frmContactEditor-LoadGroup.cpp
263                 
264                         LoadKind(wxSPropertySeg2);
265                 
266                 }*/ else if (wxSProperty == wxT("MEMBER")){
268                         // See frmContactEditor-LoadGroup.cpp
270                         LoadMember(wxSPropertySeg2, &GroupCount);               
271                 
272                 } else if (wxSProperty == wxT("FN")){
273                 
274                         // See frmContactEditor-LoadName.cpp
275                 
276                         LoadFN(wxSPropertySeg1, wxSPropertySeg2, &FNCount, &FNProcessed, &ContactData);
277                 
278                 } else if (wxSProperty == wxT("N") && NameProcessed == FALSE){
279                 
280                         // See frmContactEditor-LoadName.cpp
281                 
282                         LoadN(wxSPropertySeg1, wxSPropertySeg2, &NameProcessed, &ContactData);
283                 
284                 } else if (wxSProperty == wxT("NICKNAME")){
285                         
286                         // See frmContactEditor-LoadNickname.cpp
287                         
288                         LoadNickname(wxSPropertySeg1, wxSPropertySeg2, &NicknameCount, &ContactData);
289                         
290                 }/* else if (wxSProperty == wxT("GENDER") && GenderProcessed == FALSE){
291                 
292                         // See frmContactEditor-LoadGender.cpp
293                 
294                         LoadGender(wxSPropertySeg1, wxSPropertySeg2, &GenderProcessed, &ContactData);
295                 
296                 } else if (wxSProperty == wxT("BDAY") && BirthdayProcessed == FALSE){
298                         // See frmContactEditor-LoadBADays.cpp
300                         LoadBDay(wxSPropertySeg1, wxSPropertySeg2, &BirthdayProcessed);
301                 
302                 } else if (wxSProperty == wxT("ANNIVERSARY") && AnniversaryProcessed == FALSE){
303                         
304                         // See frmContactEditor-LoadBADays.cpp
305                         
306                         LoadAnniversary(wxSPropertySeg1, wxSPropertySeg2, &AnniversaryProcessed);
307                 
308                 }*/ else if (wxSProperty == wxT("TZ")){
309                 
310                         // See frmContactEditor-LoadTimeZone.cpp
311                 
312                         LoadTimeZone(wxSPropertySeg1, wxSPropertySeg2, &TZCount);       
313                 
314                 } else if (wxSProperty == wxT("ADR")){
315                         
316                         // See frmContactEditor-LoadAddress.cpp
317                 
318                         LoadADR(wxSPropertySeg1, wxSPropertySeg2, &ADRCount);
319                 
320                 } else if (wxSProperty == wxT("EMAIL")){
321                 
322                         // See frmContactEditor-LoadEmail.cpp
323                         
324                         LoadEmail(wxSPropertySeg1, wxSPropertySeg2, &EmailCount);       
325                 
326                 } else if (wxSProperty == wxT("IMPP")){
327                 
328                         // See frmContactEditor-LoadIM.cpp
329                 
330                         LoadIM(wxSPropertySeg1, wxSPropertySeg2, &IMPPCount);
331                 
332                 } else if (wxSProperty == wxT("TEL")){
333                 
334                         // See frmContactEditor-LoadTelephone.cpp
335                 
336                         LoadTelephone(wxSPropertySeg1, wxSPropertySeg2, &TelCount);
337                 
338                 } else if (wxSProperty == wxT("LANG")){
339                 
340                         // See frmContactEditor-LoadLanguage.cpp
341                         
342                         LoadLanguage(wxSPropertySeg1, wxSPropertySeg2, &LangCount);
343                 
344                 } else if (wxSProperty == wxT("GEO")){
345                 
346                         // See frmContactEditor-LoadGeo.cpp
347                         
348                         LoadGeo(wxSPropertySeg1, wxSPropertySeg2, &GeoCount);   
349                 
350                 } else if (wxSProperty == wxT("RELATED")){
351                         
352                         // See fromContactEditor-LoadRelated.cpp
353                         
354                         LoadRelated(wxSPropertySeg1, wxSPropertySeg2, &RelatedCount);           
355                 
356                 } else if (wxSProperty == wxT("URL")){
358                         // See frmContactEditor-LoadURL.cpp
359                 
360                         LoadURL(wxSPropertySeg1, wxSPropertySeg2, &URLCount);
361                 
362                 } else if (wxSProperty == wxT("TITLE")) {
363                 
364                         // See frmContactEditor-LoadTitle.cpp
365                         
366                         LoadTitle(wxSPropertySeg1, wxSPropertySeg2, &TitleCount);
367                         
368                 } else if (wxSProperty == wxT("ROLE")) {
370                         // See frmContactEditor-LoadRole.cpp
371                 
372                         LoadRole(wxSPropertySeg1, wxSPropertySeg2, &RoleCount);
373                         
374                 } else if (wxSProperty == wxT("ORG")) {
375                 
376                         // See frmContactEditor-LoadOrg.cpp
377                         
378                         LoadOrg(wxSPropertySeg1, wxSPropertySeg2, &OrgCount);
379                         
380                 } else if (wxSProperty == wxT("NOTE")) {
382                         // See frmContactEditor-LoadNote.cpp
384                         LoadNote(wxSPropertySeg1, wxSPropertySeg2, &NoteCount); 
385                         
386                 } else if (wxSProperty == wxT("CATEGORIES")) {
387                 
388                         // See frmContactEditor-LoadCategory.cpp
389                 
390                         LoadCategory(wxSPropertySeg1, wxSPropertySeg2, &CategoryCount); 
391                         
392                 } else if (wxSProperty == wxT("PHOTO")) {
393                 
394                         // See frmContactEditor-LoadPhoto.cpp
395                         
396                         LoadPhoto(wxSPropertySeg1, wxSPropertySeg2, &PhotoCount);
398                 } else if (wxSProperty == wxT("LOGO")) {
399                 
400                         // See frmContactEditor-LoadLogo.cpp
401                 
402                         LoadLogo(wxSPropertySeg1, wxSPropertySeg2, &LogoCount);
403                         
404                 } else if (wxSProperty == wxT("SOUND")) {
405                 
406                         // See frmContactEditor-LoadSound.cpp
407                         
408                         LoadSound(wxSPropertySeg1, wxSPropertySeg2, &SoundCount);
409                         
410                 } else if (wxSProperty == wxT("CALURI")){
412                         // See frmContactEditor-LoadCalendar.cpp
413                         
414                         LoadCalURI(wxSPropertySeg1, wxSPropertySeg2, &CalAdrCount);
415                 
416                 } else if (wxSProperty == wxT("CALADRURI")){
418                         // See frmContactEditor-LoadCalendar.cpp
419                         
420                         LoadCalAdrURI(wxSPropertySeg1, wxSPropertySeg2, &CalReqAdrCount);
421                 
422                 } else if (wxSProperty == wxT("FBURL")){
424                         // See frmContactEditor-LoadCalendar.cpp
426                         LoadCalFreeBusy(wxSPropertySeg1, wxSPropertySeg2, &FreeBusyCount);
428                 } else if (wxSProperty == wxT("KEY")){
429                 
430                         // See frmContactEditor-LoadKey.cpp
431                         
432                         LoadKey(wxSPropertySeg1, wxSPropertySeg2, &KeyCount);
433                 
434                 }/* else if (wxSProperty == wxT("UID") && UIDProcessed == FALSE){
435                 
436                         UIDToken = wxSPropertySeg2;
437                         UIDProcessed = TRUE;
438                 
439                 }*/ else if (wxSProperty.Mid(0, 3) == wxT("VND")){
440                 
441                         // Split the Vendor three ways.
442                         
443                         wxStringTokenizer wSTVendorDetails(wxSPropertySeg1, wxT("-"));
444                         
445                         wxString wxSVNDID;
446                         wxString wxSVNDPropName;
447                         long ListCtrlIndex;                     
449                         while (wSTVendorDetails.HasMoreTokens() == TRUE){
450                         
451                                 wSTVendorDetails.GetNextToken();
452                                 wxSVNDID = wSTVendorDetails.GetNextToken();
453                                 wxSVNDPropName = wSTVendorDetails.GetNextToken();
454                                 break;
455                         
456                         }
457                         
458                         if (!wxSVNDID.IsEmpty() && !wxSVNDPropName.IsEmpty()){
459                         
460                                 // Setup the values for later processing.
461                         
462                                 VendorList.insert(std::make_pair(intValueSeek, wxSPropertySeg2));
463                                 VendorListPEN.insert(std::make_pair(intValueSeek, wxSVNDID));
464                                 VendorListElement.insert(std::make_pair(intValueSeek, wxSVNDPropName));
465                         
466                                 // Add the data to the vendor variables.
467                         
468                                 wxListItem coldata;
469                 
470                                 coldata.SetId(intValueSeek);
471                                 coldata.SetData(intValueSeek);
472                                 coldata.SetText(wxSVNDID + wxT("-") + wxSVNDPropName);
474                                 ListCtrlIndex = lboVendorNamespace->InsertItem(coldata);
475                                 
476                                 VendorList.erase(intValueSeek);
477                                 VendorListPEN.erase(intValueSeek);
478                                 VendorListElement.erase(intValueSeek);
479                         
480                                 VendorList.insert(std::make_pair(intValueSeek, wxSPropertySeg2));
481                                 VendorListPEN.insert(std::make_pair(intValueSeek, wxSVNDID));
482                                 VendorListElement.insert(std::make_pair(intValueSeek, wxSVNDPropName));                         
483                         
484                                 VendorCount++;
485                                 intValueSeek++;
486                         
487                         }       
488                 
489                 } else if (wxSProperty.Mid(0, 2) == wxT("X-")){
490                 
491                         long ListCtrlIndex;
492                         
493                         XTokenList.insert(std::make_pair(intValueSeek, wxSPropertySeg2));
494                         XTokenListTokens.insert(std::make_pair(intValueSeek, wxSPropertySeg1.Mid(2)));
495                         
496                         // Add to the form.
497                         
498                         wxListItem coldata;
499                 
500                         coldata.SetId(intValueSeek);
501                         coldata.SetData(intValueSeek);
502                         coldata.SetText(wxSPropertySeg1.Mid(2));
504                         ListCtrlIndex = lboXToken->InsertItem(coldata);
505                         
506                         XTokenCount++;
507                         intValueSeek++;
508                         
509                 
510                 }
511                 
512                 // Reset the variables.
513                 
514                 QuoteMode = FALSE;
515                 PropertyFind = TRUE;
516                 ExtraLineSeek = TRUE;
517                 ContactLineLen = 0;
518                 QuoteBreakPoint = 0;
519                 ContactLine.Clear();
520                 wxSProperty.Clear();    
521         
522         }
523         
524         FMTimer.SetFilename(Filename);
525         FMTimer.Start(10000, FALSE);
526         
527         EditMode = TRUE;
528         
529         return TRUE;
532 void frmContactEditor::SplitValues(wxString *PropertyLine, 
533         std::map<int,int> *SplitPoints, 
534         std::map<int,int> *SplitLength, 
535         int intSize){
536         
537         size_t intPropertyLen = PropertyLine->Len();
538         int intSplitsFound = 0;
539         int intSplitSize = 0;
540         int intSplitSeek = 0;
541         
542         for (int i = intSize; i <= intPropertyLen; i++){
544                 intSplitSize++;
545         
546                 if (PropertyLine->Mid(i, 1) == wxT(";") &&
547                     PropertyLine->Mid((i - 1), 1) != wxT("\\")){
548            
549                     if (intSplitsFound == 0){
550             
551                         SplitLength->insert(std::make_pair(intSplitsFound, (intSplitSize)));
552           
553                     } else {
554            
555                         SplitLength->insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
556             
557                     }
558             
559                     SplitPoints->insert(std::make_pair(intSplitsFound, (i + 1)));
560             
561                     intSplitsFound++;
562                     intSplitSeek = i;
563                     intSplitSize = 0;
564             
565                 }
567         }
569         if (intSplitsFound == 0){
571                 SplitPoints->insert(std::make_pair(intSplitsFound, (8 + 1)));
572                 SplitLength->insert(std::make_pair(intSplitsFound, intSplitSize));
574         } else {
576                 SplitPoints->insert(std::make_pair(intSplitsFound, (intSplitSeek + 1)));
577                 SplitLength->insert(std::make_pair(intSplitsFound, intSplitSize));
579         }
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