mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
73 lines
2.6 KiB
C++
73 lines
2.6 KiB
C++
/*
|
|
* Copyright (C) 2023 by Oleksandr Zolotov <alex@nextcloud.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 2 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.
|
|
*/
|
|
#include "clientstatusreporting.h"
|
|
|
|
#include "account.h"
|
|
#include "clientstatusreportingdatabase.h"
|
|
#include "clientstatusreportingnetwork.h"
|
|
#include "clientstatusreportingrecord.h"
|
|
|
|
namespace OCC
|
|
{
|
|
Q_LOGGING_CATEGORY(lcClientStatusReporting, "nextcloud.sync.clientstatusreporting", QtInfoMsg)
|
|
|
|
ClientStatusReporting::ClientStatusReporting(Account *account)
|
|
{
|
|
for (int i = 0; i < static_cast<int>(ClientStatusReportingStatus::Count); ++i) {
|
|
const auto statusString = clientStatusstatusStringFromNumber(static_cast<ClientStatusReportingStatus>(i));
|
|
_statusStrings[i] = statusString;
|
|
}
|
|
|
|
if (_statusStrings.size() < static_cast<int>(ClientStatusReportingStatus::Count)) {
|
|
return;
|
|
}
|
|
|
|
_database = QSharedPointer<ClientStatusReportingDatabase>::create(account);
|
|
if (!_database->isInitialized()) {
|
|
return;
|
|
}
|
|
|
|
_reporter = std::make_unique<ClientStatusReportingNetwork>(account, _database);
|
|
if (!_reporter->isInitialized()) {
|
|
return;
|
|
}
|
|
|
|
_isInitialized = true;
|
|
}
|
|
|
|
ClientStatusReporting::~ClientStatusReporting() = default;
|
|
|
|
void ClientStatusReporting::reportClientStatus(const ClientStatusReportingStatus status) const
|
|
{
|
|
if (!_isInitialized) {
|
|
return;
|
|
}
|
|
|
|
Q_ASSERT(static_cast<int>(status) >= 0 && static_cast<int>(status) < static_cast<int>(ClientStatusReportingStatus::Count));
|
|
if (static_cast<int>(status) < 0 || static_cast<int>(status) >= static_cast<int>(ClientStatusReportingStatus::Count)) {
|
|
qCDebug(lcClientStatusReporting) << "Trying to report invalid status:" << static_cast<int>(status);
|
|
return;
|
|
}
|
|
|
|
ClientStatusReportingRecord record;
|
|
record._name = _statusStrings[static_cast<int>(status)];
|
|
record._status = static_cast<int>(status);
|
|
record._lastOccurence = QDateTime::currentDateTimeUtc().toMSecsSinceEpoch();
|
|
const auto result = _database->setClientStatusReportingRecord(record);
|
|
if (!result.isValid()) {
|
|
qCDebug(lcClientStatusReporting) << "Could not report client status:" << result.error();
|
|
}
|
|
}
|
|
}
|