[iOS] impement accurate path check in catalog links

https://jira.mail.ru/browse/MAPSME-14652
This commit is contained in:
Aleksey Belousov 2020-08-25 18:50:56 +03:00 committed by Maksim Andrianov
parent 06fba64485
commit 841ea453f9

View file

@ -169,9 +169,9 @@ final class CatalogWebViewController: WebViewController {
let showOnMapPath = "map"
guard let url = navigationAction.request.url,
url.scheme == "mapsme" ||
url.path.contains("buy_kml") ||
url.path.contains(subscribePath) ||
url.path.contains(showOnMapPath) else {
url.pathComponents.contains("buy_kml") ||
url.pathComponents.contains(subscribePath) ||
url.pathComponents.contains(showOnMapPath) else {
super.webView(webView, decidePolicyFor: navigationAction, decisionHandler: decisionHandler)
return
}
@ -180,12 +180,12 @@ final class CatalogWebViewController: WebViewController {
decisionHandler(.cancel)
}
if url.path.contains(subscribePath) {
if url.pathComponents.contains(subscribePath) {
showSubscriptionBannerScreen(SubscriptionGroupType(catalogURL: url))
return
}
if url.path.contains(showOnMapPath) {
if url.pathComponents.contains(showOnMapPath) {
guard let components = url.queryParams() else { return }
guard let serverId = components["server_id"] else { return }
showOnMap(serverId)