mirror of
https://github.com/ProjectSegfault/website.git
synced 2024-11-09 17:42:02 +05:30
use mongodb
This commit is contained in:
parent
60b072bc74
commit
e4333a8b4c
@ -1,8 +1,5 @@
|
||||
AUTH_SECRET=myauthsecret # generate with https://generate-secret.vercel.app/32 or openssl rand -hex 32 on unix-like
|
||||
DB_HOST=localhost
|
||||
DB_PORT=5432
|
||||
DB_USERNAME=postgres
|
||||
DB_PASSWORD=your-db-password
|
||||
DB_URL=mongodb://localhost:27017
|
||||
GHOST_API_KEY=your-ghost-api-key
|
||||
AUTH_CLIENT_ID=your-authentik-client-id
|
||||
AUTH_CLIENT_SECRET=your-authentik-client-secret
|
||||
@ -10,3 +7,5 @@ AUTH_ISSUER=https://authentik-domain/application/o/app-name/
|
||||
HCAPTCHA_SECRET=your-hcaptcha-secret
|
||||
HCAPTCHA_SITEKEY=your-hcaptcha-sitekey
|
||||
WEBHOOK=your-discord-webhook
|
||||
MONGO_USER=mongodb
|
||||
MONGO_PASSWORD=mongodb
|
19
compose.yml
19
compose.yml
@ -24,18 +24,17 @@ services:
|
||||
WEBHOOK: ${WEBHOOK}
|
||||
#args: [ "ORIGIN=" ]
|
||||
|
||||
website-db-dev:
|
||||
image: postgres
|
||||
website-db:
|
||||
image: mongo
|
||||
container_name: website-db
|
||||
environment:
|
||||
POSTGRES_USER: postgres
|
||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||
PGDATA: /data/postgres
|
||||
POSTGRES_DB: website
|
||||
volumes:
|
||||
- website-db-data:/data/postgres
|
||||
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- website-db-data:/data/db
|
||||
environment:
|
||||
MONGO_INITDB_ROOT_USERNAME: $MONGO_USER
|
||||
MONGO_INITDB_ROOT_PASSWORD: $MONGO_PASSWORD
|
||||
MONGO_INITDB_DATABASE: website
|
||||
command: [--auth]
|
||||
|
||||
volumes:
|
||||
website-db-data:
|
@ -42,7 +42,6 @@
|
||||
"@auth/sveltekit": "^0.1.11",
|
||||
"dotenv": "^16.0.3",
|
||||
"joi": "^17.7.0",
|
||||
"knex": "^2.4.0",
|
||||
"pg": "^8.8.0"
|
||||
"mongodb": "^4.13.0"
|
||||
}
|
||||
}
|
||||
|
1159
pnpm-lock.yaml
1159
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
@ -1,31 +1,14 @@
|
||||
import knex from "knex";
|
||||
import type { Knex } from "knex";
|
||||
import { env } from "$env/dynamic/private";
|
||||
import { building } from "$app/environment";
|
||||
import { MongoClient } from "mongodb";
|
||||
import type { Db } from "mongodb";
|
||||
|
||||
export let db: Knex;
|
||||
export let db: Db;
|
||||
|
||||
if (!building) {
|
||||
db = knex({
|
||||
client: "pg",
|
||||
connection: {
|
||||
host: String(env.DB_HOST),
|
||||
port: Number(env.DB_PORT),
|
||||
user: String(env.DB_USERNAME),
|
||||
password: String(env.DB_PASSWORD),
|
||||
database: "website"
|
||||
}
|
||||
})
|
||||
const client = new MongoClient(env.DB_URL);
|
||||
|
||||
if (! await db.schema.hasTable("Announcements")) {
|
||||
await db.schema.createTable("Announcements", (table) => {
|
||||
table.increments("id");
|
||||
table.specificType("title", "varchar").notNullable();
|
||||
table.string("severity").notNullable();
|
||||
table.string("author").notNullable();
|
||||
table.string("link").nullable();
|
||||
table.bigInteger("created").notNullable();
|
||||
table.timestamps(true, true, true);
|
||||
});
|
||||
}
|
||||
await client.connect();
|
||||
|
||||
db = client.db("website");
|
||||
}
|
@ -5,7 +5,9 @@ import { db } from "$lib/server/db";
|
||||
|
||||
export const load: PageServerLoad = async () => {
|
||||
|
||||
const data = await db("Announcements").select("*");
|
||||
const collection = db.collection("announcements");
|
||||
|
||||
const data = await collection.find({}, { projection: { _id: 0 } }).toArray();
|
||||
|
||||
if (data.length !== 0 || data[0] !== undefined) {
|
||||
|
||||
|
@ -4,6 +4,8 @@ import { fail } from "@sveltejs/kit";
|
||||
import { db } from "$lib/server/db";
|
||||
import dayjs from "dayjs";
|
||||
|
||||
const collection = db.collection("announcements");
|
||||
|
||||
export const actions: Actions = {
|
||||
add: async ({ request, locals }) => {
|
||||
if (!await locals.getSession()) {
|
||||
@ -24,14 +26,12 @@ export const actions: Actions = {
|
||||
const now = Math.floor(Date.now() / 1000);
|
||||
const data = {
|
||||
...Object.fromEntries(formData.entries()),
|
||||
created: now,
|
||||
createdAt: dayjs.unix(now).toISOString(),
|
||||
updatedAt: dayjs.unix(now).toISOString()
|
||||
created: now
|
||||
};
|
||||
|
||||
await db.delete("*").from("Announcements");
|
||||
await collection.deleteMany({});
|
||||
|
||||
await db("Announcements").insert(data);
|
||||
await collection.insertOne(data);
|
||||
|
||||
return { addSuccess: true, addMessage: "Your announcement has been posted." };
|
||||
}
|
||||
@ -43,7 +43,7 @@ export const actions: Actions = {
|
||||
return fail(401, { deleteError: true, deleteMessage: "You must be logged in to delete an announcement." });
|
||||
} else {
|
||||
|
||||
await db.delete("*").from("Announcements");
|
||||
await collection.deleteMany({});
|
||||
|
||||
return { deleteSuccess: true, deleteMessage: "Your announcement has been deleted." };
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user