fix: crlf

Change-Id: I77b554af9e94f2fa72f6358f612046406ba33794
Tuleap: #972
diff --git a/ContactsViewModel.cpp b/ContactsViewModel.cpp
index 40d98c0..9b5d6da 100644
--- a/ContactsViewModel.cpp
+++ b/ContactsViewModel.cpp
@@ -1,144 +1,144 @@
-/***************************************************************************
- * Copyright (C) 2016 by Savoir-faire Linux                                *
- * Author: Jäger Nicolas <nicolas.jager@savoirfairelinux.com>              *
- * Author: Traczyk Andreas <andreas.traczyk@savoirfairelinux.com>          *
- *                                                                         *
- * This program is free software; you can redistribute it and/or modify    *
- * it under the terms of the GNU General Public License as published by    *
- * the Free Software Foundation; either version 3 of the License, or       *
- * (at your option) any later version.                                     *
- *                                                                         *
- * This program is distributed in the hope that it will be useful,         *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of          *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           *
- * GNU General Public License for more details.                            *
- *                                                                         *
- * You should have received a copy of the GNU General Public License       *
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.   *
- **************************************************************************/
-
-#include "pch.h"
-#include "ContactsViewModel.h"
-
-using namespace Windows::Data::Json;
-using namespace Windows::Storage;
-
-using namespace RingClientUWP;
-using namespace ViewModel;
-
-ContactsViewModel::ContactsViewModel()
-{
-    contactsList_ = ref new Vector<Contact^>();
-    openContactsFromFile();
-}
-
-Contact^
-ContactsViewModel::findContactByName(String ^ name)
-{
-    for each (Contact^ contact in contactsList_)
-        if (contact->name_ == name)
-            return contact;
-
-    return nullptr;
-}
-
-Contact^
-ContactsViewModel::addNewContact(String^ name, String^ ringId)
-{
-    if (contactsList_ && !findContactByName(name)) {
-        Contact^ contact = ref new Contact(name, ringId);
-        contactsList_->Append(contact);
-        saveContactsToFile();
-        return contact;
-    }
-
-    return nullptr;
-}
-
-void
-ContactsViewModel::saveContactsToFile()
-{
-    StorageFolder^ localfolder = ApplicationData::Current->LocalFolder;
-    String^ contactsFile = ".profile\\contacts.json";
-
-    try {
-        create_task(localfolder->CreateFileAsync(contactsFile
-                    , Windows::Storage::CreationCollisionOption::ReplaceExisting))
-        .then([&](StorageFile^ newFile) {
-            try {
-                FileIO::WriteTextAsync(newFile, Stringify());
-            }
-            catch (Exception^ e) {
-                RingDebug::instance->print("Exception while writing to contacts file");
-            }
-        });
-    }
-    catch (Exception^ e) {
-        RingDebug::instance->print("Exception while opening contacts file");
-    }
-}
-
-void
-ContactsViewModel::openContactsFromFile()
-{
-    String^ contactsFile = ".profile\\contacts.json";
-
-    Utils::fileExists(ApplicationData::Current->LocalFolder,
-        contactsFile)
-        .then([this,contactsFile](bool contacts_file_exists)
-    {
-        if (contacts_file_exists) {
-            try {
-                create_task(ApplicationData::Current->LocalFolder->GetFileAsync(contactsFile))
-                    .then([this](StorageFile^ file)
-                {
-                    create_task(FileIO::ReadTextAsync(file))
-                        .then([this](String^ fileContents){
-                        if (fileContents != nullptr)
-                            Destringify(fileContents);
-                    });
-                });
-            }
-            catch (Exception^ e) {
-                RingDebug::instance->print("Exception while opening contacts file");
-            }
-        }
-    });
-}
-
-String^
-ContactsViewModel::Stringify()
-{
-    JsonArray^ jsonArray = ref new JsonArray();
-
-    for (unsigned int i = 0; i < contactsList_->Size; i++) {
-        jsonArray->Append(contactsList_->GetAt(i)->ToJsonObject());
-    }
-
-    JsonObject^ jsonObject = ref new JsonObject();
-    jsonObject->SetNamedValue(contactListKey, jsonArray);
-
-    return jsonObject->Stringify();
-}
-
-void
-ContactsViewModel::Destringify(String^ data)
-{
-    JsonObject^ jsonObject = JsonObject::Parse(data);
-    String^     name;
-    String^     ringid;
-
-    JsonArray^ contactlist = jsonObject->GetNamedArray(contactListKey, ref new JsonArray());
-    for (unsigned int i = 0; i < contactlist->Size; i++) {
-        IJsonValue^ contact = contactlist->GetAt(i);
-        if (contact->ValueType == JsonValueType::Object) {
-            JsonObject^ jsonContactObject = contact->GetObject();
-            JsonObject^ contactObject = jsonContactObject->GetNamedObject(contactKey, nullptr);
-            if (contactObject != nullptr) {
-                name = contactObject->GetNamedString(nameKey, "");
-                ringid = contactObject->GetNamedString(ringIDKey, "");
-            }
-            contactsList_->Append(ref new Contact(name, ringid));
-        }
-    }
-}
+/***************************************************************************

+ * Copyright (C) 2016 by Savoir-faire Linux                                *

+ * Author: Jäger Nicolas <nicolas.jager@savoirfairelinux.com>              *

+ * Author: Traczyk Andreas <andreas.traczyk@savoirfairelinux.com>          *

+ *                                                                         *

+ * This program is free software; you can redistribute it and/or modify    *

+ * it under the terms of the GNU General Public License as published by    *

+ * the Free Software Foundation; either version 3 of the License, or       *

+ * (at your option) any later version.                                     *

+ *                                                                         *

+ * This program is distributed in the hope that it will be useful,         *

+ * but WITHOUT ANY WARRANTY; without even the implied warranty of          *

+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           *

+ * GNU General Public License for more details.                            *

+ *                                                                         *

+ * You should have received a copy of the GNU General Public License       *

+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.   *

+ **************************************************************************/

+

+#include "pch.h"

+#include "ContactsViewModel.h"

+

+using namespace Windows::Data::Json;

+using namespace Windows::Storage;

+

+using namespace RingClientUWP;

+using namespace ViewModel;

+

+ContactsViewModel::ContactsViewModel()

+{

+    contactsList_ = ref new Vector<Contact^>();

+    openContactsFromFile();

+}

+

+Contact^

+ContactsViewModel::findContactByName(String ^ name)

+{

+    for each (Contact^ contact in contactsList_)

+        if (contact->name_ == name)

+            return contact;

+

+    return nullptr;

+}

+

+Contact^

+ContactsViewModel::addNewContact(String^ name, String^ ringId)

+{

+    if (contactsList_ && !findContactByName(name)) {

+        Contact^ contact = ref new Contact(name, ringId);

+        contactsList_->Append(contact);

+        saveContactsToFile();

+        return contact;

+    }

+

+    return nullptr;

+}

+

+void

+ContactsViewModel::saveContactsToFile()

+{

+    StorageFolder^ localfolder = ApplicationData::Current->LocalFolder;

+    String^ contactsFile = ".profile\\contacts.json";

+

+    try {

+        create_task(localfolder->CreateFileAsync(contactsFile

+                    , Windows::Storage::CreationCollisionOption::ReplaceExisting))

+        .then([&](StorageFile^ newFile) {

+            try {

+                FileIO::WriteTextAsync(newFile, Stringify());

+            }

+            catch (Exception^ e) {

+                RingDebug::instance->print("Exception while writing to contacts file");

+            }

+        });

+    }

+    catch (Exception^ e) {

+        RingDebug::instance->print("Exception while opening contacts file");

+    }

+}

+

+void

+ContactsViewModel::openContactsFromFile()

+{

+    String^ contactsFile = ".profile\\contacts.json";

+

+    Utils::fileExists(ApplicationData::Current->LocalFolder,

+        contactsFile)

+        .then([this,contactsFile](bool contacts_file_exists)

+    {

+        if (contacts_file_exists) {

+            try {

+                create_task(ApplicationData::Current->LocalFolder->GetFileAsync(contactsFile))

+                    .then([this](StorageFile^ file)

+                {

+                    create_task(FileIO::ReadTextAsync(file))

+                        .then([this](String^ fileContents){

+                        if (fileContents != nullptr)

+                            Destringify(fileContents);

+                    });

+                });

+            }

+            catch (Exception^ e) {

+                RingDebug::instance->print("Exception while opening contacts file");

+            }

+        }

+    });

+}

+

+String^

+ContactsViewModel::Stringify()

+{

+    JsonArray^ jsonArray = ref new JsonArray();

+

+    for (unsigned int i = 0; i < contactsList_->Size; i++) {

+        jsonArray->Append(contactsList_->GetAt(i)->ToJsonObject());

+    }

+

+    JsonObject^ jsonObject = ref new JsonObject();

+    jsonObject->SetNamedValue(contactListKey, jsonArray);

+

+    return jsonObject->Stringify();

+}

+

+void

+ContactsViewModel::Destringify(String^ data)

+{

+    JsonObject^ jsonObject = JsonObject::Parse(data);

+    String^     name;

+    String^     ringid;

+

+    JsonArray^ contactlist = jsonObject->GetNamedArray(contactListKey, ref new JsonArray());

+    for (unsigned int i = 0; i < contactlist->Size; i++) {

+        IJsonValue^ contact = contactlist->GetAt(i);

+        if (contact->ValueType == JsonValueType::Object) {

+            JsonObject^ jsonContactObject = contact->GetObject();

+            JsonObject^ contactObject = jsonContactObject->GetNamedObject(contactKey, nullptr);

+            if (contactObject != nullptr) {

+                name = contactObject->GetNamedString(nameKey, "");

+                ringid = contactObject->GetNamedString(ringIDKey, "");

+            }

+            contactsList_->Append(ref new Contact(name, ringid));

+        }

+    }

+}