mirror of
https://github.com/Permissionless-Software-Foundation/psf-bch-api.git
synced 2026-09-22 17:12:02 -07:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e708fc1228 | ||
|
|
fed4b2da59 | ||
|
|
f30c2ede04 | ||
|
|
09e05d51e5 | ||
|
|
22cbc54dee |
@@ -74,6 +74,19 @@ class Server {
|
|||||||
allowedHeaders: ['Content-Type', 'Authorization', 'X-Requested-With']
|
allowedHeaders: ['Content-Type', 'Authorization', 'X-Requested-With']
|
||||||
}))
|
}))
|
||||||
|
|
||||||
|
// URL normalization middleware - collapse multiple slashes
|
||||||
|
app.use((req, res, next) => {
|
||||||
|
if (req.path && req.path.includes('//')) {
|
||||||
|
// Collapse multiple consecutive slashes into a single slash
|
||||||
|
const normalizedPath = req.path.replace(/\/+/g, '/')
|
||||||
|
// Reconstruct req.url with normalized path
|
||||||
|
const queryString = req.url.includes('?') ? req.url.substring(req.url.indexOf('?')) : ''
|
||||||
|
req.url = normalizedPath + queryString
|
||||||
|
req.path = normalizedPath
|
||||||
|
}
|
||||||
|
next()
|
||||||
|
})
|
||||||
|
|
||||||
// Apply basic auth middleware if enabled
|
// Apply basic auth middleware if enabled
|
||||||
// This must run before x402 middleware to set req.locals.basicAuthValid
|
// This must run before x402 middleware to set req.locals.basicAuthValid
|
||||||
if (basicAuthSettings.enabled) {
|
if (basicAuthSettings.enabled) {
|
||||||
|
|||||||
Generated
+562
-494
File diff suppressed because it is too large
Load Diff
+3
-3
@@ -15,17 +15,17 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"description": "REST API proxy to Bitcoin Cash infrastructure",
|
"description": "REST API proxy to Bitcoin Cash infrastructure",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@psf/bch-js": "7.1.2",
|
"@psf/bch-js": "7.1.7",
|
||||||
"axios": "1.7.7",
|
"axios": "1.7.7",
|
||||||
"cors": "2.8.5",
|
"cors": "2.8.5",
|
||||||
"dotenv": "16.3.1",
|
"dotenv": "16.3.1",
|
||||||
"express": "5.1.0",
|
"express": "5.1.0",
|
||||||
"minimal-slp-wallet": "7.0.2",
|
"minimal-slp-wallet": "7.1.2",
|
||||||
"psffpp": "1.2.1",
|
"psffpp": "1.2.1",
|
||||||
"slp-token-media": "1.2.10",
|
"slp-token-media": "1.2.10",
|
||||||
"winston": "3.11.0",
|
"winston": "3.11.0",
|
||||||
"winston-daily-rotate-file": "4.7.1",
|
"winston-daily-rotate-file": "4.7.1",
|
||||||
"x402-bch-express": "1.1.3"
|
"x402-bch-express": "2.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"apidoc": "1.2.0",
|
"apidoc": "1.2.0",
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import wlogger from '../adapters/wlogger.js'
|
|||||||
import BCHJS from '@psf/bch-js'
|
import BCHJS from '@psf/bch-js'
|
||||||
import config from '../config/index.js'
|
import config from '../config/index.js'
|
||||||
|
|
||||||
const bchjs = new BCHJS({
|
const bchjs = new BCHJS({
|
||||||
restURL: config.restURL,
|
restURL: config.restURL,
|
||||||
bearerToken: config.basicAuth.token
|
bearerToken: config.basicAuth.token
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user