Welcome to mirror list, hosted at ThFree Co, Russian Federation.

accountmigrator.cpp « mirall « src - github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba4d49f43b458fe87d082be6b4bfd34fb4ffacdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
 * 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; version 2 of the License.
 *
 * 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/accountmigrator.h"
#include "mirall/mirallconfigfile.h"
#include "mirall/folderman.h"
#include "mirall/theme.h"


#include <QSettings>
#include <QStringList>
#include <QDir>
#include <QFileInfo>
#include <QDebug>

namespace Mirall {

// The purpose of this class is to migrate an existing account that
// was set up with an unbranded client to an branded one.
// The usecase is: Usually people try first with the community client,
// later they maybe switch to a branded client. When they install the
// branded client first, it should automatically pick the information
// from the already configured account.

AccountMigrator::AccountMigrator()
{

}

// the list of folder definitions which are files in the directory "folders"
// underneath the ownCloud configPath (with ownCloud as a last segment)
// need to be copied to the themed path and adjusted.

QStringList AccountMigrator::migrateFolderDefinitons()
{
    MirallConfigFile cfg;
    QStringList re;

    QString themePath = cfg.configPath();
    // create the original ownCloud config path out of the theme path
    // by removing the theme folder and append ownCloud.
    QString oCPath = themePath;
    if( oCPath.endsWith(QLatin1Char('/')) ) {
        oCPath.truncate( oCPath.length()-1 );
    }
    oCPath = oCPath.left( oCPath.lastIndexOf('/'));

    themePath += QLatin1String( "folders");
    oCPath += QLatin1String( "/ownCloud/folders" );

    qDebug() << "Migrator: theme-path: " << themePath;
    qDebug() << "Migrator: ownCloud path: " << oCPath;

    // get a dir listing of the ownCloud folder definitions and copy
    // them over to the theme dir
    QDir oCDir(oCPath);
    oCDir.setFilter( QDir::Files );
    QStringList files = oCDir.entryList();

    foreach( const QString& file, files ) {
        QString escapedAlias = FolderMan::instance()->escapeAlias(file);
        QString themeFile = themePath + QDir::separator() + file;
        QString oCFile = oCPath+QDir::separator()+file;
        if( QFile::copy( oCFile, themeFile ) ) {
            re.append(file);
            qDebug() << "Migrator: Folder definition migrated: " << file;

            // fix the connection entry of the folder definition
            QSettings settings(themeFile, QSettings::IniFormat);
            settings.beginGroup( escapedAlias );
            settings.setValue(QLatin1String("connection"),  Theme::instance()->appName());
            settings.sync();
        }
    }

    return re;
}

}