mirror of
https://github.com/vishalxl/nostr_console.git
synced 2025-04-03 17:38:11 +02:00
fixed typo issue so that newly created encryped channel ..
.. is reflected immediately in list.
This commit is contained in:
parent
a93afee49d
commit
5e7ed002bf
@ -671,7 +671,7 @@ Future<void> createEncryptedChannel(Store node) async {
|
||||
|
||||
|
||||
String newPriKey = getRandomPrivKey();
|
||||
print("Created and going to use new random privake key: $newPriKey");
|
||||
//print("Created and going to use new random privake key: $newPriKey");
|
||||
String channelPriKey = newPriKey, channelPubKey = getPublicKey(newPriKey);
|
||||
|
||||
// now send password as direct message to yourself and to all the people you tagged
|
||||
@ -693,8 +693,8 @@ Future<void> updateEncryptedChannel(Store node, String channelId,
|
||||
EventData eventData = EventData('id', userPublicKey, createdAt, 141, content, [], [], [], [], {}, );
|
||||
Event encryptedChannelCreateEvent = Event("EVENT", "id", eventData, [], "");
|
||||
String newEncryptedChannelId = await sendEventWithTags(node, encryptedChannelCreateEvent, tags); // takes 400 ms
|
||||
print("updated encrypted channel $channelId with new 141 event with id: $newEncryptedChannelId");
|
||||
print("tags: $tags");
|
||||
//print("updated encrypted channel $channelId with new 141 event with id: $newEncryptedChannelId");
|
||||
//print("tags: $tags");
|
||||
|
||||
List<String> keys = getEncryptedChannelKeys(node, channelId);
|
||||
if( keys.length == 2) {
|
||||
@ -710,7 +710,7 @@ Future<void> updateEncryptedChannel(Store node, String channelId,
|
||||
|
||||
await processAnyIncomingEvents(node, false); // get latest event, this takes 300 ms
|
||||
} else {
|
||||
print("warning: could not find keys for the channel");
|
||||
print("warning: could not find keys for the channel. Could not update.");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -50,15 +50,6 @@ Channel? getChannel(List<Channel> channels, String channelId) {
|
||||
return null;
|
||||
}
|
||||
|
||||
Channel? getEncryptedChannel(List<Channel> encryptedChannels, String channelId) {
|
||||
for( int i = 0; i < encryptedChannels.length; i++) {
|
||||
if( encryptedChannels[i].channelId == channelId) {
|
||||
return encryptedChannels[i];
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
DirectMessageRoom? getDirectRoom(List<DirectMessageRoom> rooms, String otherPubkey) {
|
||||
for( int i = 0; i < rooms.length; i++) {
|
||||
@ -603,7 +594,7 @@ class Store {
|
||||
if( gCheckEventId == ce.eventData.id) print("In handleEncryptedChannelEvents: processing $gCheckEventId ");
|
||||
String channelId = ce.eventData.getChannelIdForMessage();
|
||||
if( channelId != "") { // sometimes people may forget to give e tags or give wrong tags like #e
|
||||
Channel? channel = getEncryptedChannel(encryptedChannels, channelId);
|
||||
Channel? channel = getChannel(encryptedChannels, channelId);
|
||||
|
||||
if( channel != null) {
|
||||
if( gDebug > 0) print("encrypted chat room already exists = $channelId adding event to it" );
|
||||
@ -627,7 +618,7 @@ class Store {
|
||||
String chatRoomId = ce.eventData.getChannelIdForMessage();
|
||||
try {
|
||||
dynamic json = jsonDecode(ce.eventData.content);
|
||||
Channel? channel = getEncryptedChannel(encryptedChannels, chatRoomId);
|
||||
Channel? channel = getChannel(encryptedChannels, chatRoomId);
|
||||
if( channel != null) {
|
||||
//print("got 141, and channel structure already exists");
|
||||
// as channel entry already exists, then update its participants info, and name info
|
||||
@ -667,7 +658,7 @@ class Store {
|
||||
String chatRoomId = eId;
|
||||
try {
|
||||
dynamic json = jsonDecode(ce.eventData.content);
|
||||
Channel? channel = getEncryptedChannel(encryptedChannels, chatRoomId);
|
||||
Channel? channel = getChannel(encryptedChannels, chatRoomId);
|
||||
if( channel != null) {
|
||||
//print("got 140, but channel structure already exists");
|
||||
// if channel entry already exists, then update its participants info, and name info
|
||||
@ -1039,7 +1030,7 @@ class Store {
|
||||
case 140:
|
||||
case 141:
|
||||
//print("calling handleEncryptedChannelEvents for kind ${newTree.event.eventData.kind} from processIncoming");
|
||||
handleEncryptedChannelEvents(channels, allChildEventsMap, newTree.event);
|
||||
handleEncryptedChannelEvents(encryptedChannels, allChildEventsMap, newTree.event);
|
||||
break;
|
||||
|
||||
case 142:
|
||||
|
@ -1,11 +1,9 @@
|
||||
name: nostr_console
|
||||
description: A multi-platform nostr client built for terminal/console.
|
||||
version: 0.0.8-beta
|
||||
version: 0.0.9-beta
|
||||
homepage: https://github.com/vishalxl/nostr_console
|
||||
|
||||
# Release 0.0.8a-beta channel creation, and improved processing of incoming, with fix for this; fixed translation crash
|
||||
# delete post improvement; for channel
|
||||
# reply/root tags. file test. dart.yml file changed.
|
||||
# Release 0.0.9 - encrypted channels
|
||||
|
||||
environment:
|
||||
sdk: '>=2.17.3 <3.0.0'
|
||||
|
Loading…
x
Reference in New Issue
Block a user