api.violets-purgatory.dev/index.js

32 lines
989 B
JavaScript
Raw Normal View History

2024-01-20 22:14:18 -06:00
const express = require('express'),
path = require("path"),
fs = require("fs")
2024-01-19 18:39:24 -06:00
const PORT = process.env.PORT || 8080
var app = express()
2024-01-20 22:14:18 -06:00
function randomFileInDir(directory) {
var dir = fs.readdirSync(directory)
return path.join(directory, dir[Math.floor(Math.random() * dir.length)])
}
2024-01-19 18:44:51 -06:00
app.get("/", (req, res) => {
res.send({
info: "Welcome to the API! It's still a work in process, so there's not much here yet. I don't really know how to do APIs yet so expect it to suck if I add anything.",
2024-01-25 11:08:23 -06:00
documentation: "https://codeberg.org/Bingus_Violet/api.violets-purgatory.dev/wiki",
2024-01-19 18:44:51 -06:00
current_commands: {
"/v1/pfp": {
description: "Generates a random PFP. For use on the main page & with UserPFP on Discord."
}
}
})
})
2024-01-19 18:39:24 -06:00
2024-01-20 22:14:18 -06:00
app.get("/v1/pfp", (req, res) => {
res.sendFile(randomFileInDir(path.join(__dirname, 'pfps')))
})
2024-01-19 18:39:24 -06:00
app.listen(PORT, () => {
console.log("API is now listening on port 8080!")
})