9dfa06ffee
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>
287 lines
8.4 KiB
Dart
287 lines
8.4 KiB
Dart
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';
|
|
}
|