2023-03-01 01:50:49 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Claudio Cambra <claudio.cambra@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 <QJsonArray>
|
|
|
|
#include <QVariantMap>
|
|
|
|
|
2023-03-01 01:59:27 +03:00
|
|
|
#include "gui/tray/activitylistmodel.h"
|
|
|
|
|
|
|
|
#include "libsync/account.h"
|
|
|
|
#include "gui/accountstate.h"
|
|
|
|
#include "gui/accountmanager.h"
|
|
|
|
|
2023-03-01 01:50:49 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class QByteArray;
|
|
|
|
class QJsonValue;
|
|
|
|
|
|
|
|
class FakeRemoteActivityStorage
|
|
|
|
{
|
|
|
|
FakeRemoteActivityStorage() = default;
|
|
|
|
|
|
|
|
public:
|
|
|
|
static FakeRemoteActivityStorage *instance();
|
|
|
|
|
|
|
|
static void destroy();
|
|
|
|
|
|
|
|
void init();
|
|
|
|
void initActivityData();
|
|
|
|
|
|
|
|
[[nodiscard]] QByteArray activityJsonData(const int sinceId, const int limit);
|
|
|
|
|
|
|
|
[[nodiscard]] QJsonValue activityById(const int id) const;
|
|
|
|
|
|
|
|
[[nodiscard]] int startingIdLast() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
QJsonArray _activityData;
|
|
|
|
QVariantMap _metaSuccess;
|
|
|
|
quint32 _numItemsToInsert = 30;
|
|
|
|
int _startingId = 90000;
|
|
|
|
|
|
|
|
static FakeRemoteActivityStorage *_instance;
|
|
|
|
};
|
2023-03-01 01:59:27 +03:00
|
|
|
|
|
|
|
class TestingALM : public OCC::ActivityListModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
TestingALM() = default;
|
|
|
|
|
|
|
|
void startFetchJob() override;
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void slotProcessReceivedActivities();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void activitiesProcessed();
|
|
|
|
|
|
|
|
private:
|
|
|
|
int _numRowsPrev = 0;
|
|
|
|
};
|