diff --git a/iphone/CoreApi/CoreApi/DeepLink/Data/DeepLinkSubscriptionData.h b/iphone/CoreApi/CoreApi/DeepLink/Data/DeepLinkSubscriptionData.h index cd4beeea45..6770763d05 100644 --- a/iphone/CoreApi/CoreApi/DeepLink/Data/DeepLinkSubscriptionData.h +++ b/iphone/CoreApi/CoreApi/DeepLink/Data/DeepLinkSubscriptionData.h @@ -6,7 +6,7 @@ NS_ASSUME_NONNULL_BEGIN @interface DeepLinkSubscriptionData : NSObject @property (nonatomic, readonly) DeeplinkParsingResult result; -@property(nonatomic, readonly) NSString* deliverable; +@property(nonatomic, readonly) NSString* groups; - (instancetype)init:(DeeplinkParsingResult)result; diff --git a/iphone/CoreApi/CoreApi/DeepLink/Data/DeepLinkSubscriptionData.mm b/iphone/CoreApi/CoreApi/DeepLink/Data/DeepLinkSubscriptionData.mm index 8143c392e9..bd0f912855 100644 --- a/iphone/CoreApi/CoreApi/DeepLink/Data/DeepLinkSubscriptionData.mm +++ b/iphone/CoreApi/CoreApi/DeepLink/Data/DeepLinkSubscriptionData.mm @@ -8,7 +8,7 @@ if (self) { _result = result; auto const &request = GetFramework().GetParsedSubscription(); - _deliverable = @(request.m_deliverable.c_str()); + _groups = @(request.m_groups.c_str()); } return self; } diff --git a/iphone/Maps/Core/DeepLink/Strategies/DeepLinkSubscriptionStrategy.swift b/iphone/Maps/Core/DeepLink/Strategies/DeepLinkSubscriptionStrategy.swift index 08324c2f97..7c6c5f3306 100644 --- a/iphone/Maps/Core/DeepLink/Strategies/DeepLinkSubscriptionStrategy.swift +++ b/iphone/Maps/Core/DeepLink/Strategies/DeepLinkSubscriptionStrategy.swift @@ -11,15 +11,9 @@ class DeepLinkSubscriptionStrategy: IDeepLinkHandlerStrategy { guard let mapViewController = MapViewController.shared() else { return; } - let type: SubscriptionGroupType - switch data.deliverable { - case MWMPurchaseManager.bookmarksSubscriptionServerId(): - type = .sightseeing - case MWMPurchaseManager.allPassSubscriptionServerId(): - type = .allPass - default: - LOG(.error, "Deliverable is wrong: \(deeplinkURL.url)"); - return; + guard let type: SubscriptionGroupType = SubscriptionGroupType(serverId: data.groups) else { + LOG(.error, "Groups is wrong: \(deeplinkURL.url)"); + return } mapViewController.dismiss(animated: false, completion: nil) mapViewController.navigationController?.popToRootViewController(animated: false) diff --git a/map/mwm_url.cpp b/map/mwm_url.cpp index 6dbc432e82..677c49685f 100644 --- a/map/mwm_url.cpp +++ b/map/mwm_url.cpp @@ -108,7 +108,7 @@ namespace catalogue_path namespace subscription { - char const * kDeliverable = "deliverable"; + char const * kGroups = "groups"; } // namespace subscription namespace @@ -310,7 +310,7 @@ ParsedMapApi::ParsingResult ParsedMapApi::Parse(Uri const & uri) return SubscriptionKeyValue(key, value, item); }); - if (!result || item.m_deliverable.empty()) + if (!result || item.m_groups.empty()) return ParsingResult::Incorrect; m_subscription = item; @@ -518,8 +518,8 @@ bool ParsedMapApi::CatalogPathKeyValue(string const & key, string const & value, bool ParsedMapApi::SubscriptionKeyValue(string const & key, string const & value, Subscription & item) const { - if (key == subscription::kDeliverable) - item.m_deliverable = value; + if (key == subscription::kGroups) + item.m_groups = value; return true; } diff --git a/map/mwm_url.hpp b/map/mwm_url.hpp index b4b103709d..1bba8552a7 100644 --- a/map/mwm_url.hpp +++ b/map/mwm_url.hpp @@ -50,7 +50,7 @@ struct CatalogPath struct Subscription { - std::string m_deliverable; + std::string m_groups; }; namespace lead