feat: import Chinese-localized Buzz source snapshot
Docker image / Build (linux/amd64) (push) Has been cancelled
Docker image / Build (linux/arm64) (push) Has been cancelled
Docker image / Merge release multi-arch manifest (push) Has been cancelled
Docker image / Merge debug multi-arch manifest (push) Has been cancelled
Docker image / Build public push gateway (linux/amd64) (push) Has been cancelled
Docker image / Build public push gateway (linux/arm64) (push) Has been cancelled
Docker image / Publish public push gateway image (push) Has been cancelled
Sprig image / Build (linux/amd64) (push) Has been cancelled
Sprig image / Build (linux/arm64) (push) Has been cancelled
Sprig image / Merge multi-arch manifest (push) Has been cancelled
Harbor Buzz Orchestra / Python tests and lint (push) Has been cancelled
CI / Detect Changed Paths (push) Has been cancelled
CI / Rust Lint (push) Has been cancelled
CI / Unit Tests (push) Has been cancelled
CI / Desktop Core (push) Has been cancelled
CI / Desktop Smoke E2E (1) (push) Has been cancelled
CI / Desktop Smoke E2E (2) (push) Has been cancelled
CI / Desktop Smoke E2E (3) (push) Has been cancelled
CI / Desktop Smoke E2E (4) (push) Has been cancelled
CI / Desktop (push) Has been cancelled
CI / Desktop E2E Relay (push) Has been cancelled
CI / Desktop E2E Integration (1/2) (push) Has been cancelled
CI / Desktop E2E Integration (2/2) (push) Has been cancelled
CI / Desktop E2E Integration (push) Has been cancelled
CI / Backend Integration (relay e2e) (push) Has been cancelled
CI / Relay E2E (push) Has been cancelled
CI / Web (push) Has been cancelled
CI / Mobile (push) Has been cancelled
CI / Security (push) Has been cancelled
CI / Dead Token Reference Guard (push) Has been cancelled
CI / Server Cross-Compile (aarch64-unknown-linux-musl) (push) Has been cancelled
CI / Server Cross-Compile (x86_64-unknown-linux-musl) (push) Has been cancelled
CI / Windows Rust (x86_64-pc-windows-msvc) (push) Has been cancelled
CI / Desktop Build (macOS) (push) Has been cancelled
helm chart / lint + unittest + render matrix (push) Has been cancelled
helm chart / install on kind (gated) (push) Has been cancelled
helm chart / publish chart to GHCR (push) Has been cancelled
Mesh Lifecycle / Relay-Driven Mesh Lifecycle Smoke (push) Has been cancelled
Sprig / Build (aarch64-unknown-linux-musl) (push) Has been cancelled
Sprig / Build (x86_64-unknown-linux-musl) (push) Has been cancelled
Sprig / Publish rolling release (push) Has been cancelled
Sprig / Publish tagged release (push) Has been cancelled
Docker image / Build (linux/amd64) (push) Has been cancelled
Docker image / Build (linux/arm64) (push) Has been cancelled
Docker image / Merge release multi-arch manifest (push) Has been cancelled
Docker image / Merge debug multi-arch manifest (push) Has been cancelled
Docker image / Build public push gateway (linux/amd64) (push) Has been cancelled
Docker image / Build public push gateway (linux/arm64) (push) Has been cancelled
Docker image / Publish public push gateway image (push) Has been cancelled
Sprig image / Build (linux/amd64) (push) Has been cancelled
Sprig image / Build (linux/arm64) (push) Has been cancelled
Sprig image / Merge multi-arch manifest (push) Has been cancelled
Harbor Buzz Orchestra / Python tests and lint (push) Has been cancelled
CI / Detect Changed Paths (push) Has been cancelled
CI / Rust Lint (push) Has been cancelled
CI / Unit Tests (push) Has been cancelled
CI / Desktop Core (push) Has been cancelled
CI / Desktop Smoke E2E (1) (push) Has been cancelled
CI / Desktop Smoke E2E (2) (push) Has been cancelled
CI / Desktop Smoke E2E (3) (push) Has been cancelled
CI / Desktop Smoke E2E (4) (push) Has been cancelled
CI / Desktop (push) Has been cancelled
CI / Desktop E2E Relay (push) Has been cancelled
CI / Desktop E2E Integration (1/2) (push) Has been cancelled
CI / Desktop E2E Integration (2/2) (push) Has been cancelled
CI / Desktop E2E Integration (push) Has been cancelled
CI / Backend Integration (relay e2e) (push) Has been cancelled
CI / Relay E2E (push) Has been cancelled
CI / Web (push) Has been cancelled
CI / Mobile (push) Has been cancelled
CI / Security (push) Has been cancelled
CI / Dead Token Reference Guard (push) Has been cancelled
CI / Server Cross-Compile (aarch64-unknown-linux-musl) (push) Has been cancelled
CI / Server Cross-Compile (x86_64-unknown-linux-musl) (push) Has been cancelled
CI / Windows Rust (x86_64-pc-windows-msvc) (push) Has been cancelled
CI / Desktop Build (macOS) (push) Has been cancelled
helm chart / lint + unittest + render matrix (push) Has been cancelled
helm chart / install on kind (gated) (push) Has been cancelled
helm chart / publish chart to GHCR (push) Has been cancelled
Mesh Lifecycle / Relay-Driven Mesh Lifecycle Smoke (push) Has been cancelled
Sprig / Build (aarch64-unknown-linux-musl) (push) Has been cancelled
Sprig / Build (x86_64-unknown-linux-musl) (push) Has been cancelled
Sprig / Publish rolling release (push) Has been cancelled
Sprig / Publish tagged release (push) Has been cancelled
Signed-off-by: cls_宁波本机 <908705107@qq.com>
This commit is contained in:
@@ -0,0 +1,286 @@
|
||||
import 'dart:convert';
|
||||
|
||||
import 'package:http/http.dart' as http;
|
||||
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||||
import 'package:nostr/nostr.dart' as nostr;
|
||||
|
||||
import '../../shared/auth/auth.dart';
|
||||
import '../../shared/deeplink/deep_link.dart';
|
||||
import '../../shared/relay/relay_session.dart';
|
||||
import '../../shared/relay/relay_validation.dart';
|
||||
|
||||
final inviteJoinHttpClientProvider = Provider<http.Client>((ref) {
|
||||
final client = http.Client();
|
||||
ref.onDispose(client.close);
|
||||
return client;
|
||||
});
|
||||
|
||||
final inviteKeyGeneratorProvider = Provider<InviteKeyGenerator>((ref) {
|
||||
return () => nostr.Keys.generate();
|
||||
});
|
||||
|
||||
typedef InviteKeyGenerator = nostr.Keys Function();
|
||||
|
||||
enum InviteJoinStatus {
|
||||
idle,
|
||||
confirming,
|
||||
claiming,
|
||||
success,
|
||||
switchedExisting,
|
||||
error,
|
||||
}
|
||||
|
||||
class InviteJoinState {
|
||||
final InviteJoinStatus status;
|
||||
final InviteDeepLink? invite;
|
||||
final String? host;
|
||||
final String? communityName;
|
||||
final String? errorMessage;
|
||||
final bool requiresFreshInvite;
|
||||
|
||||
const InviteJoinState({
|
||||
this.status = InviteJoinStatus.idle,
|
||||
this.invite,
|
||||
this.host,
|
||||
this.communityName,
|
||||
this.errorMessage,
|
||||
this.requiresFreshInvite = false,
|
||||
});
|
||||
|
||||
InviteJoinState copyWith({
|
||||
InviteJoinStatus? status,
|
||||
InviteDeepLink? invite,
|
||||
String? host,
|
||||
String? communityName,
|
||||
String? errorMessage,
|
||||
bool? requiresFreshInvite,
|
||||
}) => InviteJoinState(
|
||||
status: status ?? this.status,
|
||||
invite: invite ?? this.invite,
|
||||
host: host ?? this.host,
|
||||
communityName: communityName ?? this.communityName,
|
||||
errorMessage: errorMessage ?? this.errorMessage,
|
||||
requiresFreshInvite: requiresFreshInvite ?? this.requiresFreshInvite,
|
||||
);
|
||||
}
|
||||
|
||||
class InviteJoinNotifier extends Notifier<InviteJoinState> {
|
||||
@override
|
||||
InviteJoinState build() => const InviteJoinState();
|
||||
|
||||
Future<void> prepare(InviteDeepLink invite) async {
|
||||
validateInviteRelayUri(Uri.parse(invite.relayUrl));
|
||||
final communities = await ref.read(communityListProvider.future);
|
||||
final existing = _existingCommunity(communities, invite.relayUrl);
|
||||
if (existing != null) {
|
||||
await ref
|
||||
.read(communityListProvider.notifier)
|
||||
.switchCommunity(existing.id);
|
||||
state = InviteJoinState(
|
||||
status: InviteJoinStatus.switchedExisting,
|
||||
invite: invite,
|
||||
host: _hostFromRelay(invite.relayUrl),
|
||||
communityName: existing.name,
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
state = InviteJoinState(
|
||||
status: InviteJoinStatus.confirming,
|
||||
invite: invite,
|
||||
host: _hostFromRelay(invite.relayUrl),
|
||||
communityName: Community.nameFromUrl(invite.relayUrl),
|
||||
);
|
||||
}
|
||||
|
||||
Future<void> confirmJoin() async {
|
||||
final invite = state.invite;
|
||||
if (invite == null ||
|
||||
state.requiresFreshInvite ||
|
||||
(state.status != InviteJoinStatus.confirming &&
|
||||
state.status != InviteJoinStatus.error)) {
|
||||
return;
|
||||
}
|
||||
|
||||
state = state.copyWith(status: InviteJoinStatus.claiming);
|
||||
try {
|
||||
final communities = await ref.read(communityListProvider.future);
|
||||
final existing = _existingCommunity(communities, invite.relayUrl);
|
||||
if (existing != null) {
|
||||
await ref
|
||||
.read(communityListProvider.notifier)
|
||||
.switchCommunity(existing.id);
|
||||
state = state.copyWith(
|
||||
status: InviteJoinStatus.switchedExisting,
|
||||
communityName: existing.name,
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
final keys = ref.read(inviteKeyGeneratorProvider)();
|
||||
final body = jsonEncode({
|
||||
'code': invite.code,
|
||||
if (invite.policyReceipt != null)
|
||||
'policy_receipt': invite.policyReceipt,
|
||||
});
|
||||
final relayUri = Uri.parse(invite.relayUrl);
|
||||
validateInviteRelayUri(relayUri);
|
||||
final url = _claimUrlFromRelay(invite.relayUrl);
|
||||
final request = http.Request('POST', Uri.parse(url))
|
||||
..followRedirects = false
|
||||
..headers.addAll({
|
||||
'Authorization': buildNip98AuthHeader(
|
||||
method: 'POST',
|
||||
url: url,
|
||||
bodyBytes: utf8.encode(body),
|
||||
nsec: keys.nsec,
|
||||
),
|
||||
'Content-Type': 'application/json',
|
||||
})
|
||||
..body = body;
|
||||
final streamedResponse = await ref
|
||||
.read(inviteJoinHttpClientProvider)
|
||||
.send(request);
|
||||
final response = await http.Response.fromStream(streamedResponse);
|
||||
final decoded = jsonDecode(response.body.isEmpty ? '{}' : response.body);
|
||||
if (response.statusCode < 200 || response.statusCode >= 300) {
|
||||
final message = decoded is Map && decoded['error'] is String
|
||||
? decoded['error'] as String
|
||||
: 'HTTP ${response.statusCode}';
|
||||
throw InviteClaimException(message);
|
||||
}
|
||||
if (decoded is! Map) {
|
||||
throw const FormatException('Invite claim returned malformed JSON');
|
||||
}
|
||||
final claim = Map<String, dynamic>.from(decoded);
|
||||
|
||||
final community = Community.create(
|
||||
name: _communityNameFromClaim(claim, invite.relayUrl),
|
||||
relayUrl: invite.relayUrl,
|
||||
pubkey: keys.public,
|
||||
nsec: keys.nsec,
|
||||
);
|
||||
await ref
|
||||
.read(authProvider.notifier)
|
||||
.authenticateWithCommunity(community);
|
||||
state = state.copyWith(
|
||||
status: InviteJoinStatus.success,
|
||||
communityName: community.name,
|
||||
);
|
||||
} catch (error) {
|
||||
final requiresFreshInvite = _requiresFreshInvite(error);
|
||||
state = state.copyWith(
|
||||
status: InviteJoinStatus.error,
|
||||
errorMessage: _friendlyInviteError(error),
|
||||
requiresFreshInvite: requiresFreshInvite,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
void reset() {
|
||||
state = const InviteJoinState();
|
||||
}
|
||||
}
|
||||
|
||||
final inviteJoinProvider =
|
||||
NotifierProvider<InviteJoinNotifier, InviteJoinState>(
|
||||
InviteJoinNotifier.new,
|
||||
);
|
||||
|
||||
class InviteClaimException implements Exception {
|
||||
final String message;
|
||||
|
||||
const InviteClaimException(this.message);
|
||||
|
||||
@override
|
||||
String toString() => message;
|
||||
}
|
||||
|
||||
Community? _existingCommunity(List<Community> communities, String relayUrl) {
|
||||
final invite = _relayOriginForComparison(relayUrl);
|
||||
for (final community in communities) {
|
||||
final current = _relayOriginForComparison(community.relayUrl);
|
||||
if (current == null) continue;
|
||||
if (current == invite) {
|
||||
return community;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
({bool secure, String host, int? port})? _relayOriginForComparison(String url) {
|
||||
final uri = Uri.tryParse(url);
|
||||
if (uri == null || uri.host.isEmpty) return null;
|
||||
final secure = switch (uri.scheme) {
|
||||
'https' || 'wss' => true,
|
||||
'http' || 'ws' => false,
|
||||
_ => null,
|
||||
};
|
||||
if (secure == null) return null;
|
||||
return (
|
||||
secure: secure,
|
||||
host: uri.host.toLowerCase(),
|
||||
port: _effectivePort(uri),
|
||||
);
|
||||
}
|
||||
|
||||
int? _effectivePort(Uri uri) {
|
||||
if (uri.hasPort) return uri.port;
|
||||
return switch (uri.scheme) {
|
||||
'https' || 'wss' => 443,
|
||||
'http' || 'ws' => 80,
|
||||
_ => null,
|
||||
};
|
||||
}
|
||||
|
||||
String _hostFromRelay(String relayUrl) {
|
||||
final uri = Uri.parse(relayUrl);
|
||||
if (uri.hasPort) return '${uri.host}:${uri.port}';
|
||||
return uri.host;
|
||||
}
|
||||
|
||||
String _claimUrlFromRelay(String relayUrl) {
|
||||
final uri = Uri.parse(relayUrl);
|
||||
final scheme = switch (uri.scheme) {
|
||||
'wss' => 'https',
|
||||
'ws' => 'http',
|
||||
_ => throw FormatException('Invalid relay URL scheme: ${uri.scheme}'),
|
||||
};
|
||||
return Uri(
|
||||
scheme: scheme,
|
||||
host: uri.host,
|
||||
port: uri.hasPort ? uri.port : null,
|
||||
path: '/api/invites/claim',
|
||||
).toString();
|
||||
}
|
||||
|
||||
String _communityNameFromClaim(Map<String, dynamic> claim, String relayUrl) {
|
||||
final host = claim['host'];
|
||||
if (host is String && host.trim().isNotEmpty) return host.trim();
|
||||
return Community.nameFromUrl(relayUrl);
|
||||
}
|
||||
|
||||
bool _requiresFreshInvite(Object error) {
|
||||
final message = error.toString();
|
||||
return message.contains('join_policy_required') ||
|
||||
message.contains('invite_exhausted');
|
||||
}
|
||||
|
||||
String _friendlyInviteError(Object error) {
|
||||
final message = error.toString();
|
||||
if (message.contains('invite_expired')) return 'This invite has expired.';
|
||||
if (message.contains('invite_exhausted')) {
|
||||
return 'This invite has reached its use limit. Ask for a new invite.';
|
||||
}
|
||||
if (message.contains('invite_invalid')) return 'This invite is not valid.';
|
||||
if (message.contains('join_policy_required')) {
|
||||
return 'This invite approval has expired. Re-open the invite link to try again.';
|
||||
}
|
||||
if (message.contains('SocketException') ||
|
||||
message.contains('Connection refused') ||
|
||||
message.contains('Network is unreachable') ||
|
||||
message.contains('No route to host')) {
|
||||
return 'Could not reach the relay. Check your connection and try again.';
|
||||
}
|
||||
return 'Could not join this community: $message';
|
||||
}
|
||||
@@ -0,0 +1,217 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||||
import 'package:lucide_icons_flutter/lucide_icons.dart';
|
||||
|
||||
import '../../shared/l10n/l10n.dart';
|
||||
import '../../shared/theme/theme.dart';
|
||||
import '../../shared/widgets/buzz_loading_indicator.dart';
|
||||
import '../../shared/widgets/modal_presentation.dart';
|
||||
import '../pairing/pairing_page.dart';
|
||||
import 'invite_join_provider.dart';
|
||||
|
||||
Future<void> showInviteJoinSheet(BuildContext context, WidgetRef ref) {
|
||||
return showBuzzModalBottomSheet<void>(
|
||||
context: context,
|
||||
isScrollControlled: true,
|
||||
showDragHandle: true,
|
||||
builder: (_) => const InviteJoinSheet(),
|
||||
);
|
||||
}
|
||||
|
||||
class InviteJoinSheet extends ConsumerWidget {
|
||||
const InviteJoinSheet({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context, WidgetRef ref) {
|
||||
final state = ref.watch(inviteJoinProvider);
|
||||
final isClaiming = state.status == InviteJoinStatus.claiming;
|
||||
final host = state.host ?? context.l10n.unknownHost;
|
||||
final derivedName = state.communityName;
|
||||
|
||||
if (state.status == InviteJoinStatus.success) {
|
||||
return _InviteJoinSuccess(host: host, communityName: derivedName);
|
||||
}
|
||||
|
||||
return SafeArea(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.fromLTRB(Grid.sm, 0, Grid.sm, Grid.sm),
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: [
|
||||
Icon(LucideIcons.userPlus, size: 40, color: context.colors.primary),
|
||||
const SizedBox(height: Grid.sm),
|
||||
Text(
|
||||
context.l10n.inviteJoinTitle,
|
||||
style: context.textTheme.titleLarge,
|
||||
),
|
||||
const SizedBox(height: Grid.xxs),
|
||||
Text(
|
||||
context.l10n.inviteJoinHostPrompt,
|
||||
style: context.textTheme.bodyMedium?.copyWith(
|
||||
color: context.colors.onSurfaceVariant,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: Grid.xs),
|
||||
Container(
|
||||
padding: const EdgeInsets.all(Grid.twelve),
|
||||
decoration: BoxDecoration(
|
||||
color: context.colors.surfaceContainerHighest.withValues(
|
||||
alpha: 0.7,
|
||||
),
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
border: Border.all(color: context.colors.outlineVariant),
|
||||
),
|
||||
child: Text(
|
||||
host,
|
||||
style: context.textTheme.titleMedium?.copyWith(
|
||||
fontFamily: 'GeistMono',
|
||||
fontWeight: FontWeight.w700,
|
||||
),
|
||||
),
|
||||
),
|
||||
if (derivedName != null && derivedName != host) ...[
|
||||
const SizedBox(height: Grid.xxs),
|
||||
Text(
|
||||
context.l10n.inviteDisplayName(derivedName),
|
||||
style: context.textTheme.bodySmall?.copyWith(
|
||||
color: context.colors.onSurfaceVariant,
|
||||
),
|
||||
),
|
||||
],
|
||||
const SizedBox(height: Grid.sm),
|
||||
Text(
|
||||
context.l10n.inviteIdentityWarning,
|
||||
style: context.textTheme.bodyMedium?.copyWith(
|
||||
color: context.colors.onSurfaceVariant,
|
||||
),
|
||||
),
|
||||
if (state.status == InviteJoinStatus.error &&
|
||||
state.errorMessage != null) ...[
|
||||
const SizedBox(height: Grid.sm),
|
||||
Text(
|
||||
_localizedInviteError(context, state.errorMessage!),
|
||||
style: context.textTheme.bodySmall?.copyWith(
|
||||
color: context.colors.error,
|
||||
),
|
||||
),
|
||||
],
|
||||
const SizedBox(height: Grid.lg),
|
||||
Row(
|
||||
children: [
|
||||
Expanded(
|
||||
child: OutlinedButton(
|
||||
onPressed: isClaiming
|
||||
? null
|
||||
: () => Navigator.of(context).pop(),
|
||||
child: Text(context.l10n.cancel),
|
||||
),
|
||||
),
|
||||
const SizedBox(width: Grid.sm),
|
||||
Expanded(
|
||||
child: FilledButton.icon(
|
||||
onPressed: isClaiming || state.requiresFreshInvite
|
||||
? null
|
||||
: () => ref
|
||||
.read(inviteJoinProvider.notifier)
|
||||
.confirmJoin(),
|
||||
icon: isClaiming
|
||||
? SizedBox(
|
||||
width: 16,
|
||||
height: 16,
|
||||
child: BuzzLoadingIndicator(
|
||||
size: 16,
|
||||
semanticLabel: context.l10n.inviteJoiningCommunity,
|
||||
),
|
||||
)
|
||||
: const Icon(LucideIcons.check),
|
||||
label: Text(
|
||||
isClaiming ? context.l10n.joining : context.l10n.join,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class _InviteJoinSuccess extends StatelessWidget {
|
||||
final String host;
|
||||
final String? communityName;
|
||||
|
||||
const _InviteJoinSuccess({required this.host, this.communityName});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return SafeArea(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.fromLTRB(Grid.sm, 0, Grid.sm, Grid.sm),
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: [
|
||||
Icon(
|
||||
LucideIcons.circleCheck,
|
||||
size: 40,
|
||||
color: context.colors.primary,
|
||||
),
|
||||
const SizedBox(height: Grid.sm),
|
||||
Text(
|
||||
context.l10n.inviteJoined(communityName ?? host),
|
||||
style: context.textTheme.titleLarge,
|
||||
),
|
||||
const SizedBox(height: Grid.xs),
|
||||
Text(
|
||||
context.l10n.inviteIdentityWarning,
|
||||
style: context.textTheme.bodyMedium?.copyWith(
|
||||
color: context.colors.onSurfaceVariant,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: Grid.lg),
|
||||
FilledButton.icon(
|
||||
onPressed: () {
|
||||
Navigator.of(context).pop();
|
||||
Navigator.of(context).push(
|
||||
MaterialPageRoute<void>(
|
||||
builder: (_) => const PairingPage(addingCommunity: true),
|
||||
),
|
||||
);
|
||||
},
|
||||
icon: const Icon(LucideIcons.scanLine),
|
||||
label: Text(context.l10n.inviteBackupNow),
|
||||
),
|
||||
const SizedBox(height: Grid.xs),
|
||||
TextButton(
|
||||
onPressed: () => Navigator.of(context).pop(),
|
||||
child: Text(context.l10n.inviteNotNow),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
String _localizedInviteError(BuildContext context, String error) {
|
||||
if (Localizations.localeOf(context).languageCode == 'en') return error;
|
||||
if (error.startsWith('This invite has expired')) {
|
||||
return context.l10n.inviteExpired;
|
||||
}
|
||||
if (error.startsWith('This invite has reached its use limit')) {
|
||||
return context.l10n.inviteExhausted;
|
||||
}
|
||||
if (error.startsWith('This invite is not valid')) {
|
||||
return context.l10n.inviteInvalid;
|
||||
}
|
||||
if (error.startsWith('This invite approval has expired')) {
|
||||
return context.l10n.inviteApprovalExpired;
|
||||
}
|
||||
if (error.startsWith('Could not reach the relay')) {
|
||||
return context.l10n.inviteRelayUnreachable;
|
||||
}
|
||||
return context.l10n.inviteJoinFailed;
|
||||
}
|
||||
Reference in New Issue
Block a user