2015-06-04 10:29:50 +00:00
|
|
|
#include "qmlmanager.h"
|
2015-06-04 10:36:36 +00:00
|
|
|
#include <QUrl>
|
2015-07-10 07:47:26 +00:00
|
|
|
#include <QSettings>
|
2015-07-13 00:39:13 +00:00
|
|
|
#include <QDebug>
|
2015-06-04 10:29:50 +00:00
|
|
|
|
2015-06-11 06:56:18 +00:00
|
|
|
#include "qt-models/divelistmodel.h"
|
|
|
|
#include "divelist.h"
|
2015-07-10 07:47:26 +00:00
|
|
|
#include "pref.h"
|
2015-07-10 08:31:24 +00:00
|
|
|
#include "qthelper.h"
|
2015-07-13 00:39:13 +00:00
|
|
|
#include "qt-gui.h"
|
|
|
|
|
2015-11-11 19:16:59 +00:00
|
|
|
void qmlUiShowMessage(const char *errorString)
|
2015-07-13 00:39:13 +00:00
|
|
|
{
|
2015-07-27 16:14:06 +00:00
|
|
|
if (qqWindowObject && !qqWindowObject->setProperty("messageText", QVariant(errorString)))
|
2015-07-13 00:39:13 +00:00
|
|
|
qDebug() << "couldn't set property messageText to" << errorString;
|
|
|
|
}
|
2015-06-09 19:20:44 +00:00
|
|
|
|
2015-11-11 23:19:09 +00:00
|
|
|
QMLManager::QMLManager() :
|
|
|
|
m_locationServiceEnabled(false)
|
2015-06-04 10:29:50 +00:00
|
|
|
{
|
2015-11-11 20:32:54 +00:00
|
|
|
// create location manager service
|
|
|
|
locationProvider = new GpsLocation(this);
|
|
|
|
|
|
|
|
// Initialize cloud credentials.
|
2015-07-10 07:47:26 +00:00
|
|
|
setCloudUserName(prefs.cloud_storage_email);
|
|
|
|
setCloudPassword(prefs.cloud_storage_password);
|
2015-07-21 08:57:10 +00:00
|
|
|
setSaveCloudPassword(prefs.save_password_local);
|
2015-11-14 01:14:22 +00:00
|
|
|
setSsrfGpsWebUserid(prefs.userid);
|
2015-07-27 16:15:04 +00:00
|
|
|
if (!same_string(prefs.cloud_storage_email, "") && !same_string(prefs.cloud_storage_password, ""))
|
|
|
|
loadDives();
|
2015-06-04 10:29:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QMLManager::~QMLManager()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-07-10 07:47:26 +00:00
|
|
|
void QMLManager::savePreferences()
|
|
|
|
{
|
|
|
|
QSettings s;
|
|
|
|
s.beginGroup("CloudStorage");
|
|
|
|
s.setValue("email", cloudUserName());
|
2015-07-21 08:57:10 +00:00
|
|
|
s.setValue("save_password_local", saveCloudPassword());
|
2015-11-14 01:14:22 +00:00
|
|
|
s.setValue("subsurface_webservice_uid", ssrfGpsWebUserid());
|
2015-07-21 08:57:10 +00:00
|
|
|
if (saveCloudPassword())
|
|
|
|
s.setValue("password", cloudPassword());
|
2015-07-10 07:47:26 +00:00
|
|
|
s.sync();
|
2015-07-13 00:39:13 +00:00
|
|
|
if (!same_string(prefs.cloud_storage_email, qPrintable(cloudUserName()))) {
|
|
|
|
free(prefs.cloud_storage_email);
|
|
|
|
prefs.cloud_storage_email = strdup(qPrintable(cloudUserName()));
|
|
|
|
}
|
2015-07-21 08:57:10 +00:00
|
|
|
if (saveCloudPassword() != prefs.save_password_local) {
|
|
|
|
prefs.save_password_local = saveCloudPassword();
|
|
|
|
}
|
|
|
|
if (saveCloudPassword()) {
|
|
|
|
if (!same_string(prefs.cloud_storage_password, qPrintable(cloudPassword()))) {
|
|
|
|
free(prefs.cloud_storage_password);
|
|
|
|
prefs.cloud_storage_password = strdup(qPrintable(cloudPassword()));
|
|
|
|
}
|
2015-07-13 00:39:13 +00:00
|
|
|
}
|
2015-11-14 01:14:22 +00:00
|
|
|
if (!same_string(prefs.userid, qPrintable(ssrfGpsWebUserid()))) {
|
|
|
|
free(prefs.userid);
|
|
|
|
prefs.userid = strdup(qPrintable(ssrfGpsWebUserid()));
|
|
|
|
}
|
2015-07-10 07:47:26 +00:00
|
|
|
}
|
2015-07-10 08:31:24 +00:00
|
|
|
|
|
|
|
void QMLManager::loadDives()
|
|
|
|
{
|
2015-11-11 19:16:59 +00:00
|
|
|
qmlUiShowMessage("Loading dives...");
|
2015-08-20 09:08:59 +00:00
|
|
|
appendTextToLog("Loading dives...");
|
2015-07-10 08:31:24 +00:00
|
|
|
QString url;
|
|
|
|
if (getCloudURL(url)) {
|
2015-11-11 19:16:59 +00:00
|
|
|
qmlUiShowMessage(get_error_string());
|
2015-08-19 07:17:52 +00:00
|
|
|
appendTextToLog(get_error_string());
|
2015-07-10 08:31:24 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-07-24 20:18:30 +00:00
|
|
|
clear_dive_file_data();
|
2015-07-10 08:31:24 +00:00
|
|
|
|
|
|
|
QByteArray fileNamePrt = QFile::encodeName(url);
|
|
|
|
int error = parse_file(fileNamePrt.data());
|
|
|
|
if (!error) {
|
2015-07-13 00:39:13 +00:00
|
|
|
report_error("filename is now %s", fileNamePrt.data());
|
2015-11-11 19:16:59 +00:00
|
|
|
qmlUiShowMessage(get_error_string());
|
2015-08-19 07:17:52 +00:00
|
|
|
appendTextToLog(get_error_string());
|
2015-07-10 08:31:24 +00:00
|
|
|
set_filename(fileNamePrt.data(), true);
|
2015-08-20 09:08:59 +00:00
|
|
|
appendTextToLog(fileNamePrt.data());
|
2015-07-13 00:39:13 +00:00
|
|
|
} else {
|
2015-11-11 19:16:59 +00:00
|
|
|
qmlUiShowMessage(get_error_string());
|
2015-08-20 09:08:59 +00:00
|
|
|
appendTextToLog(get_error_string());
|
2015-07-10 08:31:24 +00:00
|
|
|
}
|
|
|
|
process_dives(false, false);
|
2015-07-24 20:18:30 +00:00
|
|
|
|
2015-07-10 08:31:24 +00:00
|
|
|
int i;
|
|
|
|
struct dive *d;
|
|
|
|
|
2015-07-24 20:18:30 +00:00
|
|
|
for_each_dive(i, d) {
|
|
|
|
DiveListModel::instance()->addDive(d);
|
|
|
|
}
|
2015-07-17 15:28:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QMLManager::commitChanges(QString diveId, QString suit, QString buddy, QString diveMaster, QString notes)
|
|
|
|
{
|
|
|
|
struct dive *d = get_dive_by_uniq_id(diveId.toInt());
|
|
|
|
bool diveChanged = false;
|
|
|
|
|
|
|
|
if (d->suit != suit.toUtf8().data()) {
|
|
|
|
diveChanged = true;
|
|
|
|
free(d->suit);
|
|
|
|
d->suit = strdup(suit.toUtf8().data());
|
|
|
|
}
|
|
|
|
if (d->buddy != buddy.toUtf8().data()) {
|
|
|
|
diveChanged = true;
|
|
|
|
free(d->buddy);
|
|
|
|
d->buddy = strdup(buddy.toUtf8().data());
|
|
|
|
}
|
|
|
|
if (d->divemaster != diveMaster.toUtf8().data()) {
|
|
|
|
diveChanged = true;
|
|
|
|
free(d->divemaster);
|
|
|
|
d->divemaster = strdup(diveMaster.toUtf8().data());
|
|
|
|
}
|
|
|
|
if (d->notes != notes.toUtf8().data()) {
|
|
|
|
diveChanged = true;
|
|
|
|
free(d->notes);
|
|
|
|
d->notes = strdup(notes.toUtf8().data());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void QMLManager::saveChanges()
|
|
|
|
{
|
2015-11-11 19:16:59 +00:00
|
|
|
qmlUiShowMessage("Saving dives.");
|
2015-07-17 15:28:01 +00:00
|
|
|
QString fileName;
|
|
|
|
if (getCloudURL(fileName)) {
|
2015-11-11 19:16:59 +00:00
|
|
|
qmlUiShowMessage(get_error_string());
|
2015-08-19 07:17:52 +00:00
|
|
|
appendTextToLog(get_error_string());
|
2015-07-17 15:28:01 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (save_dives(fileName.toUtf8().data())) {
|
2015-11-11 19:16:59 +00:00
|
|
|
qmlUiShowMessage(get_error_string());
|
2015-08-19 07:17:52 +00:00
|
|
|
appendTextToLog(get_error_string());
|
2015-07-17 15:28:01 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-11 19:16:59 +00:00
|
|
|
qmlUiShowMessage("Dives saved.");
|
2015-08-19 07:17:52 +00:00
|
|
|
appendTextToLog("Dive saved.");
|
2015-07-17 15:28:01 +00:00
|
|
|
set_filename(fileName.toUtf8().data(), true);
|
|
|
|
mark_divelist_changed(false);
|
2015-07-10 08:31:24 +00:00
|
|
|
}
|
2015-08-10 05:35:47 +00:00
|
|
|
|
|
|
|
void QMLManager::addDive()
|
|
|
|
{
|
2015-11-11 19:16:59 +00:00
|
|
|
qmlUiShowMessage("Adding new dive.");
|
2015-08-19 07:17:52 +00:00
|
|
|
appendTextToLog("Adding new dive.");
|
2015-08-16 08:57:18 +00:00
|
|
|
DiveListModel::instance()->startAddDive();
|
2015-08-10 05:35:47 +00:00
|
|
|
}
|
|
|
|
|
2015-11-13 04:23:00 +00:00
|
|
|
void QMLManager::applyGpsData()
|
|
|
|
{
|
|
|
|
locationProvider->applyLocations();
|
|
|
|
}
|
|
|
|
|
2015-11-14 01:20:45 +00:00
|
|
|
void QMLManager::clearGpsData()
|
|
|
|
{
|
|
|
|
locationProvider->clearGpsData();
|
|
|
|
}
|
|
|
|
|
2015-08-19 07:17:52 +00:00
|
|
|
QString QMLManager::logText() const
|
|
|
|
{
|
2015-11-13 17:17:13 +00:00
|
|
|
QString logText = m_logText + QString("\nNumer of GPS fixes: %1").arg(locationProvider->getGpsNum());
|
|
|
|
return logText;
|
2015-08-19 07:17:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QMLManager::setLogText(const QString &logText)
|
|
|
|
{
|
|
|
|
m_logText = logText;
|
2015-08-20 09:08:59 +00:00
|
|
|
emit logTextChanged();
|
2015-08-19 07:17:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QMLManager::appendTextToLog(const QString &newText)
|
|
|
|
{
|
|
|
|
m_logText += "\n" + newText;
|
2015-08-20 09:08:59 +00:00
|
|
|
emit logTextChanged();
|
2015-08-19 07:17:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-21 08:57:10 +00:00
|
|
|
bool QMLManager::saveCloudPassword() const
|
|
|
|
{
|
|
|
|
return m_saveCloudPassword;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QMLManager::setSaveCloudPassword(bool saveCloudPassword)
|
|
|
|
{
|
|
|
|
m_saveCloudPassword = saveCloudPassword;
|
|
|
|
}
|
|
|
|
|
2015-11-11 20:34:56 +00:00
|
|
|
bool QMLManager::locationServiceEnabled() const
|
|
|
|
{
|
|
|
|
return m_locationServiceEnabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QMLManager::setLocationServiceEnabled(bool locationServiceEnabled)
|
|
|
|
{
|
|
|
|
m_locationServiceEnabled = locationServiceEnabled;
|
|
|
|
locationProvider->serviceEnable(m_locationServiceEnabled);
|
|
|
|
}
|
2015-07-10 08:31:24 +00:00
|
|
|
|
2015-07-10 07:47:26 +00:00
|
|
|
QString QMLManager::cloudPassword() const
|
|
|
|
{
|
|
|
|
return m_cloudPassword;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QMLManager::setCloudPassword(const QString &cloudPassword)
|
|
|
|
{
|
|
|
|
m_cloudPassword = cloudPassword;
|
|
|
|
emit cloudPasswordChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString QMLManager::cloudUserName() const
|
|
|
|
{
|
|
|
|
return m_cloudUserName;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QMLManager::setCloudUserName(const QString &cloudUserName)
|
|
|
|
{
|
|
|
|
m_cloudUserName = cloudUserName;
|
|
|
|
emit cloudUserNameChanged();
|
|
|
|
}
|
2015-11-14 01:14:22 +00:00
|
|
|
|
|
|
|
QString QMLManager::ssrfGpsWebUserid() const
|
|
|
|
{
|
|
|
|
return m_ssrfGpsWebUserid;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QMLManager::setSsrfGpsWebUserid(const QString &userid)
|
|
|
|
{
|
|
|
|
m_ssrfGpsWebUserid = userid;
|
|
|
|
emit ssrfGpsWebUseridChanged();
|
|
|
|
}
|