summaryrefslogtreecommitdiffstats
path: root/qtsoap/examples/google/google.cpp
blob: 2bc90b3eb199b28194738629f64f641f6dfa7aa8 (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
// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
// SPDX-License-Identifier: BSD-3-Clause

#include <QApplication>
#include <QMessageBox>
#include <QCursor>
#include <QFile>
#include <QLabel>
#include <QLineEdit>
#include <QTextBrowser>
#include <QLayout>
#include <QPushButton>
#include "google.h"

Google::Google(QWidget *parent)
    : QWidget(parent), http(this)
{
    // Generate the GUI.
    quitButton = new QPushButton("&Quit", this);
    searchString = new QLineEdit(this);
    resultView = new QTextBrowser(this);
    QVBoxLayout *layout = new QVBoxLayout(this);

    QLabel *gLabel = new QLabel("Google Web APIs license key: ", this);
    googleKey = new QLineEdit(this);
    QHBoxLayout *topBar = new QHBoxLayout();
    topBar->addWidget(gLabel);
    topBar->addWidget(googleKey);
    layout->addLayout(topBar);

    QLabel *sLabel = new QLabel("Search string: ", this);
    QPushButton *searchButton = new QPushButton("Search!", this);
    QHBoxLayout *searchBar = new QHBoxLayout();
    searchBar->addWidget(sLabel);
    searchBar->addWidget(searchString);
    searchBar->addWidget(searchButton);
    layout->addLayout(searchBar);

    layout->addWidget(resultView);
    layout->addWidget(quitButton);

    // Connect signals to slots. Note the submitRequest() slots.
    connect(&http, SIGNAL(responseReady()), SLOT(getResponse()));
    connect(quitButton, SIGNAL(clicked()), SLOT(close()));
    connect(searchString, SIGNAL(returnPressed()), SLOT(submitRequest()));
    connect(searchButton, SIGNAL(clicked()), SLOT(submitRequest()));
    connect(googleKey, SIGNAL(returnPressed()), SLOT(submitRequest()));

    // Pressing enter should trigger a search, unless focus has been
    // explicitly moved.
    searchButton->setDefault(true);

    // Prepare to submit request.
    http.setAction("urn:GoogleSearchAction");
    http.setHost("api.google.com");
}

void Google::submitRequest()
{
    // Check that the license key is set.
    if (googleKey->text() == "") {
	QMessageBox::warning(this, tr("Missing license key"),
			     tr("Please enter your Google Web APIs license key."
				" If you do not have one, you can visit<br>"
				" http://api.google.com/ and create a Google"
				" account to obtain a license key."));
	return;
    }

    // Check that we have a search string.
    if (searchString->text() == "") {
	QMessageBox::warning(this, tr("Missing search string"),
			     tr("Please enter a search string."));
	return;

    }

    // Generate request. Details about how to generate a proper
    // request are available from http://api.google.com/. The results
    // are always fetched as latin1 in this example, but this can be
    // easily changed (see the "ie" and "oe" arguments below).
    QtSoapMessage request;
    request.setMethod(QtSoapQName("doGoogleSearch", "urn:GoogleSearch"));
    request.addMethodArgument("key", "", googleKey->text());
    request.addMethodArgument("q", "", searchString->text());
    request.addMethodArgument("start", "", 0);
    request.addMethodArgument("maxResults", "", 10);
    request.addMethodArgument("filter", "", false, 0);
    request.addMethodArgument("restrict", "", "");
    request.addMethodArgument("safeSearch", "", false, 0);
    request.addMethodArgument("lr", "", "");
    request.addMethodArgument("ie", "", "latin1");
    request.addMethodArgument("oe", "", "latin1");

    // Submit the method request to the web service.
    http.submitRequest(request, "/search/beta2");

    // Set the cursor to wait mode.
    QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
}

void Google::getResponse()
{
    // Set cursor back to normal shape.
    QApplication::restoreOverrideCursor();

    // Reset resultView.
    resultView->clear();

    // Get the response, check for error.
    const QtSoapMessage &resp = http.getResponse();
    if (resp.isFault()) {
	resultView->setHtml(tr("<b>Query failed</b>: ")
			    + resp.faultString().value().toString());
	return;
    }

    // Extract the return value from this method response, check for
    // errors.
    const QtSoapType &res = resp.returnValue();
    if (!res.isValid()) {
	resultView->append(tr("Invalid return value"));
	return;
    }

    // Generate resultView output. Make it resemble the actual web
    // output from http://www.google.com/.
    QString header(tr("Searched the web for <b>%1</b>, results %2 - %3 "
		      "of about %4. Search took %5 seconds.<br><hr>")
		   .arg(res["searchQuery"].toString())
		   .arg(res["startIndex"].toInt())
		   .arg(res["endIndex"].toInt())
		   .arg(res["estimatedTotalResultsCount"].toInt())
		   .arg(res["searchTime"].value().toDouble(), 0, 'f', 2));

    const QtSoapType &resultElements = res["resultElements"];
    QString allElements;

    for (int i = 0; i < resultElements.count(); ++i) {
	const QtSoapType &resultElement = res["resultElements"][i];

	QString cat = resultElement["directoryCategory"]["fullViewableName"].toString();
	QString summary = resultElement["summary"].toString();
	QString title = resultElement["title"].toString();
	QString snippet = resultElement["snippet"].toString();
	QString url = resultElement["URL"].toString();
	QString cachedSize = resultElement["cachedSize"].toString();

	QString thisElement = "<br>";

	if (!title.isEmpty()) {
	    thisElement += "<font color=\"#0000FF\"><b><u>"
			   + title + "</u></b></font><br>";
	} else {
	    thisElement += "<font color=\"#0000FF\"><b><u>"
			   + url + "</u></b></font><br>";
	}

	if (!snippet.isEmpty())
	    thisElement += snippet + "<br>";

	if (!summary.isEmpty()) {
	    thisElement += "<font color=\"#808080\">Description:</font> "
			   + summary + "<br>";
	}

	if (!cat.isEmpty()) {
	    thisElement += "<font color=\"#808080\">Category: <u>"
			   + cat + "</u></font><br>";
	}

	if (!title.isEmpty()) {
	    thisElement += "<font color=\"#008000\"><u>" + url
			   + "</u> - " + cachedSize + "</font><br>";
	}

	allElements += thisElement;
    }

    // Update the resultView.
    resultView->setHtml(header + allElements);
}