mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-22 21:50:30 +03:00
6affc6e6ab
Signed-off-by: allexzander <blackslayer4@gmail.com>
101 lines
4 KiB
C++
101 lines
4 KiB
C++
/*
|
|
* Copyright (C) by Klaas Freitag <freitag@owncloud.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 "syncfileitem.h"
|
|
#include "common/syncjournalfilerecord.h"
|
|
#include "common/utility.h"
|
|
#include "filesystem.h"
|
|
|
|
#include <QLoggingCategory>
|
|
#include "csync/vio/csync_vio_local.h"
|
|
|
|
namespace OCC {
|
|
|
|
Q_LOGGING_CATEGORY(lcFileItem, "nextcloud.sync.fileitem", QtInfoMsg)
|
|
|
|
SyncJournalFileRecord SyncFileItem::toSyncJournalFileRecordWithInode(const QString &localFileName) const
|
|
{
|
|
SyncJournalFileRecord rec;
|
|
rec._path = destination().toUtf8();
|
|
rec._modtime = _modtime;
|
|
|
|
// Some types should never be written to the database when propagation completes
|
|
rec._type = _type;
|
|
if (rec._type == ItemTypeVirtualFileDownload)
|
|
rec._type = ItemTypeFile;
|
|
if (rec._type == ItemTypeVirtualFileDehydration)
|
|
rec._type = ItemTypeVirtualFile;
|
|
|
|
rec._etag = _etag;
|
|
rec._fileId = _fileId;
|
|
rec._fileSize = _size;
|
|
rec._remotePerm = _remotePerm;
|
|
rec._isShared = _isShared;
|
|
rec._sharedByMe = _sharedByMe;
|
|
rec._lastShareStateFetchedTimestamp = _lastShareStateFetchedTimestamp;
|
|
rec._serverHasIgnoredFiles = _serverHasIgnoredFiles;
|
|
rec._checksumHeader = _checksumHeader;
|
|
rec._e2eMangledName = _encryptedFileName.toUtf8();
|
|
rec._isE2eEncrypted = _isEncrypted;
|
|
rec._lockstate._locked = _locked == LockStatus::LockedItem;
|
|
rec._lockstate._lockOwnerDisplayName = _lockOwnerDisplayName;
|
|
rec._lockstate._lockOwnerId = _lockOwnerId;
|
|
rec._lockstate._lockOwnerType = static_cast<qint64>(_lockOwnerType);
|
|
rec._lockstate._lockEditorApp = _lockEditorApp;
|
|
rec._lockstate._lockTime = _lockTime;
|
|
rec._lockstate._lockTimeout = _lockTimeout;
|
|
|
|
// Update the inode if possible
|
|
rec._inode = _inode;
|
|
if (FileSystem::getInode(localFileName, &rec._inode)) {
|
|
qCDebug(lcFileItem) << localFileName << "Retrieved inode " << rec._inode << "(previous item inode: " << _inode << ")";
|
|
} else {
|
|
// use the "old" inode coming with the item for the case where the
|
|
// filesystem stat fails. That can happen if the the file was removed
|
|
// or renamed meanwhile. For the rename case we still need the inode to
|
|
// detect the rename though.
|
|
qCWarning(lcFileItem) << "Failed to query the 'inode' for file " << localFileName;
|
|
}
|
|
return rec;
|
|
}
|
|
|
|
SyncFileItemPtr SyncFileItem::fromSyncJournalFileRecord(const SyncJournalFileRecord &rec)
|
|
{
|
|
auto item = SyncFileItemPtr::create();
|
|
item->_file = rec.path();
|
|
item->_inode = rec._inode;
|
|
item->_modtime = rec._modtime;
|
|
item->_type = rec._type;
|
|
item->_etag = rec._etag;
|
|
item->_fileId = rec._fileId;
|
|
item->_size = rec._fileSize;
|
|
item->_remotePerm = rec._remotePerm;
|
|
item->_serverHasIgnoredFiles = rec._serverHasIgnoredFiles;
|
|
item->_checksumHeader = rec._checksumHeader;
|
|
item->_encryptedFileName = rec.e2eMangledName();
|
|
item->_isEncrypted = rec._isE2eEncrypted;
|
|
item->_locked = rec._lockstate._locked ? LockStatus::LockedItem : LockStatus::UnlockedItem;
|
|
item->_lockOwnerDisplayName = rec._lockstate._lockOwnerDisplayName;
|
|
item->_lockOwnerId = rec._lockstate._lockOwnerId;
|
|
item->_lockOwnerType = static_cast<LockOwnerType>(rec._lockstate._lockOwnerType);
|
|
item->_lockEditorApp = rec._lockstate._lockEditorApp;
|
|
item->_lockTime = rec._lockstate._lockTime;
|
|
item->_lockTimeout = rec._lockstate._lockTimeout;
|
|
item->_sharedByMe = rec._sharedByMe;
|
|
item->_isShared = rec._isShared;
|
|
item->_lastShareStateFetchedTimestamp = rec._lastShareStateFetchedTimestamp;
|
|
return item;
|
|
}
|
|
|
|
}
|