2010-07-19 21:56:29 +02:00
|
|
|
/* This file is part of Clementine.
|
2014-11-02 19:36:21 +01:00
|
|
|
Copyright 2010-2011, David Sansome <me@davidsansome.com>
|
|
|
|
Copyright 2011, Jonathan Anderson <jontis@gmail.com>
|
|
|
|
Copyright 2011, Angus Gratton <gus@projectgus.com>
|
|
|
|
Copyright 2014, vkrishtal <krishtalhost@gmail.com>
|
|
|
|
Copyright 2014, John Maguire <john.maguire@gmail.com>
|
|
|
|
Copyright 2014, Krzysztof Sobiecki <sobkas@gmail.com>
|
2010-07-19 21:56:29 +02:00
|
|
|
|
|
|
|
Clementine 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Clementine 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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2011-08-28 00:54:55 +02:00
|
|
|
#include "filesystemmusicstorage.h"
|
2011-04-22 18:50:29 +02:00
|
|
|
#include "core/logging.h"
|
2014-04-25 06:57:31 +02:00
|
|
|
#include "core/utilities.h"
|
2011-03-23 12:23:55 +01:00
|
|
|
|
2010-07-19 21:56:29 +02:00
|
|
|
#include <QDir>
|
|
|
|
#include <QFile>
|
2011-11-28 14:51:35 +01:00
|
|
|
#include <QUrl>
|
2010-07-19 21:56:29 +02:00
|
|
|
|
|
|
|
FilesystemMusicStorage::FilesystemMusicStorage(const QString& root)
|
2014-02-07 16:34:20 +01:00
|
|
|
: root_(root) {}
|
2010-07-19 21:56:29 +02:00
|
|
|
|
2010-08-28 23:55:30 +02:00
|
|
|
bool FilesystemMusicStorage::CopyToStorage(const CopyJob& job) {
|
2011-11-25 15:28:43 +01:00
|
|
|
const QFileInfo src = QFileInfo(job.source_);
|
2014-02-07 16:34:20 +01:00
|
|
|
const QFileInfo dest = QFileInfo(root_ + "/" + job.destination_);
|
2010-07-19 21:56:29 +02:00
|
|
|
|
|
|
|
// Don't do anything if the destination is the same as the source
|
2014-02-07 16:34:20 +01:00
|
|
|
if (src == dest) return true;
|
2010-07-19 21:56:29 +02:00
|
|
|
|
|
|
|
// Create directories as required
|
|
|
|
QDir dir;
|
2011-11-25 15:28:43 +01:00
|
|
|
if (!dir.mkpath(dest.absolutePath())) {
|
|
|
|
qLog(Warning) << "Failed to create directory" << dest.dir().absolutePath();
|
2010-09-18 12:06:30 +02:00
|
|
|
return false;
|
|
|
|
}
|
2010-07-19 21:56:29 +02:00
|
|
|
|
|
|
|
// Remove the destination file if it exists and we want to overwrite
|
2014-02-07 16:34:20 +01:00
|
|
|
if (job.overwrite_ && dest.exists()) QFile::remove(dest.absoluteFilePath());
|
2010-07-19 21:56:29 +02:00
|
|
|
|
|
|
|
// Copy or move
|
2010-08-28 23:55:30 +02:00
|
|
|
if (job.remove_original_)
|
2011-11-25 15:28:43 +01:00
|
|
|
return QFile::rename(src.absoluteFilePath(), dest.absoluteFilePath());
|
2010-07-19 21:56:29 +02:00
|
|
|
else
|
2011-11-25 15:28:43 +01:00
|
|
|
return QFile::copy(src.absoluteFilePath(), dest.absoluteFilePath());
|
2010-07-19 21:56:29 +02:00
|
|
|
}
|
2010-07-31 18:12:16 +02:00
|
|
|
|
2010-08-28 23:55:30 +02:00
|
|
|
bool FilesystemMusicStorage::DeleteFromStorage(const DeleteJob& job) {
|
2014-04-25 06:57:31 +02:00
|
|
|
QString path = job.metadata_.url().toLocalFile();
|
2014-04-24 22:28:22 +02:00
|
|
|
QFileInfo fileInfo(path);
|
|
|
|
if (fileInfo.isDir())
|
2014-04-25 06:57:31 +02:00
|
|
|
return Utilities::RemoveRecursive(path);
|
2014-04-24 22:28:22 +02:00
|
|
|
else
|
2014-04-25 06:57:31 +02:00
|
|
|
return QFile::remove(path);
|
2014-11-01 19:26:05 +01:00
|
|
|
}
|