-
Notifications
You must be signed in to change notification settings - Fork 0
/
AcdbUrlAction.cpp
372 lines (312 loc) · 12.1 KB
/
AcdbUrlAction.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
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
/*------------------------------------------------------------------------------
Copyright 2021 Garmin Ltd. or its subsidiaries.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
------------------------------------------------------------------------------*/
/**
@file
Functions for processing acdb:// URLs.
Copyright 2019-2020 by Garmin Ltd. or its subsidiaries.
*/
#define DBG_MODULE "ACDB"
#define DBG_TAG "AcdbUrlAction"
#include <inttypes.h>
#include <map>
#include "Acdb/AcdbUrlAction.hpp"
#include "Acdb/StringUtil.hpp"
#include "DBG_pub.h"
namespace Acdb {
const std::string ReviewsSection{"Reviews"};
bool ParseActionType(const std::string& aUrl, AcdbUrlAction::ActionType& aActionType_out,
std::string& aRemainingUrl_out);
bool ParseRemainingTokens(const AcdbUrlAction::ActionType aActionType,
const std::string& aRemainingUrl, AcdbUrlActionPtr& aAction_out);
// AcdbUrlAction
//----------------------------------------------------------------
//!
//! @public
//! @brief Constructor
//!
//----------------------------------------------------------------
AcdbUrlAction::AcdbUrlAction(ActionType aAction) : mAction{aAction} {} // end of AcdbUrlAction
//----------------------------------------------------------------
//!
//! @public
//! @brief Accessor
//!
//----------------------------------------------------------------
AcdbUrlAction::ActionType AcdbUrlAction::GetAction() const { return mAction; } // end of GetAction
// EditAction
//----------------------------------------------------------------
//!
//! @public
//! @brief Constructor
//!
//----------------------------------------------------------------
EditAction::EditAction(std::string&& aUrl)
: AcdbUrlAction(ActionType::Edit), mUrl(std::move(aUrl)) {} // end of EditAction
//----------------------------------------------------------------
//!
//! @public
//! @brief Accessor
//!
//----------------------------------------------------------------
std::string EditAction::GetUrl() const { return mUrl; } // end of GetUrl
// ReportReviewAction
//----------------------------------------------------------------
//!
//! @public
//! @brief Constructor
//!
//----------------------------------------------------------------
ReportReviewAction::ReportReviewAction(std::string&& aUrl)
: AcdbUrlAction(ActionType::ReportReview), mUrl(aUrl) {} // end of ReportReviewAction
//----------------------------------------------------------------
//!
//! @public
//! @brief Accessor
//!
//----------------------------------------------------------------
std::string ReportReviewAction::GetUrl() const { return mUrl; } // end of GetUrl
// SeeAllAction
//----------------------------------------------------------------
//!
//! @public
//! @brief Constructor
//!
//----------------------------------------------------------------
SeeAllAction::SeeAllAction(const ACDB_marker_idx_type aMarkerId, const std::string&& aSection,
const uint32_t aPageNumber)
: AcdbUrlAction(ActionType::SeeAll),
mMarkerId(aMarkerId),
mPageNumber(aPageNumber),
mSection(aSection) {} // end of SeeAllAction
//----------------------------------------------------------------
//!
//! @public
//! @brief Accessor
//!
//----------------------------------------------------------------
ACDB_marker_idx_type SeeAllAction::GetMarkerId() const { return mMarkerId; } // end of GetMarkerId
//----------------------------------------------------------------
//!
//! @public
//! @brief Accessor
//!
//----------------------------------------------------------------
std::string SeeAllAction::GetSection() const { return mSection; } // end of GetSection
//----------------------------------------------------------------
//!
//! @public
//! @brief Accessor
//!
//----------------------------------------------------------------
uint32_t SeeAllAction::GetPageNumber() const { return mPageNumber; } // end of GetPageNumber
// ShowPhotosAction
//----------------------------------------------------------------
//!
//! @public
//! @brief Constructor
//!
//----------------------------------------------------------------
ShowPhotosAction::ShowPhotosAction(const ACDB_marker_idx_type aMarkerId)
: AcdbUrlAction(ActionType::ShowPhotos), mMarkerId(aMarkerId) {} // end of ShowPhotosAction
//----------------------------------------------------------------
//!
//! @public
//! @brief Accessor
//!
//----------------------------------------------------------------
ACDB_marker_idx_type ShowPhotosAction::GetMarkerId() const {
return mMarkerId;
} // end of GetMarkerId
// ShowSummaryAction
//----------------------------------------------------------------
//!
//! @public
//! @brief Constructor
//!
//----------------------------------------------------------------
ShowSummaryAction::ShowSummaryAction(const ACDB_marker_idx_type aMarkerId)
: AcdbUrlAction(ActionType::ShowSummary), mMarkerId(aMarkerId) {} // end of ShowSummaryAction
//----------------------------------------------------------------
//!
//! @public
//! @brief Accessor
//!
//----------------------------------------------------------------
ACDB_marker_idx_type ShowSummaryAction::GetMarkerId() const {
return mMarkerId;
} // end of GetMarkerId
// ReportReviewAction
//----------------------------------------------------------------
//!
//! @public
//! @brief Constructor
//!
//----------------------------------------------------------------
VoteReviewAction::VoteReviewAction(const ACDB_marker_idx_type aMarkerId,
const ACDB_review_idx_type aReviewId)
: AcdbUrlAction(ActionType::VoteReview),
mMarkerId(aMarkerId),
mReviewId(aReviewId) {} // end of VoteReviewAction
//----------------------------------------------------------------
//!
//! @public
//! @brief Accessor
//!
//----------------------------------------------------------------
ACDB_marker_idx_type VoteReviewAction::GetMarkerId() const {
return mMarkerId;
} // end of GetMarkerId
//----------------------------------------------------------------
//!
//! @public
//! @brief Accessor
//!
//----------------------------------------------------------------
ACDB_review_idx_type VoteReviewAction::GetReviewId() const {
return mReviewId;
} // end of GetReviewId
// Parser
//----------------------------------------------------------------
//!
//! @public
//! @brief Parse an "acdb://" URL into an AcdbUrlAction type.
//!
//----------------------------------------------------------------
bool ParseAcdbUrl(const std::string& aUrl, AcdbUrlActionPtr& aAction_out) {
const std::string expectedProtocol{"acdb://"};
// Check protocol
size_t foundPosition = aUrl.find(expectedProtocol);
if (foundPosition != 0) {
DBG_I("Not an ACDB URL (protocol mismatch)");
return false;
}
// Get action
std::string remainingUrl = aUrl.substr(expectedProtocol.size());
AcdbUrlAction::ActionType actionType;
bool success = ParseActionType(remainingUrl, actionType, remainingUrl);
success = success && ParseRemainingTokens(actionType, remainingUrl, aAction_out);
return success;
} // end of ParseAcdbUrl
//----------------------------------------------------------------
//!
//! @public
//! @brief checks if a section name matches the "reviews" section
//!
//----------------------------------------------------------------
bool IsReviewsSection(const std::string& aSectionName) {
return (aSectionName == ReviewsSection);
} // end of ParseAcdbUrl
//----------------------------------------------------------------
//!
//! @private
//! @brief Parse the action type from an "acdb://" URL.
//!
//----------------------------------------------------------------
bool ParseActionType(const std::string& aUrl, AcdbUrlAction::ActionType& aActionType_out,
std::string& aRemainingUrl_out) {
static const std::map<std::string, AcdbUrlAction::ActionType> ActionStringMap = {
{"edit", AcdbUrlAction::ActionType::Edit},
{"report", AcdbUrlAction::ActionType::ReportReview},
{"seeAll", AcdbUrlAction::ActionType::SeeAll},
{"photos", AcdbUrlAction::ActionType::ShowPhotos},
{"summary", AcdbUrlAction::ActionType::ShowSummary},
{"vote", AcdbUrlAction::ActionType::VoteReview}};
// Get action
std::string actionStr = aUrl.substr(0, aUrl.find('/'));
auto actionIt = ActionStringMap.find(actionStr);
if (actionIt == ActionStringMap.end()) {
DBG_ASSERT_ALWAYS("Invalid URL (unknown action)");
return false;
}
aActionType_out = actionIt->second;
if (aUrl.length() > actionStr.length()) {
aRemainingUrl_out = aUrl.substr(actionStr.length() + 1);
} else {
aRemainingUrl_out.clear();
}
return true;
} // end of ParseActionType
//----------------------------------------------------------------
//!
//! @private
//! @brief Parse tokens after action type from an "acdb://" URL.
//! @output Unique ptr to AcdbUrlAction subclass for the
//! requested action.
//!
//----------------------------------------------------------------
bool ParseRemainingTokens(const AcdbUrlAction::ActionType aActionType,
const std::string& aRemainingUrl, AcdbUrlActionPtr& aAction_out) {
std::vector<std::string> tokens = String::Split(aRemainingUrl, '/');
bool success{true};
switch (aActionType) {
case AcdbUrlAction::ActionType::Edit: {
// Format: <markerId>/<sectionName>
success = (tokens.size() == 2);
if (success) {
const std::string FormatString = "embed/poi/%" PRIu64 "/%s/edit";
std::string url =
String::Format(FormatString.c_str(), String::ToUInt64(tokens[0]), tokens[1].c_str());
aAction_out.reset(new EditAction(std::move(url)));
}
} break;
case AcdbUrlAction::ActionType::ReportReview: {
// Format: <markerId>/<reviewId>
success = (tokens.size() == 2);
if (success) {
const std::string FormatString = "embed/poi/%" PRIu64 "/reviews/edit/%" PRIu64;
std::string url = String::Format(FormatString.c_str(), String::ToUInt64(tokens[0]),
String::ToUInt64(tokens[1]));
aAction_out.reset(new ReportReviewAction(std::move(url)));
}
} break;
case AcdbUrlAction::ActionType::SeeAll: {
// Format: <markerId>/<sectionName> or <markerId>/Reviews/<pageNumber>
uint32_t pageNumber = 0;
// Must have markerId and section. If Reviews section, must have page number; otherwise, must
// not.
if (tokens.size() == 3 && tokens[1] == ReviewsSection) {
pageNumber = String::ToUInt(tokens[2]);
} else if (tokens.size() != 2 || tokens[1] == ReviewsSection) {
success = false;
}
if (success) {
aAction_out.reset(
new SeeAllAction(String::ToUInt64(tokens[0]), std::move(tokens[1]), pageNumber));
}
} break;
case AcdbUrlAction::ActionType::ShowPhotos:
// Format: <markerId>
success = (tokens.size() == 1);
if (success) {
aAction_out.reset(new ShowPhotosAction(String::ToUInt64(tokens[0])));
}
break;
case AcdbUrlAction::ActionType::ShowSummary:
// Format: <markerId>
success = (tokens.size() == 1);
if (success) {
aAction_out.reset(new ShowSummaryAction(String::ToUInt64(tokens[0])));
}
break;
case AcdbUrlAction::ActionType::VoteReview:
// Format: <markerId>/<reviewId>
success = (tokens.size() == 2);
if (success) {
aAction_out.reset(
new VoteReviewAction(String::ToUInt64(tokens[0]), String::ToUInt64(tokens[1])));
}
break;
}
return success;
} // end of ParseRemainingTokens
} // end of namespace Acdb