now lud06 and 16 both printed as qr code

added nostr.ch as relay for anigma sync, as its the default with anigma
This commit is contained in:
Vishal 2022-12-27 00:26:04 +05:30
parent 536c412173
commit 99ede3aa10
4 changed files with 46 additions and 18 deletions

@ -309,7 +309,8 @@ void printProfile(Store node, String profilePubkey) {
String about = gKindONames[profilePubkey]?.about??"";
String picture = gKindONames[profilePubkey]?.picture??"";
String lud16 = gKindONames[profilePubkey]?.lud06??"";
String lud06 = gKindONames[profilePubkey]?.lud06??"";
String lud16 = gKindONames[profilePubkey]?.lud16??"";
int dateLastUpdated = gKindONames[profilePubkey]?.createdAt??0;
bool verified = gKindONames[profilePubkey]?.nip05Verified??false;
String nip05Id = gKindONames[profilePubkey]?.nip05Id??"";
@ -322,22 +323,36 @@ void printProfile(Store node, String profilePubkey) {
print("Could not generate qr code. \n");
}
// print LNRUL if it exists
if( lud16.length > gMinLud06AddressLength) {
// print LNRUL lud06 if it exists
if( lud06.length > gMinLud06AddressLength) {
try {
List<int>? typesAndModule = getTypeAndModule(lud16);
List<int>? typesAndModule = getTypeAndModule(lud06);
if( typesAndModule != null) {
print("The LNRUL in lud16 as QR:\n\n");
print(getPubkeyAsQrString(lud16, typesAndModule[0], typesAndModule[1]));
print("Printing lud06 LNURL as QR:\n\n");
print(getPubkeyAsQrString(lud06, typesAndModule[0], typesAndModule[1]));
}
} catch(e) {
print("Could not generate qr code for the lnurl given. \n");
}
}
// print LNRUL lud06 if it exists
if( lud16.length > gMinLud06AddressLength) {
try {
List<int>? typesAndModule = getTypeAndModule(lud16);
if( typesAndModule != null) {
print("Printing lud16 address as QR:\n\n");
print(getPubkeyAsQrString(lud16, typesAndModule[0], typesAndModule[1]));
}
} catch(e) {
print("Could not generate qr code for the given address.\n");
}
}
print("\nName : $authorName ( ${profilePubkey} ).");
print("About : $about");
print("Picture : $picture");
print("Lud06 : $lud06");
print("Lud16 : $lud16");
print("Nip 05 : ${verified?"yes. ${nip05Id}":"no"}");
print("\nLast Updated: ${getPrintableDate(dateLastUpdated)}\n");
@ -541,16 +556,24 @@ Future<void> otherOptionsMenuUi(Store node) async {
print("Your current name: ${getAuthorName(userPublicKey)}");
print("Your 'about me': ${gKindONames[userPublicKey]?.about}");
print("Your current profile picture: ${gKindONames[userPublicKey]?.picture}\n");
print("Your current profile picture: ${gKindONames[userPublicKey]?.picture}");
print("Your current NIP 05 id: ${gKindONames[userPublicKey]?.nip05Id}");
print("Your current lud06: ${gKindONames[userPublicKey]?.lud06}");
print("Your current lud16: ${gKindONames[userPublicKey]?.lud16}");
print("Enter new data. Leave blank to use the old value:");
print("\n\nEnter new data. Leave blank to use the old value:\n");
String userName = getStringFromUser("Enter your new display name: ", getAuthorName(userPublicKey));
String userAbout = getStringFromUser("Enter new 'about me' for yourself: ", gKindONames[userPublicKey]?.about??"");
String userPic = getStringFromUser("Enter url to your new display picture: ", gKindONames[userPublicKey]?.picture??"https://placekitten.com/200/200");
String nip05id = getStringFromUser("Enter your nip 05 id. Leave blank if unknown/none: ", gKindONames[userPublicKey]?.nip05Id??"");
String lud06 = getStringFromUser("Enter your lud06 or lnurl. Leave blank if unknown/none: ", gKindONames[userPublicKey]?.lud06??"");
String lud16 = getStringFromUser("Enter your lud16 address. Leave blank if unknown/none: ", gKindONames[userPublicKey]?.lud16??"");
String strLud06 = lud06.length > 0? '"lud06":"$lud06",': '';
String strLud16 = lud16.length > 0? '"lud16":"$lud16",': '';
String content = "{\"name\": \"$userName\", \"about\": \"$userAbout\", \"picture\": \"$userPic\"${ nip05id.length >0 ? ", \"nip05\": \"$nip05id\"":""}}";
String content = "{\"name\": \"$userName\", \"about\": \"$userAbout\", \"picture\": \"$userPic\"${ nip05id.length >0 ? ", $strLud06 $strLud16 \"nip05\": \"$nip05id\"":""}}";
int createdAt = DateTime.now().millisecondsSinceEpoch ~/1000;
EventData eventData = EventData('id', userPublicKey, createdAt, 0, content, [], [], [], [], {}, );

@ -31,12 +31,12 @@ List<String> nip08PlaceHolders = ["#[0]", "#[1]", "#[2]", "#[3]", "#[4]", "#[5]"
// kind 0 event and/or kind 3 event, both with their own time stamps.
class UserNameInfo {
int? createdAt;
String? name, about, picture, lud06;
String? name, about, picture, lud06, lud16;
int? createdAtKind3;
Event ?latestContactEvent;
bool nip05Verified;
String? nip05Id;
UserNameInfo(this.createdAt, this.name, this.about, this.picture, this.lud06, this.nip05Id , this.latestContactEvent, [this.createdAtKind3 = null, this.nip05Verified = false]);
UserNameInfo(this.createdAt, this.name, this.about, this.picture, this.lud06, this.lud16, this.nip05Id , this.latestContactEvent, [this.createdAtKind3 = null, this.nip05Verified = false]);
}
/*
@ -1065,6 +1065,7 @@ bool processKind0Event(Event e) {
String about = "";
String picture = "";
String lud06 = "";
String lud16 = "";
String nip05 = "";
try {
@ -1073,6 +1074,7 @@ bool processKind0Event(Event e) {
about = json["about"]??"";
picture = json["picture"]??"";
lud06 = json["lud06"]??"";
lud16 = json["lud16"]??"";
nip05 = json['nip05']??"";
//String twitterId = json['twitter']??"";
//String githubId = json['github']??"";
@ -1082,12 +1084,12 @@ bool processKind0Event(Event e) {
bool newEntry = false, entryModified = false;
if( !gKindONames.containsKey(e.eventData.pubkey)) {
gKindONames[e.eventData.pubkey] = UserNameInfo(e.eventData.createdAt, name, about, picture, lud06, nip05, null);
gKindONames[e.eventData.pubkey] = UserNameInfo(e.eventData.createdAt, name, about, picture, lud06, lud16, nip05, null);
newEntry = true;;
} else {
int oldTime = gKindONames[e.eventData.pubkey]?.createdAt??0;
if( oldTime < e.eventData.createdAt) {
gKindONames[e.eventData.pubkey] = UserNameInfo(e.eventData.createdAt, name, about, picture, lud06, nip05, null);
gKindONames[e.eventData.pubkey] = UserNameInfo(e.eventData.createdAt, name, about, picture, lud06, lud16, nip05, null);
entryModified = true;
}
}
@ -1123,7 +1125,7 @@ bool processKind0Event(Event e) {
int oldTime = 0;
if( !gKindONames.containsKey(e.eventData.pubkey)) {
//printWarning("in response handing. creating user info");
gKindONames[e.eventData.pubkey] = UserNameInfo(e.eventData.createdAt, name, about, picture, lud06, null, null);
gKindONames[e.eventData.pubkey] = UserNameInfo(e.eventData.createdAt, name, about, picture, lud06, lud16, null, null);
} else {
oldTime = gKindONames[e.eventData.pubkey]?.createdAt??0;
//print("in response handing. user info exists with old time = $oldTime and this event time = ${e.eventData.createdAt}");
@ -1159,7 +1161,7 @@ bool processKind3Event(Event newContactEvent) {
bool newEntry = false, entryModified = false;
if( !gKindONames.containsKey(newContactEvent.eventData.pubkey)) {
gKindONames[newContactEvent.eventData.pubkey] = UserNameInfo(null, null, null, null, null, null, newContactEvent, newContactEvent.eventData.createdAt);
gKindONames[newContactEvent.eventData.pubkey] = UserNameInfo(null, null, null, null, null, null, null, newContactEvent, newContactEvent.eventData.createdAt);
newEntry = true;;
} else {
// if entry already exists, then check its old time and update only if we have a newer entry now
@ -1170,9 +1172,10 @@ bool processKind3Event(Event newContactEvent) {
about = gKindONames[newContactEvent.eventData.pubkey]?.about,
picture = gKindONames[newContactEvent.eventData.pubkey]?.picture,
lud06 = gKindONames[newContactEvent.eventData.pubkey]?.lud06,
lud16 = gKindONames[newContactEvent.eventData.pubkey]?.lud16,
nip05id = gKindONames[newContactEvent.eventData.pubkey]?.nip05Id??"";
gKindONames[newContactEvent.eventData.pubkey] = UserNameInfo(createdAt, name, about, picture, lud06, nip05id, newContactEvent, newContactEvent.eventData.createdAt );
gKindONames[newContactEvent.eventData.pubkey] = UserNameInfo(createdAt, name, about, picture, lud06, lud16, nip05id, newContactEvent, newContactEvent.eventData.createdAt );
entryModified = true;;
}
}

@ -62,7 +62,8 @@ Set<String> gListRelayUrls1 = { defaultServerUrl,
"wss://nostr.coinos.io",
"wss://nostr-relay.digitalmob.ro",
"wss://nostr.drss.io",
"wss://nostr.radixrat.com"
"wss://nostr.radixrat.com",
"wss://relay.nostr.ch"
};
@ -193,6 +194,7 @@ const int gMaxInValidInputAccepted = 40;
// LN settings
const int gMinLud06AddressLength = 10; // used in printProfile
const int gMinLud16AddressLength = 3; // used in printProfile
const int gMaxEventsInThreadPrinted = 20;
const int gMaxInteger = 100000000000; // used in printTree

@ -1275,7 +1275,7 @@ class Store {
// for pubkeys that don't have any kind 0 events ( but have other events), add then to global kind0 store so they can still be accessed
tempChildEventsMap.forEach((key, value) {
if( !gKindONames.containsKey(value.event.eventData.pubkey)) {
gKindONames[value.event.eventData.pubkey] = UserNameInfo(null, null, null, null, null, null, null );
gKindONames[value.event.eventData.pubkey] = UserNameInfo(null, null, null, null, null, null, null, null );
}
});