@leofcoin/peernet 1.1.62 → 1.1.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/exports/browser/{index-3614702b.js → index-20ad607b.js} +1 -1
- package/exports/browser/{messages-92c1c441.js → messages-29f5675b.js} +1 -1
- package/exports/browser/{peernet-8bc2189b.js → peernet-8bfe60c5.js} +10 -6
- package/exports/browser/peernet.js +1 -1
- package/exports/peernet.js +8 -4
- package/package.json +1 -1
- package/src/handlers/data.js +7 -3
- package/src/utils/utils.js +1 -1
|
@@ -12450,7 +12450,7 @@ const BufferToUint8Array = (data) => {
|
|
|
12450
12450
|
|
|
12451
12451
|
const protoFor = (message) => {
|
|
12452
12452
|
const codec = new Codec(message);
|
|
12453
|
-
if (!codec.name) throw new Error(
|
|
12453
|
+
if (!codec.name) throw new Error(`proto not found ${message}`)
|
|
12454
12454
|
const Proto = globalThis.peernet.protos[codec.name];
|
|
12455
12455
|
if (!Proto) throw new Error(`No proto defined for ${codec.name}`)
|
|
12456
12456
|
return new Proto(message)
|
|
@@ -12724,9 +12724,13 @@ class MessageHandler {
|
|
|
12724
12724
|
const dataHandler = async (message) => {
|
|
12725
12725
|
if (!message) return
|
|
12726
12726
|
|
|
12727
|
-
|
|
12728
|
-
|
|
12729
|
-
|
|
12727
|
+
try {
|
|
12728
|
+
const { data, id, from, peer } = message;
|
|
12729
|
+
const proto = await protoFor(data);
|
|
12730
|
+
peernet._protoHandler({ id, proto }, peernet.connections[from] || peer, from);
|
|
12731
|
+
} catch (error) {
|
|
12732
|
+
console.error(error);
|
|
12733
|
+
}
|
|
12730
12734
|
};
|
|
12731
12735
|
|
|
12732
12736
|
const dhtError = (proto) => {
|
|
@@ -27079,7 +27083,7 @@ class Identity {
|
|
|
27079
27083
|
this.selectedAccount = new TextDecoder().decode(selected);
|
|
27080
27084
|
}
|
|
27081
27085
|
else {
|
|
27082
|
-
const importee = await import(/* webpackChunkName: "generate-account" */ './index-
|
|
27086
|
+
const importee = await import(/* webpackChunkName: "generate-account" */ './index-20ad607b.js');
|
|
27083
27087
|
const { identity, accounts } = await importee.default(password, this.network);
|
|
27084
27088
|
await globalThis.accountStore.put('public', JSON.stringify({ walletId: identity.walletId }));
|
|
27085
27089
|
await globalThis.walletStore.put('version', String(1));
|
|
@@ -27271,7 +27275,7 @@ class Peernet {
|
|
|
27271
27275
|
this.root = options.root;
|
|
27272
27276
|
const { RequestMessage, ResponseMessage, PeerMessage, PeerMessageResponse, PeernetMessage, DHTMessage, DHTMessageResponse, DataMessage, DataMessageResponse, PsMessage, ChatMessage, PeernetFile
|
|
27273
27277
|
// FolderMessageResponse
|
|
27274
|
-
} = await import(/* webpackChunkName: "messages" */ './messages-
|
|
27278
|
+
} = await import(/* webpackChunkName: "messages" */ './messages-29f5675b.js');
|
|
27275
27279
|
/**
|
|
27276
27280
|
* proto Object containing protos
|
|
27277
27281
|
* @type {Object}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { P as default } from './peernet-
|
|
1
|
+
export { P as default } from './peernet-8bfe60c5.js';
|
|
2
2
|
import './value-4e80eeeb.js';
|
package/exports/peernet.js
CHANGED
|
@@ -18,7 +18,7 @@ const BufferToUint8Array = (data) => {
|
|
|
18
18
|
|
|
19
19
|
const protoFor = (message) => {
|
|
20
20
|
const codec = new Codec(message);
|
|
21
|
-
if (!codec.name) throw new Error(
|
|
21
|
+
if (!codec.name) throw new Error(`proto not found ${message}`)
|
|
22
22
|
const Proto = globalThis.peernet.protos[codec.name];
|
|
23
23
|
if (!Proto) throw new Error(`No proto defined for ${codec.name}`)
|
|
24
24
|
return new Proto(message)
|
|
@@ -292,9 +292,13 @@ class MessageHandler {
|
|
|
292
292
|
const dataHandler = async (message) => {
|
|
293
293
|
if (!message) return
|
|
294
294
|
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
295
|
+
try {
|
|
296
|
+
const { data, id, from, peer } = message;
|
|
297
|
+
const proto = await protoFor(data);
|
|
298
|
+
peernet._protoHandler({ id, proto }, peernet.connections[from] || peer, from);
|
|
299
|
+
} catch (error) {
|
|
300
|
+
console.error(error);
|
|
301
|
+
}
|
|
298
302
|
};
|
|
299
303
|
|
|
300
304
|
const dhtError = (proto) => {
|
package/package.json
CHANGED
package/src/handlers/data.js
CHANGED
|
@@ -3,9 +3,13 @@ import { protoFor } from './../utils/utils.js'
|
|
|
3
3
|
const dataHandler = async (message) => {
|
|
4
4
|
if (!message) return
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
try {
|
|
7
|
+
const { data, id, from, peer } = message
|
|
8
|
+
const proto = await protoFor(data)
|
|
9
|
+
peernet._protoHandler({ id, proto }, peernet.connections[from] || peer, from)
|
|
10
|
+
} catch (error) {
|
|
11
|
+
console.error(error)
|
|
12
|
+
}
|
|
9
13
|
}
|
|
10
14
|
|
|
11
15
|
export default dataHandler
|
package/src/utils/utils.js
CHANGED
|
@@ -23,7 +23,7 @@ export const expected = (expected, actual) => {
|
|
|
23
23
|
|
|
24
24
|
export const protoFor = (message) => {
|
|
25
25
|
const codec = new Codec(message)
|
|
26
|
-
if (!codec.name) throw new Error(
|
|
26
|
+
if (!codec.name) throw new Error(`proto not found ${message}`)
|
|
27
27
|
const Proto = globalThis.peernet.protos[codec.name]
|
|
28
28
|
if (!Proto) throw new Error(`No proto defined for ${codec.name}`)
|
|
29
29
|
return new Proto(message)
|