aboutsummaryrefslogtreecommitdiffstats
path: root/keyserverimportdialog.cpp
blob: 76906f2d5a19ae7669069d040c2c5c7fc3713d9b (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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
/*
 *
 *      keyserverimportdialog.cpp
 *
 *      Copyright 2008 gpg4usb-team <gpg4usb@cpunk.de>
 *
 *      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.
 *
 *      You should have received a copy of the GNU General Public License
 *      along with this program; if not, write to the Free Software
 *      Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 *      MA 02110-1301, USA.
 */

#include <QtGui>
#include <QtNetwork>

#include "keyserverimportdialog.h"

KeyServerImportDialog::KeyServerImportDialog(QWidget *parent)
    : QDialog(parent)
{
    //text = new QString();

    closeButton = createButton(tr("&Close"), SLOT(close()));
    importButton = createButton(tr("&Import"), SLOT(import()));
    searchButton = createButton(tr("&Search"), SLOT(search()));
    searchLineEdit = new QLineEdit();
    keyServerComboBox = createComboBox("http://pgp.mit.edu");

    searchLabel = new QLabel(tr("Seacrh string:"));
    keyServerLabel = new QLabel(tr("Keyserver:"));
    message = new QLabel;

    createKeysTree();

    QHBoxLayout *buttonsLayout = new QHBoxLayout;
    buttonsLayout->addStretch();
    buttonsLayout->addWidget(importButton);
    buttonsLayout->addWidget(closeButton);

    QGridLayout *mainLayout = new QGridLayout;
    mainLayout->addWidget(searchLabel, 1, 0);
    mainLayout->addWidget(searchLineEdit, 1, 1);
    mainLayout->addWidget(searchButton,1, 2);
    mainLayout->addWidget(keyServerLabel, 2, 0);
    mainLayout->addWidget(keyServerComboBox, 2, 1);
    mainLayout->addWidget(keysTree, 3, 0, 1, 3);
    mainLayout->addWidget(message, 4, 0, 1, 3);
    mainLayout->addLayout(buttonsLayout, 5, 0, 1, 3);
    setLayout(mainLayout);

    setWindowTitle(tr("Import Keys from Keyserver"));
    resize(700, 300);
}

static void updateComboBox(QComboBox *comboBox)
{
    if (comboBox->findText(comboBox->currentText()) == -1)
        comboBox->addItem(comboBox->currentText());
}

void KeyServerImportDialog::import()
{
    updateComboBox(keyServerComboBox);
    message->setText("hallo");
    message->setAutoFillBackground(true);
    QPalette filesFoundPalette = message->palette();
    filesFoundPalette.setColor(QPalette::Background, "#20ff20");
    message->setPalette(filesFoundPalette);
}

void KeyServerImportDialog::showKeys(const QStringList &keys)
{
    /*for (int i = 0; i < keys.size(); ++i) {
        QFile file(currentDir.absoluteFilePath(keys[i]));
        qint64 size = QFileInfo(file).size();

        QTableWidgetItem *fileNameItem = new QTableWidgetItem(keys[i]);
        fileNameItem->setFlags(fileNameItem->flags() ^ Qt::ItemIsEditable);
        QTableWidgetItem *sizeItem = new QTableWidgetItem(tr("%1 KB")
                                             .arg(int((size + 1023) / 1024)));
        sizeItem->setTextAlignment(Qt::AlignRight | Qt::AlignVCenter);
        sizeItem->setFlags(sizeItem->flags() ^ Qt::ItemIsEditable);

        int row = keysTree->rowCount();
        keysTree->insertRow(row);
        keysTree->setItem(row, 0, fileNameItem);
        keysTree->setItem(row, 1, sizeItem);
    }
    message->setText(tr("%1 key(s) found").arg(keys.size()) +
                             (" (Double click on a key to import it)"));*/
}

QPushButton *KeyServerImportDialog::createButton(const QString &text, const char *member)
{
    QPushButton *button = new QPushButton(text);
    connect(button, SIGNAL(clicked()), this, member);
    return button;
}

QComboBox *KeyServerImportDialog::createComboBox(const QString &text)
{
    QComboBox *comboBox = new QComboBox;
    comboBox->setEditable(true);
    comboBox->addItem(text);
    comboBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
    return comboBox;
}

void KeyServerImportDialog::createKeysTree()
{
    keysTree = new QTreeWidget();
    keysTree->setColumnCount(2);

    QStringList labels;
    labels << tr("KeyID") << tr("UID");
    keysTree->setHeaderLabels(labels);
    /*keysTree->setSelectionBehavior(QAbstractItemView::SelectRows);
    keysTree->setHorizontalHeaderLabels(labels);
    keysTree->horizontalHeader()->setResizeMode(0, QHeaderView::Stretch);
    keysTree->verticalHeader()->hide();
    keysTree->setShowGrid(false);*/

    //connect(keysTree, SIGNAL(cellActivated(int,int)),
    //        this, SLOT(importKeyOfItem(int,int)));
}

void KeyServerImportDialog::importKeyOfItem(int row, int /* column */)
{
    /*QTableWidgetItem *item = keysTree->item(row, 0);
    QDesktopServices::openUrl(QUrl::fromLocalFile(currentDir.absoluteFilePath(item->text())));
    */
}

/*
 * newly added
 */
void KeyServerImportDialog::search()
{
    QString keyserver = keyServerComboBox->currentText();
    QString searchstring = searchLineEdit->text();

    QUrl url = keyserver+":11371/pks/lookup?search="+searchstring+"&op=index&options=mr";
    reply = qnam.get(QNetworkRequest(url));
    qDebug() << "error while download";
    connect(reply, SIGNAL(finished()),
            this, SLOT(searchFinished()));
    qDebug() << "error while download";
}

void KeyServerImportDialog::setMessage(const QString &text, int type)
{

}

void KeyServerImportDialog::searchFinished()
{
    QString firstLine = QString(reply->readLine(1024));

    QVariant redirectionTarget = reply->attribute(QNetworkRequest::RedirectionTargetAttribute);
    if (reply->error()) {
        message->setAutoFillBackground(true);
        QPalette filesFoundPalette = message->palette();
        filesFoundPalette.setColor(QPalette::Background, "#20ff20");
        message->setPalette(filesFoundPalette);
        message->setText("Error while contacting keyserver!");
    } else {
        qDebug() << "downloaded";
    }

    if (firstLine.contains("Error"))
    {
        QString text= QString(reply->readLine(1024));

        if (text.contains("Too many responses")) {
            message->setAutoFillBackground(true);
            QPalette filesFoundPalette = message->palette();
            filesFoundPalette.setColor(QPalette::Background, "#20ff20");
            message->setPalette(filesFoundPalette);
            message->setText("Too many responses from keyserver!");
            qDebug() << "Too many responses";
        }
        if (text.contains("No keys found")) {
            message->setAutoFillBackground(true);
            QPalette filesFoundPalette = message->palette();
            filesFoundPalette.setColor(QPalette::Background, "#20ff20");
            message->setPalette(filesFoundPalette);
            message->setText("No keys found containing the search string!");
            qDebug() << "No keys found";
        }
    } else {
        char buff[1024];
        QList <QTreeWidgetItem*> items;
        while (reply->readLine(buff,sizeof(buff)) !=-1) {
            QStringList line= QString(buff).split(":");
            qDebug() << line;
            if (line[0] == "pub") {
                QStringList line2 = QString(reply->readLine()).split(":");
                QStringList l;
                l << line[1] << line2[1];
                qDebug() << "l:" << l;
                items.append(new QTreeWidgetItem((QTreeWidget*) 0,l));

//                keysTree->insertTopLevelItem(parentItem);

            } else {
                if (line[0] == "uid") {
                    QStringList l;
                    l << "" << line[1];
                    items.last()->addChild(new QTreeWidgetItem((QTreeWidget*) 0, l));
                }
            }

        }
        qDebug() << items.size();
     keysTree->insertTopLevelItems(0,items);
    }
    reply->deleteLater();
    reply = 0;

    //qDebug() << *text;
    // TODO linebreak OS-unabhängig machen
    //QStringList zeilen = QString( *text ).split('\n');

    //qDebug() << zeilen.count();
    // use this line to get the key, if get request with keyid is sent
    //QString key = zeilen[3];
  /*  int count=-1;
    foreach (QString zeile, zeilen) {
        count++;
        if (zeile.startsWith("pub:",Qt::CaseSensitive)) {
            qDebug() << "pub";
        }
        qDebug() << zeile;
    }*/
}