Accepting request 725928 from KDE:Extra
OBS-URL: https://build.opensuse.org/request/show/725928 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kio-gdrive?expand=0&rev=18
This commit is contained in:
parent
989a5caaba
commit
d58da7fe4b
@ -1,121 +0,0 @@
|
|||||||
From 01ec4d87b2e28de5eb3c23ec469c6c746f573520 Mon Sep 17 00:00:00 2001
|
|
||||||
From: David Barchiesi <david@barchie.si>
|
|
||||||
Date: Sun, 19 May 2019 12:38:24 +0200
|
|
||||||
Subject: Adapt to LibKGAPI setFields() changes.
|
|
||||||
|
|
||||||
Summary:
|
|
||||||
In the next release, LibKGAPI has changed the way it sets fields in `FileFetchJob` and in general allows setting response fields for all `Job`s (see [[ https://phabricator.kde.org/D20886 | D20886 Add fields standard query parameter to Job and use it in FileFetchJob ]]).
|
|
||||||
|
|
||||||
This patch adjusts KIO Gdrive to this change and limits the response in `AboutFetchJob`s.
|
|
||||||
|
|
||||||
Reviewers: dvratil, elvisangelaccio
|
|
||||||
|
|
||||||
Subscribers: #libkgapi, #kio_gdrive
|
|
||||||
|
|
||||||
Tags: #kio_gdrive, #libkgapi
|
|
||||||
|
|
||||||
Differential Revision: https://phabricator.kde.org/D20888
|
|
||||||
---
|
|
||||||
CMakeLists.txt | 2 +-
|
|
||||||
src/kio_gdrive.cpp | 30 ++++++++++++++++++------------
|
|
||||||
2 files changed, 19 insertions(+), 13 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
||||||
index a830925..680ae3e 100644
|
|
||||||
--- a/CMakeLists.txt
|
|
||||||
+++ b/CMakeLists.txt
|
|
||||||
@@ -5,7 +5,7 @@ project(kio-gdrive VERSION ${GDRIVE_VERSION})
|
|
||||||
|
|
||||||
set(QT_MIN_VERSION 5.2.0)
|
|
||||||
set(KF5_MIN_VERSION 5.14.0)
|
|
||||||
-set(KGAPI_MIN_VERSION 5.5.0)
|
|
||||||
+set(KGAPI_MIN_VERSION 5.11.41)
|
|
||||||
set(KACCOUNTS_MIN_VERSION 17.04.0)
|
|
||||||
set(QTKEYCHAIN_MIN_VERSION 0.6.0)
|
|
||||||
|
|
||||||
diff --git a/src/kio_gdrive.cpp b/src/kio_gdrive.cpp
|
|
||||||
index 9ab146f..e01fef6 100644
|
|
||||||
--- a/src/kio_gdrive.cpp
|
|
||||||
+++ b/src/kio_gdrive.cpp
|
|
||||||
@@ -146,6 +146,12 @@ void KIOGDrive::fileSystemFreeSpace(const QUrl &url)
|
|
||||||
}
|
|
||||||
if (!gdriveUrl.isRoot()) {
|
|
||||||
AboutFetchJob aboutFetch(getAccount(accountId));
|
|
||||||
+ aboutFetch.setFields({
|
|
||||||
+ About::Fields::Kind,
|
|
||||||
+ About::Fields::QuotaBytesTotal,
|
|
||||||
+ About::Fields::QuotaBytesUsedAggregate,
|
|
||||||
+ About::Fields::CanCreateTeamDrives,
|
|
||||||
+ });
|
|
||||||
if (runJob(aboutFetch, url, accountId)) {
|
|
||||||
const AboutPtr about = aboutFetch.aboutData();
|
|
||||||
if (about) {
|
|
||||||
@@ -379,7 +385,7 @@ QString KIOGDrive::resolveFileIdFromPath(const QString &path, PathFlags flags)
|
|
||||||
|
|
||||||
const QString accountId = gdriveUrl.account();
|
|
||||||
FileFetchJob fetchJob(query, getAccount(accountId));
|
|
||||||
- fetchJob.setFields(FileFetchJob::Id | FileFetchJob::Title | FileFetchJob::Labels);
|
|
||||||
+ fetchJob.setFields({File::Fields::Id, File::Fields::Title, File::Fields::Labels});
|
|
||||||
if (!runJob(fetchJob, url, accountId)) {
|
|
||||||
return QString();
|
|
||||||
}
|
|
||||||
@@ -404,6 +410,7 @@ QString KIOGDrive::rootFolderId(const QString &accountId)
|
|
||||||
auto it = m_rootIds.constFind(accountId);
|
|
||||||
if (it == m_rootIds.cend()) {
|
|
||||||
AboutFetchJob aboutFetch(getAccount(accountId));
|
|
||||||
+ aboutFetch.setFields({About::Fields::Kind, About::Fields::RootFolderId});
|
|
||||||
QUrl url;
|
|
||||||
if (!runJob(aboutFetch, url, accountId)) {
|
|
||||||
return QString();
|
|
||||||
@@ -455,10 +462,13 @@ void KIOGDrive::listDir(const QUrl &url)
|
|
||||||
query.addQuery(FileSearchQuery::Trashed, FileSearchQuery::Equals, false);
|
|
||||||
query.addQuery(FileSearchQuery::Parents, FileSearchQuery::In, folderId);
|
|
||||||
FileFetchJob fileFetchJob(query, getAccount(accountId));
|
|
||||||
- fileFetchJob.setFields((FileFetchJob::BasicFields & ~FileFetchJob::Permissions)
|
|
||||||
- | FileFetchJob::Labels
|
|
||||||
- | FileFetchJob::ExportLinks
|
|
||||||
- | FileFetchJob::LastViewedByMeDate);
|
|
||||||
+ const auto extraFields =
|
|
||||||
+ KGAPI2::Drive::FileFetchJob::FieldShorthands::BasicFields +
|
|
||||||
+ QStringList({ KGAPI2::Drive::File::Fields::Labels,
|
|
||||||
+ KGAPI2::Drive::File::Fields::ExportLinks,
|
|
||||||
+ KGAPI2::Drive::File::Fields::LastViewedByMeDate,
|
|
||||||
+ });
|
|
||||||
+ fileFetchJob.setFields(KGAPI2::Drive::FileFetchJob::FieldShorthands::BasicFields + extraFields);
|
|
||||||
runJob(fileFetchJob, url, accountId);
|
|
||||||
|
|
||||||
ObjectsList objects = fileFetchJob.items();
|
|
||||||
@@ -607,10 +617,7 @@ void KIOGDrive::get(const QUrl &url)
|
|
||||||
}
|
|
||||||
|
|
||||||
FileFetchJob fileFetchJob(fileId, getAccount(accountId));
|
|
||||||
- fileFetchJob.setFields(FileFetchJob::Id
|
|
||||||
- | FileFetchJob::MimeType
|
|
||||||
- | FileFetchJob::ExportLinks
|
|
||||||
- | FileFetchJob::DownloadUrl);
|
|
||||||
+ fileFetchJob.setFields({File::Fields::Id, File::Fields::MimeType, File::Fields::ExportLinks, File::Fields::DownloadUrl});
|
|
||||||
runJob(fileFetchJob, url, accountId);
|
|
||||||
|
|
||||||
const ObjectsList objects = fileFetchJob.items();
|
|
||||||
@@ -866,8 +873,7 @@ void KIOGDrive::copy(const QUrl &src, const QUrl &dest, int permissions, KIO::Jo
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
FileFetchJob sourceFileFetchJob(sourceFileId, getAccount(sourceAccountId));
|
|
||||||
- sourceFileFetchJob.setFields(FileFetchJob::Id | FileFetchJob::ModifiedDate |
|
|
||||||
- FileFetchJob::LastViewedByMeDate | FileFetchJob::Description);
|
|
||||||
+ sourceFileFetchJob.setFields({File::Fields::Id, File::Fields::ModifiedDate, File::Fields::LastViewedByMeDate, File::Fields::Description});
|
|
||||||
runJob(sourceFileFetchJob, src, sourceAccountId);
|
|
||||||
|
|
||||||
const ObjectsList objects = sourceFileFetchJob.items();
|
|
||||||
@@ -1086,7 +1092,7 @@ void KIOGDrive::mimetype(const QUrl &url)
|
|
||||||
const QString accountId = GDriveUrl(url).account();
|
|
||||||
|
|
||||||
FileFetchJob fileFetchJob(fileId, getAccount(accountId));
|
|
||||||
- fileFetchJob.setFields(FileFetchJob::Id | FileFetchJob::MimeType);
|
|
||||||
+ fileFetchJob.setFields({File::Fields::Id, File::Fields::MimeType});
|
|
||||||
runJob(fileFetchJob, url, accountId);
|
|
||||||
|
|
||||||
const ObjectsList objects = fileFetchJob.items();
|
|
||||||
--
|
|
||||||
cgit v1.1
|
|
||||||
|
|
@ -1,45 +0,0 @@
|
|||||||
From f81aed7bd13fd1d7fcd1f37baade3f1f6f34c54d Mon Sep 17 00:00:00 2001
|
|
||||||
From: David Barchiesi <david@barchie.si>
|
|
||||||
Date: Wed, 3 Jul 2019 20:18:59 +0200
|
|
||||||
Subject: Remove useless FileFetchJob field specifications. Fixes D21838
|
|
||||||
related issues.
|
|
||||||
|
|
||||||
---
|
|
||||||
src/kio_gdrive.cpp | 12 +++++-------
|
|
||||||
1 file changed, 5 insertions(+), 7 deletions(-)
|
|
||||||
|
|
||||||
(limited to 'src/kio_gdrive.cpp')
|
|
||||||
|
|
||||||
diff --git a/src/kio_gdrive.cpp b/src/kio_gdrive.cpp
|
|
||||||
index 4d80baf..5add144 100644
|
|
||||||
--- a/src/kio_gdrive.cpp
|
|
||||||
+++ b/src/kio_gdrive.cpp
|
|
||||||
@@ -149,8 +149,7 @@ void KIOGDrive::fileSystemFreeSpace(const QUrl &url)
|
|
||||||
aboutFetch.setFields({
|
|
||||||
About::Fields::Kind,
|
|
||||||
About::Fields::QuotaBytesTotal,
|
|
||||||
- About::Fields::QuotaBytesUsedAggregate,
|
|
||||||
- About::Fields::CanCreateTeamDrives,
|
|
||||||
+ About::Fields::QuotaBytesUsedAggregate
|
|
||||||
});
|
|
||||||
if (runJob(aboutFetch, url, accountId)) {
|
|
||||||
const AboutPtr about = aboutFetch.aboutData();
|
|
||||||
@@ -462,11 +461,10 @@ void KIOGDrive::listDir(const QUrl &url)
|
|
||||||
query.addQuery(FileSearchQuery::Parents, FileSearchQuery::In, folderId);
|
|
||||||
FileFetchJob fileFetchJob(query, getAccount(accountId));
|
|
||||||
const auto extraFields =
|
|
||||||
- KGAPI2::Drive::FileFetchJob::FieldShorthands::BasicFields +
|
|
||||||
- QStringList({ KGAPI2::Drive::File::Fields::Labels,
|
|
||||||
- KGAPI2::Drive::File::Fields::ExportLinks,
|
|
||||||
- KGAPI2::Drive::File::Fields::LastViewedByMeDate,
|
|
||||||
- });
|
|
||||||
+ QStringList({ KGAPI2::Drive::File::Fields::Labels,
|
|
||||||
+ KGAPI2::Drive::File::Fields::ExportLinks,
|
|
||||||
+ KGAPI2::Drive::File::Fields::LastViewedByMeDate,
|
|
||||||
+ });
|
|
||||||
fileFetchJob.setFields(KGAPI2::Drive::FileFetchJob::FieldShorthands::BasicFields + extraFields);
|
|
||||||
runJob(fileFetchJob, url, accountId);
|
|
||||||
|
|
||||||
--
|
|
||||||
cgit v1.1
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:7a9169e1d464641eb0ae4013ca1732b46bdfd50a13b3e87810c19ba794527f7b
|
|
||||||
size 46464
|
|
3
kio-gdrive-1.2.7.tar.xz
Normal file
3
kio-gdrive-1.2.7.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1b59e4d9940deb290cc4d7441d4ae8762ccb1de8d14dbd0bdbd3bc9a5fc266a4
|
||||||
|
size 46748
|
@ -1,3 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Aug 24 22:49:39 UTC 2019 - wbauer@tmo.at
|
||||||
|
|
||||||
|
- Update to 1.2.7
|
||||||
|
* Fix the build against libkgapi >= 19.08 while keeping
|
||||||
|
compatibility with older libkgapi
|
||||||
|
- Drop patches that are no longer necessary:
|
||||||
|
* Adapt-to-LibKGAPI-setFields-changes.patch
|
||||||
|
* Remove-useless-FileFetchJob-field-specifications.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 20 12:35:01 UTC 2019 - wbauer@tmo.at
|
Tue Aug 20 12:35:01 UTC 2019 - wbauer@tmo.at
|
||||||
|
|
||||||
|
@ -18,16 +18,13 @@
|
|||||||
|
|
||||||
%bcond_without lang
|
%bcond_without lang
|
||||||
Name: kio-gdrive
|
Name: kio-gdrive
|
||||||
Version: 1.2.6
|
Version: 1.2.7
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Google Drive KIO slave for KDE applications
|
Summary: Google Drive KIO slave for KDE applications
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
Group: System/GUI/KDE
|
Group: System/GUI/KDE
|
||||||
URL: https://community.kde.org/KIO_GDrive
|
URL: https://community.kde.org/KIO_GDrive
|
||||||
Source: https://download.kde.org/stable/%{name}/%{version}/src/%{name}-%{version}.tar.xz
|
Source: https://download.kde.org/stable/%{name}/%{version}/src/%{name}-%{version}.tar.xz
|
||||||
# PATCH-FIX-UPSTREAM
|
|
||||||
Patch0: Adapt-to-LibKGAPI-setFields-changes.patch
|
|
||||||
Patch1: Remove-useless-FileFetchJob-field-specifications.patch
|
|
||||||
BuildRequires: extra-cmake-modules
|
BuildRequires: extra-cmake-modules
|
||||||
BuildRequires: intltool
|
BuildRequires: intltool
|
||||||
BuildRequires: libaccounts-glib-devel
|
BuildRequires: libaccounts-glib-devel
|
||||||
@ -55,10 +52,6 @@ This can be Dolphin or Gwenview or Konqueror.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%if %pkg_vcmp cmake(KPimGAPI) >= 19.07.80
|
|
||||||
%patch0 -p1
|
|
||||||
%patch1 -p1
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%cmake_kf5 -d build
|
%cmake_kf5 -d build
|
||||||
|
Loading…
Reference in New Issue
Block a user