*Initial version

This commit is contained in:
Derrick Hammer 2022-12-20 07:27:13 -05:00
parent 46f7201bde
commit e340a79d5c
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
4 changed files with 76 additions and 1 deletions

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) <year> <copyright holders>
Copyright (c) <2022> <Hammer Technologies LLC>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

14
package.json Normal file
View File

@ -0,0 +1,14 @@
{
"name": "@lumeweb/peer-discovery",
"version": "0.1.0",
"main": "dist/index.js",
"devDependencies": {
"@types/b4a": "^1.6.0",
"@types/node": "^18.11.17",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
},
"dependencies": {
"b4a": "^1.6.1"
}
}

47
src/index.ts Normal file
View File

@ -0,0 +1,47 @@
import b4a from "b4a";
export interface Peer {
host: string;
port: number;
}
export type PeerSource = (pubkey: Buffer) => Promise<boolean | Peer>;
export class PeerDiscovery {
private _sources: Map<string, PeerSource> = new Map<string, PeerSource>();
public registerSource(name: string, source: PeerSource): boolean {
if (this._sources.has(name)) {
return false;
}
this._sources.set(name, source);
return true;
}
public removeSource(name: string): boolean {
if (!this._sources.has(name)) {
return false;
}
this._sources.delete(name);
return true;
}
public async discover(pubkey: string | Buffer): Promise<Peer | boolean> {
if (!b4a.isBuffer(pubkey)) {
pubkey = b4a.from(pubkey, "hex") as Buffer;
}
for (const source of this._sources.values()) {
const result = await source(pubkey);
if (result) {
return result;
}
}
return false;
}
}

14
tsconfig.json Normal file
View File

@ -0,0 +1,14 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "esnext",
"sourceMap": true,
"esModuleInterop": true,
"outDir": "dist",
"declaration": true
},
"include": ["src"],
"exclude": [
"node_modules"
]
}