1 // frmContactEditor-Load.cpp - frmContactEditor load contact 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/>
22 #include <wx/tokenzr.h>
23 #include <wx/datetime.h>
26 #include "frmContactEditor.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.
40 wxString wxSContactString;
44 if (StartupEditMode == FALSE){
45 XVMData = MainPtr->GetViewMode();
48 wxSContactFilename = Filename;
50 // Check if we are using wxWidgets version 2.8 or less and
51 // execute the required command accordingly.
53 #if wxABI_VERSION < 20900
54 ContactFile.Open(Filename.c_str(), wxT("r"));
56 ContactFile.Open(Filename, wxT("r"));
59 if (ContactFile.IsOpened() == FALSE){
65 ContactEditorData.LoadFile(Filename);
67 ContactFile.ReadAll(&wxSContactString, wxConvAuto());
71 std::map<int, wxString> ContactFileLines;
72 std::map<int, wxString>::iterator striter;
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));
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;
112 int NicknameCount = 0;
121 int RelatedCount = 0;
126 int CategoryCount = 0;
132 int CalReqAdrCount = 0;
133 int FreeBusyCount = 0;
137 //int intValueSeek = 1;
139 // Process the unique ID (UID)
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)
149 LoadBirthday(&ContactEditorData.Birthday, &ContactEditorData.BirthdayText);
151 // Process the Anniversary (ANNIVERSARY) (frmContactEditor-LoadBADays.cpp)
153 LoadAnniversary(&ContactEditorData.Anniversary, &ContactEditorData.AnniversaryText);
155 // Process the Gender (GENDER) (frmContactEditor-LoadGender.cpp)
157 LoadGender(&ContactEditorData.Gender, &ContactEditorData.GenderDetails);
159 // Process the Name (N) (frmContactEditor-LoadName.cpp)
161 LoadName(&ContactEditorData.NameTitle, &ContactEditorData.NameForename,
162 &ContactEditorData.NameSurname, &ContactEditorData.NameOtherNames,
163 &ContactEditorData.NameSuffix);
165 // Process the group members (MEMBER) (frmContactEditor-LoadGroup.cpp)
167 LoadMember(&ContactEditorData.GroupsList);
169 // Process the addresses (ADR) (frmContactEditor-LoadAddress.cpp)
171 LoadAddress(&ContactEditorData.GeneralAddressList,
172 &ContactEditorData.GeneralAddressListTown,
173 &ContactEditorData.GeneralAddressListCounty,
174 &ContactEditorData.GeneralAddressListPostCode,
175 &ContactEditorData.GeneralAddressListPref,
176 &ContactEditorData.HomeAddressList,
177 &ContactEditorData.HomeAddressListTown,
178 &ContactEditorData.HomeAddressListCounty,
179 &ContactEditorData.HomeAddressListPostCode,
180 &ContactEditorData.HomeAddressListPref,
181 &ContactEditorData.BusinessAddressList,
182 &ContactEditorData.BusinessAddressListTown,
183 &ContactEditorData.BusinessAddressListCounty,
184 &ContactEditorData.BusinessAddressListPostCode,
185 &ContactEditorData.BusinessAddressListPref,
188 // Process the timezones (TZ).
190 LoadData(&ContactEditorData.GeneralTZList,
191 &ContactEditorData.GeneralTZListPref,
193 &ContactEditorData.HomeTZList,
194 &ContactEditorData.HomeTZListPref,
196 &ContactEditorData.BusinessTZList,
197 &ContactEditorData.BusinessTZListPref,
198 lboBusinessTimezones,
201 // Process the emails (EMAIL).
203 LoadData(&ContactEditorData.GeneralEmailList,
204 &ContactEditorData.GeneralEmailListPref,
206 &ContactEditorData.HomeEmailList,
207 &ContactEditorData.HomeEmailListPref,
209 &ContactEditorData.BusinessEmailList,
210 &ContactEditorData.BusinessEmailListPref,
214 // Process the nicknames (NICKNAME).
216 LoadData(&ContactEditorData.GeneralNicknamesList,
217 &ContactEditorData.GeneralNicknamesListPref,
219 &ContactEditorData.HomeNicknamesList,
220 &ContactEditorData.HomeNicknamesListPref,
222 &ContactEditorData.BusinessNicknamesList,
223 &ContactEditorData.BusinessNicknamesListPref,
224 lboBusinessNicknames,
227 // Process the languages (LANG).
229 LoadData(&ContactEditorData.GeneralLanguageList,
230 &ContactEditorData.GeneralLanguageListPref,
232 &ContactEditorData.HomeLanguageList,
233 &ContactEditorData.HomeLanguageListPref,
235 &ContactEditorData.BusinessLanguageList,
236 &ContactEditorData.BusinessLanguageListPref,
237 lboBusinessLanguages,
240 // Process the geopositiosn (GEO).
242 LoadData(&ContactEditorData.GeneralGeographyList,
243 &ContactEditorData.GeneralGeographyListPref,
245 &ContactEditorData.HomeGeographyList,
246 &ContactEditorData.HomeGeographyListPref,
248 &ContactEditorData.BusinessGeographyList,
249 &ContactEditorData.BusinessGeographyListPref,
250 lboBusinessGeoposition,
253 // Process the websites (URL).
255 LoadData(&ContactEditorData.GeneralWebsiteList,
256 &ContactEditorData.GeneralWebsiteListPref,
258 &ContactEditorData.HomeWebsiteList,
259 &ContactEditorData.HomeWebsiteListPref,
261 &ContactEditorData.BusinessWebsiteList,
262 &ContactEditorData.BusinessWebsiteListPref,
266 // Process the titles (TITLE).
268 LoadData(&ContactEditorData.GeneralTitleList,
269 &ContactEditorData.GeneralTitleListPref,
271 &ContactEditorData.HomeTitleList,
272 &ContactEditorData.HomeTitleListPref,
274 &ContactEditorData.BusinessTitleList,
275 &ContactEditorData.BusinessTitleListPref,
279 for (std::map<int,wxString>::iterator iter = ContactFileLines.begin();
280 iter != ContactFileLines.end(); ++iter){
282 // Find the colon which splits the start bit from the data part.
284 ContactLine = iter->second;
286 while (ExtraLineSeek == TRUE){
288 // Check if there is extra data on the next line
289 // (indicated by space or tab at the start) and add data.
293 if (iter == ContactFileLines.end()){
300 wxSPropertyNextLine = iter->second;
303 if (wxSPropertyNextLine.Mid(0, 1) == wxT(" ") || wxSPropertyNextLine.Mid(0, 1) == wxT("\t")){
305 wxSPropertyNextLine.Remove(0, 1);
306 //wxSPropertyNextLine.Trim(FALSE);
307 //ContactLine.Trim();
308 ContactLine.Append(wxSPropertyNextLine);
313 ExtraLineSeek = FALSE;
319 ContactLineLen = ContactLine.Len();
321 // Make sure we are not in quotation mode.
322 // Make sure colon does not have \ or \\ before it.
324 for (int i = 0; i <= ContactLineLen; i++){
326 if ((ContactLine.Mid(i, 1) == wxT(";") || ContactLine.Mid(i, 1) == wxT(":")) && PropertyFind == TRUE){
328 PropertyFind = FALSE;
330 } else if (PropertyFind == TRUE){
332 wxSProperty.Append(ContactLine.Mid(i, 1));
336 if (ContactLine.Mid(i, 1) == wxT("\"")){
338 if (QuoteMode == TRUE){
350 if (ContactLine.Mid(i, 1) == wxT(":") && ContactLine.Mid((i - 1), 1) != wxT("\\") && QuoteMode == FALSE){
359 // Split that line at the point into two variables (ignore the colon).
361 wxSPropertySeg1 = ContactLine.Mid(0, QuoteBreakPoint);
362 wxSPropertySeg2 = ContactLine.Mid((QuoteBreakPoint + 1));
364 // Add the data into the contact editor depending on what it is.
366 if (wxSProperty == wxT("VERSION") && VersionProcessed == FALSE){
368 // Check if version is 4.0, otherwise don't
371 if (wxSPropertySeg2 != wxT("4.0")){
372 wxMessageBox(_("This file is not a vCard 4.0 contact and is not supported under Xestia Address Book."),
373 _("Contact not supported"), wxICON_ERROR);
378 VersionProcessed = TRUE;
380 }/* if (wxSProperty == wxT("KIND") && KindProcessed == FALSE){
382 // See frmContactEditor-LoadGroup.cpp
384 LoadKind(wxSPropertySeg2);
386 }/* else if (wxSProperty == wxT("MEMBER")){
388 // See frmContactEditor-LoadGroup.cpp
390 LoadMember(wxSPropertySeg2, &GroupCount);
392 }*/ else if (wxSProperty == wxT("FN")){
394 // See frmContactEditor-LoadName.cpp
396 LoadFN(wxSPropertySeg1, wxSPropertySeg2, &FNCount, &FNProcessed, &ContactData);
398 }/* else if (wxSProperty == wxT("N") && NameProcessed == FALSE){
400 // See frmContactEditor-LoadName.cpp
402 LoadN(wxSPropertySeg1, wxSPropertySeg2, &NameProcessed, &ContactData);
404 } else if (wxSProperty == wxT("NICKNAME")){
406 // See frmContactEditor-LoadNickname.cpp
408 LoadNickname(wxSPropertySeg1, wxSPropertySeg2, &NicknameCount, &ContactData);
410 } else if (wxSProperty == wxT("GENDER") && GenderProcessed == FALSE){
412 // See frmContactEditor-LoadGender.cpp
414 LoadGender(wxSPropertySeg1, wxSPropertySeg2, &GenderProcessed, &ContactData);
416 } else if (wxSProperty == wxT("BDAY") && BirthdayProcessed == FALSE){
418 // See frmContactEditor-LoadBADays.cpp
420 LoadBDay(wxSPropertySeg1, wxSPropertySeg2, &BirthdayProcessed);
422 } else if (wxSProperty == wxT("ANNIVERSARY") && AnniversaryProcessed == FALSE){
424 // See frmContactEditor-LoadBADays.cpp
426 LoadAnniversary(wxSPropertySeg1, wxSPropertySeg2, &AnniversaryProcessed);
428 } else if (wxSProperty == wxT("TZ")){
430 // See frmContactEditor-LoadTimeZone.cpp
432 LoadTimeZone(wxSPropertySeg1, wxSPropertySeg2, &TZCount);
434 } else if (wxSProperty == wxT("ADR")){
436 // See frmContactEditor-LoadAddress.cpp
438 LoadADR(wxSPropertySeg1, wxSPropertySeg2, &ADRCount);
440 } else if (wxSProperty == wxT("EMAIL")){
442 // See frmContactEditor-LoadEmail.cpp
444 LoadEmail(wxSPropertySeg1, wxSPropertySeg2, &EmailCount);
446 }*/ else if (wxSProperty == wxT("IMPP")){
448 // See frmContactEditor-LoadIM.cpp
450 LoadIM(wxSPropertySeg1, wxSPropertySeg2, &IMPPCount);
452 } else if (wxSProperty == wxT("TEL")){
454 // See frmContactEditor-LoadTelephone.cpp
456 LoadTelephone(wxSPropertySeg1, wxSPropertySeg2, &TelCount);
458 }/* else if (wxSProperty == wxT("LANG")){
460 // See frmContactEditor-LoadLanguage.cpp
462 LoadLanguage(wxSPropertySeg1, wxSPropertySeg2, &LangCount);
464 } else if (wxSProperty == wxT("GEO")){
466 // See frmContactEditor-LoadGeo.cpp
468 LoadGeo(wxSPropertySeg1, wxSPropertySeg2, &GeoCount);
470 }*/ else if (wxSProperty == wxT("RELATED")){
472 // See fromContactEditor-LoadRelated.cpp
474 LoadRelated(wxSPropertySeg1, wxSPropertySeg2, &RelatedCount);
476 }/* else if (wxSProperty == wxT("URL")){
478 // See frmContactEditor-LoadURL.cpp
480 LoadURL(wxSPropertySeg1, wxSPropertySeg2, &URLCount);
482 } else if (wxSProperty == wxT("TITLE")) {
484 // See frmContactEditor-LoadTitle.cpp
486 LoadTitle(wxSPropertySeg1, wxSPropertySeg2, &TitleCount);
488 }*/ else if (wxSProperty == wxT("ROLE")) {
490 // See frmContactEditor-LoadRole.cpp
492 LoadRole(wxSPropertySeg1, wxSPropertySeg2, &RoleCount);
494 } else if (wxSProperty == wxT("ORG")) {
496 // See frmContactEditor-LoadOrg.cpp
498 LoadOrg(wxSPropertySeg1, wxSPropertySeg2, &OrgCount);
500 } else if (wxSProperty == wxT("NOTE")) {
502 // See frmContactEditor-LoadNote.cpp
504 LoadNote(wxSPropertySeg1, wxSPropertySeg2, &NoteCount);
506 } else if (wxSProperty == wxT("CATEGORIES")) {
508 // See frmContactEditor-LoadCategory.cpp
510 LoadCategory(wxSPropertySeg1, wxSPropertySeg2, &CategoryCount);
512 } else if (wxSProperty == wxT("PHOTO")) {
514 // See frmContactEditor-LoadPhoto.cpp
516 LoadPhoto(wxSPropertySeg1, wxSPropertySeg2, &PhotoCount);
518 } else if (wxSProperty == wxT("LOGO")) {
520 // See frmContactEditor-LoadLogo.cpp
522 LoadLogo(wxSPropertySeg1, wxSPropertySeg2, &LogoCount);
524 } else if (wxSProperty == wxT("SOUND")) {
526 // See frmContactEditor-LoadSound.cpp
528 LoadSound(wxSPropertySeg1, wxSPropertySeg2, &SoundCount);
530 } else if (wxSProperty == wxT("CALURI")){
532 // See frmContactEditor-LoadCalendar.cpp
534 LoadCalURI(wxSPropertySeg1, wxSPropertySeg2, &CalAdrCount);
536 } else if (wxSProperty == wxT("CALADRURI")){
538 // See frmContactEditor-LoadCalendar.cpp
540 LoadCalAdrURI(wxSPropertySeg1, wxSPropertySeg2, &CalReqAdrCount);
542 } else if (wxSProperty == wxT("FBURL")){
544 // See frmContactEditor-LoadCalendar.cpp
546 LoadCalFreeBusy(wxSPropertySeg1, wxSPropertySeg2, &FreeBusyCount);
548 } else if (wxSProperty == wxT("KEY")){
550 // See frmContactEditor-LoadKey.cpp
552 LoadKey(wxSPropertySeg1, wxSPropertySeg2, &KeyCount);
554 }/* else if (wxSProperty == wxT("UID") && UIDProcessed == FALSE){
556 UIDToken = wxSPropertySeg2;
559 }*/ else if (wxSProperty.Mid(0, 3) == wxT("VND")){
561 // Split the Vendor three ways.
563 wxStringTokenizer wSTVendorDetails(wxSPropertySeg1, wxT("-"));
566 wxString wxSVNDPropName;
569 while (wSTVendorDetails.HasMoreTokens() == TRUE){
571 wSTVendorDetails.GetNextToken();
572 wxSVNDID = wSTVendorDetails.GetNextToken();
573 wxSVNDPropName = wSTVendorDetails.GetNextToken();
578 if (!wxSVNDID.IsEmpty() && !wxSVNDPropName.IsEmpty()){
580 // Setup the values for later processing.
582 VendorList.insert(std::make_pair(intValueSeek, wxSPropertySeg2));
583 VendorListPEN.insert(std::make_pair(intValueSeek, wxSVNDID));
584 VendorListElement.insert(std::make_pair(intValueSeek, wxSVNDPropName));
586 // Add the data to the vendor variables.
590 coldata.SetId(intValueSeek);
591 coldata.SetData(intValueSeek);
592 coldata.SetText(wxSVNDID + wxT("-") + wxSVNDPropName);
594 ListCtrlIndex = lboVendorNamespace->InsertItem(coldata);
596 VendorList.erase(intValueSeek);
597 VendorListPEN.erase(intValueSeek);
598 VendorListElement.erase(intValueSeek);
600 VendorList.insert(std::make_pair(intValueSeek, wxSPropertySeg2));
601 VendorListPEN.insert(std::make_pair(intValueSeek, wxSVNDID));
602 VendorListElement.insert(std::make_pair(intValueSeek, wxSVNDPropName));
609 } else if (wxSProperty.Mid(0, 2) == wxT("X-")){
613 XTokenList.insert(std::make_pair(intValueSeek, wxSPropertySeg2));
614 XTokenListTokens.insert(std::make_pair(intValueSeek, wxSPropertySeg1.Mid(2)));
620 coldata.SetId(intValueSeek);
621 coldata.SetData(intValueSeek);
622 coldata.SetText(wxSPropertySeg1.Mid(2));
624 ListCtrlIndex = lboXToken->InsertItem(coldata);
632 // Reset the variables.
636 ExtraLineSeek = TRUE;
644 FMTimer.SetFilename(Filename);
645 FMTimer.Start(10000, FALSE);
652 void frmContactEditor::SplitValues(wxString *PropertyLine,
653 std::map<int,int> *SplitPoints,
654 std::map<int,int> *SplitLength,
657 size_t intPropertyLen = PropertyLine->Len();
658 int intSplitsFound = 0;
659 int intSplitSize = 0;
660 int intSplitSeek = 0;
662 for (int i = intSize; i <= intPropertyLen; i++){
666 if (PropertyLine->Mid(i, 1) == wxT(";") &&
667 PropertyLine->Mid((i - 1), 1) != wxT("\\")){
669 if (intSplitsFound == 0){
671 SplitLength->insert(std::make_pair(intSplitsFound, (intSplitSize)));
675 SplitLength->insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
679 SplitPoints->insert(std::make_pair(intSplitsFound, (i + 1)));
689 if (intSplitsFound == 0){
691 SplitPoints->insert(std::make_pair(intSplitsFound, (8 + 1)));
692 SplitLength->insert(std::make_pair(intSplitsFound, intSplitSize));
696 SplitPoints->insert(std::make_pair(intSplitsFound, (intSplitSeek + 1)));
697 SplitLength->insert(std::make_pair(intSplitsFound, intSplitSize));
703 void frmContactEditor::LoadData(std::map<int, wxString> *GeneralList,
704 std::map<int, int> *GeneralListPref,
705 wxListCtrl *GeneralListCtrl,
706 std::map<int, wxString> *HomeList,
707 std::map<int, int> *HomeListPref,
708 wxListCtrl *HomeListCtrl,
709 std::map<int, wxString> *BusinessList,
710 std::map<int, int> *BusinessListPref,
711 wxListCtrl *BusinessListCtrl,
714 long ListCtrlIndex = -1;
716 // Deal with the general addresses.
718 for (std::map<int,wxString>::iterator Iter = GeneralList->begin();
719 Iter != GeneralList->end();
724 coldata.SetId(*DataCount);
725 coldata.SetData(*DataCount);
726 coldata.SetText(Iter->second);
728 ListCtrlIndex = GeneralListCtrl->InsertItem(coldata);
730 if (MapDataExists(DataCount, GeneralListPref)){
732 GeneralListCtrl->SetItem(ListCtrlIndex, 1, wxString::Format("%i", GeneralListPref->find(*DataCount)->second));
740 // Deal with the home addresses.
742 for (std::map<int,wxString>::iterator Iter = HomeList->begin();
743 Iter != HomeList->end();
748 coldata.SetId(*DataCount);
749 coldata.SetData(*DataCount);
750 coldata.SetText(Iter->second);
752 ListCtrlIndex = HomeListCtrl->InsertItem(coldata);
754 if (MapDataExists(DataCount, HomeListPref)){
756 HomeListCtrl->SetItem(ListCtrlIndex, 1, wxString::Format("%i", HomeListPref->find(*DataCount)->second));
764 // Deal with the work addresses.
766 for (std::map<int,wxString>::iterator Iter = BusinessList->begin();
767 Iter != BusinessList->end();
772 coldata.SetId(*DataCount);
773 coldata.SetData(*DataCount);
774 coldata.SetText(Iter->second);
776 ListCtrlIndex = BusinessListCtrl->InsertItem(coldata);
778 if (MapDataExists(DataCount, BusinessListPref)){
780 BusinessListCtrl->SetItem(ListCtrlIndex, 1, wxString::Format("%i", BusinessListPref->find(*DataCount)->second));