-
Notifications
You must be signed in to change notification settings - Fork 59
/
qplacesearchreplygooglemaps.cpp
180 lines (140 loc) · 5.89 KB
/
qplacesearchreplygooglemaps.cpp
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
#include "qplacesearchreplygooglemaps.h"
#include "qplacemanagerenginegooglemaps.h"
#include <QtCore/QJsonDocument>
#include <QtCore/QJsonArray>
#include <QtCore/QJsonObject>
#include <QtNetwork/QNetworkReply>
#include <QtPositioning/QGeoCircle>
#include <QtPositioning/QGeoRectangle>
#include <QtPositioning/QGeoLocation>
#include <QtPositioning/QGeoAddress>
#include <QtLocation/QPlaceResult>
#include <QtLocation/QPlaceSearchRequest>
#include <QtLocation/QPlace>
#include <QtLocation/QPlaceIcon>
QPlaceSearchReplyGooglemaps::QPlaceSearchReplyGooglemaps(const QPlaceSearchRequest &request,
QNetworkReply *reply, QPlaceManagerEngineGooglemaps *parent)
: QPlaceSearchReply(parent), m_reply(reply)
{
Q_ASSERT(parent);
setRequest(request);
if (!m_reply)
return;
m_reply->setParent(this);
connect(m_reply, &QNetworkReply::finished, this, &QPlaceSearchReplyGooglemaps::replyFinished);
}
QPlaceSearchReplyGooglemaps::~QPlaceSearchReplyGooglemaps()
{
}
void QPlaceSearchReplyGooglemaps::abort()
{
if (m_reply)
m_reply->abort();
}
void QPlaceSearchReplyGooglemaps::setError(QPlaceReply::Error errorCode, const QString &errorString)
{
QPlaceReply::setError(errorCode, errorString);
emit errorOccurred(errorCode, errorString);
setFinished(true);
emit finished();
}
static QGeoRectangle parseBoundingBox(const QJsonArray &coordinates)
{
if (coordinates.count() != 4)
return QGeoRectangle();
double bottom = coordinates.at(0).toString().toDouble();
double top = coordinates.at(1).toString().toDouble();
double left = coordinates.at(2).toString().toDouble();
double right = coordinates.at(3).toString().toDouble();
return QGeoRectangle(QGeoCoordinate(top, left), QGeoCoordinate(bottom, right));
}
void QPlaceSearchReplyGooglemaps::replyFinished()
{
QNetworkReply *reply = m_reply;
m_reply->deleteLater();
m_reply = 0;
if (reply->error() != QNetworkReply::NoError) {
setError(CommunicationError, tr("Communication error"));
return;
}
QJsonDocument document = QJsonDocument::fromJson(reply->readAll());
if (!document.isArray()) {
setError(ParseError, tr("Response parse error"));
return;
}
QJsonArray resultsArray = document.array();
QGeoCoordinate searchCenter = request().searchArea().center();
QStringList placeIds;
QList<QPlaceSearchResult> results;
for (int i = 0; i < resultsArray.count(); ++i) {
QJsonObject item = resultsArray.at(i).toObject();
QPlaceResult pr = parsePlaceResult(item);
pr.setDistance(searchCenter.distanceTo(pr.place().location().coordinate()));
placeIds.append(pr.place().placeId());
results.append(pr);
}
QVariantMap searchContext = request().searchContext().toMap();
QStringList excludePlaceIds =
searchContext.value(QStringLiteral("ExcludePlaceIds")).toStringList();
if (!excludePlaceIds.isEmpty()) {
QPlaceSearchRequest r = request();
QVariantMap parameters = searchContext;
QStringList epi = excludePlaceIds;
epi.removeLast();
parameters.insert(QStringLiteral("ExcludePlaceIds"), epi);
r.setSearchContext(parameters);
setPreviousPageRequest(r);
}
if (!placeIds.isEmpty()) {
QPlaceSearchRequest r = request();
QVariantMap parameters = searchContext;
QStringList epi = excludePlaceIds;
epi.append(placeIds.join(QLatin1Char(',')));
parameters.insert(QStringLiteral("ExcludePlaceIds"), epi);
r.setSearchContext(parameters);
setNextPageRequest(r);
}
setResults(results);
setFinished(true);
emit finished();
}
QPlaceResult QPlaceSearchReplyGooglemaps::parsePlaceResult(const QJsonObject &item) const
{
QPlace place;
QGeoCoordinate coordinate = QGeoCoordinate(item.value(QStringLiteral("lat")).toString().toDouble(),
item.value(QStringLiteral("lon")).toString().toDouble());
//const QString placeRank = item.value(QStringLiteral("place_rank")).toString();
//const QString category = item.value(QStringLiteral("category")).toString();
const QString type = item.value(QStringLiteral("type")).toString();
//double importance = item.value(QStringLiteral("importance")).toDouble();
place.setAttribution(item.value(QStringLiteral("licence")).toString());
place.setPlaceId(item.value(QStringLiteral("place_id")).toString());
QVariantMap iconParameters;
iconParameters.insert(QPlaceIcon::SingleUrl,
QUrl(item.value(QStringLiteral("icon")).toString()));
QPlaceIcon icon;
icon.setParameters(iconParameters);
place.setIcon(icon);
QJsonObject addressDetails = item.value(QStringLiteral("address")).toObject();
const QString title = addressDetails.value(type).toString();
place.setName(title);
QGeoAddress address;
address.setCity(addressDetails.value(QStringLiteral("city")).toString());
address.setCountry(addressDetails.value(QStringLiteral("country")).toString());
// FIXME: country_code is alpha-2 setCountryCode takes alpha-3
//address.setCountryCode(addressDetails.value(QStringLiteral("country_code")).toString());
address.setPostalCode(addressDetails.value(QStringLiteral("postcode")).toString());
address.setStreet(addressDetails.value(QStringLiteral("road")).toString());
address.setState(addressDetails.value(QStringLiteral("state")).toString());
address.setDistrict(addressDetails.value(QStringLiteral("suburb")).toString());
QGeoLocation location;
location.setCoordinate(coordinate);
location.setAddress(address);
location.setBoundingShape(parseBoundingBox(item.value(QStringLiteral("boundingbox")).toArray()));
place.setLocation(location);
QPlaceResult result;
result.setIcon(icon);
result.setPlace(place);
result.setTitle(title);
return result;
}