move e621 auth to .env, edit readme

This commit is contained in:
creations 2025-01-05 21:46:01 -05:00
parent 60a11c8d92
commit 20f98f630f
Signed by: creations
GPG key ID: 8F553AA4320FC711
5 changed files with 67 additions and 14 deletions

View file

@ -5,3 +5,8 @@ HOST=0.0.0.0
#REDIS_HOST=127.0.0.1 #REDIS_HOST=127.0.0.1
#REDIS_PORT=6379 #REDIS_PORT=6379
REDIS_PASSWORD=pasw0rd REDIS_PASSWORD=pasw0rd
#REQUIRED if you want to use the e621 API
E621_USER_AGENT=YourBotName/1.0 (by username on e621)
E621_USERNAME=username
E621_API_KEY=apikey

1
.gitignore vendored
View file

@ -2,3 +2,4 @@
bun.lockb bun.lockb
/config/secrets.ts /config/secrets.ts
.env .env
/logs

View file

@ -2,27 +2,49 @@
## Setup Instructions ## Setup Instructions
1. Rename the example environment file to `.env`: ### Production Environment
1. Clone the repository:
```bash
git clone <repository-url>
cd booru-api
```
2. Rename the example environment file to `.env`:
```bash ```bash
mv .example.env .env mv .example.env .env
``` ```
2. Start the application in detached mode: 3. Start the application in detached mode:
```bash ```bash
docker compose up -d docker compose up -d
``` ```
--- ---
## Default `config/secrets.ts` File ### Development Environment
```typescript 1. Clone the repository:
const e621Auth: Record<string, string> = { ```bash
"User-Agent": "your-domain/1.0 (by your-username on e621)", git clone <repository-url>
Authorization: "Basic " + btoa("your-username:your-password"), cd booru-api
}; ```
export { e621Auth }; 2. Rename the example environment file to `.env`:
``` ```bash
mv .example.env .env
```
3. Install dependencies using Bun:
```bash
bun install
```
4. Start the development server:
```bash
bun dev
```
---
> **Note** Replace `your-username` and `your-password` with your e621 account credentials. Update the `User-Agent` string to include your domain and comply with e621's API guidelines. > **Note** Replace `your-username` and `your-password` with your e621 account credentials. Update the `User-Agent` string to include your domain and comply with e621's API guidelines.

View file

@ -1,6 +1,6 @@
// cSpell:disable // cSpell:disable
import { e621Auth } from "./secrets"; import { getE621Auth } from "./environment";
const booruDefaults: IBooruDefaults = { const booruDefaults: IBooruDefaults = {
search: "index.php?page=dapi&s=post&q=index&json=1", search: "index.php?page=dapi&s=post&q=index&json=1",
@ -68,8 +68,6 @@ export const booruConfig: IBooruConfigMap = {
random: "defaultRandom", random: "defaultRandom",
id: ["posts/", ".json"], id: ["posts/", ".json"],
}, },
auth: { auth: getE621Auth(),
...e621Auth,
},
}, },
}; };

View file

@ -19,3 +19,30 @@ export const redisConfig: RedisConfig = {
port: parseInt(process.env.REDIS_PORT || "6379", 10), port: parseInt(process.env.REDIS_PORT || "6379", 10),
password: process.env.REDIS_PASSWORD || undefined, password: process.env.REDIS_PASSWORD || undefined,
}; };
if (
!process.env.E621_USER_AGENT ||
!process.env.E621_USERNAME ||
!process.env.E621_API_KEY
) {
logger.error("Missing e621 credentials in .env file");
} else {
if (
process.env.E621_USERNAME === "username" ||
process.env.E621_API_KEY === "apikey"
) {
logger.error("Please update your e621 credentials in the .env file");
}
}
export function getE621Auth(): Record<string, string> {
const e621UserAgent: string | undefined = process.env.E621_USER_AGENT;
const e621Username: string | undefined = process.env.E621_USERNAME;
const e621ApiKey: string | undefined = process.env.E621_API_KEY;
return {
"User-Agent": e621UserAgent || "",
Authorization:
"Basic " + btoa(`${e621Username || ""}:${e621ApiKey || ""}`),
};
}