add to blink (#7788)
This commit is contained in:
@@ -1,9 +1,10 @@
|
|||||||
import {Express} from 'express'
|
import {Express} from 'express'
|
||||||
|
|
||||||
import {AppContext} from '../context.js'
|
import {AppContext} from '../context.js'
|
||||||
import {default as create} from './create.js'
|
import {default as createShortLink} from './createShortLink.js'
|
||||||
import {default as health} from './health.js'
|
import {default as health} from './health.js'
|
||||||
import {default as redirect} from './redirect.js'
|
import {default as redirect} from './redirect.js'
|
||||||
|
import {default as shortLink} from './shortLink.js'
|
||||||
import {default as siteAssociation} from './siteAssociation.js'
|
import {default as siteAssociation} from './siteAssociation.js'
|
||||||
|
|
||||||
export * from './util.js'
|
export * from './util.js'
|
||||||
@@ -11,7 +12,8 @@ export * from './util.js'
|
|||||||
export default function (ctx: AppContext, app: Express) {
|
export default function (ctx: AppContext, app: Express) {
|
||||||
app = health(ctx, app) // GET /_health
|
app = health(ctx, app) // GET /_health
|
||||||
app = siteAssociation(ctx, app) // GET /.well-known/apple-app-site-association
|
app = siteAssociation(ctx, app) // GET /.well-known/apple-app-site-association
|
||||||
app = create(ctx, app) // POST /link
|
app = redirect(ctx, app) // GET /redirect
|
||||||
app = redirect(ctx, app) // GET /:linkId (should go last due to permissive matching)
|
app = createShortLink(ctx, app) // POST /link
|
||||||
|
app = shortLink(ctx, app) // GET /:linkId (should go last due to permissive matching)
|
||||||
return app
|
return app
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,47 +6,40 @@ import {Express} from 'express'
|
|||||||
import {AppContext} from '../context.js'
|
import {AppContext} from '../context.js'
|
||||||
import {handler} from './util.js'
|
import {handler} from './util.js'
|
||||||
|
|
||||||
|
const INTERNAL_IP_REGEX = new RegExp(
|
||||||
|
'(^127.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}$)|(^10.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}$)|(^172.1[6-9]{1}[0-9]{0,1}.[0-9]{1,3}.[0-9]{1,3}$)|(^172.2[0-9]{1}[0-9]{0,1}.[0-9]{1,3}.[0-9]{1,3}$)|(^172.3[0-1]{1}[0-9]{0,1}.[0-9]{1,3}.[0-9]{1,3}$)|(^192.168.[0-9]{1,3}.[0-9]{1,3}$)|^localhost',
|
||||||
|
'i',
|
||||||
|
)
|
||||||
|
|
||||||
export default function (ctx: AppContext, app: Express) {
|
export default function (ctx: AppContext, app: Express) {
|
||||||
return app.get(
|
return app.get(
|
||||||
'/:linkId',
|
'/redirect',
|
||||||
handler(async (req, res) => {
|
handler(async (req, res) => {
|
||||||
const linkId = req.params.linkId
|
let link = req.query.u
|
||||||
const contentType = req.accepts(['html', 'json'])
|
|
||||||
assert(
|
assert(
|
||||||
typeof linkId === 'string',
|
typeof link === 'string',
|
||||||
'express guarantees id parameter is a string',
|
'express guarantees link query parameter is a string',
|
||||||
)
|
)
|
||||||
const found = await ctx.db.db
|
link = decodeURIComponent(link)
|
||||||
.selectFrom('link')
|
|
||||||
.selectAll()
|
let url: URL | undefined
|
||||||
.where('id', '=', linkId)
|
try {
|
||||||
.executeTakeFirst()
|
url = new URL(link)
|
||||||
if (!found) {
|
} catch {}
|
||||||
// potentially broken or mistyped link
|
|
||||||
|
if (
|
||||||
|
!url ||
|
||||||
|
(url.protocol !== 'http:' && url.protocol !== 'https:') || // is a http(s) url
|
||||||
|
(ctx.cfg.service.hostnames.includes(url.hostname.toLowerCase()) &&
|
||||||
|
url.pathname === '/redirect') || // is a redirect loop
|
||||||
|
INTERNAL_IP_REGEX.test(url.hostname) // isn't directing to an internal location
|
||||||
|
) {
|
||||||
res.setHeader('Cache-Control', 'no-store')
|
res.setHeader('Cache-Control', 'no-store')
|
||||||
if (contentType === 'json') {
|
|
||||||
return res
|
|
||||||
.status(404)
|
|
||||||
.json({
|
|
||||||
error: 'NotFound',
|
|
||||||
message: 'Link not found',
|
|
||||||
})
|
|
||||||
.end()
|
|
||||||
}
|
|
||||||
// send the user to the app
|
|
||||||
res.setHeader('Location', `https://${ctx.cfg.service.appHostname}`)
|
res.setHeader('Location', `https://${ctx.cfg.service.appHostname}`)
|
||||||
return res.status(302).end()
|
return res.status(302).end()
|
||||||
}
|
}
|
||||||
// build url from original url in order to preserve query params
|
|
||||||
const url = new URL(
|
|
||||||
req.originalUrl,
|
|
||||||
`https://${ctx.cfg.service.appHostname}`,
|
|
||||||
)
|
|
||||||
url.pathname = found.path
|
|
||||||
res.setHeader('Cache-Control', `max-age=${(7 * DAY) / SECOND}`)
|
res.setHeader('Cache-Control', `max-age=${(7 * DAY) / SECOND}`)
|
||||||
if (contentType === 'json') {
|
|
||||||
return res.json({url: url.href}).end()
|
|
||||||
}
|
|
||||||
res.setHeader('Location', url.href)
|
res.setHeader('Location', url.href)
|
||||||
return res.status(301).end()
|
return res.status(301).end()
|
||||||
}),
|
}),
|
||||||
|
|||||||
@@ -0,0 +1,54 @@
|
|||||||
|
import assert from 'node:assert'
|
||||||
|
|
||||||
|
import {DAY, SECOND} from '@atproto/common'
|
||||||
|
import {Express} from 'express'
|
||||||
|
|
||||||
|
import {AppContext} from '../context.js'
|
||||||
|
import {handler} from './util.js'
|
||||||
|
|
||||||
|
export default function (ctx: AppContext, app: Express) {
|
||||||
|
return app.get(
|
||||||
|
'/:linkId',
|
||||||
|
handler(async (req, res) => {
|
||||||
|
const linkId = req.params.linkId
|
||||||
|
const contentType = req.accepts(['html', 'json'])
|
||||||
|
assert(
|
||||||
|
typeof linkId === 'string',
|
||||||
|
'express guarantees id parameter is a string',
|
||||||
|
)
|
||||||
|
const found = await ctx.db.db
|
||||||
|
.selectFrom('link')
|
||||||
|
.selectAll()
|
||||||
|
.where('id', '=', linkId)
|
||||||
|
.executeTakeFirst()
|
||||||
|
if (!found) {
|
||||||
|
// potentially broken or mistyped link
|
||||||
|
res.setHeader('Cache-Control', 'no-store')
|
||||||
|
if (contentType === 'json') {
|
||||||
|
return res
|
||||||
|
.status(404)
|
||||||
|
.json({
|
||||||
|
error: 'NotFound',
|
||||||
|
message: 'Link not found',
|
||||||
|
})
|
||||||
|
.end()
|
||||||
|
}
|
||||||
|
// send the user to the app
|
||||||
|
res.setHeader('Location', `https://${ctx.cfg.service.appHostname}`)
|
||||||
|
return res.status(302).end()
|
||||||
|
}
|
||||||
|
// build url from original url in order to preserve query params
|
||||||
|
const url = new URL(
|
||||||
|
req.originalUrl,
|
||||||
|
`https://${ctx.cfg.service.appHostname}`,
|
||||||
|
)
|
||||||
|
url.pathname = found.path
|
||||||
|
res.setHeader('Cache-Control', `max-age=${(7 * DAY) / SECOND}`)
|
||||||
|
if (contentType === 'json') {
|
||||||
|
return res.json({url: url.href}).end()
|
||||||
|
}
|
||||||
|
res.setHeader('Location', url.href)
|
||||||
|
return res.status(301).end()
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user