mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
84 lines
2.7 KiB
C++
84 lines
2.7 KiB
C++
/*
|
|
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "sortedsharemodel.h"
|
|
|
|
namespace OCC {
|
|
|
|
Q_LOGGING_CATEGORY(lcSortedShareModel, "com.nextcloud.sortedsharemodel")
|
|
|
|
SortedShareModel::SortedShareModel(QObject *parent)
|
|
: QSortFilterProxyModel(parent)
|
|
{
|
|
sort(0, Qt::AscendingOrder);
|
|
}
|
|
|
|
bool SortedShareModel::lessThan(const QModelIndex &sourceLeft, const QModelIndex &sourceRight) const
|
|
{
|
|
if (!sourceLeft.isValid() || !sourceRight.isValid()) {
|
|
return false;
|
|
}
|
|
|
|
const auto leftShare = sourceLeft.data(ShareModel::ShareRole).value<SharePtr>();
|
|
const auto rightShare = sourceRight.data(ShareModel::ShareRole).value<SharePtr>();
|
|
|
|
if (leftShare.isNull() || rightShare.isNull()) {
|
|
return false;
|
|
}
|
|
|
|
const auto leftShareType = leftShare->getShareType();
|
|
|
|
// Placeholder link shares always go at top
|
|
if (leftShareType == Share::TypePlaceholderLink) {
|
|
return true;
|
|
} else if (leftShareType == Share::TypeInternalLink) {
|
|
// Internal links always at bottom
|
|
return false;
|
|
}
|
|
|
|
const auto rightShareType = rightShare->getShareType();
|
|
|
|
// Placeholder link shares always go at top
|
|
if (rightShareType == Share::TypePlaceholderLink) {
|
|
return false;
|
|
} else if (rightShareType == Share::TypeInternalLink) {
|
|
// Internal links always at bottom
|
|
return true;
|
|
}
|
|
|
|
// We want to place link shares at the top
|
|
if (leftShareType == Share::TypeLink && rightShareType != Share::TypeLink) {
|
|
return true;
|
|
} else if (rightShareType == Share::TypeLink && leftShareType != Share::TypeLink) {
|
|
return false;
|
|
} else if (leftShareType != rightShareType) {
|
|
return leftShareType < rightShareType;
|
|
}
|
|
|
|
if (leftShareType == Share::TypeLink) {
|
|
const auto leftLinkShare = leftShare.objectCast<LinkShare>();
|
|
const auto rightLinkShare = rightShare.objectCast<LinkShare>();
|
|
|
|
if(leftLinkShare.isNull() || rightLinkShare.isNull()) {
|
|
qCWarning(lcSortedShareModel) << "One of compared shares is a null pointer after conversion despite having same share type. Left link share is null:" << leftLinkShare.isNull()
|
|
<< "Right link share is null: " << rightLinkShare.isNull();
|
|
return false;
|
|
}
|
|
|
|
return leftLinkShare->getLabel() < rightLinkShare->getLabel();
|
|
|
|
} else if (leftShare->getShareWith()) {
|
|
if(rightShare->getShareWith().isNull()) {
|
|
return true;
|
|
}
|
|
|
|
return leftShare->getShareWith()->format() < rightShare->getShareWith()->format();
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
} // namespace OCC
|