mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-19 04:11:50 +03:00
2de9cc9590
This turns the Theme class into a singleton.
418 lines
13 KiB
C++
418 lines
13 KiB
C++
/*
|
|
* Copyright (C) by Duncan Mac-Vicar P. <duncan@kde.org>
|
|
* 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 "mirall/csyncthread.h"
|
|
#include "mirall/mirallconfigfile.h"
|
|
|
|
#include <QDebug>
|
|
#include <QDir>
|
|
#include <QMutexLocker>
|
|
#include <QThread>
|
|
#include <QStringList>
|
|
#include <QTextStream>
|
|
#include <QTime>
|
|
#include <QApplication>
|
|
|
|
namespace Mirall {
|
|
|
|
/* static variables to hold the credentials */
|
|
QString CSyncThread::_user;
|
|
QString CSyncThread::_passwd;
|
|
QString CSyncThread::_proxyType;
|
|
QString CSyncThread::_proxyPwd;
|
|
QString CSyncThread::_proxyPort;
|
|
QString CSyncThread::_proxyHost;
|
|
QString CSyncThread::_proxyUser;
|
|
|
|
QString CSyncThread::_csyncConfigDir; // to be able to remove the lock file.
|
|
|
|
QMutex CSyncThread::_mutex;
|
|
|
|
|
|
struct proxyInfo_s {
|
|
char *proxyType;
|
|
char *proxyHost;
|
|
char *proxyPort;
|
|
char *proxyUser;
|
|
char *proxyPwd;
|
|
};
|
|
typedef proxyInfo_s ProxyInfo;
|
|
|
|
int CSyncThread::checkPermissions( TREE_WALK_FILE* file, void *data )
|
|
{
|
|
WalkStats *wStats = static_cast<WalkStats*>(data);
|
|
|
|
if( !wStats ) {
|
|
qDebug() << "WalkStats is zero - must not be!";
|
|
return -1;
|
|
}
|
|
|
|
wStats->seenFiles++;
|
|
|
|
switch(file->instruction) {
|
|
case CSYNC_INSTRUCTION_NONE:
|
|
|
|
break;
|
|
case CSYNC_INSTRUCTION_EVAL:
|
|
wStats->eval++;
|
|
break;
|
|
case CSYNC_INSTRUCTION_REMOVE:
|
|
wStats->removed++;
|
|
break;
|
|
case CSYNC_INSTRUCTION_RENAME:
|
|
wStats->renamed++;
|
|
break;
|
|
case CSYNC_INSTRUCTION_NEW:
|
|
wStats->newFiles++;
|
|
break;
|
|
case CSYNC_INSTRUCTION_CONFLICT:
|
|
wStats->conflicts++;
|
|
break;
|
|
case CSYNC_INSTRUCTION_IGNORE:
|
|
wStats->ignores++;
|
|
break;
|
|
case CSYNC_INSTRUCTION_SYNC:
|
|
wStats->sync++;
|
|
break;
|
|
case CSYNC_INSTRUCTION_STAT_ERROR:
|
|
case CSYNC_INSTRUCTION_ERROR:
|
|
/* instructions for the propagator */
|
|
case CSYNC_INSTRUCTION_DELETED:
|
|
case CSYNC_INSTRUCTION_UPDATED:
|
|
wStats->error++;
|
|
wStats->errorType = WALK_ERROR_INSTRUCTIONS;
|
|
break;
|
|
default:
|
|
wStats->error++;
|
|
wStats->errorType = WALK_ERROR_WALK;
|
|
break;
|
|
}
|
|
|
|
if( file ) {
|
|
QString source = QString::fromUtf8(wStats->sourcePath);
|
|
source.append(QString::fromUtf8(file->path));
|
|
QFileInfo fi(source);
|
|
|
|
if( fi.isDir()) { // File type directory.
|
|
if( !(fi.isWritable() && fi.isExecutable()) ) {
|
|
wStats->dirPermErrors++;
|
|
wStats->errorType = WALK_ERROR_DIR_PERMS;
|
|
}
|
|
}
|
|
}
|
|
|
|
// qDebug() << wStats->seenFiles << ". Path: " << file->path << ": uid= " << file->uid << " - type: " << file->type;
|
|
if( !( wStats->errorType == WALK_ERROR_NONE || wStats->errorType == WALK_ERROR_DIR_PERMS )) {
|
|
return -1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
CSyncThread::CSyncThread(const QString &source, const QString &target, bool localCheckOnly)
|
|
|
|
: _source(source)
|
|
, _target(target)
|
|
, _localCheckOnly( localCheckOnly )
|
|
|
|
{
|
|
_mutex.lock();
|
|
if( ! _source.endsWith(QLatin1Char('/'))) _source.append(QLatin1Char('/'));
|
|
_mutex.unlock();
|
|
}
|
|
|
|
CSyncThread::~CSyncThread()
|
|
{
|
|
|
|
}
|
|
|
|
void CSyncThread::startSync()
|
|
{
|
|
qDebug() << "starting to sync " << qApp->thread() << QThread::currentThread();
|
|
CSYNC *csync;
|
|
WalkStats *wStats = new WalkStats;
|
|
QTime walkTime;
|
|
|
|
wStats->sourcePath = 0;
|
|
wStats->errorType = 0;
|
|
wStats->eval = 0;
|
|
wStats->removed = 0;
|
|
wStats->renamed = 0;
|
|
wStats->newFiles = 0;
|
|
wStats->ignores = 0;
|
|
wStats->sync = 0;
|
|
wStats->seenFiles = 0;
|
|
wStats->conflicts = 0;
|
|
wStats->error = 0;
|
|
wStats->dirPermErrors = 0;
|
|
|
|
ProxyInfo proxyInfo;
|
|
proxyInfo.proxyHost = 0;
|
|
proxyInfo.proxyPort = 0;
|
|
proxyInfo.proxyPwd = 0;
|
|
proxyInfo.proxyType = 0;
|
|
proxyInfo.proxyUser = 0;
|
|
|
|
_mutex.lock();
|
|
|
|
if( !_proxyType.isEmpty() ) {
|
|
proxyInfo.proxyType = qstrdup( _proxyType.toAscii().constData() );
|
|
}
|
|
if( !_proxyHost.isEmpty() ) {
|
|
proxyInfo.proxyHost = qstrdup( _proxyHost.toAscii().constData() );
|
|
}
|
|
if( !_proxyPort.isEmpty() ) {
|
|
proxyInfo.proxyPort = qstrdup( _proxyPort.toAscii().constData() );
|
|
}
|
|
if( !_proxyUser.isEmpty() ) {
|
|
proxyInfo.proxyUser = qstrdup( _proxyUser.toAscii().constData() );
|
|
}
|
|
if( !_proxyPwd.isEmpty() ) {
|
|
proxyInfo.proxyPwd = qstrdup( _proxyPwd.toAscii().constData() );
|
|
}
|
|
|
|
emit(started());
|
|
|
|
if( csync_create(&csync,
|
|
_source.toUtf8().data(),
|
|
_target.toUtf8().data()) < 0 ) {
|
|
emit csyncError( tr("CSync create failed.") );
|
|
}
|
|
// FIXME: Check if we really need this stringcopy!
|
|
wStats->sourcePath = qstrdup( _source.toUtf8().constData() );
|
|
_csyncConfigDir = QString::fromUtf8( csync_get_config_dir( csync ));
|
|
_mutex.unlock();
|
|
|
|
qDebug() << "## CSync Thread local only: " << _localCheckOnly;
|
|
csync_set_auth_callback( csync, getauth );
|
|
csync_enable_conflictcopys(csync);
|
|
|
|
|
|
MirallConfigFile cfg;
|
|
QString excludeList = cfg.excludeFile();
|
|
|
|
if( !excludeList.isEmpty() ) {
|
|
qDebug() << "==== added CSync exclude List: " << excludeList.toAscii();
|
|
csync_add_exclude_list( csync, excludeList.toAscii() );
|
|
}
|
|
|
|
QTime t;
|
|
t.start();
|
|
|
|
_mutex.lock();
|
|
if( _localCheckOnly ) {
|
|
csync_set_local_only( csync, true );
|
|
}
|
|
csync_set_userdata(csync, (void*) &proxyInfo);
|
|
_mutex.unlock();
|
|
|
|
if( csync_init(csync) < 0 ) {
|
|
CSYNC_ERROR_CODE err = csync_get_error( csync );
|
|
QString errStr;
|
|
|
|
switch( err ) {
|
|
case CSYNC_ERR_LOCK:
|
|
errStr = tr("CSync failed to create a lock file.");
|
|
break;
|
|
case CSYNC_ERR_STATEDB_LOAD:
|
|
errStr = tr("CSync failed to load the state db.");
|
|
break;
|
|
case CSYNC_ERR_TIMESKEW:
|
|
errStr = tr("The system time on this client is different than the system time on the server. "
|
|
"Please use a time synchronization service (NTP) on the server and client machines "
|
|
"so that the times remain the same.");
|
|
break;
|
|
case CSYNC_ERR_FILESYSTEM:
|
|
errStr = tr("CSync could not detect the filesystem type.");
|
|
break;
|
|
case CSYNC_ERR_TREE:
|
|
errStr = tr("CSync got an error while processing internal trees.");
|
|
break;
|
|
case CSYNC_ERR_ACCESS_FAILED:
|
|
errStr = tr("<p>The target directory %1 does not exist.</p><p>Please check the sync setup.</p>").arg(_target);
|
|
// this is critical. The database has to be removed.
|
|
emitStateDb(csync); // to make the name of the csync db known.
|
|
emit wipeDb();
|
|
break;
|
|
case CSYNC_ERR_MODULE:
|
|
errStr = tr("<p>The ownCloud plugin for csync could not be loaded.<br/>Please verify the installation!</p>");
|
|
break;
|
|
case CSYNC_ERR_LOCAL_CREATE:
|
|
case CSYNC_ERR_LOCAL_STAT:
|
|
errStr = tr("The local filesystem can not be written. Please check permissions.");
|
|
break;
|
|
case CSYNC_ERR_REMOTE_CREATE:
|
|
case CSYNC_ERR_REMOTE_STAT:
|
|
errStr = tr("A remote file can not be written. Please check the remote access.");
|
|
break;
|
|
default:
|
|
errStr = tr("An internal error number %1 happend.").arg( (int) err );
|
|
}
|
|
qDebug() << " #### ERROR String emitted: " << errStr;
|
|
emit csyncError(errStr);
|
|
goto cleanup;
|
|
}
|
|
|
|
emitStateDb(csync);
|
|
|
|
qDebug() << "#### Update start #################################################### >>";
|
|
if( csync_update(csync) < 0 ) {
|
|
CSYNC_ERROR_CODE err = csync_get_error( csync );
|
|
QString errStr;
|
|
|
|
switch( err ) {
|
|
case CSYNC_ERR_PROXY:
|
|
errStr = tr("CSync failed to reach the host. Either host or proxy settings are not valid.");
|
|
break;
|
|
default:
|
|
errStr = tr("CSync Update failed.");
|
|
break;
|
|
}
|
|
emit csyncError( errStr );
|
|
goto cleanup;
|
|
}
|
|
qDebug() << "<<#### Update end ###########################################################";
|
|
|
|
csync_set_userdata(csync, wStats);
|
|
|
|
walkTime.start();
|
|
if( csync_walk_local_tree(csync, &checkPermissions, 0) < 0 ) {
|
|
qDebug() << "Error in treewalk.";
|
|
if( wStats->errorType == WALK_ERROR_WALK ) {
|
|
emit csyncError(tr("CSync encountered an error while examining the file system.\n"
|
|
"Syncing is not possible."));
|
|
} else if( wStats->errorType == WALK_ERROR_INSTRUCTIONS ) {
|
|
emit csyncError(tr("CSync update generated a strange instruction.\n"
|
|
"Please write a bug report."));
|
|
}
|
|
emit csyncError(tr("Local filesystem problems. Better disable Syncing and check."));
|
|
goto cleanup;
|
|
} else {
|
|
// only warn, do not stop the sync process.
|
|
if( wStats->errorType == WALK_ERROR_DIR_PERMS ) {
|
|
emit csyncError(tr("The local filesystem has %1 write protected directories."
|
|
"That can hinder successful syncing.<p/>"
|
|
"Please make sure that all local directories are writeable.").arg(wStats->dirPermErrors));
|
|
}
|
|
}
|
|
|
|
// emit the treewalk results. Do not touch the wStats after this.
|
|
emit treeWalkResult(wStats);
|
|
|
|
_mutex.lock();
|
|
if( _localCheckOnly ) {
|
|
_mutex.unlock();
|
|
qDebug() << " ..... Local only walk finished: " << walkTime.elapsed();
|
|
// we have to go out here as its local check only.
|
|
goto cleanup;
|
|
} else {
|
|
_mutex.unlock();
|
|
// check if we can write all over.
|
|
|
|
if( csync_reconcile(csync) < 0 ) {
|
|
emit csyncError(tr("CSync reconcile failed."));
|
|
goto cleanup;
|
|
}
|
|
if( csync_propagate(csync) < 0 ) {
|
|
emit csyncError(tr("CSync propagate failed."));
|
|
goto cleanup;
|
|
}
|
|
}
|
|
cleanup:
|
|
csync_destroy(csync);
|
|
|
|
if( proxyInfo.proxyType ) delete[] proxyInfo.proxyType;
|
|
if( proxyInfo.proxyHost ) delete[] proxyInfo.proxyHost;
|
|
if( proxyInfo.proxyPort ) delete[] proxyInfo.proxyPort;
|
|
if( proxyInfo.proxyUser ) delete[] proxyInfo.proxyUser;
|
|
if( proxyInfo.proxyPwd ) delete[] proxyInfo.proxyPwd ;
|
|
|
|
/*
|
|
* Attention: do not delete the wStat memory here. it is deleted in the
|
|
* slot catching the signel treeWalkResult because this thread can faster
|
|
* die than the slot has read out the data.
|
|
*/
|
|
qDebug() << "CSync run took " << t.elapsed() << " Milliseconds";
|
|
emit(finished());
|
|
}
|
|
|
|
void CSyncThread::emitStateDb( CSYNC *csync )
|
|
{
|
|
// After csync_init the statedb file name can be emitted
|
|
const char *statedb = csync_get_statedb_file( csync );
|
|
if( statedb ) {
|
|
QString stateDbFile = QString::fromUtf8(statedb);
|
|
free((void*)statedb);
|
|
|
|
emit csyncStateDbFile( stateDbFile );
|
|
} else {
|
|
qDebug() << "WRN: Unable to get csync statedb file name";
|
|
}
|
|
}
|
|
|
|
void CSyncThread::setConnectionDetails( const QString& user, const QString& passwd,
|
|
const QString& proxyType, const QString& proxyHost,
|
|
int proxyPort , const QString& proxyUser, const QString& proxyPwd )
|
|
{
|
|
_mutex.lock();
|
|
_user = user;
|
|
_passwd = passwd;
|
|
_proxyType = proxyType;
|
|
_proxyHost = proxyHost;
|
|
_proxyPort = QString::number(proxyPort);
|
|
qDebug() << "Proxy-Port: " << _proxyPort;
|
|
_proxyUser = proxyUser;
|
|
_proxyPwd = proxyPwd;
|
|
_mutex.unlock();
|
|
}
|
|
|
|
QString CSyncThread::csyncConfigDir()
|
|
{
|
|
return _csyncConfigDir;
|
|
}
|
|
|
|
int CSyncThread::getauth(const char *prompt,
|
|
char *buf,
|
|
size_t len,
|
|
int echo,
|
|
int verify,
|
|
void *userdata
|
|
)
|
|
{
|
|
int re = 0;
|
|
|
|
QString qPrompt = QString::fromLocal8Bit( prompt ).trimmed();
|
|
_mutex.lock();
|
|
|
|
if( qPrompt == QLatin1String("Enter your username:") ) {
|
|
// qDebug() << "OOO Username requested!";
|
|
qstrncpy( buf, _user.toUtf8().constData(), len );
|
|
} else if( qPrompt == QLatin1String("Enter your password:") ) {
|
|
// qDebug() << "OOO Password requested!";
|
|
qstrncpy( buf, _passwd.toUtf8().constData(), len );
|
|
} else {
|
|
if( qPrompt.startsWith( QLatin1String("There are problems with the SSL certificate:"))) {
|
|
// SSL is requested. If the program came here, the SSL check was done by mirall
|
|
// the answer is simply yes here.
|
|
qstrcpy( buf, "yes" );
|
|
} else {
|
|
qDebug() << "Unknown prompt: <" << prompt << ">";
|
|
re = -1;
|
|
}
|
|
}
|
|
_mutex.unlock();
|
|
return re;
|
|
}
|
|
|
|
}
|