Skip to content

Commit

Permalink
bsky: add top-level and robots.txt endpoints (bluesky-social#1979)
Browse files Browse the repository at this point in the history
These provide helpful context (instead of just a generic 404).

The robots.txt in particular will show up for public.api.bsky.app
  • Loading branch information
bnewbold authored Dec 21, 2023
1 parent 905743d commit 50f209e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions packages/bsky/src/api/health.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ import AppContext from '../context'
export const createRouter = (ctx: AppContext): express.Router => {
const router = express.Router()

router.get('/', function (req, res) {
res.type('text/plain')
res.send(
'This is an AT Protocol Application View (AppView) for the "bsky.app" application: https://github.com/bluesky-social/atproto\n\nMost API routes are under /xrpc/',
)
})

router.get('/robots.txt', function (req, res) {
res.type('text/plain')
res.send(
'# Hello Friends!\n\n# Crawling the public parts of the API is allowed. HTTP 429 ("backoff") status codes are used for rate-limiting. Up to a handful concurrent requests should be ok.\nUser-agent: *\nAllow: /',
)
})

router.get('/xrpc/_health', async function (req, res) {
const { version } = ctx.cfg
const db = ctx.db.getPrimary()
Expand Down

0 comments on commit 50f209e

Please sign in to comment.