Compare commits

..

No commits in common. "90cdcf8745617929fe39b2f93b1890dcf572e353" and "772e73f48d9ea8ec3439f0d6f79b6e49c62ceec9" have entirely different histories.

5 changed files with 25 additions and 25 deletions

1
package-lock.json generated
View File

@ -11,6 +11,7 @@
"dependencies": {
"@nostr-dev-kit/ndk": "^0.8.1",
"axios": "^1.4.0",
"debug": "^4.3.4",
"file-type": "^18.5.0",
"form-data": "^4.0.0",
"form-data-encoder": "^3.0.0",

View File

@ -45,6 +45,7 @@
"dependencies": {
"@nostr-dev-kit/ndk": "^0.8.1",
"axios": "^1.4.0",
"debug": "^4.3.4",
"file-type": "^18.5.0",
"form-data": "^4.0.0",
"form-data-encoder": "^3.0.0",

View File

@ -13,7 +13,10 @@ importers:
version: 0.8.1(typescript@5.0.4)
axios:
specifier: ^1.4.0
version: 1.4.0
version: 1.4.0(debug@4.3.4)
debug:
specifier: ^4.3.4
version: 4.3.4
file-type:
specifier: ^18.5.0
version: 18.5.0
@ -31,7 +34,7 @@ importers:
version: 3.0.0
lnbits:
specifier: ^1.1.5
version: 1.1.5
version: 1.1.5(debug@4.3.4)
tslib:
specifier: ~2.5
version: 2.5.3
@ -3595,15 +3598,15 @@ snapshots:
dependencies:
possible-typed-array-names: 1.0.0
axios@0.21.4:
axios@0.21.4(debug@4.3.4):
dependencies:
follow-redirects: 1.15.2
follow-redirects: 1.15.2(debug@4.3.4)
transitivePeerDependencies:
- debug
axios@1.4.0:
axios@1.4.0(debug@4.3.4):
dependencies:
follow-redirects: 1.15.2
follow-redirects: 1.15.2(debug@4.3.4)
form-data: 4.0.0
proxy-from-env: 1.1.0
transitivePeerDependencies:
@ -4266,7 +4269,9 @@ snapshots:
flatted@3.2.7: {}
follow-redirects@1.15.2: {}
follow-redirects@1.15.2(debug@4.3.4):
optionalDependencies:
debug: 4.3.4
for-each@0.3.3:
dependencies:
@ -4937,9 +4942,9 @@ snapshots:
lines-and-columns@1.2.4: {}
lnbits@1.1.5:
lnbits@1.1.5(debug@4.3.4):
dependencies:
axios: 0.21.4
axios: 0.21.4(debug@4.3.4)
typescript: 4.9.5
transitivePeerDependencies:
- debug

View File

@ -2,7 +2,6 @@ import { NDKEvent } from '@nostr-dev-kit/ndk'
import { log } from '../main.js'
import axios from 'axios'
import { RelayInfo } from '../types/index.js'
import https from 'https'
export const relayInfoJob = async (event: NDKEvent): Promise<string> => {
log('New relay-info job', event.rawEvent())
@ -23,15 +22,8 @@ export const relayInfoJob = async (event: NDKEvent): Promise<string> => {
}
const prefixes = { wss: 'wss://', https: 'https://', http: 'http://' }
// Relay may have outdated certificate 'rejectUnauthorized: false' will prevent
// throwing ann error on request
const agent = new https.Agent({
rejectUnauthorized: false
})
const config = {
headers: { Accept: 'application/nostr+json' },
httpsAgent: agent
const headers = {
headers: { Accept: 'application/nostr+json' }
}
const requests = relays.map((relay) => {
@ -40,12 +32,12 @@ export const relayInfoJob = async (event: NDKEvent): Promise<string> => {
}
return axios
.get<RelayInfo>((relay = `${prefixes.https}${relay}`), config)
.catch(() =>
axios
.get<RelayInfo>(`${prefixes.http}${relay}`, config)
.get<RelayInfo>((relay = `${prefixes.https}${relay}`), headers)
.catch(() => {
return axios
.get<RelayInfo>(`${prefixes.http}${relay}`, headers)
.catch(() => undefined)
)
})
})
let responses = await Promise.all(requests)

View File

@ -1,4 +1,5 @@
import NDK, { NDKEvent } from '@nostr-dev-kit/ndk'
import debug from 'debug'
import { onNewSummarizationJob } from './job-types/summarization.js'
import { complete, speechToTextJob } from './job-types/speech-to-text.js'
import getSigner from './local-signer.js'
@ -13,7 +14,7 @@ import { blockChainBlockNumberJob } from './job-types/blockChain-block-number.js
import { relayInfoJob } from './job-types/relay-info.js'
import { JobType, JobTypes } from './types/index.js'
export const log = (obj1: any, obj2?: any) => console.log(obj1, obj2 || '')
export const log = debug('fool-me-once-dvm')
export const configFile =
process.argv[2] || `${process.env.HOME}/.fool-me-once.json`