Merge branch 'http' of ssh://drop.maemo.org/git/mdictionary into http
[mdictionary] / src / plugins / xdxf / XdxfDictDownloader.cpp
1 /*******************************************************************************
2
3     This file is part of mDictionary.
4
5     mDictionary is free software: you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation, either version 3 of the License, or
8     (at your option) any later version.
9
10     mDictionary is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with mDictionary.  If not, see <http://www.gnu.org/licenses/>.
17
18     Copyright 2010 Comarch S.A.
19
20 *******************************************************************************/
21
22 //Created by Mateusz Półrola
23
24 #include "XdxfDictDownloader.h"
25 #include "XdxfDictDownloadProgressDialog.h"
26 #include <QDebug>
27
28
29 XdxfDictDownloader::XdxfDictDownloader(QObject *parent) :
30     QObject(parent) {
31     parentDialog = 0;
32     process = new QProcess(this);
33
34
35     connect(process, SIGNAL(finished(int)),
36             this, SLOT(processFinished(int)));
37
38     progressDialog = 0;
39 }
40
41 XdxfDictDownloader::~XdxfDictDownloader() {
42
43 }
44
45
46
47 void XdxfDictDownloader::download(QWidget *parent) {
48     parentDialog = parent;
49     aborted = false;
50     QNetworkAccessManager *manager = new QNetworkAccessManager(this);
51
52     connect(manager, SIGNAL(finished(QNetworkReply*)),
53             this, SLOT(dictListReceived(QNetworkReply*)));
54
55     manager->get(QNetworkRequest(QUrl("http://xdxf.revdanica.com/down/")));
56
57     progressDialog = new XdxfDictDownloadProgressDialog(parent);
58
59     connect(progressDialog, SIGNAL(cancelDownloading()),
60             this, SLOT(breakDownloading()));
61     progressDialog->setText(tr("Downloading dictionaries list"));
62     progressDialog->show();
63 }
64
65 QString XdxfDictDownloader::downloadedFile() {
66     return _downloadedFile;
67 }
68
69
70 void XdxfDictDownloader::breakDownloading() {
71     aborted = true;
72     if(process->state() != QProcess::NotRunning) {
73         process->kill();
74     }
75
76     if(progressDialog && progressDialog->isVisible()) {
77         progressDialog->accept();
78     }
79
80     Q_EMIT notify(Notify::Info, tr("Downloading canceled"));
81 }
82
83 void XdxfDictDownloader::processFinished(int exitcode) {
84     if(aborted) return;
85     if(exitcode != 0) {
86         Q_EMIT notify(Notify::Error, tr("Error while downloading or processing dictionary"));
87     }
88     if(++currentCommand<commands.size()) {
89         process->start(commands[currentCommand]);
90     }
91     else {
92         downloadComplete();
93     }
94 }
95
96 void XdxfDictDownloader::downloadComplete() {
97 <<<<<<< HEAD
98     if(aborted) return;
99     // Downloaded tar file name is different than extracted folder so we need
100     // some clean directory to identify extracted files
101     QDir dir("/tmp/mdict");
102     QString dictDirName = dir.entryList().at(2);
103
104     // Dict is in /tmp/mdict/<extracted directory>/dict.xdxf
105     QFile dictFile("/tmp/mdict/" + dictDirName + "/dict.xdxf");
106     dictFile.copy(QDir::homePath() + "/.mdictionary/" + dictDirName + ".xdxf");
107     QFile::remove("/tmp/" + _fileName);
108
109     _downloadedFile = QDir::homePath() + "/.mdictionary/" + dictDirName + ".xdxf";
110
111     progressDialog->accept();
112     delete progressDialog;
113     progressDialog = 0;
114
115     emit fileDownloaded(_downloadedFile);
116 }
117
118 void XdxfDictDownloader::dictListReceived(QNetworkReply *reply) {
119
120     if(aborted) return;
121     progressDialog->accept();
122
123     if(reply->error() != QNetworkReply::NoError) {
124         Q_EMIT notify(Notify::Error, reply->errorString());
125         return;
126     }
127
128     QString page(QString::fromUtf8(reply->readAll()));
129
130     // You can look at http://xdxf.revdanica.com/down/, we need to get table
131     // with dictionaries entries following regexp match its begining
132     QRegExp regOuter("<td>Icon</td><td>Name</td><td>Archive filename</td><td>Archive file size</td><td>Dict file size</td><td>Number of articles</td><td>From</td><td>To</td><td>Submitted by</td><td>Submition date</td></tr>(.*)</table>");
133     regOuter.setMinimal(true);
134     if(!regOuter.indexIn(page))
135         return;
136
137     // Cutting each entry and creating coresponded DownloadDict object
138     page = regOuter.capturedTexts().at(1);
139     QRegExp regInner("<tr>.*</tr>");
140     regInner.setMinimal(true);
141     int pos = 0;
142
143     while ((pos = regInner.indexIn(page, pos)) != -1) {
144         DownloadDict temp = DownloadDict(regInner.cap(0));
145         if(!temp.fromLang().isEmpty())
146             dicts.append(temp);
147         pos += regInner.matchedLength();
148     }
149
150     XdxfDictSelectDialog selectDialog(dicts, parentDialog);
151
152     if(selectDialog.exec()==QDialog::Accepted) {
153
154         progressDialog->setText(tr("Downloading dictionary"));
155         progressDialog->show();
156
157         QString url = selectDialog.link();
158
159         _fileName = url.split('/').last();
160
161         // Now its the tricky part ... its temporary (probably)
162         // We dont have any tar-dev and bz2-dev packages on maemo so we need
163         // to call commands via shell, each command from list is called after
164         // previous call returns 0
165
166         commands.clear();
167         commands.push_back("rm -rf /tmp/mdict");
168         commands.push_back("mkdir /tmp/mdict");
169
170         // Downloading xdxf dict from sourceforge is kind of complicated,
171         // there is a lot of redirection and QNetwork* is kind of lost, we
172         // tried to follow redirection (by hand) but we end up with some
173         // page and js scripts and thats all
174         // Maybe calling wget is not pretty one but its working!
175         commands.push_back("wget --quiet -P /tmp/ " + url);
176         commands.push_back(QString("tar -xjvf /tmp/") + _fileName + QString(" -C /tmp/mdict"));
177
178         process->start(commands[0]);
179     }
180 }