Files
MrbWebLibre/app/lib/utils/uri_parser.dart
T
2025-06-02 22:21:39 +02:00

35 lines
973 B
Dart

import 'package:universal_io/io.dart';
final _domainRegex = RegExp(r'\.[a-zA-Z]{2,}$');
const _supportedSchemes = {'https', 'http', 'ftp', 'file', 'content', 'about'};
Uri? tryParseUrl(String? input, {bool eagerParsing = false}) {
if (input != null) {
var uri = Uri.tryParse(input);
if (uri != null) {
if (uri.authority.isEmpty && eagerParsing) {
if (uri.pathSegments.isNotEmpty) {
if (_domainRegex.hasMatch(uri.pathSegments.first)) {
uri = Uri.tryParse('https://$input');
} else if (InternetAddress.tryParse(uri.pathSegments.first) != null) {
uri = Uri.tryParse('https://$input');
}
}
}
if (uri != null) {
if (uri.isScheme('about')) {
return uri;
}
if (uri.authority.isNotEmpty) {
if (_supportedSchemes.contains(uri.scheme) || !uri.hasScheme) {
return uri;
}
}
}
}
}
return null;
}