Merge the list of ignored files/symlinks into one Activity notification.

Signed-off-by: Camila San <hello@camila.codes>
This commit is contained in:
Camila San 2019-10-17 18:45:33 +02:00
parent 08c7be5350
commit 8546d53b05
No known key found for this signature in database
GPG key ID: 7A4A6121E88E2AD4
3 changed files with 36 additions and 14 deletions

View file

@ -64,20 +64,12 @@ QVariant ActivityListModel::data(const QModelIndex &index, int role) const
case ActivityItemDelegate::PathRole: case ActivityItemDelegate::PathRole:
if(!a._file.isEmpty()){ if(!a._file.isEmpty()){
auto folder = FolderMan::instance()->folder(a._folder); auto folder = FolderMan::instance()->folder(a._folder);
QString relPath(a._file); list = FolderMan::instance()->findFileInLocalFolders(folder->remotePath(), ast->account());
if(folder) relPath.prepend(folder->remotePath());
list = FolderMan::instance()->findFileInLocalFolders(relPath, ast->account());
if (list.count() > 0) {
return QVariant(list.at(0));
}
// File does not exist anymore? Let's try to open its path
list = FolderMan::instance()->findFileInLocalFolders(QFileInfo(relPath).path(), ast->account());
if (list.count() > 0) { if (list.count() > 0) {
return QVariant(list.at(0)); return QVariant(list.at(0));
} }
} }
return QVariant(); return QVariant();
break;
case ActivityItemDelegate::ActionsLinksRole:{ case ActivityItemDelegate::ActionsLinksRole:{
QList<QVariant> customList; QList<QVariant> customList;
foreach (ActivityLink customItem, a._links) { foreach (ActivityLink customItem, a._links) {
@ -86,7 +78,6 @@ QVariant ActivityListModel::data(const QModelIndex &index, int role) const
customList << customVariant; customList << customVariant;
} }
return customList; return customList;
break;
} }
case ActivityItemDelegate::ActionIconRole: case ActivityItemDelegate::ActionIconRole:
if(a._type == Activity::NotificationType){ if(a._type == Activity::NotificationType){
@ -229,6 +220,29 @@ void ActivityListModel::addErrorToActivityList(Activity activity) {
combineActivityLists(); combineActivityLists();
} }
void ActivityListModel::addIgnoredFileToList(Activity newActivity) {
qCInfo(lcActivity) << "First checking for duplicates then add file to the notification list of ignored files: " << newActivity._file;
bool duplicate = false;
if(_listOfIgnoredFiles.size() == 0){
_notificationIgnoredFiles = newActivity;
_notificationIgnoredFiles._subject = tr("Files from the ignore list as well as symbolic links are not synced. This includes:");
_listOfIgnoredFiles.append(newActivity);
return;
}
foreach(Activity activity, _listOfIgnoredFiles){
if(activity._file == newActivity._file){
duplicate = true;
break;
}
}
if(!duplicate){
_notificationIgnoredFiles._message.append(", " + newActivity._file);
}
}
void ActivityListModel::addNotificationToActivityList(Activity activity) { void ActivityListModel::addNotificationToActivityList(Activity activity) {
qCInfo(lcActivity) << "Notification successfully added to the notification list: " << activity._subject; qCInfo(lcActivity) << "Notification successfully added to the notification list: " << activity._subject;
_notificationLists.prepend(activity); _notificationLists.prepend(activity);
@ -276,13 +290,13 @@ void ActivityListModel::removeActivityFromActivityList(Activity activity) {
} }
} }
void ActivityListModel::combineActivityLists() void ActivityListModel::combineActivityLists()
{ {
ActivityList resultList; ActivityList resultList;
std::sort(_notificationErrorsLists.begin(), _notificationErrorsLists.end()); std::sort(_notificationErrorsLists.begin(), _notificationErrorsLists.end());
resultList.append(_notificationErrorsLists); resultList.append(_notificationErrorsLists);
resultList.append(_notificationIgnoredFiles);
std::sort(_notificationLists.begin(), _notificationLists.end()); std::sort(_notificationLists.begin(), _notificationLists.end());
resultList.append(_notificationLists); resultList.append(_notificationLists);

View file

@ -51,6 +51,7 @@ public:
void addNotificationToActivityList(Activity activity); void addNotificationToActivityList(Activity activity);
void clearNotifications(); void clearNotifications();
void addErrorToActivityList(Activity activity); void addErrorToActivityList(Activity activity);
void addIgnoredFileToList(Activity newActivity);
void addSyncFileItemToActivityList(Activity activity); void addSyncFileItemToActivityList(Activity activity);
void removeActivityFromActivityList(int row); void removeActivityFromActivityList(int row);
void removeActivityFromActivityList(Activity activity); void removeActivityFromActivityList(Activity activity);
@ -73,6 +74,8 @@ private:
ActivityList _activityLists; ActivityList _activityLists;
ActivityList _syncFileItemLists; ActivityList _syncFileItemLists;
ActivityList _notificationLists; ActivityList _notificationLists;
ActivityList _listOfIgnoredFiles;
Activity _notificationIgnoredFiles;
ActivityList _notificationErrorsLists; ActivityList _notificationErrorsLists;
ActivityList _finalList; ActivityList _finalList;
AccountState *_accountState; AccountState *_accountState;

View file

@ -127,11 +127,12 @@ void ActivityWidget::slotProgressInfo(const QString &folder, const ProgressInfo
} }
if(activity._status == SyncFileItem::FileIgnored && !QFileInfo(f->path() + activity._file).exists()){ if(activity._status == SyncFileItem::FileIgnored && !QFileInfo(f->path() + activity._file).exists()) {
_model->removeActivityFromActivityList(activity); _model->removeActivityFromActivityList(activity);
continue; continue;
} }
if(!QFileInfo(f->path() + activity._file).exists()){ if(!QFileInfo(f->path() + activity._file).exists()){
_model->removeActivityFromActivityList(activity); _model->removeActivityFromActivityList(activity);
continue; continue;
@ -191,8 +192,12 @@ void ActivityWidget::slotItemCompleted(const QString &folder, const SyncFileItem
qCWarning(lcActivity) << "Item " << item->_file << " retrieved resulted in error " << item->_errorString; qCWarning(lcActivity) << "Item " << item->_file << " retrieved resulted in error " << item->_errorString;
activity._subject = item->_errorString; activity._subject = item->_errorString;
// add 'protocol error' to activity list if(item->_status == SyncFileItem::Status::FileIgnored) {
_model->addErrorToActivityList(activity); _model->addIgnoredFileToList(activity);
} else {
// add 'protocol error' to activity list
_model->addErrorToActivityList(activity);
}
} }
} }
} }