summaryrefslogtreecommitdiff
path: root/src/download.cpp
blob: c365d3c58e64c48302cedde5a94a306d1f1f898b (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
/* ============================================================
*
* This file is a part of the rekonq project
*
* Copyright (C) 2007 Lukas Appelhans <l.appelhans@gmx.de>
* Copyright (C) 2008-2009 by Andrea Diamantini <adjam7 at gmail dot com>
* Copyright (C) 2009 by Paweł Prażak <pawelprazak at gmail dot com>
* Copyright (C) 2009 by Domrachev Alexandr <alexandr.domrachev@gmail.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, 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.
*
* ============================================================ */


// local Includes
#include "download.h"
#include "download.moc"

// KDE Includes
#include <KDebug>
#include <KFileDialog>
#include <KGlobalSettings>
#include <KMessageBox>
#include <KMimeType>
#include <KStandardDirs>

// Qt Includes
#include <QFile>
#include <QFileInfo>

// Local Includes
#include "application.h"
#include "mainwindow.h"


DownloadManager::DownloadManager()
        : QObject()
{
}


DownloadManager::~DownloadManager()
{
    foreach(Download *download, m_downloads)
    {
        // cancel all unfinished downloads
        download->cancel();
        delete download;
    }
}


void DownloadManager::newDownload(const KUrl &srcUrl, const KUrl &destUrl)
{
    KUrl destination = destUrl;
    Download::DownloadType type;

    KSharedPtr<KMimeType> mimeType = KMimeType::findByPath(srcUrl.prettyUrl());

    QString typeText = KMimeType::extractKnownExtension(srcUrl.fileName());
    typeText += " (" + mimeType->name() + ')';

    int answer = KMessageBox::questionYesNoCancel(
                    NULL,
                    i18n("Download '%1'?\n""Type: %2", srcUrl.prettyUrl(), typeText),
                    i18n("Download '%1'...", srcUrl.fileName()),
                    KStandardGuiItem::save(),
                    KStandardGuiItem::open(),
                    KStandardGuiItem::cancel()
                );

    switch (answer)
    {
    case KMessageBox::Cancel:
        return;
        break;

    case KMessageBox::Yes:  // ----- SAVE
        // if destination is empty than ask for download path (if showOpenSaveDownloadDialog setting enabled)
        if (destination.isEmpty())
        {
            destination = downloadDestination(srcUrl.fileName());
        }
        type = Download::Save;
        break;

    case KMessageBox::No:   // ----- OPEN
        // Download file to tmp dir
        destination.setDirectory(KStandardDirs::locateLocal("tmp", "", true));
        destination.addPath(srcUrl.fileName());
        type = Download::Open;
        break;

    default:
        // impossible
        break;
    };

    // if user canceled download than abort
    if (destination.isEmpty())
        return;

    Download *download = new Download(srcUrl, destination, type);
    connect(download, SIGNAL(downloadFinished(int)), this, SLOT(slotDownloadFinished(int)));
    m_downloads.append(download);
}


const QList<Download *> &DownloadManager::downloads() const
{
    return m_downloads;
}


KUrl DownloadManager::downloadDestination(const QString &filename)
{
    KUrl destination = ReKonfig::downloadDir();
    if (destination.isEmpty())
        destination = KGlobalSettings::downloadPath();
    destination.addPath(filename);

    if (!ReKonfig::downloadToDefaultDir())
    {
        destination = KFileDialog::getSaveUrl(destination);
        // if user canceled the download return empty url
        if (destination.isEmpty())
            return KUrl();
    }
    return destination;
}


void DownloadManager::slotDownloadFinished(int errorCode)
{
    Q_UNUSED(errorCode)

    // if sender exists and list contains it - (open and) delete it
    Download *download = qobject_cast<Download *>(sender());
    if (download && m_downloads.contains(download))
    {
        if (download->type() == Download::Open)
        {
            KSharedPtr<KMimeType> mimeType = KMimeType::findByPath(download->destUrl().prettyUrl());
            KRun::runUrl(download->destUrl(), mimeType->name(), NULL, true);
        }
        disconnect(download, SIGNAL(downloadFinished(int)), this, SLOT(slotDownloadFinished(int)));
        int index = m_downloads.indexOf(download);
        delete m_downloads.takeAt(index);
        return;
    }
    kWarning() << "Could not find download or invalid sender. Sender:" << sender();
}


//----

#include <KJob>
#include <KIO/Job>
#include <KIO/CopyJob>


Download::Download(const KUrl &srcUrl, const KUrl &destUrl, DownloadType type)
        : QObject()
        , m_srcUrl(srcUrl)
        , m_destUrl(destUrl)
        , m_type(type)
{
    Q_ASSERT(!m_srcUrl.isEmpty());
    Q_ASSERT(!m_destUrl.isEmpty());
    kDebug() << "DownloadFile: " << m_srcUrl.url() << " to dest: " << m_destUrl.url();

    m_copyJob = KIO::file_copy(m_srcUrl, m_destUrl);
    connect(m_copyJob, SIGNAL(result(KJob *)), SLOT(slotResult(KJob *)));
}


Download::~Download()
{
}


void Download::cancel()
{
    bool result = m_copyJob->kill(KJob::EmitResult);
    Q_ASSERT(result);
}


void Download::slotResult(KJob *job)
{
    switch (job->error())
    {
    case 0:  //The download has finished
    {
        kDebug() << "Downloading successfully finished: " << m_destUrl.url();
        break;
    }
    case KIO::ERR_FILE_ALREADY_EXIST:
    {
        kWarning() << "ERROR - File already exists";
        break;
    }
    case KIO::ERR_USER_CANCELED:
    {
        kWarning() << "ERROR - User canceled the downlaod";
        break;
    }
    default:
        kWarning() << "We are sorry to say you, that there were errors while downloading :(";
        break;
    }

    // inform the world
    emit downloadFinished(job->error());
}