2020-09-11 23:54:28 +02:00
|
|
|
import 'package:flutter/material.dart';
|
2022-04-30 16:23:36 +02:00
|
|
|
import 'package:logging/logging.dart';
|
2020-09-11 23:54:28 +02:00
|
|
|
import 'package:provider/provider.dart';
|
2020-08-30 16:49:59 +02:00
|
|
|
import 'package:url_launcher/url_launcher.dart' as ul;
|
|
|
|
|
2022-04-30 16:23:36 +02:00
|
|
|
import 'l10n/l10n.dart';
|
2021-11-25 18:12:36 +01:00
|
|
|
import 'pages/community/community.dart';
|
2022-01-20 11:50:24 +01:00
|
|
|
import 'pages/instance/instance.dart';
|
2020-09-28 20:04:44 +02:00
|
|
|
import 'pages/media_view.dart';
|
2020-09-12 00:46:16 +02:00
|
|
|
import 'pages/user.dart';
|
2020-09-11 23:54:28 +02:00
|
|
|
import 'stores/accounts_store.dart';
|
2020-09-16 22:53:04 +02:00
|
|
|
import 'util/goto.dart';
|
2020-09-11 23:54:28 +02:00
|
|
|
|
2020-09-30 19:05:00 +02:00
|
|
|
/// Decides where does a link link to. Either somewhere in-app:
|
|
|
|
/// opens the correct page, or outside of the app: opens in a browser
|
2020-09-12 17:05:52 +02:00
|
|
|
Future<void> linkLauncher({
|
2021-04-09 00:11:44 +02:00
|
|
|
required BuildContext context,
|
|
|
|
required String url,
|
|
|
|
required String instanceHost,
|
2020-09-12 00:46:16 +02:00
|
|
|
}) async {
|
2021-11-25 18:12:36 +01:00
|
|
|
void push(Widget Function() builder) {
|
2020-09-16 22:53:04 +02:00
|
|
|
goTo(context, (c) => builder());
|
2020-09-12 00:46:16 +02:00
|
|
|
}
|
2020-09-11 23:54:28 +02:00
|
|
|
|
2020-09-29 23:15:51 +02:00
|
|
|
final instances = context.read<AccountsStore>().instances;
|
2020-09-11 23:54:28 +02:00
|
|
|
|
2020-09-12 00:46:16 +02:00
|
|
|
final chonks = url.split('/');
|
2022-04-30 16:23:36 +02:00
|
|
|
if (chonks.length == 1) {
|
|
|
|
await launchLink(link: url, context: context);
|
|
|
|
return;
|
|
|
|
}
|
2020-09-11 23:54:28 +02:00
|
|
|
|
2020-09-12 00:46:16 +02:00
|
|
|
// CHECK IF LINK TO USER
|
2020-09-28 19:58:09 +02:00
|
|
|
if (url.startsWith('/u/')) {
|
2020-12-31 14:58:23 +01:00
|
|
|
return push(() =>
|
|
|
|
UserPage.fromName(instanceHost: instanceHost, username: chonks[2]));
|
2020-09-12 00:46:16 +02:00
|
|
|
}
|
2020-09-11 23:54:28 +02:00
|
|
|
|
2020-09-12 00:46:16 +02:00
|
|
|
// CHECK IF LINK TO COMMUNITY
|
2020-09-28 19:58:09 +02:00
|
|
|
if (url.startsWith('/c/')) {
|
2021-11-25 18:12:36 +01:00
|
|
|
await Navigator.of(context)
|
|
|
|
.push(CommunityPage.fromNameRoute(instanceHost, chonks[2]));
|
|
|
|
return;
|
2020-09-12 00:46:16 +02:00
|
|
|
}
|
2020-09-11 23:54:28 +02:00
|
|
|
|
|
|
|
// CHECK IF REDIRECTS TO A PAGE ON ONE OF ADDED INSTANCES
|
|
|
|
|
2020-09-12 10:23:39 +02:00
|
|
|
final instanceRegex = RegExp(r'^(?:https?:\/\/)?([\w\.-]+)(.*)$');
|
2020-09-11 23:54:28 +02:00
|
|
|
final match = instanceRegex.firstMatch(url);
|
|
|
|
|
2020-09-12 10:23:39 +02:00
|
|
|
final matchedInstance = match?.group(1);
|
|
|
|
final rest = match?.group(2);
|
2020-09-11 23:54:28 +02:00
|
|
|
|
2021-04-09 00:11:44 +02:00
|
|
|
if (matchedInstance != null && instances.any((e) => e == match?.group(1))) {
|
|
|
|
if (rest == null || rest.isEmpty || rest == '/') {
|
2022-01-20 11:50:24 +01:00
|
|
|
return Navigator.of(context).push<void>(InstancePage.route(instanceHost));
|
2020-09-12 10:23:39 +02:00
|
|
|
}
|
2020-09-12 00:26:54 +02:00
|
|
|
final split = rest.split('/');
|
|
|
|
switch (split[1]) {
|
2020-09-11 23:54:28 +02:00
|
|
|
case 'c':
|
2020-09-28 20:04:44 +02:00
|
|
|
return goToCommunity.byName(context, matchedInstance, split[2]);
|
2020-09-12 00:26:54 +02:00
|
|
|
|
2020-09-11 23:54:28 +02:00
|
|
|
case 'u':
|
2020-09-28 20:04:44 +02:00
|
|
|
return goToUser.byName(context, matchedInstance, split[2]);
|
2020-09-12 00:26:54 +02:00
|
|
|
|
2020-09-11 23:54:28 +02:00
|
|
|
case 'post':
|
2020-09-12 09:40:47 +02:00
|
|
|
if (split.length == 3) {
|
2020-09-28 20:04:44 +02:00
|
|
|
return goToPost(context, matchedInstance, int.parse(split[2]));
|
2020-09-12 09:40:47 +02:00
|
|
|
} else if (split.length == 5) {
|
|
|
|
// TODO: post with focus on comment thread
|
2020-09-28 20:04:44 +02:00
|
|
|
return goToPost(context, matchedInstance, int.parse(split[2]));
|
2020-09-12 09:40:47 +02:00
|
|
|
}
|
|
|
|
break;
|
2020-09-12 00:26:54 +02:00
|
|
|
|
2020-09-11 23:54:28 +02:00
|
|
|
case 'pictrs':
|
2020-09-28 20:04:44 +02:00
|
|
|
return push(() => MediaViewPage(url));
|
2020-09-12 00:26:54 +02:00
|
|
|
|
2020-09-11 23:54:28 +02:00
|
|
|
case 'communities':
|
2020-09-12 00:26:54 +02:00
|
|
|
// TODO: put here push to communities page
|
2020-09-11 23:54:28 +02:00
|
|
|
return;
|
2020-09-12 00:26:54 +02:00
|
|
|
|
2020-09-11 23:54:28 +02:00
|
|
|
case 'modlog':
|
2020-09-12 00:26:54 +02:00
|
|
|
// TODO: put here push to modlog
|
2020-09-11 23:54:28 +02:00
|
|
|
return;
|
|
|
|
case 'inbox':
|
2020-09-12 00:26:54 +02:00
|
|
|
// TODO: put here push to inbox
|
2020-09-11 23:54:28 +02:00
|
|
|
return;
|
2020-09-12 00:26:54 +02:00
|
|
|
case 'search':
|
|
|
|
// TODO: *maybe* put here push to search. we'll see
|
|
|
|
// how much web version differs form the app
|
|
|
|
return;
|
2020-09-11 23:54:28 +02:00
|
|
|
case 'create_post':
|
|
|
|
case 'create_community':
|
|
|
|
case 'sponsors':
|
|
|
|
case 'instances':
|
|
|
|
case 'docs':
|
2020-09-12 10:23:39 +02:00
|
|
|
break;
|
2020-09-11 23:54:28 +02:00
|
|
|
default:
|
2020-09-12 10:23:39 +02:00
|
|
|
break;
|
2020-09-11 23:54:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-12 00:46:16 +02:00
|
|
|
// FALLBACK TO REGULAR LINK STUFF
|
2020-09-11 23:54:28 +02:00
|
|
|
|
2022-04-30 16:23:36 +02:00
|
|
|
await launchLink(link: url, context: context);
|
2020-09-11 23:54:28 +02:00
|
|
|
}
|
|
|
|
|
2022-04-30 16:23:36 +02:00
|
|
|
final _logger = Logger('launchLink');
|
|
|
|
|
|
|
|
/// Returns whether launching was successful.
|
|
|
|
Future<bool> launchLink({
|
|
|
|
required String link,
|
|
|
|
required BuildContext context,
|
|
|
|
}) async {
|
|
|
|
final uri = Uri.tryParse(link);
|
|
|
|
if (uri != null && await ul.canLaunchUrl(uri)) {
|
|
|
|
await ul.launchUrl(uri);
|
|
|
|
return true;
|
2020-08-30 16:49:59 +02:00
|
|
|
} else {
|
2022-04-30 16:23:36 +02:00
|
|
|
_logger.warning('Failed to launch a link: $link');
|
|
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
|
|
SnackBar(content: Text(L10n.of(context).cannot_open_in_browser)),
|
|
|
|
);
|
|
|
|
return false;
|
2020-08-30 16:49:59 +02:00
|
|
|
}
|
|
|
|
}
|