mobile-ios/CovidSafe/URLHelper.swift
2021-05-12 17:39:38 -07:00

69 lines
2.3 KiB
Swift

//
// URLHelper.swift
// CovidSafe
//
// Copyright © 2020 Australian Government. All rights reserved.
//
import Foundation
struct URLHelper {
static let host = "https://www.covidsafe.gov.au"
private static func getLocale() -> String {
guard let langCode = Locale.current.languageCode else {
return "en"
}
let localeId = Locale.current.identifier
let supportedLocales = Bundle.main.localizations
var matches = supportedLocales.filter { (supportedLocale) -> Bool in
return localeId.starts(with: supportedLocale)
}
if matches.count == 0 {
matches = supportedLocales.filter { (supportedLocale) -> Bool in
return supportedLocale.starts(with: "\(langCode)-") // for punjabi is particularly special that the identifier is pa_AU although
// the language code in the supported locals is pa-IN.
// just checking it has the pa- should be enough. I anticipate this happening in other dialects as they come.
}
}
guard let localeCode = matches.first else {
return "en"
}
return localeCode
}
static fileprivate func buildLocalisedURL(path: String) -> String {
let localeCode = getLocale()
guard localeCode != "en" else {
return "\(host)/\(path).html"
}
return "\(host)/\(path)/\(localeCode.lowercased()).html"
}
static func getHelpURL() -> String {
return buildLocalisedURL(path: "help-topics")
}
static func getPrivacyPolicyURL() -> String {
return buildLocalisedURL(path: "privacy-policy")
}
static func getCollectionNoticeURL() -> String {
// "https://covidsafe.gov.au/collection-notice.html"
return buildLocalisedURL(path: "collection-notice")
}
static func getAustralianNumberURL() -> String {
return "\(getHelpURL())#verify-mobile-number-pin"
}
static func geLocationPermissionsURL() -> String {
return "\(getHelpURL())#location-permissions"
}
static func getDataDeletionURL() -> String {
return "https://covidsafe-form.service.gov.au"
}
}