2021-08-20 16:17:06 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Felix Weilbach <felix.weilbach@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 "fileactivitylistmodel.h"
|
|
|
|
#include "folderman.h"
|
2021-10-25 12:37:58 +03:00
|
|
|
#include "tray/activitylistmodel.h"
|
2021-08-20 16:17:06 +03:00
|
|
|
|
|
|
|
namespace OCC {
|
|
|
|
|
|
|
|
Q_LOGGING_CATEGORY(lcFileActivityListModel, "nextcloud.gui.fileactivitylistmodel", QtInfoMsg)
|
|
|
|
|
|
|
|
FileActivityListModel::FileActivityListModel(QObject *parent)
|
|
|
|
: ActivityListModel(nullptr, parent)
|
|
|
|
{
|
|
|
|
setDisplayActions(false);
|
2022-07-25 19:57:18 +03:00
|
|
|
connect(this, &FileActivityListModel::accountStateChanged, this, &FileActivityListModel::load);
|
2021-08-20 16:17:06 +03:00
|
|
|
}
|
|
|
|
|
2022-07-25 19:57:18 +03:00
|
|
|
QString FileActivityListModel::localPath() const
|
2021-08-20 16:17:06 +03:00
|
|
|
{
|
2022-07-25 19:57:18 +03:00
|
|
|
return _localPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileActivityListModel::setLocalPath(const QString &localPath)
|
|
|
|
{
|
2022-10-01 11:37:02 +03:00
|
|
|
if(localPath == _localPath) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:57:18 +03:00
|
|
|
_localPath = localPath;
|
|
|
|
Q_EMIT localPathChanged();
|
|
|
|
|
|
|
|
load();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileActivityListModel::load()
|
|
|
|
{
|
|
|
|
if (!accountState() || _localPath.isEmpty() || currentlyFetching()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto folder = FolderMan::instance()->folderForPath(_localPath);
|
|
|
|
|
|
|
|
if (!folder) {
|
|
|
|
qCWarning(lcFileActivityListModel) << "Invalid folder for localPath:" << _localPath << "will not load activity list model.";
|
2021-08-20 16:17:06 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-07-25 19:57:18 +03:00
|
|
|
const auto folderRelativePath = _localPath.mid(folder->cleanPath().length() + 1);
|
|
|
|
SyncJournalFileRecord record;
|
2022-10-03 17:57:02 +03:00
|
|
|
|
|
|
|
if (!folder->journalDb()->getFileRecord(folderRelativePath, &record) || !record.isValid()) {
|
|
|
|
qCWarning(lcFileActivityListModel) << "Invalid file record for path:" << _localPath << "will not load activity list model.";
|
|
|
|
return;
|
|
|
|
}
|
2022-07-25 19:57:18 +03:00
|
|
|
|
|
|
|
_objectId = record.numericFileId().toInt();
|
2021-08-20 16:17:06 +03:00
|
|
|
slotRefreshActivity();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileActivityListModel::startFetchJob()
|
|
|
|
{
|
2022-07-25 19:57:18 +03:00
|
|
|
if (!accountState()->isConnected() || _objectId == -1) {
|
2021-08-20 16:17:06 +03:00
|
|
|
return;
|
|
|
|
}
|
2022-04-13 16:35:40 +03:00
|
|
|
setAndRefreshCurrentlyFetching(true);
|
2021-08-20 16:17:06 +03:00
|
|
|
|
|
|
|
const QString url(QStringLiteral("ocs/v2.php/apps/activity/api/v2/activity/filter"));
|
|
|
|
auto job = new JsonApiJob(accountState()->account(), url, this);
|
|
|
|
QObject::connect(job, &JsonApiJob::jsonReceived,
|
|
|
|
this, &FileActivityListModel::activitiesReceived);
|
|
|
|
|
|
|
|
QUrlQuery params;
|
|
|
|
params.addQueryItem(QStringLiteral("sort"), QStringLiteral("asc"));
|
|
|
|
params.addQueryItem(QStringLiteral("object_type"), "files");
|
2022-03-05 15:44:03 +03:00
|
|
|
params.addQueryItem(QStringLiteral("object_id"), QString::number(_objectId));
|
2021-08-20 16:17:06 +03:00
|
|
|
job->addQueryParams(params);
|
|
|
|
setDoneFetching(true);
|
|
|
|
setHideOldActivities(true);
|
|
|
|
job->start();
|
|
|
|
}
|
|
|
|
}
|