Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bsky: add top-level and robots.txt endpoints #1979

Merged
merged 1 commit into from
Dec 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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