mirror of
https://github.com/gedoor/legado.git
synced 2025-01-09 04:17:45 +08:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
d750ad5371
@ -144,10 +144,24 @@ object NetworkUtils {
|
||||
} else url.substring(0, index)
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取二级域名,供cookie保存和读取
|
||||
*
|
||||
* 1.2.3.4 => 1.2.3.4
|
||||
* www.example.com => example.com
|
||||
* www.example.com.cn => example.com.cn
|
||||
* 未实现www.content.example.com => example.com
|
||||
*/
|
||||
fun getSubDomain(url: String?): String {
|
||||
val baseUrl = getBaseUrl(url) ?: return ""
|
||||
//baseUrl为IPv4时,直接返回
|
||||
//IPv6暂时不考虑支持
|
||||
if (isIPv4Address(baseUrl)) {
|
||||
return baseUrl
|
||||
}
|
||||
//td do:利用https://github.com/publicsuffix/list,https://github.com/Kevin-Sangeelee/PublicSuffixList实现二级域名返回
|
||||
return if (baseUrl.indexOf(".") == baseUrl.lastIndexOf(".")) {
|
||||
baseUrl.substring(baseUrl.lastIndexOf("/") + 1)
|
||||
baseUrl
|
||||
} else baseUrl.substring(baseUrl.indexOf(".") + 1)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user