mod: 评论区非正常地址判断
This commit is contained in:
@ -642,6 +642,11 @@ InlineSpan buildContent(
|
|||||||
} else {
|
} else {
|
||||||
final String redirectUrl =
|
final String redirectUrl =
|
||||||
await UrlUtils.parseRedirectUrl(matchStr);
|
await UrlUtils.parseRedirectUrl(matchStr);
|
||||||
|
if (redirectUrl == matchStr) {
|
||||||
|
Clipboard.setData(ClipboardData(text: matchStr));
|
||||||
|
SmartDialog.showToast('地址可能有误');
|
||||||
|
return;
|
||||||
|
}
|
||||||
final String pathSegment = Uri.parse(redirectUrl).path;
|
final String pathSegment = Uri.parse(redirectUrl).path;
|
||||||
final String lastPathSegment =
|
final String lastPathSegment =
|
||||||
pathSegment.split('/').last;
|
pathSegment.split('/').last;
|
||||||
|
|||||||
@ -14,19 +14,23 @@ class UrlUtils {
|
|||||||
dio.options.validateStatus = (status) {
|
dio.options.validateStatus = (status) {
|
||||||
return status == 200 || status == 301 || status == 302;
|
return status == 200 || status == 301 || status == 302;
|
||||||
};
|
};
|
||||||
final response = await dio.get(url);
|
try {
|
||||||
if (response.statusCode == 302) {
|
final response = await dio.get(url);
|
||||||
redirectUrl = response.headers['location']?.first as String;
|
if (response.statusCode == 302) {
|
||||||
if (redirectUrl.endsWith('/')) {
|
redirectUrl = response.headers['location']?.first as String;
|
||||||
redirectUrl = redirectUrl.substring(0, redirectUrl.length - 1);
|
if (redirectUrl.endsWith('/')) {
|
||||||
}
|
redirectUrl = redirectUrl.substring(0, redirectUrl.length - 1);
|
||||||
} else {
|
}
|
||||||
if (url.endsWith('/')) {
|
} else {
|
||||||
url = url.substring(0, url.length - 1);
|
if (url.endsWith('/')) {
|
||||||
|
url = url.substring(0, url.length - 1);
|
||||||
|
}
|
||||||
|
return url;
|
||||||
}
|
}
|
||||||
|
return redirectUrl;
|
||||||
|
} catch (err) {
|
||||||
return url;
|
return url;
|
||||||
}
|
}
|
||||||
return redirectUrl;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 匹配url路由跳转
|
// 匹配url路由跳转
|
||||||
|
|||||||
Reference in New Issue
Block a user