2
1
mirror of https://github.com/Thream/api.git synced 2024-07-06 21:00:11 +02:00

chore: better Prettier config for easier reviews

This commit is contained in:
Théo LUDWIG 2023-10-23 23:38:50 +02:00
parent 5591449094
commit 2aefe73afa
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B
132 changed files with 4114 additions and 4019 deletions

View File

@ -1,23 +1,23 @@
services: services:
workspace: workspace:
build: build:
context: './' context: "./"
dockerfile: './Dockerfile' dockerfile: "./Dockerfile"
volumes: volumes:
- '..:/workspace:cached' - "..:/workspace:cached"
command: 'sleep infinity' command: "sleep infinity"
network_mode: 'host' network_mode: "host"
thream-database: thream-database:
image: 'postgres:15.4' image: "postgres:15.4"
environment: environment:
POSTGRES_USER: 'thream_user' POSTGRES_USER: "thream_user"
POSTGRES_PASSWORD: 'password' POSTGRES_PASSWORD: "password"
POSTGRES_DB: 'thream' POSTGRES_DB: "thream"
volumes: volumes:
- 'thream-postgres-data:/var/lib/postgresql/data' - "thream-postgres-data:/var/lib/postgresql/data"
restart: 'unless-stopped' restart: "unless-stopped"
network_mode: 'host' network_mode: "host"
volumes: volumes:
thream-postgres-data: thream-postgres-data:

View File

@ -1,8 +1,8 @@
--- ---
name: '🐛 Bug Report' name: "🐛 Bug Report"
about: 'Report an unexpected problem or unintended behavior.' about: "Report an unexpected problem or unintended behavior."
title: '[Bug]' title: "[Bug]"
labels: 'bug' labels: "bug"
--- ---
<!-- <!--

View File

@ -1,8 +1,8 @@
--- ---
name: '📜 Documentation' name: "📜 Documentation"
about: 'Correct spelling errors, improvements or additions to documentation files (README, CONTRIBUTING...).' about: "Correct spelling errors, improvements or additions to documentation files (README, CONTRIBUTING...)."
title: '[Documentation]' title: "[Documentation]"
labels: 'documentation' labels: "documentation"
--- ---
<!-- Please make sure your issue has not already been fixed. --> <!-- Please make sure your issue has not already been fixed. -->

View File

@ -1,8 +1,8 @@
--- ---
name: '✨ Feature Request' name: "✨ Feature Request"
about: 'Suggest a new feature idea.' about: "Suggest a new feature idea."
title: '[Feature]' title: "[Feature]"
labels: 'feature request' labels: "feature request"
--- ---
<!-- Please make sure your issue has not already been fixed. --> <!-- Please make sure your issue has not already been fixed. -->

View File

@ -1,8 +1,8 @@
--- ---
name: '🔧 Improvement' name: "🔧 Improvement"
about: 'Improve structure/format/performance/refactor/tests of the code.' about: "Improve structure/format/performance/refactor/tests of the code."
title: '[Improvement]' title: "[Improvement]"
labels: 'improvement' labels: "improvement"
--- ---
<!-- Please make sure your issue has not already been fixed. --> <!-- Please make sure your issue has not already been fixed. -->

View File

@ -1,8 +1,8 @@
--- ---
name: '🙋 Question' name: "🙋 Question"
about: 'Further information is requested.' about: "Further information is requested."
title: '[Question]' title: "[Question]"
labels: 'question' labels: "question"
--- ---
### Question ### Question

View File

@ -1,4 +1,4 @@
name: 'Analyze' name: "Analyze"
on: on:
push: push:
@ -8,20 +8,20 @@ on:
jobs: jobs:
analyze: analyze:
runs-on: 'ubuntu-latest' runs-on: "ubuntu-latest"
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
language: ['javascript'] language: ["javascript"]
steps: steps:
- uses: 'actions/checkout@v4.0.0' - uses: "actions/checkout@v4.0.0"
- name: 'Initialize CodeQL' - name: "Initialize CodeQL"
uses: 'github/codeql-action/init@v2' uses: "github/codeql-action/init@v2"
with: with:
languages: ${{ matrix.language }} languages: ${{ matrix.language }}
- name: 'Perform CodeQL Analysis' - name: "Perform CodeQL Analysis"
uses: 'github/codeql-action/analyze@v1' uses: "github/codeql-action/analyze@v1"

View File

@ -1,4 +1,4 @@
name: 'Build' name: "Build"
on: on:
push: push:
@ -8,20 +8,20 @@ on:
jobs: jobs:
build: build:
runs-on: 'ubuntu-latest' runs-on: "ubuntu-latest"
steps: steps:
- uses: 'actions/checkout@v4.0.0' - uses: "actions/checkout@v4.0.0"
- name: 'Setup Node.js' - name: "Setup Node.js"
uses: 'actions/setup-node@v3.8.1' uses: "actions/setup-node@v3.8.1"
with: with:
node-version: '20.x' node-version: "20.x"
cache: 'npm' cache: "npm"
- name: 'Install dependencies' - name: "Install dependencies"
run: 'npm clean-install' run: "npm clean-install"
- name: 'Build' - name: "Build"
run: 'npm run build' run: "npm run build"
- run: 'npm run build:typescript' - run: "npm run build:typescript"

View File

@ -1,4 +1,4 @@
name: 'Lint' name: "Lint"
on: on:
push: push:
@ -8,33 +8,33 @@ on:
jobs: jobs:
lint: lint:
runs-on: 'ubuntu-latest' runs-on: "ubuntu-latest"
steps: steps:
- uses: 'actions/checkout@v4.0.0' - uses: "actions/checkout@v4.0.0"
- name: 'Setup Node.js' - name: "Setup Node.js"
uses: 'actions/setup-node@v3.8.1' uses: "actions/setup-node@v3.8.1"
with: with:
node-version: '20.x' node-version: "20.x"
cache: 'npm' cache: "npm"
- name: 'Install dependencies' - name: "Install dependencies"
run: 'npm clean-install' run: "npm clean-install"
- name: 'lint:commit' - name: "lint:commit"
run: 'npm run lint:commit -- --to "${{ github.sha }}"' run: 'npm run lint:commit -- --to "${{ github.sha }}"'
- name: 'lint:editorconfig' - name: "lint:editorconfig"
run: 'npm run lint:editorconfig' run: "npm run lint:editorconfig"
- name: 'lint:markdown' - name: "lint:markdown"
run: 'npm run lint:markdown' run: "npm run lint:markdown"
- name: 'lint:eslint' - name: "lint:eslint"
run: 'npm run lint:eslint' run: "npm run lint:eslint"
- name: 'lint:prettier' - name: "lint:prettier"
run: 'npm run lint:prettier' run: "npm run lint:prettier"
- name: 'prisma:validate' - name: "prisma:validate"
run: 'cp .env.example .env && npm run prisma:validate' run: "cp .env.example .env && npm run prisma:validate"

View File

@ -1,4 +1,4 @@
name: 'Release' name: "Release"
on: on:
push: push:
@ -6,36 +6,36 @@ on:
jobs: jobs:
release: release:
runs-on: 'ubuntu-latest' runs-on: "ubuntu-latest"
steps: steps:
- uses: 'actions/checkout@v4.0.0' - uses: "actions/checkout@v4.0.0"
with: with:
fetch-depth: 0 fetch-depth: 0
persist-credentials: false persist-credentials: false
- name: 'Import GPG key' - name: "Import GPG key"
uses: 'crazy-max/ghaction-import-gpg@v6.0.0' uses: "crazy-max/ghaction-import-gpg@v6.0.0"
with: with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
git_user_signingkey: true git_user_signingkey: true
git_commit_gpgsign: true git_commit_gpgsign: true
- name: 'Setup Node.js' - name: "Setup Node.js"
uses: 'actions/setup-node@v3.8.1' uses: "actions/setup-node@v3.8.1"
with: with:
node-version: '20.x' node-version: "20.x"
cache: 'npm' cache: "npm"
- name: 'Install dependencies' - name: "Install dependencies"
run: 'npm clean-install' run: "npm clean-install"
- name: 'Build' - name: "Build"
run: 'npm run build' run: "npm run build"
- run: 'npm run build:typescript' - run: "npm run build:typescript"
- name: 'Release' - name: "Release"
run: 'npm run release' run: "npm run release"
env: env:
GH_TOKEN: ${{ secrets.GH_TOKEN }} GH_TOKEN: ${{ secrets.GH_TOKEN }}
GIT_COMMITTER_NAME: ${{ secrets.GIT_NAME }} GIT_COMMITTER_NAME: ${{ secrets.GIT_NAME }}

View File

@ -1,4 +1,4 @@
name: 'Test' name: "Test"
on: on:
push: push:
@ -8,23 +8,23 @@ on:
jobs: jobs:
test: test:
runs-on: 'ubuntu-latest' runs-on: "ubuntu-latest"
steps: steps:
- uses: 'actions/checkout@v4.0.0' - uses: "actions/checkout@v4.0.0"
- name: 'Setup Node.js' - name: "Setup Node.js"
uses: 'actions/setup-node@v3.8.1' uses: "actions/setup-node@v3.8.1"
with: with:
node-version: '20.x' node-version: "20.x"
cache: 'npm' cache: "npm"
- name: 'Install dependencies' - name: "Install dependencies"
run: 'npm clean-install' run: "npm clean-install"
- name: 'Build' - name: "Build"
run: 'npm run build' run: "npm run build"
- run: 'cp .env.example .env' - run: "cp .env.example .env"
- name: 'Test' - name: "Test"
run: 'npm run test' run: "npm run test"

View File

@ -1,6 +1,3 @@
{ {
"singleQuote": true, "semi": false
"jsxSingleQuote": true,
"semi": false,
"trailingComma": "none"
} }

View File

@ -1,15 +1,15 @@
FROM node:20.6.1 AS dependencies FROM node:20.9.0 AS dependencies
WORKDIR /usr/src/app WORKDIR /usr/src/app
COPY ./package*.json ./ COPY ./package*.json ./
RUN npm clean-install RUN npm clean-install
FROM node:20.6.1 AS builder FROM node:20.9.0 AS builder
WORKDIR /usr/src/app WORKDIR /usr/src/app
COPY --from=dependencies /usr/src/app/node_modules ./node_modules COPY --from=dependencies /usr/src/app/node_modules ./node_modules
COPY ./ ./ COPY ./ ./
RUN npm run prisma:generate && npm run build RUN npm run prisma:generate && npm run build
FROM node:20.6.1 AS runner FROM node:20.9.0 AS runner
WORKDIR /usr/src/app WORKDIR /usr/src/app
ENV NODE_ENV=production ENV NODE_ENV=production
ENV NODE_OPTIONS=--enable-source-maps ENV NODE_OPTIONS=--enable-source-maps

View File

@ -1,27 +1,27 @@
services: services:
thream-api: thream-api:
container_name: 'thream-api' container_name: "thream-api"
image: 'thream-api' image: "thream-api"
restart: 'unless-stopped' restart: "unless-stopped"
network_mode: 'host' network_mode: "host"
build: build:
context: './' context: "./"
env_file: '.env' env_file: ".env"
depends_on: depends_on:
- 'thream-database' - "thream-database"
thream-database: thream-database:
container_name: 'thream-database' container_name: "thream-database"
image: 'postgres:15.4' image: "postgres:15.4"
restart: 'unless-stopped' restart: "unless-stopped"
network_mode: 'host' network_mode: "host"
env_file: '.env' env_file: ".env"
environment: environment:
POSTGRES_USER: ${DATABASE_USER} POSTGRES_USER: ${DATABASE_USER}
POSTGRES_PASSWORD: ${DATABASE_PASSWORD} POSTGRES_PASSWORD: ${DATABASE_PASSWORD}
POSTGRES_DB: ${DATABASE_NAME} POSTGRES_DB: ${DATABASE_NAME}
volumes: volumes:
- 'thream-postgres-data:/var/lib/postgresql/data' - "thream-postgres-data:/var/lib/postgresql/data"
volumes: volumes:
thream-postgres-data: thream-postgres-data:

View File

@ -1,45 +1,45 @@
/** @type {import('node-plop').PlopGeneratorConfig} */ /** @type {import('node-plop').PlopGeneratorConfig} */
export const serviceGenerator = { export const serviceGenerator = {
description: 'REST API endpoint', description: "REST API endpoint",
prompts: [ prompts: [
{ {
type: 'input', type: "input",
name: 'url', name: "url",
message: 'url' message: "url",
}, },
{ {
type: 'list', type: "list",
name: 'httpMethod', name: "httpMethod",
message: 'httpMethod', message: "httpMethod",
choices: ['GET', 'POST', 'PUT', 'DELETE'] choices: ["GET", "POST", "PUT", "DELETE"],
}, },
{ {
type: 'input', type: "input",
name: 'description', name: "description",
message: 'description' message: "description",
}, },
{ {
type: 'list', type: "list",
name: 'tag', name: "tag",
message: 'tag', message: "tag",
choices: ['users', 'oauth2', 'guilds', 'channels', 'messages', 'members'] choices: ["users", "oauth2", "guilds", "channels", "messages", "members"],
}, },
{ {
type: 'confirm', type: "confirm",
name: 'shouldBeAuthenticated', name: "shouldBeAuthenticated",
message: 'shouldBeAuthenticated' message: "shouldBeAuthenticated",
} },
], ],
actions: [ actions: [
{ {
type: 'add', type: "add",
path: 'src/services/{{url}}/{{lowerCase httpMethod}}.ts', path: "src/services/{{url}}/{{lowerCase httpMethod}}.ts",
templateFile: 'generators/service/service.ts.hbs' templateFile: "generators/service/service.ts.hbs",
}, },
{ {
type: 'add', type: "add",
path: 'src/services/{{url}}/__test__/{{lowerCase httpMethod}}.test.ts', path: "src/services/{{url}}/__test__/{{lowerCase httpMethod}}.test.ts",
templateFile: 'generators/service/service.test.ts.hbs' templateFile: "generators/service/service.test.ts.hbs",
} },
] ],
} }

2051
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -40,71 +40,71 @@
"postinstall": "husky install" "postinstall": "husky install"
}, },
"dependencies": { "dependencies": {
"@fastify/cors": "8.3.0", "@fastify/cors": "8.4.0",
"@fastify/helmet": "11.1.1", "@fastify/helmet": "11.1.1",
"@fastify/multipart": "7.7.3", "@fastify/multipart": "8.0.0",
"@fastify/rate-limit": "8.0.3", "@fastify/rate-limit": "8.0.3",
"@fastify/sensible": "5.3.0", "@fastify/sensible": "5.5.0",
"@fastify/swagger": "8.10.0", "@fastify/swagger": "8.12.0",
"@fastify/swagger-ui": "1.9.3", "@fastify/swagger-ui": "1.10.1",
"@prisma/client": "5.3.1", "@prisma/client": "5.4.2",
"@sinclair/typebox": "0.31.15", "@sinclair/typebox": "0.31.18",
"@thream/socketio-jwt": "3.1.3", "@thream/socketio-jwt": "3.1.3",
"axios": "1.5.0", "axios": "1.5.1",
"bcryptjs": "2.4.3", "bcryptjs": "2.4.3",
"dotenv": "16.3.1", "dotenv": "16.3.1",
"ejs": "3.1.9", "ejs": "3.1.9",
"fastify": "4.23.2", "fastify": "4.24.3",
"fastify-plugin": "4.5.1", "fastify-plugin": "4.5.1",
"form-data": "4.0.0", "form-data": "4.0.0",
"http-errors": "2.0.0", "http-errors": "2.0.0",
"jsonwebtoken": "9.0.2", "jsonwebtoken": "9.0.2",
"ms": "2.1.3", "ms": "2.1.3",
"nodemailer": "6.9.5", "nodemailer": "6.9.7",
"read-pkg": "8.1.0", "read-pkg": "8.1.0",
"socket.io": "4.7.2" "socket.io": "4.7.2"
}, },
"devDependencies": { "devDependencies": {
"@commitlint/cli": "17.7.1", "@commitlint/cli": "18.0.0",
"@commitlint/config-conventional": "17.7.0", "@commitlint/config-conventional": "18.0.0",
"@saithodev/semantic-release-backmerge": "3.2.0", "@saithodev/semantic-release-backmerge": "3.2.1",
"@semantic-release/git": "10.0.1", "@semantic-release/git": "10.0.1",
"@swc/cli": "0.1.62", "@swc/cli": "0.1.62",
"@swc/core": "1.3.85", "@swc/core": "1.3.94",
"@tsconfig/strictest": "2.0.2", "@tsconfig/strictest": "2.0.2",
"@types/bcryptjs": "2.4.4", "@types/bcryptjs": "2.4.5",
"@types/busboy": "1.5.1", "@types/busboy": "1.5.2",
"@types/ejs": "3.1.2", "@types/ejs": "3.1.4",
"@types/http-errors": "2.0.2", "@types/http-errors": "2.0.3",
"@types/jsonwebtoken": "9.0.3", "@types/jsonwebtoken": "9.0.4",
"@types/ms": "0.7.31", "@types/ms": "0.7.33",
"@types/node": "20.6.2", "@types/node": "20.8.7",
"@types/nodemailer": "6.4.10", "@types/nodemailer": "6.4.13",
"@types/sinon": "10.0.16", "@types/sinon": "10.0.20",
"@typescript-eslint/eslint-plugin": "6.7.2", "@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.7.2", "@typescript-eslint/parser": "6.9.0",
"chokidar": "3.5.3", "chokidar": "3.5.3",
"concurrently": "8.2.1", "concurrently": "8.2.2",
"cross-env": "7.0.3", "cross-env": "7.0.3",
"editorconfig-checker": "5.1.1", "editorconfig-checker": "5.1.1",
"eslint": "8.49.0", "eslint": "8.52.0",
"eslint-config-conventions": "11.0.1", "eslint-config-conventions": "12.0.0",
"eslint-config-prettier": "9.0.0", "eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1", "eslint-plugin-import": "2.29.0",
"eslint-plugin-prettier": "5.0.0", "eslint-plugin-prettier": "5.0.1",
"eslint-plugin-promise": "6.1.1", "eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "48.0.1", "eslint-plugin-unicorn": "48.0.1",
"husky": "8.0.3", "husky": "8.0.3",
"lint-staged": "14.0.1", "lint-staged": "15.0.2",
"maildev": "2.1.0", "maildev": "2.1.0",
"markdownlint-cli2": "0.10.0", "markdownlint-cli2": "0.10.0",
"markdownlint-rule-relative-links": "2.1.0", "markdownlint-rule-relative-links": "2.1.0",
"plop": "4.0.0", "plop": "4.0.0",
"prettier": "3.0.3", "prettier": "3.0.3",
"prisma": "5.3.1", "prisma": "5.4.2",
"rimraf": "5.0.1", "rimraf": "5.0.5",
"semantic-release": "21.1.1", "semantic-release": "21.1.1",
"sinon": "16.0.0", "sinon": "17.0.0",
"typescript": "5.2.2" "typescript": "5.2.2"
} }
} }

View File

@ -1,8 +1,8 @@
import { serviceGenerator } from './generators/service/index.js' import { serviceGenerator } from "./generators/service/index.js"
export default ( export default (
/** @type {import('plop').NodePlopAPI} */ /** @type {import('plop').NodePlopAPI} */
plop plop,
) => { ) => {
plop.setGenerator('service', serviceGenerator) plop.setGenerator("service", serviceGenerator)
} }

View File

@ -1,35 +1,35 @@
import type { User } from '@prisma/client' import type { User } from "@prisma/client"
import sinon from 'sinon' import sinon from "sinon"
import { refreshTokenExample } from '#src/models/RefreshToken.js' import { refreshTokenExample } from "#src/models/RefreshToken.js"
import type { UserJWT } from '#src/models/User.js' import type { UserJWT } from "#src/models/User.js"
import { userExample } from '#src/models/User.js' import { userExample } from "#src/models/User.js"
import { userSettingsExample } from '#src/models/UserSettings.js' import { userSettingsExample } from "#src/models/UserSettings.js"
import { import {
generateAccessToken, generateAccessToken,
generateRefreshToken generateRefreshToken,
} from '#src/tools/utils/jwtToken.js' } from "#src/tools/utils/jwtToken.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
const userStubValue = { const userStubValue = {
findUnique: async () => { findUnique: async () => {
return userExample return userExample
} },
} }
const userSettingStubValue = { const userSettingStubValue = {
findFirst: async () => { findFirst: async () => {
return userSettingsExample return userSettingsExample
} },
} }
const oAuthStubValue = { const oAuthStubValue = {
findMany: async () => { findMany: async () => {
return [] return []
} },
} }
const refreshTokenStubValue = { const refreshTokenStubValue = {
create: async () => { create: async () => {
return refreshTokenExample return refreshTokenExample
} },
} }
export const authenticateUserTest = async (): Promise<{ export const authenticateUserTest = async (): Promise<{
@ -41,13 +41,13 @@ export const authenticateUserTest = async (): Promise<{
oAuthStubValue: typeof oAuthStubValue oAuthStubValue: typeof oAuthStubValue
refreshTokenStubValue: typeof refreshTokenStubValue refreshTokenStubValue: typeof refreshTokenStubValue
}> => { }> => {
sinon.stub(prisma, 'user').value(userStubValue) sinon.stub(prisma, "user").value(userStubValue)
sinon.stub(prisma, 'userSetting').value(userSettingStubValue) sinon.stub(prisma, "userSetting").value(userSettingStubValue)
sinon.stub(prisma, 'oAuth').value(oAuthStubValue) sinon.stub(prisma, "oAuth").value(oAuthStubValue)
sinon.stub(prisma, 'refreshToken').value(refreshTokenStubValue) sinon.stub(prisma, "refreshToken").value(refreshTokenStubValue)
const userJWT: UserJWT = { const userJWT: UserJWT = {
currentStrategy: 'Local', currentStrategy: "Local",
id: 1 id: 1,
} }
const accessToken = generateAccessToken(userJWT) const accessToken = generateAccessToken(userJWT)
const refreshToken = await generateRefreshToken(userJWT) const refreshToken = await generateRefreshToken(userJWT)
@ -58,6 +58,6 @@ export const authenticateUserTest = async (): Promise<{
userStubValue, userStubValue,
userSettingStubValue, userSettingStubValue,
oAuthStubValue, oAuthStubValue,
refreshTokenStubValue refreshTokenStubValue,
} }
} }

View File

@ -1,75 +1,75 @@
import dotenv from 'dotenv' import dotenv from "dotenv"
import fastify from 'fastify' import fastify from "fastify"
import fastifyCors from '@fastify/cors' import fastifyCors from "@fastify/cors"
import fastifySwagger from '@fastify/swagger' import fastifySwagger from "@fastify/swagger"
import fastifySwaggerUI from '@fastify/swagger-ui' import fastifySwaggerUI from "@fastify/swagger-ui"
import fastifyHelmet from '@fastify/helmet' import fastifyHelmet from "@fastify/helmet"
import fastifyRateLimit from '@fastify/rate-limit' import fastifyRateLimit from "@fastify/rate-limit"
import fastifySensible from '@fastify/sensible' import fastifySensible from "@fastify/sensible"
import { readPackage } from 'read-pkg' import { readPackage } from "read-pkg"
import { services } from '#src/services/index.js' import { services } from "#src/services/index.js"
import fastifySocketIo from '#src/tools/plugins/socket-io.js' import fastifySocketIo from "#src/tools/plugins/socket-io.js"
dotenv.config() dotenv.config()
const packageJSON = await readPackage() const packageJSON = await readPackage()
export const application = fastify({ export const application = fastify({
logger: process.env['NODE_ENV'] === 'development', logger: process.env["NODE_ENV"] === "development",
ajv: { ajv: {
customOptions: { customOptions: {
strict: 'log', strict: "log",
keywords: ['kind', 'modifier'], keywords: ["kind", "modifier"],
formats: { formats: {
full: true full: true,
} },
} },
} },
}) })
await application.register(fastifyCors) await application.register(fastifyCors)
await application.register(fastifySensible) await application.register(fastifySensible)
await application.register(fastifySocketIo, { await application.register(fastifySocketIo, {
cors: { cors: {
origin: '*', origin: "*",
methods: 'GET,HEAD,PUT,PATCH,POST,DELETE', methods: "GET,HEAD,PUT,PATCH,POST,DELETE",
preflightContinue: false, preflightContinue: false,
optionsSuccessStatus: 204 optionsSuccessStatus: 204,
} },
}) })
await application.register(fastifyHelmet) await application.register(fastifyHelmet)
await application.register(fastifyRateLimit, { await application.register(fastifyRateLimit, {
max: 200, max: 200,
timeWindow: '1 minute' timeWindow: "1 minute",
}) })
await application.register(fastifySwagger, { await application.register(fastifySwagger, {
openapi: { openapi: {
info: { info: {
title: packageJSON.name, title: packageJSON.name,
description: packageJSON.description, description: packageJSON.description,
version: packageJSON.version version: packageJSON.version,
}, },
tags: [ tags: [
{ name: 'users' }, { name: "users" },
{ name: 'oauth2' }, { name: "oauth2" },
{ name: 'guilds' }, { name: "guilds" },
{ name: 'channels' }, { name: "channels" },
{ name: 'messages' }, { name: "messages" },
{ name: 'members' } { name: "members" },
], ],
components: { components: {
securitySchemes: { securitySchemes: {
bearerAuth: { bearerAuth: {
type: 'http', type: "http",
scheme: 'bearer', scheme: "bearer",
bearerFormat: 'JWT' bearerFormat: "JWT",
} },
} },
} },
}, },
hideUntagged: true hideUntagged: true,
}) })
await application.register(fastifySwaggerUI, { await application.register(fastifySwaggerUI, {
routePrefix: '/documentation', routePrefix: "/documentation",
staticCSP: true staticCSP: true,
}) })
await application.register(services) await application.register(services)

View File

@ -1,8 +1,8 @@
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { HOST, PORT } from '#src/tools/configurations.js' import { HOST, PORT } from "#src/tools/configurations.js"
const address = await application.listen({ const address = await application.listen({
port: PORT, port: PORT,
host: HOST host: HOST,
}) })
console.log(`Server listening at ${address}`) console.log(`Server listening at ${address}`)

View File

@ -1,23 +1,23 @@
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { Channel } from '@prisma/client' import type { Channel } from "@prisma/client"
import { date, id } from '#src/models/utils.js' import { date, id } from "#src/models/utils.js"
import { guildExample } from '#src/models/Guild.js' import { guildExample } from "#src/models/Guild.js"
export const types = [Type.Literal('text')] export const types = [Type.Literal("text")]
export const channelSchema = { export const channelSchema = {
id, id,
name: Type.String({ minLength: 1, maxLength: 20 }), name: Type.String({ minLength: 1, maxLength: 20 }),
createdAt: date.createdAt, createdAt: date.createdAt,
updatedAt: date.updatedAt, updatedAt: date.updatedAt,
guildId: id guildId: id,
} }
export const channelExample: Channel = { export const channelExample: Channel = {
id: 1, id: 1,
name: 'general', name: "general",
guildId: guildExample.id, guildId: guildExample.id,
createdAt: new Date(), createdAt: new Date(),
updatedAt: new Date() updatedAt: new Date(),
} }

View File

@ -1,28 +1,28 @@
import type { Guild } from '@prisma/client' import type { Guild } from "@prisma/client"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import { date, id } from '#src/models/utils.js' import { date, id } from "#src/models/utils.js"
export const guildSchema = { export const guildSchema = {
id, id,
name: Type.String({ minLength: 1, maxLength: 30 }), name: Type.String({ minLength: 1, maxLength: 30 }),
icon: Type.Union([ icon: Type.Union([
Type.String({ format: 'uri-reference', minLength: 1 }), Type.String({ format: "uri-reference", minLength: 1 }),
Type.Null() Type.Null(),
]), ]),
description: Type.Union([ description: Type.Union([
Type.String({ minLength: 1, maxLength: 160 }), Type.String({ minLength: 1, maxLength: 160 }),
Type.Null() Type.Null(),
]), ]),
createdAt: date.createdAt, createdAt: date.createdAt,
updatedAt: date.updatedAt updatedAt: date.updatedAt,
} }
export const guildExample: Guild = { export const guildExample: Guild = {
id: 1, id: 1,
name: 'GuildExample', name: "GuildExample",
description: 'guild example.', description: "guild example.",
icon: null, icon: null,
createdAt: new Date(), createdAt: new Date(),
updatedAt: new Date() updatedAt: new Date(),
} }

View File

@ -1,9 +1,9 @@
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { Member } from '@prisma/client' import type { Member } from "@prisma/client"
import { date, id } from '#src/models/utils.js' import { date, id } from "#src/models/utils.js"
import { guildExample } from '#src/models/Guild.js' import { guildExample } from "#src/models/Guild.js"
import { userExample } from '#src/models/User.js' import { userExample } from "#src/models/User.js"
export const memberSchema = { export const memberSchema = {
id, id,
@ -11,7 +11,7 @@ export const memberSchema = {
createdAt: date.createdAt, createdAt: date.createdAt,
updatedAt: date.updatedAt, updatedAt: date.updatedAt,
userId: id, userId: id,
guildId: id guildId: id,
} }
export const memberExample: Member = { export const memberExample: Member = {
@ -20,5 +20,5 @@ export const memberExample: Member = {
userId: userExample.id, userId: userExample.id,
guildId: guildExample.id, guildId: guildExample.id,
createdAt: new Date(), createdAt: new Date(),
updatedAt: new Date() updatedAt: new Date(),
} }

View File

@ -1,34 +1,34 @@
import type { Message } from '@prisma/client' import type { Message } from "@prisma/client"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import { date, id } from '#src/models/utils.js' import { date, id } from "#src/models/utils.js"
export const types = [Type.Literal('text'), Type.Literal('file')] export const types = [Type.Literal("text"), Type.Literal("file")]
export const messageSchema = { export const messageSchema = {
id, id,
value: Type.String({ value: Type.String({
minLength: 1, minLength: 1,
maxLength: 20_000 maxLength: 20_000,
}), }),
type: Type.Union(types, { default: 'text' }), type: Type.Union(types, { default: "text" }),
mimetype: Type.String({ mimetype: Type.String({
maxLength: 127, maxLength: 127,
default: 'text/plain' default: "text/plain",
}), }),
createdAt: date.createdAt, createdAt: date.createdAt,
updatedAt: date.updatedAt, updatedAt: date.updatedAt,
memberId: id, memberId: id,
channelId: id channelId: id,
} }
export const messageExample: Message = { export const messageExample: Message = {
id: 1, id: 1,
value: 'Hello, world!', value: "Hello, world!",
type: 'text', type: "text",
mimetype: 'text/plain', mimetype: "text/plain",
createdAt: new Date(), createdAt: new Date(),
updatedAt: new Date(), updatedAt: new Date(),
memberId: 1, memberId: 1,
channelId: 1 channelId: 1,
} }

View File

@ -1,9 +1,9 @@
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import { date, id } from '#src/models/utils.js' import { date, id } from "#src/models/utils.js"
export const providers = ['Google', 'GitHub', 'Discord'] as const export const providers = ["Google", "GitHub", "Discord"] as const
export const strategies = [...providers, 'Local'] as const export const strategies = [...providers, "Local"] as const
export const strategiesTypebox = strategies.map((strategy) => { export const strategiesTypebox = strategies.map((strategy) => {
return Type.Literal(strategy) return Type.Literal(strategy)
@ -21,5 +21,5 @@ export const oauthSchema = {
provider: Type.Union([...providersTypebox]), provider: Type.Union([...providersTypebox]),
createdAt: date.createdAt, createdAt: date.createdAt,
updatedAt: date.updatedAt, updatedAt: date.updatedAt,
userId: id userId: id,
} }

View File

@ -1,21 +1,21 @@
import type { RefreshToken } from '@prisma/client' import type { RefreshToken } from "@prisma/client"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import { userExample } from '#src/models/User.js' import { userExample } from "#src/models/User.js"
import { date, id } from '#src/models/utils.js' import { date, id } from "#src/models/utils.js"
export const refreshTokensSchema = { export const refreshTokensSchema = {
id, id,
token: Type.String({ format: 'uuid' }), token: Type.String({ format: "uuid" }),
createdAt: date.createdAt, createdAt: date.createdAt,
updatedAt: date.updatedAt, updatedAt: date.updatedAt,
userId: id userId: id,
} }
export const refreshTokenExample: RefreshToken = { export const refreshTokenExample: RefreshToken = {
id: 1, id: 1,
userId: userExample.id, userId: userExample.id,
token: 'sometokenUUID', token: "sometokenUUID",
createdAt: new Date(), createdAt: new Date(),
updatedAt: new Date() updatedAt: new Date(),
} }

View File

@ -1,11 +1,11 @@
import type { User } from '@prisma/client' import type { User } from "@prisma/client"
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { AuthenticationStrategy } from '#src/models/OAuth.js' import type { AuthenticationStrategy } from "#src/models/OAuth.js"
import { strategiesTypebox } from '#src/models/OAuth.js' import { strategiesTypebox } from "#src/models/OAuth.js"
import { userSettingsSchema } from '#src/models/UserSettings.js' import { userSettingsSchema } from "#src/models/UserSettings.js"
import { date, id } from '#src/models/utils.js' import { date, id } from "#src/models/utils.js"
export interface UserJWT { export interface UserJWT {
id: number id: number
@ -25,21 +25,21 @@ export interface UserRequest {
export const userSchema = { export const userSchema = {
id, id,
name: Type.String({ minLength: 1, maxLength: 30 }), name: Type.String({ minLength: 1, maxLength: 30 }),
email: Type.String({ minLength: 1, maxLength: 254, format: 'email' }), email: Type.String({ minLength: 1, maxLength: 254, format: "email" }),
password: Type.String({ minLength: 1 }), password: Type.String({ minLength: 1 }),
logo: Type.String({ minLength: 1, format: 'uri-reference' }), logo: Type.String({ minLength: 1, format: "uri-reference" }),
status: Type.String({ minLength: 1, maxLength: 50 }), status: Type.String({ minLength: 1, maxLength: 50 }),
biography: Type.String({ minLength: 1, maxLength: 160 }), biography: Type.String({ minLength: 1, maxLength: 160 }),
website: Type.String({ website: Type.String({
minLength: 1, minLength: 1,
maxLength: 255, maxLength: 255,
format: 'uri' format: "uri",
}), }),
isConfirmed: Type.Boolean({ default: false }), isConfirmed: Type.Boolean({ default: false }),
temporaryToken: Type.String(), temporaryToken: Type.String(),
temporaryExpirationToken: Type.String({ format: 'date-time' }), temporaryExpirationToken: Type.String({ format: "date-time" }),
createdAt: date.createdAt, createdAt: date.createdAt,
updatedAt: date.updatedAt updatedAt: date.updatedAt,
} }
export const userPublicWithoutSettingsSchema = { export const userPublicWithoutSettingsSchema = {
@ -52,20 +52,20 @@ export const userPublicWithoutSettingsSchema = {
website: Type.Union([userSchema.website, Type.Null()]), website: Type.Union([userSchema.website, Type.Null()]),
isConfirmed: userSchema.isConfirmed, isConfirmed: userSchema.isConfirmed,
createdAt: date.createdAt, createdAt: date.createdAt,
updatedAt: date.updatedAt updatedAt: date.updatedAt,
} }
export const userPublicSchema = { export const userPublicSchema = {
...userPublicWithoutSettingsSchema, ...userPublicWithoutSettingsSchema,
settings: Type.Object(userSettingsSchema) settings: Type.Object(userSettingsSchema),
} }
export const userCurrentSchema = Type.Object({ export const userCurrentSchema = Type.Object({
user: Type.Object({ user: Type.Object({
...userPublicSchema, ...userPublicSchema,
currentStrategy: Type.Union([...strategiesTypebox]), currentStrategy: Type.Union([...strategiesTypebox]),
strategies: Type.Array(Type.Union([...strategiesTypebox])) strategies: Type.Array(Type.Union([...strategiesTypebox])),
}) }),
}) })
export const bodyUserSchema = Type.Object({ export const bodyUserSchema = Type.Object({
@ -73,23 +73,23 @@ export const bodyUserSchema = Type.Object({
name: userSchema.name, name: userSchema.name,
password: userSchema.password, password: userSchema.password,
theme: userSettingsSchema.theme, theme: userSettingsSchema.theme,
language: userSettingsSchema.language language: userSettingsSchema.language,
}) })
export type BodyUserSchemaType = Static<typeof bodyUserSchema> export type BodyUserSchemaType = Static<typeof bodyUserSchema>
export const userExample: User = { export const userExample: User = {
id: 1, id: 1,
name: 'Divlo', name: "Divlo",
email: 'contact@divlo.fr', email: "contact@divlo.fr",
password: 'somepassword', password: "somepassword",
logo: null, logo: null,
status: null, status: null,
biography: null, biography: null,
website: null, website: null,
isConfirmed: true, isConfirmed: true,
temporaryToken: 'temporaryUUIDtoken', temporaryToken: "temporaryUUIDtoken",
temporaryExpirationToken: new Date(), temporaryExpirationToken: new Date(),
createdAt: new Date(), createdAt: new Date(),
updatedAt: new Date() updatedAt: new Date(),
} }

View File

@ -1,11 +1,11 @@
import type { UserSetting } from '@prisma/client' import type { UserSetting } from "@prisma/client"
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import { date, id } from '#src/models/utils.js' import { date, id } from "#src/models/utils.js"
export const languages = [Type.Literal('fr'), Type.Literal('en')] export const languages = [Type.Literal("fr"), Type.Literal("en")]
export const themes = [Type.Literal('light'), Type.Literal('dark')] export const themes = [Type.Literal("light"), Type.Literal("dark")]
export const userSettingsSchema = { export const userSettingsSchema = {
id, id,
@ -15,7 +15,7 @@ export const userSettingsSchema = {
isPublicGuilds: Type.Boolean(), isPublicGuilds: Type.Boolean(),
createdAt: date.createdAt, createdAt: date.createdAt,
updatedAt: date.updatedAt, updatedAt: date.updatedAt,
userId: id userId: id,
} }
export type Theme = Static<typeof userSettingsSchema.theme> export type Theme = Static<typeof userSettingsSchema.theme>
@ -23,11 +23,11 @@ export type Language = Static<typeof userSettingsSchema.language>
export const userSettingsExample: UserSetting = { export const userSettingsExample: UserSetting = {
id: 1, id: 1,
theme: 'dark', theme: "dark",
language: 'en', language: "en",
isPublicEmail: false, isPublicEmail: false,
isPublicGuilds: false, isPublicGuilds: false,
userId: 1, userId: 1,
createdAt: new Date(), createdAt: new Date(),
updatedAt: new Date() updatedAt: new Date(),
} }

View File

@ -1,51 +1,51 @@
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
export const date = { export const date = {
createdAt: Type.String({ createdAt: Type.String({
format: 'date-time', format: "date-time",
description: 'Created date time' description: "Created date time",
}), }),
updatedAt: Type.String({ updatedAt: Type.String({
format: 'date-time', format: "date-time",
description: 'Last updated date time' description: "Last updated date time",
}) }),
} }
export const id = Type.Integer({ minimum: 1, description: 'Unique identifier' }) export const id = Type.Integer({ minimum: 1, description: "Unique identifier" })
export const redirectURI = Type.String({ format: 'uri-reference' }) export const redirectURI = Type.String({ format: "uri-reference" })
export const fastifyErrorsSchema = { export const fastifyErrorsSchema = {
400: { 400: {
statusCode: Type.Literal(400), statusCode: Type.Literal(400),
error: Type.Literal('Bad Request'), error: Type.Literal("Bad Request"),
message: Type.String() message: Type.String(),
}, },
401: { 401: {
statusCode: Type.Literal(401), statusCode: Type.Literal(401),
error: Type.Literal('Unauthorized'), error: Type.Literal("Unauthorized"),
message: Type.Literal('Unauthorized') message: Type.Literal("Unauthorized"),
}, },
403: { 403: {
statusCode: Type.Literal(403), statusCode: Type.Literal(403),
error: Type.Literal('Forbidden'), error: Type.Literal("Forbidden"),
message: Type.Literal('Forbidden') message: Type.Literal("Forbidden"),
}, },
404: { 404: {
statusCode: Type.Literal(404), statusCode: Type.Literal(404),
error: Type.Literal('Not Found'), error: Type.Literal("Not Found"),
message: Type.String() message: Type.String(),
}, },
431: { 431: {
statusCode: Type.Literal(431), statusCode: Type.Literal(431),
error: Type.Literal('Request Header Fields Too Large'), error: Type.Literal("Request Header Fields Too Large"),
message: Type.String() message: Type.String(),
}, },
500: { 500: {
statusCode: Type.Literal(500), statusCode: Type.Literal(500),
error: Type.Literal('Internal Server Error'), error: Type.Literal("Internal Server Error"),
message: Type.Literal('Something went wrong') message: Type.Literal("Something went wrong"),
} },
} }
export const fastifyErrors = { export const fastifyErrors = {
@ -54,5 +54,5 @@ export const fastifyErrors = {
403: Type.Object(fastifyErrorsSchema[403]), 403: Type.Object(fastifyErrorsSchema[403]),
404: Type.Object(fastifyErrorsSchema[404]), 404: Type.Object(fastifyErrorsSchema[404]),
431: Type.Object(fastifyErrorsSchema[431]), 431: Type.Object(fastifyErrorsSchema[431]),
500: Type.Object(fastifyErrorsSchema[500]) 500: Type.Object(fastifyErrorsSchema[500]),
} }

View File

@ -1,3 +1,3 @@
import crypto from 'node:crypto' import crypto from "node:crypto"
console.log(crypto.randomBytes(256).toString('base64')) console.log(crypto.randomBytes(256).toString("base64"))

View File

@ -1,30 +1,30 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { channelExample } from '#src/models/Channel.js' import { channelExample } from "#src/models/Channel.js"
import { memberExample } from '#src/models/Member.js' import { memberExample } from "#src/models/Member.js"
await test('DELETE /channels/[channelId]', async (t) => { await test("DELETE /channels/[channelId]", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
const defaultChannelId = 5 const defaultChannelId = 5
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return channelExample return channelExample
}, },
findFirst: async () => { findFirst: async () => {
return { return {
...channelExample, ...channelExample,
id: defaultChannelId id: defaultChannelId,
} }
}, },
count: async () => { count: async () => {
@ -32,19 +32,19 @@ await test('DELETE /channels/[channelId]', async (t) => {
}, },
delete: async () => { delete: async () => {
return channelExample return channelExample
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return memberExample return memberExample
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'DELETE', method: "DELETE",
url: `/channels/${channelExample.id}`, url: `/channels/${channelExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)
@ -54,91 +54,91 @@ await test('DELETE /channels/[channelId]', async (t) => {
assert.strictEqual(responseJson.defaultChannelId, defaultChannelId) assert.strictEqual(responseJson.defaultChannelId, defaultChannelId)
}) })
await t.test('fails if there is only one channel', async () => { await t.test("fails if there is only one channel", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return channelExample return channelExample
}, },
count: async () => { count: async () => {
return 1 return 1
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return memberExample return memberExample
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'DELETE', method: "DELETE",
url: `/channels/${channelExample.id}`, url: `/channels/${channelExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
assert.strictEqual(response.statusCode, 400) assert.strictEqual(response.statusCode, 400)
}) })
await t.test('fails if the channel is not found', async () => { await t.test("fails if the channel is not found", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'DELETE', method: "DELETE",
url: `/channels/${channelExample.id}`, url: `/channels/${channelExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
}) })
await t.test('fails if the member is not found', async () => { await t.test("fails if the member is not found", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return channelExample return channelExample
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'DELETE', method: "DELETE",
url: `/channels/${channelExample.id}`, url: `/channels/${channelExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
}) })
await t.test('fails if the member is not owner', async () => { await t.test("fails if the member is not owner", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return channelExample return channelExample
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return { return {
...memberExample, ...memberExample,
isOwner: false isOwner: false,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'DELETE', method: "DELETE",
url: `/channels/${channelExample.id}`, url: `/channels/${channelExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
assert.strictEqual(response.statusCode, 400) assert.strictEqual(response.statusCode, 400)
}) })

View File

@ -1,37 +1,37 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { channelExample } from '#src/models/Channel.js' import { channelExample } from "#src/models/Channel.js"
import { memberExample } from '#src/models/Member.js' import { memberExample } from "#src/models/Member.js"
await test('GET /channels/[channelId]', async (t) => { await test("GET /channels/[channelId]", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return channelExample return channelExample
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return memberExample return memberExample
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: `/channels/${channelExample.id}`, url: `/channels/${channelExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)
@ -40,58 +40,58 @@ await test('GET /channels/[channelId]', async (t) => {
assert.strictEqual(responseJson.channel.guildId, channelExample.guildId) assert.strictEqual(responseJson.channel.guildId, channelExample.guildId)
}) })
await t.test('fails with not found member', async () => { await t.test("fails with not found member", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return channelExample return channelExample
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: `/channels/${channelExample.id}`, url: `/channels/${channelExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
assert.strictEqual(responseJson.message, 'Channel not found') assert.strictEqual(responseJson.message, "Channel not found")
}) })
await t.test('fails with not found channel', async () => { await t.test("fails with not found channel", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return null return null
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return memberExample return memberExample
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: `/channels/${channelExample.id}`, url: `/channels/${channelExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
assert.strictEqual(responseJson.message, 'Channel not found') assert.strictEqual(responseJson.message, "Channel not found")
}) })
await t.test('fails with unauthenticated user', async () => { await t.test("fails with unauthenticated user", async () => {
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: '/channels/1' url: "/channels/1",
}) })
assert.strictEqual(response.statusCode, 401) assert.strictEqual(response.statusCode, 401)
}) })

View File

@ -1,53 +1,53 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { channelExample } from '#src/models/Channel.js' import { channelExample } from "#src/models/Channel.js"
import { memberExample } from '#src/models/Member.js' import { memberExample } from "#src/models/Member.js"
const newName = 'new channel name' const newName = "new channel name"
await test('PUT /channels/[channelId]', async (t) => { await test("PUT /channels/[channelId]", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
const defaultChannelId = 5 const defaultChannelId = 5
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return channelExample return channelExample
}, },
findFirst: async () => { findFirst: async () => {
return { return {
...channelExample, ...channelExample,
id: defaultChannelId id: defaultChannelId,
} }
}, },
update: async () => { update: async () => {
return { return {
...channelExample, ...channelExample,
name: newName name: newName,
} }
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return memberExample return memberExample
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'PUT', method: "PUT",
url: `/channels/${channelExample.id}`, url: `/channels/${channelExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { name: newName } payload: { name: newName },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)
@ -57,74 +57,74 @@ await test('PUT /channels/[channelId]', async (t) => {
assert.strictEqual(responseJson.defaultChannelId, defaultChannelId) assert.strictEqual(responseJson.defaultChannelId, defaultChannelId)
}) })
await t.test('fails if the channel is not found', async () => { await t.test("fails if the channel is not found", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return null return null
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return memberExample return memberExample
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'PUT', method: "PUT",
url: `/channels/${channelExample.id}`, url: `/channels/${channelExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { name: newName } payload: { name: newName },
}) })
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
}) })
await t.test('fails if the member is not found', async () => { await t.test("fails if the member is not found", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return channelExample return channelExample
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'PUT', method: "PUT",
url: `/channels/${channelExample.id}`, url: `/channels/${channelExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { name: newName } payload: { name: newName },
}) })
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
}) })
await t.test('fails if the member is not owner', async () => { await t.test("fails if the member is not owner", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return channelExample return channelExample
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return { return {
...memberExample, ...memberExample,
isOwner: false isOwner: false,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'PUT', method: "PUT",
url: `/channels/${channelExample.id}`, url: `/channels/${channelExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { name: newName } payload: { name: newName },
}) })
assert.strictEqual(response.statusCode, 400) assert.strictEqual(response.statusCode, 400)
}) })

View File

@ -1,38 +1,38 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { channelSchema } from '#src/models/Channel.js' import { channelSchema } from "#src/models/Channel.js"
const parametersSchema = Type.Object({ const parametersSchema = Type.Object({
channelId: channelSchema.id channelId: channelSchema.id,
}) })
type Parameters = Static<typeof parametersSchema> type Parameters = Static<typeof parametersSchema>
const deleteServiceSchema: FastifySchema = { const deleteServiceSchema: FastifySchema = {
description: 'DELETE a channel with its id.', description: "DELETE a channel with its id.",
tags: ['channels'] as string[], tags: ["channels"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
params: parametersSchema, params: parametersSchema,
response: { response: {
200: Type.Object({ 200: Type.Object({
...channelSchema, ...channelSchema,
defaultChannelId: channelSchema.id defaultChannelId: channelSchema.id,
}), }),
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
404: fastifyErrors[404], 404: fastifyErrors[404],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const deleteChannelService: FastifyPluginAsync = async (fastify) => { export const deleteChannelService: FastifyPluginAsync = async (fastify) => {
@ -41,8 +41,8 @@ export const deleteChannelService: FastifyPluginAsync = async (fastify) => {
fastify.route<{ fastify.route<{
Params: Parameters Params: Parameters
}>({ }>({
method: 'DELETE', method: "DELETE",
url: '/channels/:channelId', url: "/channels/:channelId",
schema: deleteServiceSchema, schema: deleteServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -51,51 +51,51 @@ export const deleteChannelService: FastifyPluginAsync = async (fastify) => {
const { user, params } = request const { user, params } = request
const { channelId } = params const { channelId } = params
const channelCheck = await prisma.channel.findUnique({ const channelCheck = await prisma.channel.findUnique({
where: { id: channelId } where: { id: channelId },
}) })
if (channelCheck == null) { if (channelCheck == null) {
throw fastify.httpErrors.notFound('Channel not found') throw fastify.httpErrors.notFound("Channel not found")
} }
const member = await prisma.member.findFirst({ const member = await prisma.member.findFirst({
where: { guildId: channelCheck.guildId, userId: user.current.id } where: { guildId: channelCheck.guildId, userId: user.current.id },
}) })
if (member == null) { if (member == null) {
throw fastify.httpErrors.notFound('Member not found') throw fastify.httpErrors.notFound("Member not found")
} }
if (!member.isOwner) { if (!member.isOwner) {
throw fastify.httpErrors.badRequest('You should be a member owner') throw fastify.httpErrors.badRequest("You should be a member owner")
} }
const channelCount = await prisma.channel.count({ const channelCount = await prisma.channel.count({
where: { guildId: channelCheck.guildId } where: { guildId: channelCheck.guildId },
}) })
if (channelCount <= 1) { if (channelCount <= 1) {
throw fastify.httpErrors.badRequest( throw fastify.httpErrors.badRequest(
'The guild should have at least one channel' "The guild should have at least one channel",
) )
} }
const channel = await prisma.channel.delete({ const channel = await prisma.channel.delete({
where: { id: channelId } where: { id: channelId },
}) })
const defaultChannel = await prisma.channel.findFirst({ const defaultChannel = await prisma.channel.findFirst({
where: { guildId: member.guildId } where: { guildId: member.guildId },
}) })
if (defaultChannel == null) { if (defaultChannel == null) {
throw fastify.httpErrors.internalServerError() throw fastify.httpErrors.internalServerError()
} }
const item = { const item = {
...channel, ...channel,
defaultChannelId: defaultChannel.id defaultChannelId: defaultChannel.id,
} }
await fastify.io.emitToMembers({ await fastify.io.emitToMembers({
event: 'channels', event: "channels",
guildId: member.guildId, guildId: member.guildId,
payload: { payload: {
action: 'delete', action: "delete",
item item,
} },
}) })
reply.statusCode = 200 reply.statusCode = 200
return item return item
} },
}) })
} }

View File

@ -1,37 +1,37 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { channelSchema } from '#src/models/Channel.js' import { channelSchema } from "#src/models/Channel.js"
const parametersSchema = Type.Object({ const parametersSchema = Type.Object({
channelId: channelSchema.id channelId: channelSchema.id,
}) })
type Parameters = Static<typeof parametersSchema> type Parameters = Static<typeof parametersSchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: 'GET a channel with its id.', description: "GET a channel with its id.",
tags: ['channels'] as string[], tags: ["channels"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
params: parametersSchema, params: parametersSchema,
response: { response: {
200: Type.Object({ 200: Type.Object({
channel: Type.Object(channelSchema) channel: Type.Object(channelSchema),
}), }),
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
404: fastifyErrors[404], 404: fastifyErrors[404],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getChannelByIdService: FastifyPluginAsync = async (fastify) => { export const getChannelByIdService: FastifyPluginAsync = async (fastify) => {
@ -40,8 +40,8 @@ export const getChannelByIdService: FastifyPluginAsync = async (fastify) => {
fastify.route<{ fastify.route<{
Params: Parameters Params: Parameters
}>({ }>({
method: 'GET', method: "GET",
url: '/channels/:channelId', url: "/channels/:channelId",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -49,19 +49,19 @@ export const getChannelByIdService: FastifyPluginAsync = async (fastify) => {
} }
const { channelId } = request.params const { channelId } = request.params
const channel = await prisma.channel.findUnique({ const channel = await prisma.channel.findUnique({
where: { id: channelId } where: { id: channelId },
}) })
if (channel == null) { if (channel == null) {
throw fastify.httpErrors.notFound('Channel not found') throw fastify.httpErrors.notFound("Channel not found")
} }
const member = await prisma.member.findFirst({ const member = await prisma.member.findFirst({
where: { guildId: channel.guildId, userId: request.user.current.id } where: { guildId: channel.guildId, userId: request.user.current.id },
}) })
if (member == null) { if (member == null) {
throw fastify.httpErrors.notFound('Channel not found') throw fastify.httpErrors.notFound("Channel not found")
} }
reply.statusCode = 200 reply.statusCode = 200
return { channel } return { channel }
} },
}) })
} }

View File

@ -1,47 +1,47 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { channelExample } from '#src/models/Channel.js' import { channelExample } from "#src/models/Channel.js"
import { memberExample } from '#src/models/Member.js' import { memberExample } from "#src/models/Member.js"
import { userExample } from '#src/models/User.js' import { userExample } from "#src/models/User.js"
import { messageExample } from '#src/models/Message.js' import { messageExample } from "#src/models/Message.js"
await test('GET /channels/[channelId]/messages', async (t) => { await test("GET /channels/[channelId]/messages", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return channelExample return channelExample
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return { return {
...memberExample, ...memberExample,
user: userExample user: userExample,
} }
} },
}) })
sinon.stub(prisma, 'message').value({ sinon.stub(prisma, "message").value({
findMany: async () => { findMany: async () => {
return [messageExample] return [messageExample]
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: `/channels/${channelExample.id}/messages`, url: `/channels/${channelExample.id}/messages`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)
@ -56,61 +56,61 @@ await test('GET /channels/[channelId]/messages', async (t) => {
assert.strictEqual(responseJson[0].member.user.name, userExample.name) assert.strictEqual(responseJson[0].member.user.name, userExample.name)
}) })
await t.test('fails with not found channel', async () => { await t.test("fails with not found channel", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return null return null
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return { return {
...memberExample, ...memberExample,
user: userExample user: userExample,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: `/channels/${channelExample.id}/messages`, url: `/channels/${channelExample.id}/messages`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
assert.strictEqual(responseJson.message, 'Channel not found') assert.strictEqual(responseJson.message, "Channel not found")
}) })
await t.test('fails with not found member', async () => { await t.test("fails with not found member", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return channelExample return channelExample
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: `/channels/${channelExample.id}/messages`, url: `/channels/${channelExample.id}/messages`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
assert.strictEqual(responseJson.message, 'Channel not found') assert.strictEqual(responseJson.message, "Channel not found")
}) })
await t.test('fails with unauthenticated user', async () => { await t.test("fails with unauthenticated user", async () => {
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: `/channels/1/messages` url: `/channels/1/messages`,
}) })
assert.strictEqual(response.statusCode, 401) assert.strictEqual(response.statusCode, 401)
}) })

View File

@ -1,48 +1,48 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { channelExample } from '#src/models/Channel.js' import { channelExample } from "#src/models/Channel.js"
import { memberExample } from '#src/models/Member.js' import { memberExample } from "#src/models/Member.js"
import { userExample } from '#src/models/User.js' import { userExample } from "#src/models/User.js"
import { messageExample } from '#src/models/Message.js' import { messageExample } from "#src/models/Message.js"
await test('POST /channels/[channelId]/messages', async (t) => { await test("POST /channels/[channelId]/messages", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return channelExample return channelExample
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return { return {
...memberExample, ...memberExample,
user: userExample user: userExample,
} }
} },
}) })
sinon.stub(prisma, 'message').value({ sinon.stub(prisma, "message").value({
create: async () => { create: async () => {
return messageExample return messageExample
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'POST', method: "POST",
url: `/channels/${channelExample.id}/messages`, url: `/channels/${channelExample.id}/messages`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { value: messageExample.value } payload: { value: messageExample.value },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 201) assert.strictEqual(response.statusCode, 201)
@ -56,82 +56,82 @@ await test('POST /channels/[channelId]/messages', async (t) => {
assert.strictEqual(responseJson.member.user.name, userExample.name) assert.strictEqual(responseJson.member.user.name, userExample.name)
}) })
await t.test('fails with no message value', async () => { await t.test("fails with no message value", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return channelExample return channelExample
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return { return {
...memberExample, ...memberExample,
user: userExample user: userExample,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'POST', method: "POST",
url: `/channels/${channelExample.id}/messages`, url: `/channels/${channelExample.id}/messages`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: {} payload: {},
}) })
assert.strictEqual(response.statusCode, 400) assert.strictEqual(response.statusCode, 400)
}) })
await t.test('fails with not found channel', async () => { await t.test("fails with not found channel", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return null return null
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return { return {
...memberExample, ...memberExample,
user: userExample user: userExample,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'POST', method: "POST",
url: '/channels/5/messages', url: "/channels/5/messages",
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { value: messageExample.value } payload: { value: messageExample.value },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
assert.strictEqual(responseJson.message, 'Channel not found') assert.strictEqual(responseJson.message, "Channel not found")
}) })
await t.test('fails with not found member', async () => { await t.test("fails with not found member", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findUnique: async () => { findUnique: async () => {
return channelExample return channelExample
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'POST', method: "POST",
url: `/channels/${channelExample.id}/messages`, url: `/channels/${channelExample.id}/messages`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { value: messageExample.value } payload: { value: messageExample.value },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
assert.strictEqual(responseJson.message, 'Channel not found') assert.strictEqual(responseJson.message, "Channel not found")
}) })
}) })

View File

@ -1,34 +1,34 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { messageSchema } from '#src/models/Message.js' import { messageSchema } from "#src/models/Message.js"
import { memberSchema } from '#src/models/Member.js' import { memberSchema } from "#src/models/Member.js"
import { userPublicWithoutSettingsSchema } from '#src/models/User.js' import { userPublicWithoutSettingsSchema } from "#src/models/User.js"
import { import {
getPaginationOptions, getPaginationOptions,
queryPaginationObjectSchema queryPaginationObjectSchema,
} from '#src/tools/database/pagination.js' } from "#src/tools/database/pagination.js"
import { channelSchema } from '#src/models/Channel.js' import { channelSchema } from "#src/models/Channel.js"
type QuerySchemaType = Static<typeof queryPaginationObjectSchema> type QuerySchemaType = Static<typeof queryPaginationObjectSchema>
const parametersSchema = Type.Object({ const parametersSchema = Type.Object({
channelId: channelSchema.id channelId: channelSchema.id,
}) })
type Parameters = Static<typeof parametersSchema> type Parameters = Static<typeof parametersSchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: 'GET all the messages of a channel by its id.', description: "GET all the messages of a channel by its id.",
tags: ['messages'] as string[], tags: ["messages"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
params: parametersSchema, params: parametersSchema,
querystring: queryPaginationObjectSchema, querystring: queryPaginationObjectSchema,
@ -38,20 +38,20 @@ const getServiceSchema: FastifySchema = {
...messageSchema, ...messageSchema,
member: Type.Object({ member: Type.Object({
...memberSchema, ...memberSchema,
user: Type.Object(userPublicWithoutSettingsSchema) user: Type.Object(userPublicWithoutSettingsSchema),
}) }),
}) }),
), ),
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
404: fastifyErrors[404], 404: fastifyErrors[404],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getMessagesByChannelIdService: FastifyPluginAsync = async ( export const getMessagesByChannelIdService: FastifyPluginAsync = async (
fastify fastify,
) => { ) => {
await fastify.register(authenticateUser) await fastify.register(authenticateUser)
@ -59,8 +59,8 @@ export const getMessagesByChannelIdService: FastifyPluginAsync = async (
Params: Parameters Params: Parameters
Querystring: QuerySchemaType Querystring: QuerySchemaType
}>({ }>({
method: 'GET', method: "GET",
url: '/channels/:channelId/messages', url: "/channels/:channelId/messages",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -68,21 +68,21 @@ export const getMessagesByChannelIdService: FastifyPluginAsync = async (
} }
const { channelId } = request.params const { channelId } = request.params
const channel = await prisma.channel.findUnique({ const channel = await prisma.channel.findUnique({
where: { id: channelId } where: { id: channelId },
}) })
if (channel == null) { if (channel == null) {
throw fastify.httpErrors.notFound('Channel not found') throw fastify.httpErrors.notFound("Channel not found")
} }
const memberCheck = await prisma.member.findFirst({ const memberCheck = await prisma.member.findFirst({
where: { guildId: channel.guildId, userId: request.user.current.id } where: { guildId: channel.guildId, userId: request.user.current.id },
}) })
if (memberCheck == null) { if (memberCheck == null) {
throw fastify.httpErrors.notFound('Channel not found') throw fastify.httpErrors.notFound("Channel not found")
} }
const messagesRequest = await prisma.message.findMany({ const messagesRequest = await prisma.message.findMany({
...getPaginationOptions(request.query), ...getPaginationOptions(request.query),
orderBy: { createdAt: 'desc' }, orderBy: { createdAt: "desc" },
where: { channelId } where: { channelId },
}) })
const messages = await Promise.all( const messages = await Promise.all(
messagesRequest.reverse().map(async (message) => { messagesRequest.reverse().map(async (message) => {
@ -98,10 +98,10 @@ export const getMessagesByChannelIdService: FastifyPluginAsync = async (
biography: true, biography: true,
website: true, website: true,
createdAt: true, createdAt: true,
updatedAt: true updatedAt: true,
} },
} },
} },
}) })
return { return {
...message, ...message,
@ -109,14 +109,14 @@ export const getMessagesByChannelIdService: FastifyPluginAsync = async (
...member, ...member,
user: { user: {
...member?.user, ...member?.user,
email: null email: null,
} },
} },
} }
}) }),
) )
reply.statusCode = 200 reply.statusCode = 200
return messages return messages
} },
}) })
} }

View File

@ -1,35 +1,35 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { messageSchema } from '#src/models/Message.js' import { messageSchema } from "#src/models/Message.js"
import { channelSchema } from '#src/models/Channel.js' import { channelSchema } from "#src/models/Channel.js"
import { memberSchema } from '#src/models/Member.js' import { memberSchema } from "#src/models/Member.js"
import { userPublicWithoutSettingsSchema } from '#src/models/User.js' import { userPublicWithoutSettingsSchema } from "#src/models/User.js"
const parametersSchema = Type.Object({ const parametersSchema = Type.Object({
channelId: channelSchema.id channelId: channelSchema.id,
}) })
type Parameters = Static<typeof parametersSchema> type Parameters = Static<typeof parametersSchema>
const bodyPostServiceSchema = Type.Object({ const bodyPostServiceSchema = Type.Object({
value: messageSchema.value value: messageSchema.value,
}) })
type BodyPostServiceSchemaType = Static<typeof bodyPostServiceSchema> type BodyPostServiceSchemaType = Static<typeof bodyPostServiceSchema>
const postServiceSchema: FastifySchema = { const postServiceSchema: FastifySchema = {
description: description:
'POST a new message (text) in a specific channel using its channelId.', "POST a new message (text) in a specific channel using its channelId.",
tags: ['messages'] as string[], tags: ["messages"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
body: bodyPostServiceSchema, body: bodyPostServiceSchema,
params: parametersSchema, params: parametersSchema,
@ -38,19 +38,19 @@ const postServiceSchema: FastifySchema = {
...messageSchema, ...messageSchema,
member: Type.Object({ member: Type.Object({
...memberSchema, ...memberSchema,
user: Type.Object(userPublicWithoutSettingsSchema) user: Type.Object(userPublicWithoutSettingsSchema),
}) }),
}), }),
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
404: fastifyErrors[404], 404: fastifyErrors[404],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const postMessageByChannelIdService: FastifyPluginAsync = async ( export const postMessageByChannelIdService: FastifyPluginAsync = async (
fastify fastify,
) => { ) => {
await fastify.register(authenticateUser) await fastify.register(authenticateUser)
@ -58,8 +58,8 @@ export const postMessageByChannelIdService: FastifyPluginAsync = async (
Body: BodyPostServiceSchemaType Body: BodyPostServiceSchemaType
Params: Parameters Params: Parameters
}>({ }>({
method: 'POST', method: "POST",
url: '/channels/:channelId/messages', url: "/channels/:channelId/messages",
schema: postServiceSchema, schema: postServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -67,10 +67,10 @@ export const postMessageByChannelIdService: FastifyPluginAsync = async (
} }
const { channelId } = request.params const { channelId } = request.params
const channel = await prisma.channel.findUnique({ const channel = await prisma.channel.findUnique({
where: { id: channelId } where: { id: channelId },
}) })
if (channel == null) { if (channel == null) {
throw fastify.httpErrors.notFound('Channel not found') throw fastify.httpErrors.notFound("Channel not found")
} }
const memberCheck = await prisma.member.findFirst({ const memberCheck = await prisma.member.findFirst({
where: { guildId: channel.guildId, userId: request.user.current.id }, where: { guildId: channel.guildId, userId: request.user.current.id },
@ -84,23 +84,23 @@ export const postMessageByChannelIdService: FastifyPluginAsync = async (
biography: true, biography: true,
website: true, website: true,
createdAt: true, createdAt: true,
updatedAt: true updatedAt: true,
} },
} },
} },
}) })
if (memberCheck == null) { if (memberCheck == null) {
throw fastify.httpErrors.notFound('Channel not found') throw fastify.httpErrors.notFound("Channel not found")
} }
const { value } = request.body const { value } = request.body
const message = await prisma.message.create({ const message = await prisma.message.create({
data: { data: {
value, value,
type: 'text', type: "text",
mimetype: 'text/plain', mimetype: "text/plain",
channelId, channelId,
memberId: memberCheck.id memberId: memberCheck.id,
} },
}) })
const item = { const item = {
...message, ...message,
@ -108,17 +108,17 @@ export const postMessageByChannelIdService: FastifyPluginAsync = async (
...memberCheck, ...memberCheck,
user: { user: {
...memberCheck.user, ...memberCheck.user,
email: null email: null,
} },
} },
} }
await fastify.io.emitToMembers({ await fastify.io.emitToMembers({
event: 'messages', event: "messages",
guildId: item.member.guildId, guildId: item.member.guildId,
payload: { action: 'create', item } payload: { action: "create", item },
}) })
reply.statusCode = 201 reply.statusCode = 201
return item return item
} },
}) })
} }

View File

@ -1,33 +1,33 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import fastifyMultipart from '@fastify/multipart' import fastifyMultipart from "@fastify/multipart"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { messageSchema } from '#src/models/Message.js' import { messageSchema } from "#src/models/Message.js"
import { memberSchema } from '#src/models/Member.js' import { memberSchema } from "#src/models/Member.js"
import { userPublicWithoutSettingsSchema } from '#src/models/User.js' import { userPublicWithoutSettingsSchema } from "#src/models/User.js"
import { channelSchema } from '#src/models/Channel.js' import { channelSchema } from "#src/models/Channel.js"
import { uploadFile } from '#src/tools/utils/uploadFile.js' import { uploadFile } from "#src/tools/utils/uploadFile.js"
const parametersSchema = Type.Object({ const parametersSchema = Type.Object({
channelId: channelSchema.id channelId: channelSchema.id,
}) })
type Parameters = Static<typeof parametersSchema> type Parameters = Static<typeof parametersSchema>
const postServiceSchema: FastifySchema = { const postServiceSchema: FastifySchema = {
description: description:
'POST a new message (file) in a specific channel using its channelId.', "POST a new message (file) in a specific channel using its channelId.",
tags: ['messages'] as string[], tags: ["messages"] as string[],
consumes: ['multipart/form-data'] as string[], consumes: ["multipart/form-data"] as string[],
produces: ['application/json'] as string[], produces: ["application/json"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
params: parametersSchema, params: parametersSchema,
response: { response: {
@ -35,20 +35,20 @@ const postServiceSchema: FastifySchema = {
...messageSchema, ...messageSchema,
member: Type.Object({ member: Type.Object({
...memberSchema, ...memberSchema,
user: Type.Object(userPublicWithoutSettingsSchema) user: Type.Object(userPublicWithoutSettingsSchema),
}) }),
}), }),
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
404: fastifyErrors[404], 404: fastifyErrors[404],
431: fastifyErrors[431], 431: fastifyErrors[431],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const postMessageUploadsByChannelIdService: FastifyPluginAsync = async ( export const postMessageUploadsByChannelIdService: FastifyPluginAsync = async (
fastify fastify,
) => { ) => {
await fastify.register(authenticateUser) await fastify.register(authenticateUser)
@ -57,8 +57,8 @@ export const postMessageUploadsByChannelIdService: FastifyPluginAsync = async (
fastify.route<{ fastify.route<{
Params: Parameters Params: Parameters
}>({ }>({
method: 'POST', method: "POST",
url: '/channels/:channelId/messages/uploads', url: "/channels/:channelId/messages/uploads",
schema: postServiceSchema, schema: postServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -66,10 +66,10 @@ export const postMessageUploadsByChannelIdService: FastifyPluginAsync = async (
} }
const { channelId } = request.params const { channelId } = request.params
const channel = await prisma.channel.findUnique({ const channel = await prisma.channel.findUnique({
where: { id: channelId } where: { id: channelId },
}) })
if (channel == null) { if (channel == null) {
throw fastify.httpErrors.notFound('Channel not found') throw fastify.httpErrors.notFound("Channel not found")
} }
const memberCheck = await prisma.member.findFirst({ const memberCheck = await prisma.member.findFirst({
where: { guildId: channel.guildId, userId: request.user.current.id }, where: { guildId: channel.guildId, userId: request.user.current.id },
@ -83,27 +83,27 @@ export const postMessageUploadsByChannelIdService: FastifyPluginAsync = async (
biography: true, biography: true,
website: true, website: true,
createdAt: true, createdAt: true,
updatedAt: true updatedAt: true,
} },
} },
} },
}) })
if (memberCheck == null) { if (memberCheck == null) {
throw fastify.httpErrors.notFound('Channel not found') throw fastify.httpErrors.notFound("Channel not found")
} }
const file = await uploadFile({ const file = await uploadFile({
fastify, fastify,
request, request,
folderInUploadsFolder: 'messages' folderInUploadsFolder: "messages",
}) })
const message = await prisma.message.create({ const message = await prisma.message.create({
data: { data: {
value: file.pathToStoreInDatabase, value: file.pathToStoreInDatabase,
type: 'file', type: "file",
mimetype: file.mimetype, mimetype: file.mimetype,
channelId, channelId,
memberId: memberCheck.id memberId: memberCheck.id,
} },
}) })
reply.statusCode = 201 reply.statusCode = 201
const item = { const item = {
@ -112,16 +112,16 @@ export const postMessageUploadsByChannelIdService: FastifyPluginAsync = async (
...memberCheck, ...memberCheck,
user: { user: {
...memberCheck.user, ...memberCheck.user,
email: null email: null,
} },
} },
} }
await fastify.io.emitToMembers({ await fastify.io.emitToMembers({
event: 'messages', event: "messages",
guildId: item.member.guildId, guildId: item.member.guildId,
payload: { action: 'create', item } payload: { action: "create", item },
}) })
return item return item
} },
}) })
} }

View File

@ -1,45 +1,45 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { channelSchema } from '#src/models/Channel.js' import { channelSchema } from "#src/models/Channel.js"
const bodyPutServiceSchema = Type.Object({ const bodyPutServiceSchema = Type.Object({
name: channelSchema.name name: channelSchema.name,
}) })
type BodyPutServiceSchemaType = Static<typeof bodyPutServiceSchema> type BodyPutServiceSchemaType = Static<typeof bodyPutServiceSchema>
const parametersSchema = Type.Object({ const parametersSchema = Type.Object({
channelId: channelSchema.id channelId: channelSchema.id,
}) })
type Parameters = Static<typeof parametersSchema> type Parameters = Static<typeof parametersSchema>
const putServiceSchema: FastifySchema = { const putServiceSchema: FastifySchema = {
description: 'UPDATE a channel with its id.', description: "UPDATE a channel with its id.",
tags: ['channels'] as string[], tags: ["channels"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
params: parametersSchema, params: parametersSchema,
body: bodyPutServiceSchema, body: bodyPutServiceSchema,
response: { response: {
200: Type.Object({ 200: Type.Object({
...channelSchema, ...channelSchema,
defaultChannelId: channelSchema.id defaultChannelId: channelSchema.id,
}), }),
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
404: fastifyErrors[404], 404: fastifyErrors[404],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const putChannelService: FastifyPluginAsync = async (fastify) => { export const putChannelService: FastifyPluginAsync = async (fastify) => {
@ -49,8 +49,8 @@ export const putChannelService: FastifyPluginAsync = async (fastify) => {
Body: BodyPutServiceSchemaType Body: BodyPutServiceSchemaType
Params: Parameters Params: Parameters
}>({ }>({
method: 'PUT', method: "PUT",
url: '/channels/:channelId', url: "/channels/:channelId",
schema: putServiceSchema, schema: putServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -60,44 +60,44 @@ export const putChannelService: FastifyPluginAsync = async (fastify) => {
const { channelId } = params const { channelId } = params
const { name } = body const { name } = body
const channelCheck = await prisma.channel.findUnique({ const channelCheck = await prisma.channel.findUnique({
where: { id: channelId } where: { id: channelId },
}) })
if (channelCheck == null) { if (channelCheck == null) {
throw fastify.httpErrors.notFound('Channel not found') throw fastify.httpErrors.notFound("Channel not found")
} }
const member = await prisma.member.findFirst({ const member = await prisma.member.findFirst({
where: { guildId: channelCheck.guildId, userId: user.current.id } where: { guildId: channelCheck.guildId, userId: user.current.id },
}) })
if (member == null) { if (member == null) {
throw fastify.httpErrors.notFound('Member not found') throw fastify.httpErrors.notFound("Member not found")
} }
if (!member.isOwner) { if (!member.isOwner) {
throw fastify.httpErrors.badRequest('You should be a member owner') throw fastify.httpErrors.badRequest("You should be a member owner")
} }
const channel = await prisma.channel.update({ const channel = await prisma.channel.update({
where: { id: channelId }, where: { id: channelId },
data: { name } data: { name },
}) })
const defaultChannel = await prisma.channel.findFirst({ const defaultChannel = await prisma.channel.findFirst({
where: { guildId: member.guildId } where: { guildId: member.guildId },
}) })
if (defaultChannel == null) { if (defaultChannel == null) {
throw fastify.httpErrors.internalServerError() throw fastify.httpErrors.internalServerError()
} }
const item = { const item = {
...channel, ...channel,
defaultChannelId: defaultChannel.id defaultChannelId: defaultChannel.id,
} }
await fastify.io.emitToMembers({ await fastify.io.emitToMembers({
event: 'channels', event: "channels",
guildId: member.guildId, guildId: member.guildId,
payload: { payload: {
action: 'update', action: "update",
item item,
} },
}) })
reply.statusCode = 200 reply.statusCode = 200
return item return item
} },
}) })
} }

View File

@ -1,11 +1,11 @@
import type { FastifyPluginAsync } from 'fastify' import type { FastifyPluginAsync } from "fastify"
import { deleteChannelService } from './[channelId]/delete.js' import { deleteChannelService } from "./[channelId]/delete.js"
import { getChannelByIdService } from './[channelId]/get.js' import { getChannelByIdService } from "./[channelId]/get.js"
import { getMessagesByChannelIdService } from './[channelId]/messages/get.js' import { getMessagesByChannelIdService } from "./[channelId]/messages/get.js"
import { postMessageByChannelIdService } from './[channelId]/messages/post.js' import { postMessageByChannelIdService } from "./[channelId]/messages/post.js"
import { postMessageUploadsByChannelIdService } from './[channelId]/messages/uploads/post.js' import { postMessageUploadsByChannelIdService } from "./[channelId]/messages/uploads/post.js"
import { putChannelService } from './[channelId]/put.js' import { putChannelService } from "./[channelId]/put.js"
export const channelsService: FastifyPluginAsync = async (fastify) => { export const channelsService: FastifyPluginAsync = async (fastify) => {
await fastify.register(getChannelByIdService) await fastify.register(getChannelByIdService)

View File

@ -1,41 +1,41 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { memberExample } from '#src/models/Member.js' import { memberExample } from "#src/models/Member.js"
import { guildExample } from '#src/models/Guild.js' import { guildExample } from "#src/models/Guild.js"
await test('DELETE /guilds/[guildId]', async (t) => { await test("DELETE /guilds/[guildId]", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds and delete the guild', async () => { await t.test("succeeds and delete the guild", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return { return {
...memberExample, ...memberExample,
isOwner: true, isOwner: true,
guild: guildExample guild: guildExample,
} }
} },
}) })
sinon.stub(prisma, 'guild').value({ sinon.stub(prisma, "guild").value({
delete: async () => { delete: async () => {
return guildExample return guildExample
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'DELETE', method: "DELETE",
url: `/guilds/${guildExample.id}`, url: `/guilds/${guildExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)
@ -46,44 +46,44 @@ await test('DELETE /guilds/[guildId]', async (t) => {
await t.test("fails if the guild doesn't exist", async () => { await t.test("fails if the guild doesn't exist", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'DELETE', method: "DELETE",
url: `/guilds/${guildExample.id}`, url: `/guilds/${guildExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
}) })
await t.test('fails if the user is not the owner', async () => { await t.test("fails if the user is not the owner", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return { return {
...memberExample, ...memberExample,
isOwner: false, isOwner: false,
guild: guildExample guild: guildExample,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'DELETE', method: "DELETE",
url: `/guilds/${guildExample.id}`, url: `/guilds/${guildExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 400) assert.strictEqual(response.statusCode, 400)
assert.strictEqual( assert.strictEqual(
responseJson.message, responseJson.message,
'You should be an owner of the guild' "You should be an owner of the guild",
) )
}) })
}) })

View File

@ -1,48 +1,48 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { memberExample } from '#src/models/Member.js' import { memberExample } from "#src/models/Member.js"
import { guildExample } from '#src/models/Guild.js' import { guildExample } from "#src/models/Guild.js"
import { userExample } from '#src/models/User.js' import { userExample } from "#src/models/User.js"
import { channelExample } from '#src/models/Channel.js' import { channelExample } from "#src/models/Channel.js"
const defaultChannelId = 5 const defaultChannelId = 5
await test('GET /guilds/[guildId]', async (t) => { await test("GET /guilds/[guildId]", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
const { accessToken, user } = await authenticateUserTest() const { accessToken, user } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return { return {
...memberExample, ...memberExample,
guild: guildExample, guild: guildExample,
user: userExample user: userExample,
} }
} },
}) })
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findFirst: async () => { findFirst: async () => {
return { return {
...channelExample, ...channelExample,
id: defaultChannelId id: defaultChannelId,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: `/guilds/${guildExample.id}`, url: `/guilds/${guildExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)
@ -55,29 +55,29 @@ await test('GET /guilds/[guildId]', async (t) => {
assert.strictEqual(responseJson.guild.defaultChannelId, defaultChannelId) assert.strictEqual(responseJson.guild.defaultChannelId, defaultChannelId)
}) })
await t.test('fails with not found member/guild', async () => { await t.test("fails with not found member/guild", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: '/guilds/1', url: "/guilds/1",
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
assert.strictEqual(responseJson.message, 'Member not found') assert.strictEqual(responseJson.message, "Member not found")
}) })
await t.test('fails with unauthenticated user', async () => { await t.test("fails with unauthenticated user", async () => {
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: '/guilds/1' url: "/guilds/1",
}) })
assert.strictEqual(response.statusCode, 401) assert.strictEqual(response.statusCode, 401)
}) })

View File

@ -1,62 +1,62 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { memberExample } from '#src/models/Member.js' import { memberExample } from "#src/models/Member.js"
import { guildExample } from '#src/models/Guild.js' import { guildExample } from "#src/models/Guild.js"
import { channelExample } from '#src/models/Channel.js' import { channelExample } from "#src/models/Channel.js"
const defaultChannelId = 5 const defaultChannelId = 5
const newName = 'New guild name' const newName = "New guild name"
const newDescription = 'New guild description' const newDescription = "New guild description"
await test('PUT /guilds/[guildId]', async (t) => { await test("PUT /guilds/[guildId]", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds and edit the guild', async () => { await t.test("succeeds and edit the guild", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return { return {
...memberExample, ...memberExample,
isOwner: true, isOwner: true,
guild: guildExample guild: guildExample,
} }
} },
}) })
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findFirst: async () => { findFirst: async () => {
return { return {
...channelExample, ...channelExample,
id: defaultChannelId id: defaultChannelId,
} }
} },
}) })
sinon.stub(prisma, 'guild').value({ sinon.stub(prisma, "guild").value({
update: async () => { update: async () => {
return { return {
...guildExample, ...guildExample,
name: newName, name: newName,
description: newDescription description: newDescription,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'PUT', method: "PUT",
url: `/guilds/${guildExample.id}`, url: `/guilds/${guildExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { payload: {
name: newName, name: newName,
description: newDescription description: newDescription,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)
@ -67,52 +67,52 @@ await test('PUT /guilds/[guildId]', async (t) => {
await t.test("fails if the guild doesn't exist", async () => { await t.test("fails if the guild doesn't exist", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'PUT', method: "PUT",
url: `/guilds/${guildExample.id}`, url: `/guilds/${guildExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { payload: {
name: newName, name: newName,
description: newDescription description: newDescription,
} },
}) })
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
}) })
await t.test('fails if the user is not the owner', async () => { await t.test("fails if the user is not the owner", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return { return {
...memberExample, ...memberExample,
isOwner: false, isOwner: false,
guild: guildExample guild: guildExample,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'PUT', method: "PUT",
url: `/guilds/${guildExample.id}`, url: `/guilds/${guildExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { payload: {
name: newName, name: newName,
description: newDescription description: newDescription,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 400) assert.strictEqual(response.statusCode, 400)
assert.strictEqual( assert.strictEqual(
responseJson.message, responseJson.message,
'You should be an owner of the guild' "You should be an owner of the guild",
) )
}) })
}) })

View File

@ -1,38 +1,38 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { memberExample } from '#src/models/Member.js' import { memberExample } from "#src/models/Member.js"
import { guildExample } from '#src/models/Guild.js' import { guildExample } from "#src/models/Guild.js"
import { channelExample } from '#src/models/Channel.js' import { channelExample } from "#src/models/Channel.js"
await test('GET /guilds/[guildId]/channels', async (t) => { await test("GET /guilds/[guildId]/channels", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return memberExample return memberExample
} },
}) })
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findMany: async () => { findMany: async () => {
return [channelExample] return [channelExample]
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: `/guilds/${guildExample.id}/channels`, url: `/guilds/${guildExample.id}/channels`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)
@ -42,29 +42,29 @@ await test('GET /guilds/[guildId]/channels', async (t) => {
assert.strictEqual(responseJson[0].guildId, channelExample.guildId) assert.strictEqual(responseJson[0].guildId, channelExample.guildId)
}) })
await t.test('fails with not found member/guild', async () => { await t.test("fails with not found member/guild", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: '/guilds/1/channels', url: "/guilds/1/channels",
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
assert.strictEqual(responseJson.message, 'Member not found') assert.strictEqual(responseJson.message, "Member not found")
}) })
await t.test('fails with unauthenticated user', async () => { await t.test("fails with unauthenticated user", async () => {
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: '/guilds/1/channels' url: "/guilds/1/channels",
}) })
assert.strictEqual(response.statusCode, 401) assert.strictEqual(response.statusCode, 401)
}) })

View File

@ -1,47 +1,47 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { memberExample } from '#src/models/Member.js' import { memberExample } from "#src/models/Member.js"
import { guildExample } from '#src/models/Guild.js' import { guildExample } from "#src/models/Guild.js"
import { channelExample } from '#src/models/Channel.js' import { channelExample } from "#src/models/Channel.js"
const defaultChannelId = 5 const defaultChannelId = 5
await test('POST /guilds/[guildId]/channels', async (t) => { await test("POST /guilds/[guildId]/channels", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return memberExample return memberExample
} },
}) })
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findFirst: async () => { findFirst: async () => {
return { return {
...channelExample, ...channelExample,
id: defaultChannelId id: defaultChannelId,
} }
}, },
create: async () => { create: async () => {
return channelExample return channelExample
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'POST', method: "POST",
url: `/guilds/${guildExample.id}/channels`, url: `/guilds/${guildExample.id}/channels`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { name: channelExample.name } payload: { name: channelExample.name },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 201) assert.strictEqual(response.statusCode, 201)
@ -51,41 +51,41 @@ await test('POST /guilds/[guildId]/channels', async (t) => {
assert.strictEqual(responseJson.defaultChannelId, defaultChannelId) assert.strictEqual(responseJson.defaultChannelId, defaultChannelId)
}) })
await t.test('fails if the member is not found', async () => { await t.test("fails if the member is not found", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'POST', method: "POST",
url: `/guilds/${guildExample.id}/channels`, url: `/guilds/${guildExample.id}/channels`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { name: channelExample.name } payload: { name: channelExample.name },
}) })
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
}) })
await t.test('fails if the member is not owner', async () => { await t.test("fails if the member is not owner", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return { return {
...memberExample, ...memberExample,
isOwner: false isOwner: false,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'POST', method: "POST",
url: `/guilds/${guildExample.id}/channels`, url: `/guilds/${guildExample.id}/channels`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { name: channelExample.name } payload: { name: channelExample.name },
}) })
assert.strictEqual(response.statusCode, 400) assert.strictEqual(response.statusCode, 400)
}) })

View File

@ -1,32 +1,32 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { guildSchema } from '#src/models/Guild.js' import { guildSchema } from "#src/models/Guild.js"
import { channelSchema } from '#src/models/Channel.js' import { channelSchema } from "#src/models/Channel.js"
import { import {
getPaginationOptions, getPaginationOptions,
queryPaginationObjectSchema queryPaginationObjectSchema,
} from '#src/tools/database/pagination.js' } from "#src/tools/database/pagination.js"
type QuerySchemaType = Static<typeof queryPaginationObjectSchema> type QuerySchemaType = Static<typeof queryPaginationObjectSchema>
const parametersSchema = Type.Object({ const parametersSchema = Type.Object({
guildId: guildSchema.id guildId: guildSchema.id,
}) })
type Parameters = Static<typeof parametersSchema> type Parameters = Static<typeof parametersSchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: 'GET all the channels of a guild with its id.', description: "GET all the channels of a guild with its id.",
tags: ['channels'] as string[], tags: ["channels"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
params: parametersSchema, params: parametersSchema,
querystring: queryPaginationObjectSchema, querystring: queryPaginationObjectSchema,
@ -36,12 +36,12 @@ const getServiceSchema: FastifySchema = {
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
404: fastifyErrors[404], 404: fastifyErrors[404],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getChannelsByGuildIdService: FastifyPluginAsync = async ( export const getChannelsByGuildIdService: FastifyPluginAsync = async (
fastify fastify,
) => { ) => {
await fastify.register(authenticateUser) await fastify.register(authenticateUser)
@ -49,8 +49,8 @@ export const getChannelsByGuildIdService: FastifyPluginAsync = async (
Params: Parameters Params: Parameters
Querystring: QuerySchemaType Querystring: QuerySchemaType
}>({ }>({
method: 'GET', method: "GET",
url: '/guilds/:guildId/channels', url: "/guilds/:guildId/channels",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -58,19 +58,19 @@ export const getChannelsByGuildIdService: FastifyPluginAsync = async (
} }
const { guildId } = request.params const { guildId } = request.params
const member = await prisma.member.findFirst({ const member = await prisma.member.findFirst({
where: { guildId, userId: request.user.current.id } where: { guildId, userId: request.user.current.id },
}) })
if (member == null) { if (member == null) {
throw fastify.httpErrors.notFound('Member not found') throw fastify.httpErrors.notFound("Member not found")
} }
const channels = await prisma.channel.findMany({ const channels = await prisma.channel.findMany({
...getPaginationOptions(request.query), ...getPaginationOptions(request.query),
where: { where: {
guildId guildId,
} },
}) })
reply.statusCode = 200 reply.statusCode = 200
return channels return channels
} },
}) })
} }

View File

@ -1,46 +1,46 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { channelSchema } from '#src/models/Channel.js' import { channelSchema } from "#src/models/Channel.js"
import { guildSchema } from '#src/models/Guild.js' import { guildSchema } from "#src/models/Guild.js"
const bodyPostServiceSchema = Type.Object({ const bodyPostServiceSchema = Type.Object({
name: channelSchema.name name: channelSchema.name,
}) })
type BodyPostServiceSchemaType = Static<typeof bodyPostServiceSchema> type BodyPostServiceSchemaType = Static<typeof bodyPostServiceSchema>
const parametersSchema = Type.Object({ const parametersSchema = Type.Object({
guildId: guildSchema.id guildId: guildSchema.id,
}) })
type Parameters = Static<typeof parametersSchema> type Parameters = Static<typeof parametersSchema>
const postChannelServiceSchema: FastifySchema = { const postChannelServiceSchema: FastifySchema = {
description: 'Create a channel.', description: "Create a channel.",
tags: ['channels'] as string[], tags: ["channels"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
body: bodyPostServiceSchema, body: bodyPostServiceSchema,
params: parametersSchema, params: parametersSchema,
response: { response: {
201: Type.Object({ 201: Type.Object({
...channelSchema, ...channelSchema,
defaultChannelId: channelSchema.id defaultChannelId: channelSchema.id,
}), }),
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
404: fastifyErrors[404], 404: fastifyErrors[404],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const postChannelService: FastifyPluginAsync = async (fastify) => { export const postChannelService: FastifyPluginAsync = async (fastify) => {
@ -50,8 +50,8 @@ export const postChannelService: FastifyPluginAsync = async (fastify) => {
Body: BodyPostServiceSchemaType Body: BodyPostServiceSchemaType
Params: Parameters Params: Parameters
}>({ }>({
method: 'POST', method: "POST",
url: '/guilds/:guildId/channels', url: "/guilds/:guildId/channels",
schema: postChannelServiceSchema, schema: postChannelServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -61,40 +61,40 @@ export const postChannelService: FastifyPluginAsync = async (fastify) => {
const { guildId } = params const { guildId } = params
const { name } = body const { name } = body
const member = await prisma.member.findFirst({ const member = await prisma.member.findFirst({
where: { guildId, userId: user.current.id } where: { guildId, userId: user.current.id },
}) })
if (member == null) { if (member == null) {
throw fastify.httpErrors.notFound('Member not found') throw fastify.httpErrors.notFound("Member not found")
} }
if (!member.isOwner) { if (!member.isOwner) {
throw fastify.httpErrors.badRequest('You should be a member owner') throw fastify.httpErrors.badRequest("You should be a member owner")
} }
const channel = await prisma.channel.create({ const channel = await prisma.channel.create({
data: { data: {
name, name,
guildId guildId,
} },
}) })
const defaultChannel = await prisma.channel.findFirst({ const defaultChannel = await prisma.channel.findFirst({
where: { guildId: member.guildId } where: { guildId: member.guildId },
}) })
if (defaultChannel == null) { if (defaultChannel == null) {
throw fastify.httpErrors.internalServerError() throw fastify.httpErrors.internalServerError()
} }
const item = { const item = {
...channel, ...channel,
defaultChannelId: defaultChannel.id defaultChannelId: defaultChannel.id,
} }
await fastify.io.emitToMembers({ await fastify.io.emitToMembers({
event: 'channels', event: "channels",
guildId, guildId,
payload: { payload: {
action: 'create', action: "create",
item item,
} },
}) })
reply.statusCode = 201 reply.statusCode = 201
return item return item
} },
}) })
} }

View File

@ -1,25 +1,25 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { guildSchema } from '#src/models/Guild.js' import { guildSchema } from "#src/models/Guild.js"
const parametersSchema = Type.Object({ const parametersSchema = Type.Object({
guildId: guildSchema.id guildId: guildSchema.id,
}) })
type Parameters = Static<typeof parametersSchema> type Parameters = Static<typeof parametersSchema>
const deleteServiceSchema: FastifySchema = { const deleteServiceSchema: FastifySchema = {
description: 'DELETE a guild with the guildId.', description: "DELETE a guild with the guildId.",
tags: ['guilds'] as string[], tags: ["guilds"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
params: parametersSchema, params: parametersSchema,
response: { response: {
@ -28,8 +28,8 @@ const deleteServiceSchema: FastifySchema = {
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
404: fastifyErrors[404], 404: fastifyErrors[404],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const deleteGuildByIdService: FastifyPluginAsync = async (fastify) => { export const deleteGuildByIdService: FastifyPluginAsync = async (fastify) => {
@ -38,8 +38,8 @@ export const deleteGuildByIdService: FastifyPluginAsync = async (fastify) => {
fastify.route<{ fastify.route<{
Params: Parameters Params: Parameters
}>({ }>({
method: 'DELETE', method: "DELETE",
url: '/guilds/:guildId', url: "/guilds/:guildId",
schema: deleteServiceSchema, schema: deleteServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -49,30 +49,30 @@ export const deleteGuildByIdService: FastifyPluginAsync = async (fastify) => {
const member = await prisma.member.findFirst({ const member = await prisma.member.findFirst({
where: { guildId, userId: request.user.current.id }, where: { guildId, userId: request.user.current.id },
include: { include: {
guild: true guild: true,
} },
}) })
if (member == null || member.guild == null) { if (member == null || member.guild == null) {
throw fastify.httpErrors.notFound('Member not found') throw fastify.httpErrors.notFound("Member not found")
} }
if (!member.isOwner) { if (!member.isOwner) {
throw fastify.httpErrors.badRequest( throw fastify.httpErrors.badRequest(
'You should be an owner of the guild' "You should be an owner of the guild",
) )
} }
await fastify.io.emitToMembers({ await fastify.io.emitToMembers({
event: 'guilds', event: "guilds",
guildId: member.guildId, guildId: member.guildId,
payload: { payload: {
action: 'delete', action: "delete",
item: member.guild item: member.guild,
} },
}) })
const guild = await prisma.guild.delete({ const guild = await prisma.guild.delete({
where: { id: member.guildId } where: { id: member.guildId },
}) })
reply.statusCode = 200 reply.statusCode = 200
return guild return guild
} },
}) })
} }

View File

@ -1,59 +1,59 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { guildSchema } from '#src/models/Guild.js' import { guildSchema } from "#src/models/Guild.js"
import { memberSchema } from '#src/models/Member.js' import { memberSchema } from "#src/models/Member.js"
import { userPublicWithoutSettingsSchema } from '#src/models/User.js' import { userPublicWithoutSettingsSchema } from "#src/models/User.js"
import { channelSchema } from '#src/models/Channel.js' import { channelSchema } from "#src/models/Channel.js"
const parametersSchema = Type.Object({ const parametersSchema = Type.Object({
guildId: guildSchema.id guildId: guildSchema.id,
}) })
type Parameters = Static<typeof parametersSchema> type Parameters = Static<typeof parametersSchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: 'GET a guild member with the guildId.', description: "GET a guild member with the guildId.",
tags: ['guilds'] as string[], tags: ["guilds"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
params: parametersSchema, params: parametersSchema,
response: { response: {
200: Type.Object({ 200: Type.Object({
guild: Type.Object({ guild: Type.Object({
...guildSchema, ...guildSchema,
defaultChannelId: channelSchema.id defaultChannelId: channelSchema.id,
}), }),
member: Type.Object({ member: Type.Object({
...memberSchema, ...memberSchema,
user: Type.Object(userPublicWithoutSettingsSchema) user: Type.Object(userPublicWithoutSettingsSchema),
}) }),
}), }),
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
404: fastifyErrors[404], 404: fastifyErrors[404],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getGuildMemberByIdService: FastifyPluginAsync = async ( export const getGuildMemberByIdService: FastifyPluginAsync = async (
fastify fastify,
) => { ) => {
await fastify.register(authenticateUser) await fastify.register(authenticateUser)
fastify.route<{ fastify.route<{
Params: Parameters Params: Parameters
}>({ }>({
method: 'GET', method: "GET",
url: '/guilds/:guildId', url: "/guilds/:guildId",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -72,17 +72,17 @@ export const getGuildMemberByIdService: FastifyPluginAsync = async (
biography: true, biography: true,
website: true, website: true,
createdAt: true, createdAt: true,
updatedAt: true updatedAt: true,
} },
}, },
guild: true guild: true,
} },
}) })
if (member == null) { if (member == null) {
throw fastify.httpErrors.notFound('Member not found') throw fastify.httpErrors.notFound("Member not found")
} }
const defaultChannel = await prisma.channel.findFirst({ const defaultChannel = await prisma.channel.findFirst({
where: { guildId: member.guildId } where: { guildId: member.guildId },
}) })
if (defaultChannel == null) { if (defaultChannel == null) {
throw fastify.httpErrors.internalServerError() throw fastify.httpErrors.internalServerError()
@ -90,18 +90,18 @@ export const getGuildMemberByIdService: FastifyPluginAsync = async (
const item = { const item = {
guild: { guild: {
...member.guild, ...member.guild,
defaultChannelId: defaultChannel.id defaultChannelId: defaultChannel.id,
}, },
member: { member: {
...member, ...member,
user: { user: {
...member.user, ...member.user,
email: null email: null,
} },
} },
} }
reply.statusCode = 200 reply.statusCode = 200
return item return item
} },
}) })
} }

View File

@ -1,44 +1,44 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import fastifyMultipart from '@fastify/multipart' import fastifyMultipart from "@fastify/multipart"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { uploadFile } from '#src/tools/utils/uploadFile.js' import { uploadFile } from "#src/tools/utils/uploadFile.js"
import { guildSchema } from '#src/models/Guild.js' import { guildSchema } from "#src/models/Guild.js"
import { channelSchema } from '#src/models/Channel.js' import { channelSchema } from "#src/models/Channel.js"
const parametersSchema = Type.Object({ const parametersSchema = Type.Object({
guildId: guildSchema.id guildId: guildSchema.id,
}) })
type Parameters = Static<typeof parametersSchema> type Parameters = Static<typeof parametersSchema>
const putServiceSchema: FastifySchema = { const putServiceSchema: FastifySchema = {
description: 'Edit the icon of the guild with its id', description: "Edit the icon of the guild with its id",
tags: ['guilds'] as string[], tags: ["guilds"] as string[],
consumes: ['multipart/form-data'] as string[], consumes: ["multipart/form-data"] as string[],
produces: ['application/json'] as string[], produces: ["application/json"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
params: parametersSchema, params: parametersSchema,
response: { response: {
200: Type.Object({ 200: Type.Object({
...guildSchema, ...guildSchema,
defaultChannelId: channelSchema.id defaultChannelId: channelSchema.id,
}), }),
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
404: fastifyErrors[404], 404: fastifyErrors[404],
431: fastifyErrors[431], 431: fastifyErrors[431],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const putGuildIconById: FastifyPluginAsync = async (fastify) => { export const putGuildIconById: FastifyPluginAsync = async (fastify) => {
@ -49,8 +49,8 @@ export const putGuildIconById: FastifyPluginAsync = async (fastify) => {
fastify.route<{ fastify.route<{
Params: Parameters Params: Parameters
}>({ }>({
method: 'PUT', method: "PUT",
url: '/guilds/:guildId/icon', url: "/guilds/:guildId/icon",
schema: putServiceSchema, schema: putServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -64,14 +64,14 @@ export const putGuildIconById: FastifyPluginAsync = async (fastify) => {
const file = await uploadFile({ const file = await uploadFile({
fastify, fastify,
request, request,
folderInUploadsFolder: 'guilds' folderInUploadsFolder: "guilds",
}) })
await prisma.guild.update({ await prisma.guild.update({
where: { id: guildId }, where: { id: guildId },
data: { icon: file.pathToStoreInDatabase } data: { icon: file.pathToStoreInDatabase },
}) })
const defaultChannel = await prisma.channel.findFirst({ const defaultChannel = await prisma.channel.findFirst({
where: { guildId: guild.id } where: { guildId: guild.id },
}) })
if (defaultChannel == null) { if (defaultChannel == null) {
throw fastify.httpErrors.internalServerError() throw fastify.httpErrors.internalServerError()
@ -79,15 +79,15 @@ export const putGuildIconById: FastifyPluginAsync = async (fastify) => {
const item = { const item = {
...guild, ...guild,
icon: file.pathToStoreInDatabase, icon: file.pathToStoreInDatabase,
defaultChannelId: defaultChannel.id defaultChannelId: defaultChannel.id,
} }
await fastify.io.emitToMembers({ await fastify.io.emitToMembers({
event: 'guilds', event: "guilds",
guildId: guild.id, guildId: guild.id,
payload: { action: 'update', item } payload: { action: "update", item },
}) })
reply.statusCode = 200 reply.statusCode = 200
return item return item
} },
}) })
} }

View File

@ -1,36 +1,36 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { memberExample } from '#src/models/Member.js' import { memberExample } from "#src/models/Member.js"
import { guildExample } from '#src/models/Guild.js' import { guildExample } from "#src/models/Guild.js"
import { userExample } from '#src/models/User.js' import { userExample } from "#src/models/User.js"
await test('GET /guilds/[guildId]/members', async (t) => { await test("GET /guilds/[guildId]/members", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return memberExample return memberExample
}, },
findMany: async () => { findMany: async () => {
return [{ ...memberExample, user: userExample }] return [{ ...memberExample, user: userExample }]
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: `/guilds/${guildExample.id}/members`, url: `/guilds/${guildExample.id}/members`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)
@ -42,29 +42,29 @@ await test('GET /guilds/[guildId]/members', async (t) => {
assert.strictEqual(responseJson[0].user.email, null) assert.strictEqual(responseJson[0].user.email, null)
}) })
await t.test('fails with not found member/guild', async () => { await t.test("fails with not found member/guild", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: '/guilds/1/members', url: "/guilds/1/members",
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
assert.strictEqual(responseJson.message, 'Member not found') assert.strictEqual(responseJson.message, "Member not found")
}) })
await t.test('fails with unauthenticated user', async () => { await t.test("fails with unauthenticated user", async () => {
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: '/guilds/1/members' url: "/guilds/1/members",
}) })
assert.strictEqual(response.statusCode, 401) assert.strictEqual(response.statusCode, 401)
}) })

View File

@ -1,33 +1,33 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { guildSchema } from '#src/models/Guild.js' import { guildSchema } from "#src/models/Guild.js"
import { import {
getPaginationOptions, getPaginationOptions,
queryPaginationObjectSchema queryPaginationObjectSchema,
} from '#src/tools/database/pagination.js' } from "#src/tools/database/pagination.js"
import { memberSchema } from '#src/models/Member.js' import { memberSchema } from "#src/models/Member.js"
import { userPublicWithoutSettingsSchema } from '#src/models/User.js' import { userPublicWithoutSettingsSchema } from "#src/models/User.js"
type QuerySchemaType = Static<typeof queryPaginationObjectSchema> type QuerySchemaType = Static<typeof queryPaginationObjectSchema>
const parametersSchema = Type.Object({ const parametersSchema = Type.Object({
guildId: guildSchema.id guildId: guildSchema.id,
}) })
type Parameters = Static<typeof parametersSchema> type Parameters = Static<typeof parametersSchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: 'GET all the members of a guild with its id.', description: "GET all the members of a guild with its id.",
tags: ['members'] as string[], tags: ["members"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
params: parametersSchema, params: parametersSchema,
querystring: queryPaginationObjectSchema, querystring: queryPaginationObjectSchema,
@ -35,19 +35,19 @@ const getServiceSchema: FastifySchema = {
200: Type.Array( 200: Type.Array(
Type.Object({ Type.Object({
...memberSchema, ...memberSchema,
user: Type.Object(userPublicWithoutSettingsSchema) user: Type.Object(userPublicWithoutSettingsSchema),
}) }),
), ),
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
404: fastifyErrors[404], 404: fastifyErrors[404],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getMembersByGuildIdService: FastifyPluginAsync = async ( export const getMembersByGuildIdService: FastifyPluginAsync = async (
fastify fastify,
) => { ) => {
await fastify.register(authenticateUser) await fastify.register(authenticateUser)
@ -55,8 +55,8 @@ export const getMembersByGuildIdService: FastifyPluginAsync = async (
Params: Parameters Params: Parameters
Querystring: QuerySchemaType Querystring: QuerySchemaType
}>({ }>({
method: 'GET', method: "GET",
url: '/guilds/:guildId/members', url: "/guilds/:guildId/members",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -64,14 +64,14 @@ export const getMembersByGuildIdService: FastifyPluginAsync = async (
} }
const { guildId } = request.params const { guildId } = request.params
const memberCheck = await prisma.member.findFirst({ const memberCheck = await prisma.member.findFirst({
where: { guildId, userId: request.user.current.id } where: { guildId, userId: request.user.current.id },
}) })
if (memberCheck == null) { if (memberCheck == null) {
throw fastify.httpErrors.notFound('Member not found') throw fastify.httpErrors.notFound("Member not found")
} }
const membersRequest = await prisma.member.findMany({ const membersRequest = await prisma.member.findMany({
...getPaginationOptions(request.query), ...getPaginationOptions(request.query),
orderBy: { createdAt: 'asc' }, orderBy: { createdAt: "asc" },
where: { guildId }, where: { guildId },
include: { include: {
user: { user: {
@ -83,22 +83,22 @@ export const getMembersByGuildIdService: FastifyPluginAsync = async (
biography: true, biography: true,
website: true, website: true,
createdAt: true, createdAt: true,
updatedAt: true updatedAt: true,
} },
} },
} },
}) })
const members = membersRequest.map((member) => { const members = membersRequest.map((member) => {
return { return {
...member, ...member,
user: { user: {
...member.user, ...member.user,
email: null email: null,
} },
} }
}) })
reply.statusCode = 200 reply.statusCode = 200
return members return members
} },
}) })
} }

View File

@ -1,49 +1,49 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { memberExample } from '#src/models/Member.js' import { memberExample } from "#src/models/Member.js"
import { guildExample } from '#src/models/Guild.js' import { guildExample } from "#src/models/Guild.js"
import { userExample } from '#src/models/User.js' import { userExample } from "#src/models/User.js"
import { channelExample } from '#src/models/Channel.js' import { channelExample } from "#src/models/Channel.js"
const defaultChannelId = 5 const defaultChannelId = 5
await test('POST /guilds/[guildId]/members/join', async (t) => { await test("POST /guilds/[guildId]/members/join", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return null return null
}, },
create: async () => { create: async () => {
return { ...memberExample, user: userExample } return { ...memberExample, user: userExample }
} },
}) })
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findFirst: async () => { findFirst: async () => {
return channelExample return channelExample
} },
}) })
sinon.stub(prisma, 'guild').value({ sinon.stub(prisma, "guild").value({
findUnique: async () => { findUnique: async () => {
return guildExample return guildExample
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'POST', method: "POST",
url: `/guilds/${guildExample.id}/members/join`, url: `/guilds/${guildExample.id}/members/join`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 201) assert.strictEqual(response.statusCode, 201)
@ -56,59 +56,59 @@ await test('POST /guilds/[guildId]/members/join', async (t) => {
assert.strictEqual(responseJson.guild.defaultChannelId, channelExample.id) assert.strictEqual(responseJson.guild.defaultChannelId, channelExample.id)
}) })
await t.test('fails if the guild is not found', async () => { await t.test("fails if the guild is not found", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
sinon.stub(prisma, 'guild').value({ sinon.stub(prisma, "guild").value({
findUnique: async () => { findUnique: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'POST', method: "POST",
url: `/guilds/${guildExample.id}/members/join`, url: `/guilds/${guildExample.id}/members/join`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
}) })
await t.test('fails if the user is already in the guild', async () => { await t.test("fails if the user is already in the guild", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return memberExample return memberExample
} },
}) })
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findFirst: async () => { findFirst: async () => {
return { return {
...channelExample, ...channelExample,
id: defaultChannelId id: defaultChannelId,
} }
} },
}) })
sinon.stub(prisma, 'guild').value({ sinon.stub(prisma, "guild").value({
findUnique: async () => { findUnique: async () => {
return guildExample return guildExample
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'POST', method: "POST",
url: `/guilds/${guildExample.id}/members/join`, url: `/guilds/${guildExample.id}/members/join`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 400) assert.strictEqual(response.statusCode, 400)

View File

@ -1,28 +1,28 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors, fastifyErrorsSchema, id } from '#src/models/utils.js' import { fastifyErrors, fastifyErrorsSchema, id } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { guildSchema } from '#src/models/Guild.js' import { guildSchema } from "#src/models/Guild.js"
import { memberSchema } from '#src/models/Member.js' import { memberSchema } from "#src/models/Member.js"
import { userPublicWithoutSettingsSchema } from '#src/models/User.js' import { userPublicWithoutSettingsSchema } from "#src/models/User.js"
import { channelSchema } from '#src/models/Channel.js' import { channelSchema } from "#src/models/Channel.js"
const parametersSchema = Type.Object({ const parametersSchema = Type.Object({
guildId: guildSchema.id guildId: guildSchema.id,
}) })
type Parameters = Static<typeof parametersSchema> type Parameters = Static<typeof parametersSchema>
const postServiceSchema: FastifySchema = { const postServiceSchema: FastifySchema = {
description: 'Join a guild (create a member).', description: "Join a guild (create a member).",
tags: ['members'] as string[], tags: ["members"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
params: parametersSchema, params: parametersSchema,
response: { response: {
@ -30,19 +30,19 @@ const postServiceSchema: FastifySchema = {
...memberSchema, ...memberSchema,
guild: Type.Object({ guild: Type.Object({
...guildSchema, ...guildSchema,
defaultChannelId: id defaultChannelId: id,
}), }),
user: Type.Object(userPublicWithoutSettingsSchema) user: Type.Object(userPublicWithoutSettingsSchema),
}), }),
400: Type.Object({ 400: Type.Object({
...fastifyErrorsSchema[400], ...fastifyErrorsSchema[400],
defaultChannelId: channelSchema.id defaultChannelId: channelSchema.id,
}), }),
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
404: fastifyErrors[404], 404: fastifyErrors[404],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const postMemberService: FastifyPluginAsync = async (fastify) => { export const postMemberService: FastifyPluginAsync = async (fastify) => {
@ -51,8 +51,8 @@ export const postMemberService: FastifyPluginAsync = async (fastify) => {
fastify.route<{ fastify.route<{
Params: Parameters Params: Parameters
}>({ }>({
method: 'POST', method: "POST",
url: '/guilds/:guildId/members/join', url: "/guilds/:guildId/members/join",
schema: postServiceSchema, schema: postServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -62,16 +62,16 @@ export const postMemberService: FastifyPluginAsync = async (fastify) => {
const { guildId } = params const { guildId } = params
const guild = await prisma.guild.findUnique({ const guild = await prisma.guild.findUnique({
where: { where: {
id: guildId id: guildId,
} },
}) })
if (guild == null) { if (guild == null) {
throw fastify.httpErrors.notFound('Guild not found') throw fastify.httpErrors.notFound("Guild not found")
} }
const defaultChannel = await prisma.channel.findFirst({ const defaultChannel = await prisma.channel.findFirst({
where: { where: {
guildId guildId,
} },
}) })
if (defaultChannel == null) { if (defaultChannel == null) {
throw fastify.httpErrors.internalServerError() throw fastify.httpErrors.internalServerError()
@ -79,22 +79,22 @@ export const postMemberService: FastifyPluginAsync = async (fastify) => {
const memberCheck = await prisma.member.findFirst({ const memberCheck = await prisma.member.findFirst({
where: { where: {
userId: user.current.id, userId: user.current.id,
guildId: guild.id guildId: guild.id,
} },
}) })
if (memberCheck != null) { if (memberCheck != null) {
throw fastify.httpErrors.createError( throw fastify.httpErrors.createError(
400, 400,
'You are already in the guild', "You are already in the guild",
{ {
defaultChannelId: defaultChannel.id defaultChannelId: defaultChannel.id,
} },
) )
} }
const member = await prisma.member.create({ const member = await prisma.member.create({
data: { data: {
guildId, guildId,
userId: user.current.id userId: user.current.id,
}, },
include: { include: {
user: { user: {
@ -106,33 +106,33 @@ export const postMemberService: FastifyPluginAsync = async (fastify) => {
biography: true, biography: true,
website: true, website: true,
createdAt: true, createdAt: true,
updatedAt: true updatedAt: true,
} },
} },
} },
}) })
const item = { const item = {
...member, ...member,
user: { user: {
...member.user, ...member.user,
email: null email: null,
}, },
guild: { guild: {
...guild, ...guild,
defaultChannelId: defaultChannel.id defaultChannelId: defaultChannel.id,
} },
} }
await fastify.io.emitToMembers({ await fastify.io.emitToMembers({
event: 'members', event: "members",
guildId, guildId,
payload: { payload: {
action: 'create', action: "create",
item item,
} },
}) })
reply.statusCode = 201 reply.statusCode = 201
return item return item
} },
}) })
} }

View File

@ -1,39 +1,39 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { memberExample } from '#src/models/Member.js' import { memberExample } from "#src/models/Member.js"
import { guildExample } from '#src/models/Guild.js' import { guildExample } from "#src/models/Guild.js"
await test('DELETE /guilds/[guildId]/members/leave', async (t) => { await test("DELETE /guilds/[guildId]/members/leave", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
const member = { const member = {
...memberExample, ...memberExample,
isOwner: false isOwner: false,
} }
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return member return member
}, },
delete: async () => { delete: async () => {
return member return member
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'DELETE', method: "DELETE",
url: `/guilds/${guildExample.id}/members/leave`, url: `/guilds/${guildExample.id}/members/leave`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)
@ -42,40 +42,40 @@ await test('DELETE /guilds/[guildId]/members/leave', async (t) => {
assert.strictEqual(responseJson.userId, member.userId) assert.strictEqual(responseJson.userId, member.userId)
}) })
await t.test('fails if the member is not found', async () => { await t.test("fails if the member is not found", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'DELETE', method: "DELETE",
url: `/guilds/${guildExample.id}/members/leave`, url: `/guilds/${guildExample.id}/members/leave`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
}) })
await t.test('fails if the member is owner', async () => { await t.test("fails if the member is owner", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
const member = { const member = {
...memberExample, ...memberExample,
isOwner: true isOwner: true,
} }
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return member return member
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'DELETE', method: "DELETE",
url: `/guilds/${guildExample.id}/members/leave`, url: `/guilds/${guildExample.id}/members/leave`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
assert.strictEqual(response.statusCode, 400) assert.strictEqual(response.statusCode, 400)
}) })

View File

@ -1,26 +1,26 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { guildSchema } from '#src/models/Guild.js' import { guildSchema } from "#src/models/Guild.js"
import { memberSchema } from '#src/models/Member.js' import { memberSchema } from "#src/models/Member.js"
const parametersSchema = Type.Object({ const parametersSchema = Type.Object({
guildId: guildSchema.id guildId: guildSchema.id,
}) })
type Parameters = Static<typeof parametersSchema> type Parameters = Static<typeof parametersSchema>
const deleteServiceSchema: FastifySchema = { const deleteServiceSchema: FastifySchema = {
description: 'Leave a guild (delete a member).', description: "Leave a guild (delete a member).",
tags: ['members'] as string[], tags: ["members"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
params: parametersSchema, params: parametersSchema,
response: { response: {
@ -29,8 +29,8 @@ const deleteServiceSchema: FastifySchema = {
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
404: fastifyErrors[404], 404: fastifyErrors[404],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const deleteMemberService: FastifyPluginAsync = async (fastify) => { export const deleteMemberService: FastifyPluginAsync = async (fastify) => {
@ -39,8 +39,8 @@ export const deleteMemberService: FastifyPluginAsync = async (fastify) => {
fastify.route<{ fastify.route<{
Params: Parameters Params: Parameters
}>({ }>({
method: 'DELETE', method: "DELETE",
url: '/guilds/:guildId/members/leave', url: "/guilds/:guildId/members/leave",
schema: deleteServiceSchema, schema: deleteServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -49,27 +49,27 @@ export const deleteMemberService: FastifyPluginAsync = async (fastify) => {
const { user, params } = request const { user, params } = request
const { guildId } = params const { guildId } = params
const member = await prisma.member.findFirst({ const member = await prisma.member.findFirst({
where: { guildId, userId: user.current.id } where: { guildId, userId: user.current.id },
}) })
if (member == null) { if (member == null) {
throw fastify.httpErrors.notFound('Member not found') throw fastify.httpErrors.notFound("Member not found")
} }
if (member.isOwner) { if (member.isOwner) {
throw fastify.httpErrors.badRequest( throw fastify.httpErrors.badRequest(
"The member owner can't leave the guild (you can delete it instead)" "The member owner can't leave the guild (you can delete it instead)",
) )
} }
await prisma.member.delete({ where: { id: member.id } }) await prisma.member.delete({ where: { id: member.id } })
await fastify.io.emitToMembers({ await fastify.io.emitToMembers({
event: 'members', event: "members",
guildId, guildId,
payload: { payload: {
action: 'delete', action: "delete",
item: member item: member,
} },
}) })
reply.statusCode = 200 reply.statusCode = 200
return member return member
} },
}) })
} }

View File

@ -1,48 +1,48 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { guildSchema } from '#src/models/Guild.js' import { guildSchema } from "#src/models/Guild.js"
import { parseStringNullish } from '#src/tools/utils/parseStringNullish.js' import { parseStringNullish } from "#src/tools/utils/parseStringNullish.js"
import { channelSchema } from '#src/models/Channel.js' import { channelSchema } from "#src/models/Channel.js"
const parametersSchema = Type.Object({ const parametersSchema = Type.Object({
guildId: guildSchema.id guildId: guildSchema.id,
}) })
type Parameters = Static<typeof parametersSchema> type Parameters = Static<typeof parametersSchema>
const bodyPutServiceSchema = Type.Object({ const bodyPutServiceSchema = Type.Object({
name: Type.Optional(guildSchema.name), name: Type.Optional(guildSchema.name),
description: Type.Optional(guildSchema.description) description: Type.Optional(guildSchema.description),
}) })
type BodyPutServiceSchemaType = Static<typeof bodyPutServiceSchema> type BodyPutServiceSchemaType = Static<typeof bodyPutServiceSchema>
const putServiceSchema: FastifySchema = { const putServiceSchema: FastifySchema = {
description: 'Update a guild with the guildId.', description: "Update a guild with the guildId.",
tags: ['guilds'] as string[], tags: ["guilds"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
body: bodyPutServiceSchema, body: bodyPutServiceSchema,
params: parametersSchema, params: parametersSchema,
response: { response: {
200: Type.Object({ 200: Type.Object({
...guildSchema, ...guildSchema,
defaultChannelId: channelSchema.id defaultChannelId: channelSchema.id,
}), }),
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
404: fastifyErrors[404], 404: fastifyErrors[404],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const putGuildByIdService: FastifyPluginAsync = async (fastify) => { export const putGuildByIdService: FastifyPluginAsync = async (fastify) => {
@ -52,8 +52,8 @@ export const putGuildByIdService: FastifyPluginAsync = async (fastify) => {
Body: BodyPutServiceSchemaType Body: BodyPutServiceSchemaType
Params: Parameters Params: Parameters
}>({ }>({
method: 'PUT', method: "PUT",
url: '/guilds/:guildId', url: "/guilds/:guildId",
schema: putServiceSchema, schema: putServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -64,41 +64,44 @@ export const putGuildByIdService: FastifyPluginAsync = async (fastify) => {
const member = await prisma.member.findFirst({ const member = await prisma.member.findFirst({
where: { guildId, userId: request.user.current.id }, where: { guildId, userId: request.user.current.id },
include: { include: {
guild: true guild: true,
} },
}) })
if (member == null || member.guild == null) { if (member == null || member.guild == null) {
throw fastify.httpErrors.notFound('Member not found') throw fastify.httpErrors.notFound("Member not found")
} }
if (!member.isOwner) { if (!member.isOwner) {
throw fastify.httpErrors.badRequest( throw fastify.httpErrors.badRequest(
'You should be an owner of the guild' "You should be an owner of the guild",
) )
} }
const guild = await prisma.guild.update({ const guild = await prisma.guild.update({
where: { id: guildId }, where: { id: guildId },
data: { data: {
name: name ?? member.guild.name, name: name ?? member.guild.name,
description: parseStringNullish(member.guild.description, description) description: parseStringNullish(
} member.guild.description,
description,
),
},
}) })
const defaultChannel = await prisma.channel.findFirst({ const defaultChannel = await prisma.channel.findFirst({
where: { guildId: guild.id } where: { guildId: guild.id },
}) })
if (defaultChannel == null) { if (defaultChannel == null) {
throw fastify.httpErrors.internalServerError() throw fastify.httpErrors.internalServerError()
} }
const item = { const item = {
...guild, ...guild,
defaultChannelId: defaultChannel.id defaultChannelId: defaultChannel.id,
} }
await fastify.io.emitToMembers({ await fastify.io.emitToMembers({
event: 'guilds', event: "guilds",
guildId: guild.id, guildId: guild.id,
payload: { action: 'update', item } payload: { action: "update", item },
}) })
reply.statusCode = 200 reply.statusCode = 200
return item return item
} },
}) })
} }

View File

@ -1,43 +1,43 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { memberExample } from '#src/models/Member.js' import { memberExample } from "#src/models/Member.js"
import { guildExample } from '#src/models/Guild.js' import { guildExample } from "#src/models/Guild.js"
import { channelExample } from '#src/models/Channel.js' import { channelExample } from "#src/models/Channel.js"
await test('GET /guilds', async (t) => { await test("GET /guilds", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'guild').value({ sinon.stub(prisma, "guild").value({
findUnique: async () => { findUnique: async () => {
return guildExample return guildExample
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findMany: async () => { findMany: async () => {
return [memberExample] return [memberExample]
} },
}) })
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
findFirst: async () => { findFirst: async () => {
return channelExample return channelExample
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: '/guilds', url: "/guilds",
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)

View File

@ -1,54 +1,54 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { memberExample } from '#src/models/Member.js' import { memberExample } from "#src/models/Member.js"
import { guildExample } from '#src/models/Guild.js' import { guildExample } from "#src/models/Guild.js"
import { channelExample } from '#src/models/Channel.js' import { channelExample } from "#src/models/Channel.js"
import { userExample } from '#src/models/User.js' import { userExample } from "#src/models/User.js"
await test('POST /guilds', async (t) => { await test("POST /guilds", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
const { accessToken, user } = await authenticateUserTest() const { accessToken, user } = await authenticateUserTest()
sinon.stub(prisma, 'guild').value({ sinon.stub(prisma, "guild").value({
create: async () => { create: async () => {
return guildExample return guildExample
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
create: async () => { create: async () => {
return memberExample return memberExample
}, },
findUnique: async () => { findUnique: async () => {
return { return {
...memberExample, ...memberExample,
...userExample ...userExample,
} }
} },
}) })
sinon.stub(prisma, 'channel').value({ sinon.stub(prisma, "channel").value({
create: async () => { create: async () => {
return channelExample return channelExample
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'POST', method: "POST",
url: '/guilds', url: "/guilds",
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { payload: {
name: guildExample.name, name: guildExample.name,
description: guildExample.description description: guildExample.description,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 201) assert.strictEqual(response.statusCode, 201)
@ -61,21 +61,21 @@ await test('POST /guilds', async (t) => {
assert.strictEqual(responseJson.guild.members[0].guildId, guildExample.id) assert.strictEqual(responseJson.guild.members[0].guildId, guildExample.id)
assert.strictEqual( assert.strictEqual(
responseJson.guild.members[0].isOwner, responseJson.guild.members[0].isOwner,
memberExample.isOwner memberExample.isOwner,
) )
assert.strictEqual(responseJson.guild.channels.length, 1) assert.strictEqual(responseJson.guild.channels.length, 1)
assert.strictEqual(responseJson.guild.channels[0].id, channelExample.id) assert.strictEqual(responseJson.guild.channels[0].id, channelExample.id)
assert.strictEqual(responseJson.guild.channels[0].guildId, guildExample.id) assert.strictEqual(responseJson.guild.channels[0].guildId, guildExample.id)
}) })
await t.test('fails with empty name and description', async () => { await t.test("fails with empty name and description", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
const response = await application.inject({ const response = await application.inject({
method: 'POST', method: "POST",
url: '/guilds', url: "/guilds",
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
assert.strictEqual(response.statusCode, 400) assert.strictEqual(response.statusCode, 400)
}) })

View File

@ -1,39 +1,39 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors, id } from '#src/models/utils.js' import { fastifyErrors, id } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { guildSchema } from '#src/models/Guild.js' import { guildSchema } from "#src/models/Guild.js"
import { import {
getPaginationOptions, getPaginationOptions,
queryPaginationObjectSchema queryPaginationObjectSchema,
} from '#src/tools/database/pagination.js' } from "#src/tools/database/pagination.js"
type QuerySchemaType = Static<typeof queryPaginationObjectSchema> type QuerySchemaType = Static<typeof queryPaginationObjectSchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: 'GET all the guilds of an user.', description: "GET all the guilds of an user.",
tags: ['guilds'] as string[], tags: ["guilds"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
querystring: queryPaginationObjectSchema, querystring: queryPaginationObjectSchema,
response: { response: {
200: Type.Array( 200: Type.Array(
Type.Object({ Type.Object({
...guildSchema, ...guildSchema,
defaultChannelId: id defaultChannelId: id,
}) }),
), ),
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getGuilds: FastifyPluginAsync = async (fastify) => { export const getGuilds: FastifyPluginAsync = async (fastify) => {
@ -42,8 +42,8 @@ export const getGuilds: FastifyPluginAsync = async (fastify) => {
fastify.route<{ fastify.route<{
Querystring: QuerySchemaType Querystring: QuerySchemaType
}>({ }>({
method: 'GET', method: "GET",
url: '/guilds', url: "/guilds",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -52,29 +52,29 @@ export const getGuilds: FastifyPluginAsync = async (fastify) => {
const membersRequest = await prisma.member.findMany({ const membersRequest = await prisma.member.findMany({
...getPaginationOptions(request.query), ...getPaginationOptions(request.query),
where: { where: {
userId: request.user.current.id userId: request.user.current.id,
} },
}) })
const guilds = await Promise.all( const guilds = await Promise.all(
membersRequest.map(async (member) => { membersRequest.map(async (member) => {
const channel = await prisma.channel.findFirst({ const channel = await prisma.channel.findFirst({
where: { where: {
guildId: member.guildId guildId: member.guildId,
} },
}) })
const guild = await prisma.guild.findUnique({ const guild = await prisma.guild.findUnique({
where: { where: {
id: member.guildId id: member.guildId,
} },
}) })
return { return {
...guild, ...guild,
defaultChannelId: channel?.id defaultChannelId: channel?.id,
} }
}) }),
) )
reply.statusCode = 200 reply.statusCode = 200
return guilds return guilds
} },
}) })
} }

View File

@ -1,17 +1,17 @@
import type { FastifyPluginAsync } from 'fastify' import type { FastifyPluginAsync } from "fastify"
import { getGuilds } from './get.js' import { getGuilds } from "./get.js"
import { postGuilds } from './post.js' import { postGuilds } from "./post.js"
import { getGuildsPublic } from './public/get.js' import { getGuildsPublic } from "./public/get.js"
import { getChannelsByGuildIdService } from './[guildId]/channels/get.js' import { getChannelsByGuildIdService } from "./[guildId]/channels/get.js"
import { postChannelService } from './[guildId]/channels/post.js' import { postChannelService } from "./[guildId]/channels/post.js"
import { deleteGuildByIdService } from './[guildId]/delete.js' import { deleteGuildByIdService } from "./[guildId]/delete.js"
import { getGuildMemberByIdService } from './[guildId]/get.js' import { getGuildMemberByIdService } from "./[guildId]/get.js"
import { putGuildIconById } from './[guildId]/icon/put.js' import { putGuildIconById } from "./[guildId]/icon/put.js"
import { getMembersByGuildIdService } from './[guildId]/members/get.js' import { getMembersByGuildIdService } from "./[guildId]/members/get.js"
import { postMemberService } from './[guildId]/members/join/post.js' import { postMemberService } from "./[guildId]/members/join/post.js"
import { deleteMemberService } from './[guildId]/members/leave/delete.js' import { deleteMemberService } from "./[guildId]/members/leave/delete.js"
import { putGuildByIdService } from './[guildId]/put.js' import { putGuildByIdService } from "./[guildId]/put.js"
export const guildsService: FastifyPluginAsync = async (fastify) => { export const guildsService: FastifyPluginAsync = async (fastify) => {
await fastify.register(postGuilds) await fastify.register(postGuilds)

View File

@ -1,30 +1,30 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { guildSchema } from '#src/models/Guild.js' import { guildSchema } from "#src/models/Guild.js"
import { channelSchema } from '#src/models/Channel.js' import { channelSchema } from "#src/models/Channel.js"
import { memberSchema } from '#src/models/Member.js' import { memberSchema } from "#src/models/Member.js"
import { userPublicWithoutSettingsSchema } from '#src/models/User.js' import { userPublicWithoutSettingsSchema } from "#src/models/User.js"
import { parseStringNullish } from '#src/tools/utils/parseStringNullish.js' import { parseStringNullish } from "#src/tools/utils/parseStringNullish.js"
const bodyPostServiceSchema = Type.Object({ const bodyPostServiceSchema = Type.Object({
name: guildSchema.name, name: guildSchema.name,
description: guildSchema.description description: guildSchema.description,
}) })
type BodyPostServiceSchemaType = Static<typeof bodyPostServiceSchema> type BodyPostServiceSchemaType = Static<typeof bodyPostServiceSchema>
const postServiceSchema: FastifySchema = { const postServiceSchema: FastifySchema = {
description: 'Create a guild.', description: "Create a guild.",
tags: ['guilds'] as string[], tags: ["guilds"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
body: bodyPostServiceSchema, body: bodyPostServiceSchema,
response: { response: {
@ -35,16 +35,16 @@ const postServiceSchema: FastifySchema = {
members: Type.Array( members: Type.Array(
Type.Object({ Type.Object({
...memberSchema, ...memberSchema,
user: Type.Object(userPublicWithoutSettingsSchema) user: Type.Object(userPublicWithoutSettingsSchema),
}) }),
) ),
}) }),
}), }),
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const postGuilds: FastifyPluginAsync = async (fastify) => { export const postGuilds: FastifyPluginAsync = async (fastify) => {
@ -53,8 +53,8 @@ export const postGuilds: FastifyPluginAsync = async (fastify) => {
fastify.route<{ fastify.route<{
Body: BodyPostServiceSchemaType Body: BodyPostServiceSchemaType
}>({ }>({
method: 'POST', method: "POST",
url: '/guilds', url: "/guilds",
schema: postServiceSchema, schema: postServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -62,37 +62,37 @@ export const postGuilds: FastifyPluginAsync = async (fastify) => {
} }
const { name, description } = request.body const { name, description } = request.body
const guild = await prisma.guild.create({ const guild = await prisma.guild.create({
data: { name, description: parseStringNullish(description) } data: { name, description: parseStringNullish(description) },
}) })
const channel = await prisma.channel.create({ const channel = await prisma.channel.create({
data: { name: 'general', guildId: guild.id } data: { name: "general", guildId: guild.id },
}) })
const memberCreated = await prisma.member.create({ const memberCreated = await prisma.member.create({
data: { data: {
userId: request.user.current.id, userId: request.user.current.id,
isOwner: true, isOwner: true,
guildId: guild.id guildId: guild.id,
} },
}) })
const members = await Promise.all( const members = await Promise.all(
[memberCreated].map(async (member) => { [memberCreated].map(async (member) => {
const user = await prisma.user.findUnique({ const user = await prisma.user.findUnique({
where: { id: member?.userId } where: { id: member?.userId },
}) })
return { return {
...member, ...member,
user user,
} }
}) }),
) )
reply.statusCode = 201 reply.statusCode = 201
return { return {
guild: { guild: {
...guild, ...guild,
channels: [channel], channels: [channel],
members members,
} },
} }
} },
}) })
} }

View File

@ -1,36 +1,36 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { guildExample } from '#src/models/Guild.js' import { guildExample } from "#src/models/Guild.js"
await test('GET /guilds/public', async (t) => { await test("GET /guilds/public", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'guild').value({ sinon.stub(prisma, "guild").value({
findMany: async () => { findMany: async () => {
return [guildExample] return [guildExample]
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
count: async () => { count: async () => {
return 2 return 2
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: '/guilds/public', url: "/guilds/public",
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)

View File

@ -1,45 +1,45 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { guildSchema } from '#src/models/Guild.js' import { guildSchema } from "#src/models/Guild.js"
import { import {
getPaginationOptions, getPaginationOptions,
queryPaginationSchema queryPaginationSchema,
} from '#src/tools/database/pagination.js' } from "#src/tools/database/pagination.js"
const querySchema = Type.Object({ const querySchema = Type.Object({
search: Type.Optional(Type.String()), search: Type.Optional(Type.String()),
...queryPaginationSchema ...queryPaginationSchema,
}) })
export type QuerySchemaType = Static<typeof querySchema> export type QuerySchemaType = Static<typeof querySchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: description:
'GET all the public guilds (ordered by descending members count).', "GET all the public guilds (ordered by descending members count).",
tags: ['guilds'] as string[], tags: ["guilds"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
querystring: querySchema, querystring: querySchema,
response: { response: {
200: Type.Array( 200: Type.Array(
Type.Object({ Type.Object({
...guildSchema, ...guildSchema,
membersCount: Type.Integer() membersCount: Type.Integer(),
}) }),
), ),
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getGuildsPublic: FastifyPluginAsync = async (fastify) => { export const getGuildsPublic: FastifyPluginAsync = async (fastify) => {
@ -48,8 +48,8 @@ export const getGuildsPublic: FastifyPluginAsync = async (fastify) => {
fastify.route<{ fastify.route<{
Querystring: QuerySchemaType Querystring: QuerySchemaType
}>({ }>({
method: 'GET', method: "GET",
url: '/guilds/public', url: "/guilds/public",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -59,28 +59,28 @@ export const getGuildsPublic: FastifyPluginAsync = async (fastify) => {
...getPaginationOptions(request.query), ...getPaginationOptions(request.query),
orderBy: { orderBy: {
members: { members: {
_count: 'desc' _count: "desc",
} },
}, },
...(request.query.search != null && { ...(request.query.search != null && {
where: { where: {
name: { contains: request.query.search } name: { contains: request.query.search },
} },
}) }),
}) })
const guilds = await Promise.all( const guilds = await Promise.all(
guildsRequest.map(async (guild) => { guildsRequest.map(async (guild) => {
const membersCount = await prisma.member.count({ const membersCount = await prisma.member.count({
where: { guildId: guild.id } where: { guildId: guild.id },
}) })
return { return {
...guild, ...guild,
membersCount membersCount,
} }
}) }),
) )
reply.statusCode = 200 reply.statusCode = 200
return guilds return guilds
} },
}) })
} }

View File

@ -1,9 +1,9 @@
import type { FastifyPluginAsync } from 'fastify' import type { FastifyPluginAsync } from "fastify"
import { usersService } from './users/index.js' import { usersService } from "./users/index.js"
import { guildsService } from './guilds/index.js' import { guildsService } from "./guilds/index.js"
import { channelsService } from './channels/index.js' import { channelsService } from "./channels/index.js"
import { messagesService } from './messages/index.js' import { messagesService } from "./messages/index.js"
export const services: FastifyPluginAsync = async (fastify) => { export const services: FastifyPluginAsync = async (fastify) => {
await fastify.register(channelsService) await fastify.register(channelsService)

View File

@ -1,48 +1,48 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { messageExample } from '#src/models/Message.js' import { messageExample } from "#src/models/Message.js"
import { memberExample } from '#src/models/Member.js' import { memberExample } from "#src/models/Member.js"
import { userExample } from '#src/models/User.js' import { userExample } from "#src/models/User.js"
import { channelExample } from '#src/models/Channel.js' import { channelExample } from "#src/models/Channel.js"
await test('DELETE /messsages/[messageId]', async (t) => { await test("DELETE /messsages/[messageId]", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'message').value({ sinon.stub(prisma, "message").value({
findFirst: async () => { findFirst: async () => {
return { return {
...messageExample, ...messageExample,
channel: channelExample channel: channelExample,
} }
}, },
delete: async () => { delete: async () => {
return messageExample return messageExample
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return { return {
...memberExample, ...memberExample,
user: userExample user: userExample,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'DELETE', method: "DELETE",
url: `/messages/${messageExample.id}`, url: `/messages/${messageExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)
@ -56,73 +56,73 @@ await test('DELETE /messsages/[messageId]', async (t) => {
assert.strictEqual(responseJson.member.user.name, userExample.name) assert.strictEqual(responseJson.member.user.name, userExample.name)
}) })
await t.test('fails if the message is not found', async () => { await t.test("fails if the message is not found", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'message').value({ sinon.stub(prisma, "message").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'DELETE', method: "DELETE",
url: `/messages/${messageExample.id}`, url: `/messages/${messageExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
}) })
await t.test('fails if the member is not found', async () => { await t.test("fails if the member is not found", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
sinon.stub(prisma, 'message').value({ sinon.stub(prisma, "message").value({
findFirst: async () => { findFirst: async () => {
return { return {
...messageExample, ...messageExample,
channel: channelExample channel: channelExample,
} }
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'DELETE', method: "DELETE",
url: `/messages/${messageExample.id}`, url: `/messages/${messageExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
}) })
await t.test('fails if the member is not owner of the message', async () => { await t.test("fails if the member is not owner of the message", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
const randomUserIdOwnerOfMessage = 14 const randomUserIdOwnerOfMessage = 14
sinon.stub(prisma, 'message').value({ sinon.stub(prisma, "message").value({
findFirst: async () => { findFirst: async () => {
return { return {
...messageExample, ...messageExample,
channel: channelExample channel: channelExample,
} }
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return { return {
...memberExample, ...memberExample,
userId: randomUserIdOwnerOfMessage userId: randomUserIdOwnerOfMessage,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'DELETE', method: "DELETE",
url: `/messages/${messageExample.id}`, url: `/messages/${messageExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
assert.strictEqual(response.statusCode, 400) assert.strictEqual(response.statusCode, 400)
}) })

View File

@ -1,53 +1,53 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { messageExample } from '#src/models/Message.js' import { messageExample } from "#src/models/Message.js"
import { memberExample } from '#src/models/Member.js' import { memberExample } from "#src/models/Member.js"
import { userExample } from '#src/models/User.js' import { userExample } from "#src/models/User.js"
import { channelExample } from '#src/models/Channel.js' import { channelExample } from "#src/models/Channel.js"
await test('PUT /messsages/[messageId]', async (t) => { await test("PUT /messsages/[messageId]", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
const newValue = 'some message' const newValue = "some message"
sinon.stub(prisma, 'message').value({ sinon.stub(prisma, "message").value({
findFirst: async () => { findFirst: async () => {
return { return {
...messageExample, ...messageExample,
channel: channelExample channel: channelExample,
} }
}, },
update: async () => { update: async () => {
return { return {
...messageExample, ...messageExample,
value: newValue value: newValue,
} }
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return { return {
...memberExample, ...memberExample,
user: userExample user: userExample,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'PUT', method: "PUT",
url: `/messages/${messageExample.id}`, url: `/messages/${messageExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { value: newValue } payload: { value: newValue },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)
@ -61,83 +61,83 @@ await test('PUT /messsages/[messageId]', async (t) => {
assert.strictEqual(responseJson.member.user.name, userExample.name) assert.strictEqual(responseJson.member.user.name, userExample.name)
}) })
await t.test('fails if the message is not found', async () => { await t.test("fails if the message is not found", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
const newValue = 'some message' const newValue = "some message"
sinon.stub(prisma, 'message').value({ sinon.stub(prisma, "message").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'PUT', method: "PUT",
url: `/messages/${messageExample.id}`, url: `/messages/${messageExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { value: newValue } payload: { value: newValue },
}) })
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
}) })
await t.test('fails if the member is not found', async () => { await t.test("fails if the member is not found", async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
const newValue = 'some message' const newValue = "some message"
sinon.stub(prisma, 'message').value({ sinon.stub(prisma, "message").value({
findFirst: async () => { findFirst: async () => {
return { return {
...messageExample, ...messageExample,
channel: channelExample channel: channelExample,
} }
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'PUT', method: "PUT",
url: `/messages/${messageExample.id}`, url: `/messages/${messageExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { value: newValue } payload: { value: newValue },
}) })
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
}) })
await t.test( await t.test(
'fails if the member is not the owner of the message', "fails if the member is not the owner of the message",
async () => { async () => {
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
const newValue = 'some message' const newValue = "some message"
const randomUserIdOwnerOfMessage = 14 const randomUserIdOwnerOfMessage = 14
sinon.stub(prisma, 'message').value({ sinon.stub(prisma, "message").value({
findFirst: async () => { findFirst: async () => {
return { return {
...messageExample, ...messageExample,
channel: channelExample channel: channelExample,
} }
} },
}) })
sinon.stub(prisma, 'member').value({ sinon.stub(prisma, "member").value({
findFirst: async () => { findFirst: async () => {
return { return {
...memberExample, ...memberExample,
userId: randomUserIdOwnerOfMessage userId: randomUserIdOwnerOfMessage,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'PUT', method: "PUT",
url: `/messages/${messageExample.id}`, url: `/messages/${messageExample.id}`,
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { value: newValue } payload: { value: newValue },
}) })
assert.strictEqual(response.statusCode, 400) assert.strictEqual(response.statusCode, 400)
} },
) )
}) })

View File

@ -1,27 +1,27 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { messageSchema } from '#src/models/Message.js' import { messageSchema } from "#src/models/Message.js"
import { memberSchema } from '#src/models/Member.js' import { memberSchema } from "#src/models/Member.js"
import { userPublicWithoutSettingsSchema } from '#src/models/User.js' import { userPublicWithoutSettingsSchema } from "#src/models/User.js"
const parametersSchema = Type.Object({ const parametersSchema = Type.Object({
messageId: messageSchema.id messageId: messageSchema.id,
}) })
type Parameters = Static<typeof parametersSchema> type Parameters = Static<typeof parametersSchema>
const putServiceSchema: FastifySchema = { const putServiceSchema: FastifySchema = {
description: 'UPDATE a message with its id.', description: "UPDATE a message with its id.",
tags: ['messages'] as string[], tags: ["messages"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
params: parametersSchema, params: parametersSchema,
response: { response: {
@ -29,15 +29,15 @@ const putServiceSchema: FastifySchema = {
...messageSchema, ...messageSchema,
member: Type.Object({ member: Type.Object({
...memberSchema, ...memberSchema,
user: Type.Object(userPublicWithoutSettingsSchema) user: Type.Object(userPublicWithoutSettingsSchema),
}) }),
}), }),
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
404: fastifyErrors[404], 404: fastifyErrors[404],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const deleteMessageService: FastifyPluginAsync = async (fastify) => { export const deleteMessageService: FastifyPluginAsync = async (fastify) => {
@ -46,8 +46,8 @@ export const deleteMessageService: FastifyPluginAsync = async (fastify) => {
fastify.route<{ fastify.route<{
Params: Parameters Params: Parameters
}>({ }>({
method: 'DELETE', method: "DELETE",
url: '/messages/:messageId', url: "/messages/:messageId",
schema: putServiceSchema, schema: putServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -58,16 +58,16 @@ export const deleteMessageService: FastifyPluginAsync = async (fastify) => {
const messageCheck = await prisma.message.findFirst({ const messageCheck = await prisma.message.findFirst({
where: { id: messageId }, where: { id: messageId },
include: { include: {
channel: true channel: true,
} },
}) })
if (messageCheck == null || messageCheck.channel == null) { if (messageCheck == null || messageCheck.channel == null) {
throw fastify.httpErrors.notFound('Message not found') throw fastify.httpErrors.notFound("Message not found")
} }
const member = await prisma.member.findFirst({ const member = await prisma.member.findFirst({
where: { where: {
guildId: messageCheck.channel.guildId, guildId: messageCheck.channel.guildId,
userId: user.current.id userId: user.current.id,
}, },
include: { include: {
user: { user: {
@ -79,23 +79,23 @@ export const deleteMessageService: FastifyPluginAsync = async (fastify) => {
biography: true, biography: true,
website: true, website: true,
createdAt: true, createdAt: true,
updatedAt: true updatedAt: true,
} },
} },
} },
}) })
if (member == null) { if (member == null) {
throw fastify.httpErrors.notFound('Member not found') throw fastify.httpErrors.notFound("Member not found")
} }
if (member.userId !== user.current.id) { if (member.userId !== user.current.id) {
throw fastify.httpErrors.badRequest( throw fastify.httpErrors.badRequest(
'You should be the owner of the message' "You should be the owner of the message",
) )
} }
const message = await prisma.message.delete({ const message = await prisma.message.delete({
where: { where: {
id: messageCheck.id id: messageCheck.id,
} },
}) })
const item = { const item = {
...message, ...message,
@ -103,17 +103,17 @@ export const deleteMessageService: FastifyPluginAsync = async (fastify) => {
...member, ...member,
user: { user: {
...member.user, ...member.user,
email: null email: null,
} },
} },
} }
await fastify.io.emitToMembers({ await fastify.io.emitToMembers({
event: 'messages', event: "messages",
guildId: item.member.guildId, guildId: item.member.guildId,
payload: { action: 'delete', item } payload: { action: "delete", item },
}) })
reply.statusCode = 200 reply.statusCode = 200
return item return item
} },
}) })
} }

View File

@ -1,33 +1,33 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { messageSchema } from '#src/models/Message.js' import { messageSchema } from "#src/models/Message.js"
import { memberSchema } from '#src/models/Member.js' import { memberSchema } from "#src/models/Member.js"
import { userPublicWithoutSettingsSchema } from '#src/models/User.js' import { userPublicWithoutSettingsSchema } from "#src/models/User.js"
const bodyPutServiceSchema = Type.Object({ const bodyPutServiceSchema = Type.Object({
value: messageSchema.value value: messageSchema.value,
}) })
type BodyPutServiceSchemaType = Static<typeof bodyPutServiceSchema> type BodyPutServiceSchemaType = Static<typeof bodyPutServiceSchema>
const parametersSchema = Type.Object({ const parametersSchema = Type.Object({
messageId: messageSchema.id messageId: messageSchema.id,
}) })
type Parameters = Static<typeof parametersSchema> type Parameters = Static<typeof parametersSchema>
const putServiceSchema: FastifySchema = { const putServiceSchema: FastifySchema = {
description: 'UPDATE a message with its id.', description: "UPDATE a message with its id.",
tags: ['messages'] as string[], tags: ["messages"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
body: bodyPutServiceSchema, body: bodyPutServiceSchema,
params: parametersSchema, params: parametersSchema,
@ -36,15 +36,15 @@ const putServiceSchema: FastifySchema = {
...messageSchema, ...messageSchema,
member: Type.Object({ member: Type.Object({
...memberSchema, ...memberSchema,
user: Type.Object(userPublicWithoutSettingsSchema) user: Type.Object(userPublicWithoutSettingsSchema),
}) }),
}), }),
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
404: fastifyErrors[404], 404: fastifyErrors[404],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const putMessageService: FastifyPluginAsync = async (fastify) => { export const putMessageService: FastifyPluginAsync = async (fastify) => {
@ -54,8 +54,8 @@ export const putMessageService: FastifyPluginAsync = async (fastify) => {
Body: BodyPutServiceSchemaType Body: BodyPutServiceSchemaType
Params: Parameters Params: Parameters
}>({ }>({
method: 'PUT', method: "PUT",
url: '/messages/:messageId', url: "/messages/:messageId",
schema: putServiceSchema, schema: putServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -65,18 +65,18 @@ export const putMessageService: FastifyPluginAsync = async (fastify) => {
const { messageId } = params const { messageId } = params
const { value } = body const { value } = body
const messageCheck = await prisma.message.findFirst({ const messageCheck = await prisma.message.findFirst({
where: { id: messageId, type: 'text' }, where: { id: messageId, type: "text" },
include: { include: {
channel: true channel: true,
} },
}) })
if (messageCheck == null || messageCheck.channel == null) { if (messageCheck == null || messageCheck.channel == null) {
throw fastify.httpErrors.notFound('Message not found') throw fastify.httpErrors.notFound("Message not found")
} }
const member = await prisma.member.findFirst({ const member = await prisma.member.findFirst({
where: { where: {
guildId: messageCheck.channel.guildId, guildId: messageCheck.channel.guildId,
userId: user.current.id userId: user.current.id,
}, },
include: { include: {
user: { user: {
@ -88,26 +88,26 @@ export const putMessageService: FastifyPluginAsync = async (fastify) => {
biography: true, biography: true,
website: true, website: true,
createdAt: true, createdAt: true,
updatedAt: true updatedAt: true,
} },
} },
} },
}) })
if (member == null) { if (member == null) {
throw fastify.httpErrors.notFound('Member not found') throw fastify.httpErrors.notFound("Member not found")
} }
if (member.userId !== user.current.id) { if (member.userId !== user.current.id) {
throw fastify.httpErrors.badRequest( throw fastify.httpErrors.badRequest(
'You should be the owner of the message' "You should be the owner of the message",
) )
} }
const message = await prisma.message.update({ const message = await prisma.message.update({
where: { where: {
id: messageCheck.id id: messageCheck.id,
}, },
data: { data: {
value value,
} },
}) })
const item = { const item = {
...message, ...message,
@ -115,17 +115,17 @@ export const putMessageService: FastifyPluginAsync = async (fastify) => {
...member, ...member,
user: { user: {
...member.user, ...member.user,
email: null email: null,
} },
} },
} }
await fastify.io.emitToMembers({ await fastify.io.emitToMembers({
event: 'messages', event: "messages",
guildId: item.member.guildId, guildId: item.member.guildId,
payload: { action: 'update', item } payload: { action: "update", item },
}) })
reply.statusCode = 200 reply.statusCode = 200
return item return item
} },
}) })
} }

View File

@ -1,7 +1,7 @@
import type { FastifyPluginAsync } from 'fastify' import type { FastifyPluginAsync } from "fastify"
import { deleteMessageService } from './[messageId]/delete.js' import { deleteMessageService } from "./[messageId]/delete.js"
import { putMessageService } from './[messageId]/put.js' import { putMessageService } from "./[messageId]/put.js"
export const messagesService: FastifyPluginAsync = async (fastify) => { export const messagesService: FastifyPluginAsync = async (fastify) => {
await fastify.register(putMessageService) await fastify.register(putMessageService)

View File

@ -1,37 +1,37 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { userExample } from '#src/models/User.js' import { userExample } from "#src/models/User.js"
import { userSettingsExample } from '#src/models/UserSettings.js' import { userSettingsExample } from "#src/models/UserSettings.js"
await test('GET /users/[userId]', async (t) => { await test("GET /users/[userId]", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
sinon.stub(prisma, 'guild').value({ sinon.stub(prisma, "guild").value({
findMany: async () => { findMany: async () => {
return [] return []
} },
}) })
sinon.stub(prisma, 'user').value({ sinon.stub(prisma, "user").value({
findUnique: async () => { findUnique: async () => {
return userExample return userExample
} },
}) })
sinon.stub(prisma, 'userSetting').value({ sinon.stub(prisma, "userSetting").value({
findFirst: async () => { findFirst: async () => {
return userSettingsExample return userSettingsExample
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: `/users/${userExample.id}` url: `/users/${userExample.id}`,
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)
@ -39,18 +39,18 @@ await test('GET /users/[userId]', async (t) => {
assert.strictEqual(responseJson.user.name, userExample.name) assert.strictEqual(responseJson.user.name, userExample.name)
}) })
await t.test('fails with not found user', async () => { await t.test("fails with not found user", async () => {
sinon.stub(prisma, 'userSetting').value({ sinon.stub(prisma, "userSetting").value({
findFirst: async () => { findFirst: async () => {
return null return null
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: `/users/1` url: `/users/1`,
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 404) assert.strictEqual(response.statusCode, 404)
assert.strictEqual(responseJson.message, 'User not found') assert.strictEqual(responseJson.message, "User not found")
}) })
}) })

View File

@ -1,51 +1,51 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import { userPublicSchema } from '#src/models/User.js' import { userPublicSchema } from "#src/models/User.js"
import { guildSchema } from '#src/models/Guild.js' import { guildSchema } from "#src/models/Guild.js"
const parametersGetUserSchema = Type.Object({ const parametersGetUserSchema = Type.Object({
userId: userPublicSchema.id userId: userPublicSchema.id,
}) })
type ParametersGetUser = Static<typeof parametersGetUserSchema> type ParametersGetUser = Static<typeof parametersGetUserSchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: 'GET the public user informations with its id', description: "GET the public user informations with its id",
tags: ['users'] as string[], tags: ["users"] as string[],
params: parametersGetUserSchema, params: parametersGetUserSchema,
response: { response: {
200: Type.Object({ 200: Type.Object({
user: Type.Object(userPublicSchema), user: Type.Object(userPublicSchema),
guilds: Type.Array(Type.Object(guildSchema)) guilds: Type.Array(Type.Object(guildSchema)),
}), }),
400: fastifyErrors[400], 400: fastifyErrors[400],
404: fastifyErrors[404], 404: fastifyErrors[404],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getUserById: FastifyPluginAsync = async (fastify) => { export const getUserById: FastifyPluginAsync = async (fastify) => {
await fastify.route<{ await fastify.route<{
Params: ParametersGetUser Params: ParametersGetUser
}>({ }>({
method: 'GET', method: "GET",
url: '/users/:userId', url: "/users/:userId",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
const { userId } = request.params const { userId } = request.params
const settings = await prisma.userSetting.findFirst({ const settings = await prisma.userSetting.findFirst({
where: { userId } where: { userId },
}) })
if (settings == null) { if (settings == null) {
throw fastify.httpErrors.notFound('User not found') throw fastify.httpErrors.notFound("User not found")
} }
const user = await prisma.user.findUnique({ const user = await prisma.user.findUnique({
where: { where: {
id: userId id: userId,
}, },
select: { select: {
id: true, id: true,
@ -57,18 +57,18 @@ export const getUserById: FastifyPluginAsync = async (fastify) => {
biography: true, biography: true,
website: true, website: true,
createdAt: true, createdAt: true,
updatedAt: true updatedAt: true,
} },
}) })
if (user == null) { if (user == null) {
throw fastify.httpErrors.notFound('User not found') throw fastify.httpErrors.notFound("User not found")
} }
reply.statusCode = 200 reply.statusCode = 200
return { return {
user: { user: {
...user, ...user,
email: user.email ?? null, email: user.email ?? null,
settings settings,
}, },
guilds: !settings.isPublicGuilds guilds: !settings.isPublicGuilds
? [] ? []
@ -77,12 +77,12 @@ export const getUserById: FastifyPluginAsync = async (fastify) => {
where: { where: {
members: { members: {
some: { some: {
userId userId,
} },
} },
} },
}) }),
} }
} },
}) })
} }

View File

@ -1,51 +1,51 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { userExample } from '#src/models/User.js' import { userExample } from "#src/models/User.js"
await test('GET /users/confirm-email', async (t) => { await test("GET /users/confirm-email", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
sinon.stub(prisma, 'user').value({ sinon.stub(prisma, "user").value({
findFirst: async () => { findFirst: async () => {
return userExample return userExample
}, },
update: async () => { update: async () => {
return { ...userExample, isConfirmed: true, temporaryToken: null } return { ...userExample, isConfirmed: true, temporaryToken: null }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: '/users/confirm-email', url: "/users/confirm-email",
query: { query: {
temporaryToken: userExample.temporaryToken ?? '' temporaryToken: userExample.temporaryToken ?? "",
} },
}) })
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)
}) })
await t.test('should fails with invalid `temporaryToken`', async () => { await t.test("should fails with invalid `temporaryToken`", async () => {
sinon.stub(prisma, 'user').value({ sinon.stub(prisma, "user").value({
findFirst: async () => { findFirst: async () => {
return null return null
}, },
update: async () => { update: async () => {
return { ...userExample, isConfirmed: true, temporaryToken: null } return { ...userExample, isConfirmed: true, temporaryToken: null }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: '/users/confirm-email', url: "/users/confirm-email",
query: { query: {
temporaryToken: userExample.temporaryToken ?? '' temporaryToken: userExample.temporaryToken ?? "",
} },
}) })
assert.strictEqual(response.statusCode, 403) assert.strictEqual(response.statusCode, 403)
}) })

View File

@ -1,44 +1,44 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import { userSchema } from '#src/models/User.js' import { userSchema } from "#src/models/User.js"
const queryGetConfirmEmailSchema = Type.Object({ const queryGetConfirmEmailSchema = Type.Object({
redirectURI: Type.Optional(Type.String({ format: 'uri-reference' })), redirectURI: Type.Optional(Type.String({ format: "uri-reference" })),
temporaryToken: userSchema.temporaryToken temporaryToken: userSchema.temporaryToken,
}) })
type QueryGetConfirmEmailSchemaType = Static<typeof queryGetConfirmEmailSchema> type QueryGetConfirmEmailSchemaType = Static<typeof queryGetConfirmEmailSchema>
const getConfirmEmailSchema: FastifySchema = { const getConfirmEmailSchema: FastifySchema = {
description: 'Confirm the account of the user.', description: "Confirm the account of the user.",
tags: ['users'] as string[], tags: ["users"] as string[],
querystring: queryGetConfirmEmailSchema, querystring: queryGetConfirmEmailSchema,
response: { response: {
200: Type.String(), 200: Type.String(),
400: fastifyErrors[400], 400: fastifyErrors[400],
403: fastifyErrors[403], 403: fastifyErrors[403],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getConfirmEmail: FastifyPluginAsync = async (fastify) => { export const getConfirmEmail: FastifyPluginAsync = async (fastify) => {
await fastify.route<{ await fastify.route<{
Querystring: QueryGetConfirmEmailSchemaType Querystring: QueryGetConfirmEmailSchemaType
}>({ }>({
method: 'GET', method: "GET",
url: '/users/confirm-email', url: "/users/confirm-email",
schema: getConfirmEmailSchema, schema: getConfirmEmailSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
const { redirectURI, temporaryToken } = request.query const { redirectURI, temporaryToken } = request.query
const user = await prisma.user.findFirst({ const user = await prisma.user.findFirst({
where: { where: {
temporaryToken, temporaryToken,
isConfirmed: false isConfirmed: false,
} },
}) })
if (user == null) { if (user == null) {
throw fastify.httpErrors.forbidden() throw fastify.httpErrors.forbidden()
@ -47,14 +47,14 @@ export const getConfirmEmail: FastifyPluginAsync = async (fastify) => {
where: { id: user.id }, where: { id: user.id },
data: { data: {
temporaryToken: null, temporaryToken: null,
isConfirmed: true isConfirmed: true,
} },
}) })
if (redirectURI == null) { if (redirectURI == null) {
reply.statusCode = 200 reply.statusCode = 200
return 'Success, your email has been confirmed, you can now signin!' return "Success, your email has been confirmed, you can now signin!"
} }
return await reply.redirect(redirectURI) return await reply.redirect(redirectURI)
} },
}) })
} }

View File

@ -1,35 +1,35 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
await test('GET /users/current', async (t) => { await test("GET /users/current", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds', async () => { await t.test("succeeds", async () => {
const { accessToken, user } = await authenticateUserTest() const { accessToken, user } = await authenticateUserTest()
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: '/users/current', url: "/users/current",
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)
assert.strictEqual(responseJson.user.name, user.name) assert.strictEqual(responseJson.user.name, user.name)
assert.deepStrictEqual(responseJson.user.strategies, ['Local']) assert.deepStrictEqual(responseJson.user.strategies, ["Local"])
}) })
await t.test('fails with unauthenticated user', async () => { await t.test("fails with unauthenticated user", async () => {
const response = await application.inject({ const response = await application.inject({
method: 'GET', method: "GET",
url: '/users/current' url: "/users/current",
}) })
assert.strictEqual(response.statusCode, 401) assert.strictEqual(response.statusCode, 401)
}) })

View File

@ -1,21 +1,21 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
await test('PUT /users/current', async (t) => { await test("PUT /users/current", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test('succeeds with valid accessToken and valid name', async () => { await t.test("succeeds with valid accessToken and valid name", async () => {
const newName = 'John Doe' const newName = "John Doe"
const { accessToken, user, userStubValue } = await authenticateUserTest() const { accessToken, user, userStubValue } = await authenticateUserTest()
sinon.stub(prisma, 'user').value({ sinon.stub(prisma, "user").value({
...userStubValue, ...userStubValue,
findFirst: async () => { findFirst: async () => {
return null return null
@ -23,29 +23,29 @@ await test('PUT /users/current', async (t) => {
update: async () => { update: async () => {
return { return {
...user, ...user,
name: newName name: newName,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'PUT', method: "PUT",
url: '/users/current', url: "/users/current",
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { payload: {
name: newName name: newName,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)
assert.strictEqual(responseJson.user.name, newName) assert.strictEqual(responseJson.user.name, newName)
}) })
await t.test('succeeds and only update the status', async () => { await t.test("succeeds and only update the status", async () => {
const newStatus = '👀 Working on secret projects...' const newStatus = "👀 Working on secret projects..."
const { accessToken, user, userStubValue } = await authenticateUserTest() const { accessToken, user, userStubValue } = await authenticateUserTest()
sinon.stub(prisma, 'user').value({ sinon.stub(prisma, "user").value({
...userStubValue, ...userStubValue,
findFirst: async () => { findFirst: async () => {
return null return null
@ -53,19 +53,19 @@ await test('PUT /users/current', async (t) => {
update: async () => { update: async () => {
return { return {
...user, ...user,
status: newStatus status: newStatus,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'PUT', method: "PUT",
url: '/users/current', url: "/users/current",
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { payload: {
status: newStatus status: newStatus,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)
@ -73,48 +73,48 @@ await test('PUT /users/current', async (t) => {
assert.strictEqual(responseJson.user.status, newStatus) assert.strictEqual(responseJson.user.status, newStatus)
}) })
await t.test('fails with name already used', async () => { await t.test("fails with name already used", async () => {
const newName = 'John Doe' const newName = "John Doe"
const { accessToken, user, userStubValue } = await authenticateUserTest() const { accessToken, user, userStubValue } = await authenticateUserTest()
sinon.stub(prisma, 'user').value({ sinon.stub(prisma, "user").value({
...userStubValue, ...userStubValue,
findFirst: async () => { findFirst: async () => {
return user return user
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'PUT', method: "PUT",
url: '/users/current', url: "/users/current",
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { payload: {
name: newName name: newName,
} },
}) })
assert.strictEqual(response.statusCode, 400) assert.strictEqual(response.statusCode, 400)
}) })
await t.test('fails with invalid website url', async () => { await t.test("fails with invalid website url", async () => {
const newWebsite = 'invalid website url' const newWebsite = "invalid website url"
const { accessToken } = await authenticateUserTest() const { accessToken } = await authenticateUserTest()
const response = await application.inject({ const response = await application.inject({
method: 'PUT', method: "PUT",
url: '/users/current', url: "/users/current",
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { payload: {
website: newWebsite website: newWebsite,
} },
}) })
assert.strictEqual(response.statusCode, 400) assert.strictEqual(response.statusCode, 400)
}) })
await t.test('succeeds with valid website url', async () => { await t.test("succeeds with valid website url", async () => {
const newWebsite = 'https://somerandomwebsite.com' const newWebsite = "https://somerandomwebsite.com"
const { accessToken, user, userStubValue } = await authenticateUserTest() const { accessToken, user, userStubValue } = await authenticateUserTest()
sinon.stub(prisma, 'user').value({ sinon.stub(prisma, "user").value({
...userStubValue, ...userStubValue,
findFirst: async () => { findFirst: async () => {
return null return null
@ -122,19 +122,19 @@ await test('PUT /users/current', async (t) => {
update: async () => { update: async () => {
return { return {
...user, ...user,
website: newWebsite website: newWebsite,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'PUT', method: "PUT",
url: '/users/current', url: "/users/current",
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: { payload: {
website: newWebsite website: newWebsite,
} },
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)

View File

@ -1,33 +1,33 @@
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { userCurrentSchema } from '#src/models/User.js' import { userCurrentSchema } from "#src/models/User.js"
const getCurrentUserSchema: FastifySchema = { const getCurrentUserSchema: FastifySchema = {
description: 'GET the current connected user', description: "GET the current connected user",
tags: ['users'] as string[], tags: ["users"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
response: { response: {
200: userCurrentSchema, 200: userCurrentSchema,
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getCurrentUser: FastifyPluginAsync = async (fastify) => { export const getCurrentUser: FastifyPluginAsync = async (fastify) => {
await fastify.register(authenticateUser) await fastify.register(authenticateUser)
fastify.route({ fastify.route({
method: 'GET', method: "GET",
url: '/users/current', url: "/users/current",
schema: getCurrentUserSchema, schema: getCurrentUserSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -35,16 +35,16 @@ export const getCurrentUser: FastifyPluginAsync = async (fastify) => {
} }
const { user } = request const { user } = request
const settings = await prisma.userSetting.findFirst({ const settings = await prisma.userSetting.findFirst({
where: { userId: user.current.id } where: { userId: user.current.id },
}) })
const OAuths = await prisma.oAuth.findMany({ const OAuths = await prisma.oAuth.findMany({
where: { userId: user.current.id } where: { userId: user.current.id },
}) })
const strategies = OAuths.map((oauth) => { const strategies = OAuths.map((oauth) => {
return oauth.provider return oauth.provider
}) })
if (user.current.password != null) { if (user.current.password != null) {
strategies.push('Local') strategies.push("Local")
} }
reply.statusCode = 200 reply.statusCode = 200
return { return {
@ -52,9 +52,9 @@ export const getCurrentUser: FastifyPluginAsync = async (fastify) => {
...user.current, ...user.current,
settings, settings,
currentStrategy: user.currentStrategy, currentStrategy: user.currentStrategy,
strategies strategies,
} },
} }
} },
}) })
} }

View File

@ -1,34 +1,34 @@
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import fastifyMultipart from '@fastify/multipart' import fastifyMultipart from "@fastify/multipart"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { uploadFile } from '#src/tools/utils/uploadFile.js' import { uploadFile } from "#src/tools/utils/uploadFile.js"
const putServiceSchema: FastifySchema = { const putServiceSchema: FastifySchema = {
description: 'Edit the current connected user logo', description: "Edit the current connected user logo",
tags: ['users'] as string[], tags: ["users"] as string[],
consumes: ['multipart/form-data'] as string[], consumes: ["multipart/form-data"] as string[],
produces: ['application/json'] as string[], produces: ["application/json"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
response: { response: {
200: Type.Object({ 200: Type.Object({
user: Type.Object({ user: Type.Object({
logo: Type.String() logo: Type.String(),
}) }),
}), }),
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
431: fastifyErrors[431], 431: fastifyErrors[431],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const putCurrentUserLogo: FastifyPluginAsync = async (fastify) => { export const putCurrentUserLogo: FastifyPluginAsync = async (fastify) => {
@ -37,8 +37,8 @@ export const putCurrentUserLogo: FastifyPluginAsync = async (fastify) => {
await fastify.register(fastifyMultipart) await fastify.register(fastifyMultipart)
fastify.route({ fastify.route({
method: 'PUT', method: "PUT",
url: '/users/current/logo', url: "/users/current/logo",
schema: putServiceSchema, schema: putServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -47,18 +47,18 @@ export const putCurrentUserLogo: FastifyPluginAsync = async (fastify) => {
const file = await uploadFile({ const file = await uploadFile({
fastify, fastify,
request, request,
folderInUploadsFolder: 'users' folderInUploadsFolder: "users",
}) })
await prisma.user.update({ await prisma.user.update({
where: { id: request.user.current.id }, where: { id: request.user.current.id },
data: { logo: file.pathToStoreInDatabase } data: { logo: file.pathToStoreInDatabase },
}) })
reply.statusCode = 200 reply.statusCode = 200
return { return {
user: { user: {
logo: file.pathToStoreInDatabase logo: file.pathToStoreInDatabase,
} },
} }
} },
}) })
} }

View File

@ -1,41 +1,41 @@
import { randomUUID } from 'node:crypto' import { randomUUID } from "node:crypto"
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { userCurrentSchema, userSchema } from '#src/models/User.js' import { userCurrentSchema, userSchema } from "#src/models/User.js"
import { sendEmail } from '#src/tools/email/sendEmail.js' import { sendEmail } from "#src/tools/email/sendEmail.js"
import { API_URL } from '#src/tools/configurations.js' import { API_URL } from "#src/tools/configurations.js"
import type { Language, Theme } from '#src/models/UserSettings.js' import type { Language, Theme } from "#src/models/UserSettings.js"
import { parseStringNullish } from '#src/tools/utils/parseStringNullish.js' import { parseStringNullish } from "#src/tools/utils/parseStringNullish.js"
const bodyPutServiceSchema = Type.Object({ const bodyPutServiceSchema = Type.Object({
name: Type.Optional(userSchema.name), name: Type.Optional(userSchema.name),
email: Type.Optional(Type.Union([userSchema.email, Type.Null()])), email: Type.Optional(Type.Union([userSchema.email, Type.Null()])),
status: Type.Optional(Type.Union([userSchema.status, Type.Null()])), status: Type.Optional(Type.Union([userSchema.status, Type.Null()])),
biography: Type.Optional(Type.Union([userSchema.biography, Type.Null()])), biography: Type.Optional(Type.Union([userSchema.biography, Type.Null()])),
website: Type.Optional(Type.Union([userSchema.website, Type.Null()])) website: Type.Optional(Type.Union([userSchema.website, Type.Null()])),
}) })
type BodyPutServiceSchemaType = Static<typeof bodyPutServiceSchema> type BodyPutServiceSchemaType = Static<typeof bodyPutServiceSchema>
const queryPutCurrentUserSchema = Type.Object({ const queryPutCurrentUserSchema = Type.Object({
redirectURI: Type.Optional(Type.String({ format: 'uri-reference' })) redirectURI: Type.Optional(Type.String({ format: "uri-reference" })),
}) })
type QueryPutCurrentUserSchemaType = Static<typeof queryPutCurrentUserSchema> type QueryPutCurrentUserSchemaType = Static<typeof queryPutCurrentUserSchema>
const putServiceSchema: FastifySchema = { const putServiceSchema: FastifySchema = {
description: 'Edit the current connected user information', description: "Edit the current connected user information",
tags: ['users'] as string[], tags: ["users"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
body: bodyPutServiceSchema, body: bodyPutServiceSchema,
querystring: queryPutCurrentUserSchema, querystring: queryPutCurrentUserSchema,
@ -44,8 +44,8 @@ const putServiceSchema: FastifySchema = {
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const putCurrentUser: FastifyPluginAsync = async (fastify) => { export const putCurrentUser: FastifyPluginAsync = async (fastify) => {
@ -55,8 +55,8 @@ export const putCurrentUser: FastifyPluginAsync = async (fastify) => {
Body: BodyPutServiceSchemaType Body: BodyPutServiceSchemaType
Querystring: QueryPutCurrentUserSchemaType Querystring: QueryPutCurrentUserSchemaType
}>({ }>({
method: 'PUT', method: "PUT",
url: '/users/current', url: "/users/current",
schema: putServiceSchema, schema: putServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -68,59 +68,59 @@ export const putCurrentUser: FastifyPluginAsync = async (fastify) => {
where: { where: {
OR: [ OR: [
...(email != null ? [{ email }] : [{}]), ...(email != null ? [{ email }] : [{}]),
...(name != null ? [{ name }] : [{}]) ...(name != null ? [{ name }] : [{}]),
], ],
AND: [{ id: { not: request.user.current.id } }] AND: [{ id: { not: request.user.current.id } }],
} },
}) })
if (userValidation != null) { if (userValidation != null) {
throw fastify.httpErrors.badRequest( throw fastify.httpErrors.badRequest(
'body.email or body.name already taken.' "body.email or body.name already taken.",
) )
} }
const settings = await prisma.userSetting.findFirst({ const settings = await prisma.userSetting.findFirst({
where: { userId: request.user.current.id } where: { userId: request.user.current.id },
}) })
if (settings == null) { if (settings == null) {
throw fastify.httpErrors.internalServerError() throw fastify.httpErrors.internalServerError()
} }
const OAuths = await prisma.oAuth.findMany({ const OAuths = await prisma.oAuth.findMany({
where: { userId: request.user.current.id } where: { userId: request.user.current.id },
}) })
const strategies = OAuths.map((oauth) => { const strategies = OAuths.map((oauth) => {
return oauth.provider return oauth.provider
}) })
if (request.user.current.password != null) { if (request.user.current.password != null) {
strategies.push('Local') strategies.push("Local")
} }
if (email === null && strategies.includes('Local')) { if (email === null && strategies.includes("Local")) {
throw fastify.httpErrors.badRequest( throw fastify.httpErrors.badRequest(
'You must have an email to sign in.' "You must have an email to sign in.",
) )
} }
if (email != null && email !== request.user.current.email) { if (email != null && email !== request.user.current.email) {
await prisma.refreshToken.deleteMany({ await prisma.refreshToken.deleteMany({
where: { where: {
userId: request.user.current.id userId: request.user.current.id,
} },
}) })
const temporaryToken = randomUUID() const temporaryToken = randomUUID()
const redirectQuery = const redirectQuery =
redirectURI != null ? `&redirectURI=${redirectURI}` : '' redirectURI != null ? `&redirectURI=${redirectURI}` : ""
await sendEmail({ await sendEmail({
type: 'confirm-email', type: "confirm-email",
email, email,
url: `${API_URL}/users/confirm-email?temporaryToken=${temporaryToken}${redirectQuery}`, url: `${API_URL}/users/confirm-email?temporaryToken=${temporaryToken}${redirectQuery}`,
language: settings.language as Language, language: settings.language as Language,
theme: settings.theme as Theme theme: settings.theme as Theme,
}) })
await prisma.user.update({ await prisma.user.update({
where: { id: request.user.current.id }, where: { id: request.user.current.id },
data: { data: {
email, email,
temporaryToken, temporaryToken,
isConfirmed: false isConfirmed: false,
} },
}) })
} }
const user = await prisma.user.update({ const user = await prisma.user.update({
@ -130,20 +130,20 @@ export const putCurrentUser: FastifyPluginAsync = async (fastify) => {
status: parseStringNullish(request.user.current.status, status), status: parseStringNullish(request.user.current.status, status),
biography: parseStringNullish( biography: parseStringNullish(
request.user.current.biography, request.user.current.biography,
biography biography,
), ),
website: parseStringNullish(request.user.current.website, website) website: parseStringNullish(request.user.current.website, website),
} },
}) })
await fastify.io.emitToAuthorizedUsers({ await fastify.io.emitToAuthorizedUsers({
event: 'users', event: "users",
isAuthorizedCallback: () => { isAuthorizedCallback: () => {
return true return true
}, },
payload: { payload: {
action: 'update', action: "update",
item: user item: user,
} },
}) })
reply.statusCode = 200 reply.statusCode = 200
return { return {
@ -151,9 +151,9 @@ export const putCurrentUser: FastifyPluginAsync = async (fastify) => {
...user, ...user,
settings, settings,
currentStrategy: request.user.currentStrategy, currentStrategy: request.user.currentStrategy,
strategies strategies,
} },
} }
} },
}) })
} }

View File

@ -1,29 +1,29 @@
import test from 'node:test' import test from "node:test"
import assert from 'node:assert/strict' import assert from "node:assert/strict"
import sinon from 'sinon' import sinon from "sinon"
import { application } from '#src/application.js' import { application } from "#src/application.js"
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js' import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { userSettingsExample } from '#src/models/UserSettings.js' import { userSettingsExample } from "#src/models/UserSettings.js"
await test('PUT /users/current/settings', async (t) => { await test("PUT /users/current/settings", async (t) => {
t.afterEach(() => { t.afterEach(() => {
sinon.restore() sinon.restore()
}) })
await t.test( await t.test(
'succeeds and edit the theme, language, isPublicEmail and isPublicGuilds', "succeeds and edit the theme, language, isPublicEmail and isPublicGuilds",
async () => { async () => {
const newSettings = { const newSettings = {
theme: 'light', theme: "light",
language: 'fr', language: "fr",
isPublicEmail: true, isPublicEmail: true,
isPublicGuilds: true isPublicGuilds: true,
} }
const { accessToken, userSettingStubValue } = await authenticateUserTest() const { accessToken, userSettingStubValue } = await authenticateUserTest()
sinon.stub(prisma, 'userSetting').value({ sinon.stub(prisma, "userSetting").value({
...userSettingStubValue, ...userSettingStubValue,
findFirst: async () => { findFirst: async () => {
return userSettingsExample return userSettingsExample
@ -31,17 +31,17 @@ await test('PUT /users/current/settings', async (t) => {
update: async () => { update: async () => {
return { return {
...userSettingsExample, ...userSettingsExample,
...newSettings ...newSettings,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'PUT', method: "PUT",
url: '/users/current/settings', url: "/users/current/settings",
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: newSettings payload: newSettings,
}) })
const responseJson = response.json() const responseJson = response.json()
assert.strictEqual(response.statusCode, 200) assert.strictEqual(response.statusCode, 200)
@ -49,21 +49,21 @@ await test('PUT /users/current/settings', async (t) => {
assert.strictEqual(responseJson.settings.language, newSettings.language) assert.strictEqual(responseJson.settings.language, newSettings.language)
assert.strictEqual( assert.strictEqual(
responseJson.settings.isPublicEmail, responseJson.settings.isPublicEmail,
newSettings.isPublicEmail newSettings.isPublicEmail,
) )
assert.strictEqual( assert.strictEqual(
responseJson.settings.isPublicGuilds, responseJson.settings.isPublicGuilds,
newSettings.isPublicGuilds newSettings.isPublicGuilds,
) )
} },
) )
await t.test('fails with invalid language', async () => { await t.test("fails with invalid language", async () => {
const newSettings = { const newSettings = {
language: 'somerandomlanguage' language: "somerandomlanguage",
} }
const { accessToken, userSettingStubValue } = await authenticateUserTest() const { accessToken, userSettingStubValue } = await authenticateUserTest()
sinon.stub(prisma, 'userSetting').value({ sinon.stub(prisma, "userSetting").value({
...userSettingStubValue, ...userSettingStubValue,
findFirst: async () => { findFirst: async () => {
return userSettingsExample return userSettingsExample
@ -71,17 +71,17 @@ await test('PUT /users/current/settings', async (t) => {
update: async () => { update: async () => {
return { return {
...userSettingsExample, ...userSettingsExample,
...newSettings ...newSettings,
} }
} },
}) })
const response = await application.inject({ const response = await application.inject({
method: 'PUT', method: "PUT",
url: '/users/current/settings', url: "/users/current/settings",
headers: { headers: {
authorization: `Bearer ${accessToken}` authorization: `Bearer ${accessToken}`,
}, },
payload: newSettings payload: newSettings,
}) })
assert.strictEqual(response.statusCode, 400) assert.strictEqual(response.statusCode, 400)
}) })

View File

@ -1,39 +1,39 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { userSettingsSchema } from '#src/models/UserSettings.js' import { userSettingsSchema } from "#src/models/UserSettings.js"
const bodyPutServiceSchema = Type.Object({ const bodyPutServiceSchema = Type.Object({
theme: Type.Optional(userSettingsSchema.theme), theme: Type.Optional(userSettingsSchema.theme),
language: Type.Optional(userSettingsSchema.language), language: Type.Optional(userSettingsSchema.language),
isPublicEmail: Type.Optional(userSettingsSchema.isPublicEmail), isPublicEmail: Type.Optional(userSettingsSchema.isPublicEmail),
isPublicGuilds: Type.Optional(userSettingsSchema.isPublicGuilds) isPublicGuilds: Type.Optional(userSettingsSchema.isPublicGuilds),
}) })
type BodyPutServiceSchemaType = Static<typeof bodyPutServiceSchema> type BodyPutServiceSchemaType = Static<typeof bodyPutServiceSchema>
const putServiceSchema: FastifySchema = { const putServiceSchema: FastifySchema = {
description: 'Edit the current connected user settings', description: "Edit the current connected user settings",
tags: ['users'] as string[], tags: ["users"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
body: bodyPutServiceSchema, body: bodyPutServiceSchema,
response: { response: {
200: Type.Object({ 200: Type.Object({
settings: Type.Object(userSettingsSchema) settings: Type.Object(userSettingsSchema),
}), }),
400: fastifyErrors[400], 400: fastifyErrors[400],
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const putCurrentUserSettings: FastifyPluginAsync = async (fastify) => { export const putCurrentUserSettings: FastifyPluginAsync = async (fastify) => {
@ -42,8 +42,8 @@ export const putCurrentUserSettings: FastifyPluginAsync = async (fastify) => {
fastify.route<{ fastify.route<{
Body: BodyPutServiceSchemaType Body: BodyPutServiceSchemaType
}>({ }>({
method: 'PUT', method: "PUT",
url: '/users/current/settings', url: "/users/current/settings",
schema: putServiceSchema, schema: putServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -51,7 +51,7 @@ export const putCurrentUserSettings: FastifyPluginAsync = async (fastify) => {
} }
const { theme, language, isPublicEmail, isPublicGuilds } = request.body const { theme, language, isPublicEmail, isPublicGuilds } = request.body
const settings = await prisma.userSetting.findFirst({ const settings = await prisma.userSetting.findFirst({
where: { userId: request.user.current.id } where: { userId: request.user.current.id },
}) })
if (settings == null) { if (settings == null) {
throw fastify.httpErrors.internalServerError() throw fastify.httpErrors.internalServerError()
@ -62,11 +62,11 @@ export const putCurrentUserSettings: FastifyPluginAsync = async (fastify) => {
theme: theme ?? settings.theme, theme: theme ?? settings.theme,
language: language ?? settings.language, language: language ?? settings.language,
isPublicEmail: isPublicEmail ?? settings.isPublicEmail, isPublicEmail: isPublicEmail ?? settings.isPublicEmail,
isPublicGuilds: isPublicGuilds ?? settings.isPublicGuilds isPublicGuilds: isPublicGuilds ?? settings.isPublicGuilds,
} },
}) })
reply.statusCode = 200 reply.statusCode = 200
return { settings: newSettings } return { settings: newSettings }
} },
}) })
} }

View File

@ -1,31 +1,31 @@
import type { FastifyPluginAsync } from 'fastify' import type { FastifyPluginAsync } from "fastify"
import { postSignupUser } from './signup/post.js' import { postSignupUser } from "./signup/post.js"
import { getConfirmEmail } from './confirm-email/get.js' import { getConfirmEmail } from "./confirm-email/get.js"
import { postSigninUser } from './signin/post.js' import { postSigninUser } from "./signin/post.js"
import { postSignoutUser } from './signout/post.js' import { postSignoutUser } from "./signout/post.js"
import { deleteSignoutUser } from './signout/delete.js' import { deleteSignoutUser } from "./signout/delete.js"
import { postRefreshTokenUser } from './refresh-token/post.js' import { postRefreshTokenUser } from "./refresh-token/post.js"
import { putResetPasswordUser } from './reset-password/put.js' import { putResetPasswordUser } from "./reset-password/put.js"
import { postResetPasswordUser } from './reset-password/post.js' import { postResetPasswordUser } from "./reset-password/post.js"
import { getCurrentUser } from './current/get.js' import { getCurrentUser } from "./current/get.js"
import { putCurrentUser } from './current/put.js' import { putCurrentUser } from "./current/put.js"
import { putCurrentUserSettings } from './current/settings/put.js' import { putCurrentUserSettings } from "./current/settings/put.js"
import { getUserById } from './[userId]/get.js' import { getUserById } from "./[userId]/get.js"
import { putCurrentUserLogo } from './current/logo/put.js' import { putCurrentUserLogo } from "./current/logo/put.js"
import { getSigninDiscordOAuth2Service } from './oauth2/discord/signin/get.js' import { getSigninDiscordOAuth2Service } from "./oauth2/discord/signin/get.js"
import { getCallbackDiscordOAuth2Service } from './oauth2/discord/callback/get.js' import { getCallbackDiscordOAuth2Service } from "./oauth2/discord/callback/get.js"
import { getSigninGoogleOAuth2Service } from './oauth2/google/signin/get.js' import { getSigninGoogleOAuth2Service } from "./oauth2/google/signin/get.js"
import { getCallbackGoogleOAuth2Service } from './oauth2/google/callback/get.js' import { getCallbackGoogleOAuth2Service } from "./oauth2/google/callback/get.js"
import { getSigninGitHubOAuth2Service } from './oauth2/github/signin/get.js' import { getSigninGitHubOAuth2Service } from "./oauth2/github/signin/get.js"
import { getCallbackGitHubOAuth2Service } from './oauth2/github/callback/get.js' import { getCallbackGitHubOAuth2Service } from "./oauth2/github/callback/get.js"
import { deleteProviderService } from './oauth2/[provider]/delete.js' import { deleteProviderService } from "./oauth2/[provider]/delete.js"
import { getCallbackAddStrategyDiscordOAuth2Service } from './oauth2/discord/callback-add-strategy/get.js' import { getCallbackAddStrategyDiscordOAuth2Service } from "./oauth2/discord/callback-add-strategy/get.js"
import { getAddStrategyDiscordOAuth2Service } from './oauth2/discord/add-strategy/get.js' import { getAddStrategyDiscordOAuth2Service } from "./oauth2/discord/add-strategy/get.js"
import { getAddStrategyGitHubOAuth2Service } from './oauth2/github/add-strategy/get.js' import { getAddStrategyGitHubOAuth2Service } from "./oauth2/github/add-strategy/get.js"
import { getCallbackAddStrategyGitHubOAuth2Service } from './oauth2/github/callback-add-strategy/get.js' import { getCallbackAddStrategyGitHubOAuth2Service } from "./oauth2/github/callback-add-strategy/get.js"
import { getCallbackAddStrategyGoogleOAuth2Service } from './oauth2/google/callback-add-strategy/get.js' import { getCallbackAddStrategyGoogleOAuth2Service } from "./oauth2/google/callback-add-strategy/get.js"
import { getAddStrategyGoogleOAuth2Service } from './oauth2/google/add-strategy/get.js' import { getAddStrategyGoogleOAuth2Service } from "./oauth2/google/add-strategy/get.js"
export const usersService: FastifyPluginAsync = async (fastify) => { export const usersService: FastifyPluginAsync = async (fastify) => {
await fastify.register(postSignupUser) await fastify.register(postSignupUser)

View File

@ -1,25 +1,25 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import prisma from '#src/tools/database/prisma.js' import prisma from "#src/tools/database/prisma.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
import { oauthSchema } from '#src/models/OAuth.js' import { oauthSchema } from "#src/models/OAuth.js"
const parametersSchema = Type.Object({ const parametersSchema = Type.Object({
provider: oauthSchema.provider provider: oauthSchema.provider,
}) })
type Parameters = Static<typeof parametersSchema> type Parameters = Static<typeof parametersSchema>
const deleteServiceSchema: FastifySchema = { const deleteServiceSchema: FastifySchema = {
description: 'DELETE a provider to authenticate with for a user.', description: "DELETE a provider to authenticate with for a user.",
tags: ['oauth2'] as string[], tags: ["oauth2"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
params: parametersSchema, params: parametersSchema,
response: { response: {
@ -28,8 +28,8 @@ const deleteServiceSchema: FastifySchema = {
401: fastifyErrors[401], 401: fastifyErrors[401],
403: fastifyErrors[403], 403: fastifyErrors[403],
404: fastifyErrors[404], 404: fastifyErrors[404],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const deleteProviderService: FastifyPluginAsync = async (fastify) => { export const deleteProviderService: FastifyPluginAsync = async (fastify) => {
@ -38,8 +38,8 @@ export const deleteProviderService: FastifyPluginAsync = async (fastify) => {
fastify.route<{ fastify.route<{
Params: Parameters Params: Parameters
}>({ }>({
method: 'DELETE', method: "DELETE",
url: '/users/oauth2/:provider', url: "/users/oauth2/:provider",
schema: deleteServiceSchema, schema: deleteServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -48,31 +48,31 @@ export const deleteProviderService: FastifyPluginAsync = async (fastify) => {
const { user, params } = request const { user, params } = request
const { provider } = params const { provider } = params
const OAuths = await prisma.oAuth.findMany({ const OAuths = await prisma.oAuth.findMany({
where: { userId: user.current.id } where: { userId: user.current.id },
}) })
const strategies = OAuths.map((oauth) => { const strategies = OAuths.map((oauth) => {
return oauth.provider return oauth.provider
}) })
if (user.current.password != null) { if (user.current.password != null) {
strategies.push('Local') strategies.push("Local")
} }
const oauthProvider = OAuths.find((oauth) => { const oauthProvider = OAuths.find((oauth) => {
return oauth.provider === provider return oauth.provider === provider
}) })
if (oauthProvider == null) { if (oauthProvider == null) {
throw fastify.httpErrors.notFound('You are not using this provider') throw fastify.httpErrors.notFound("You are not using this provider")
} }
const hasOthersWayToAuthenticate = strategies.length >= 2 const hasOthersWayToAuthenticate = strategies.length >= 2
if (!hasOthersWayToAuthenticate) { if (!hasOthersWayToAuthenticate) {
throw fastify.httpErrors.badRequest( throw fastify.httpErrors.badRequest(
"You can't delete your only way to authenticate" "You can't delete your only way to authenticate",
) )
} }
const oauthProviderDelete = await prisma.oAuth.delete({ const oauthProviderDelete = await prisma.oAuth.delete({
where: { id: oauthProvider.id } where: { id: oauthProvider.id },
}) })
reply.statusCode = 200 reply.statusCode = 200
return oauthProviderDelete return oauthProviderDelete
} },
}) })
} }

View File

@ -1,15 +1,15 @@
import querystring from 'node:querystring' import querystring from "node:querystring"
import axios from 'axios' import axios from "axios"
import { OAuthStrategy } from '#src/tools/utils/OAuthStrategy.js' import { OAuthStrategy } from "#src/tools/utils/OAuthStrategy.js"
export const DISCORD_PROVIDER = 'Discord' export const DISCORD_PROVIDER = "Discord"
export const DISCORD_BASE_URL = 'https://discord.com/api/v10' export const DISCORD_BASE_URL = "https://discord.com/api/v10"
export const DISCORD_CLIENT_ID = export const DISCORD_CLIENT_ID =
process.env['DISCORD_CLIENT_ID'] ?? 'DISCORD_CLIENT_ID' process.env["DISCORD_CLIENT_ID"] ?? "DISCORD_CLIENT_ID"
export const DISCORD_CLIENT_SECRET = export const DISCORD_CLIENT_SECRET =
process.env['DISCORD_CLIENT_SECRET'] ?? 'DISCORD_CLIENT_SECRET' process.env["DISCORD_CLIENT_SECRET"] ?? "DISCORD_CLIENT_SECRET"
export const discordStrategy = new OAuthStrategy(DISCORD_PROVIDER) export const discordStrategy = new OAuthStrategy(DISCORD_PROVIDER)
export interface DiscordUser { export interface DiscordUser {
@ -30,31 +30,31 @@ export interface DiscordTokens {
export const getDiscordUserData = async ( export const getDiscordUserData = async (
code: string, code: string,
redirectURI: string redirectURI: string,
): Promise<DiscordUser> => { ): Promise<DiscordUser> => {
const { data: tokens } = await axios.post<DiscordTokens>( const { data: tokens } = await axios.post<DiscordTokens>(
`${DISCORD_BASE_URL}/oauth2/token`, `${DISCORD_BASE_URL}/oauth2/token`,
querystring.stringify({ querystring.stringify({
client_id: DISCORD_CLIENT_ID, client_id: DISCORD_CLIENT_ID,
client_secret: DISCORD_CLIENT_SECRET, client_secret: DISCORD_CLIENT_SECRET,
grant_type: 'authorization_code', grant_type: "authorization_code",
code, code,
redirect_uri: redirectURI, redirect_uri: redirectURI,
scope: 'identify' scope: "identify",
}), }),
{ {
headers: { headers: {
'Content-Type': 'application/x-www-form-urlencoded' "Content-Type": "application/x-www-form-urlencoded",
} },
} },
) )
const { data: discordUser } = await axios.get<DiscordUser>( const { data: discordUser } = await axios.get<DiscordUser>(
`${DISCORD_BASE_URL}/users/@me`, `${DISCORD_BASE_URL}/users/@me`,
{ {
headers: { headers: {
Authorization: `${tokens.token_type} ${tokens.access_token}` Authorization: `${tokens.token_type} ${tokens.access_token}`,
} },
} },
) )
return discordUser return discordUser
} }

View File

@ -1,44 +1,44 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import { API_URL } from '#src/tools/configurations.js' import { API_URL } from "#src/tools/configurations.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import { DISCORD_BASE_URL, DISCORD_CLIENT_ID } from '../__utils__/utils.js' import { DISCORD_BASE_URL, DISCORD_CLIENT_ID } from "../__utils__/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
const querySchema = Type.Object({ const querySchema = Type.Object({
redirectURI: Type.String({ format: 'uri-reference' }) redirectURI: Type.String({ format: "uri-reference" }),
}) })
type QuerySchemaType = Static<typeof querySchema> type QuerySchemaType = Static<typeof querySchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: 'Discord OAuth2 - add-strategy', description: "Discord OAuth2 - add-strategy",
tags: ['oauth2'] as string[], tags: ["oauth2"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
querystring: querySchema, querystring: querySchema,
response: { response: {
200: Type.String(), 200: Type.String(),
400: fastifyErrors[400], 400: fastifyErrors[400],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getAddStrategyDiscordOAuth2Service: FastifyPluginAsync = async ( export const getAddStrategyDiscordOAuth2Service: FastifyPluginAsync = async (
fastify fastify,
) => { ) => {
await fastify.register(authenticateUser) await fastify.register(authenticateUser)
await fastify.route<{ await fastify.route<{
Querystring: QuerySchemaType Querystring: QuerySchemaType
}>({ }>({
method: 'GET', method: "GET",
url: '/users/oauth2/discord/add-strategy', url: "/users/oauth2/discord/add-strategy",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -49,6 +49,6 @@ export const getAddStrategyDiscordOAuth2Service: FastifyPluginAsync = async (
const url = `${DISCORD_BASE_URL}/oauth2/authorize?client_id=${DISCORD_CLIENT_ID}&scope=identify&response_type=code&state=${request.user.accessToken}&redirect_uri=${redirectCallback}` const url = `${DISCORD_BASE_URL}/oauth2/authorize?client_id=${DISCORD_CLIENT_ID}&scope=identify&response_type=code&state=${request.user.accessToken}&redirect_uri=${redirectCallback}`
reply.statusCode = 200 reply.statusCode = 200
return url return url
} },
}) })
} }

View File

@ -1,30 +1,30 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import { API_URL } from '#src/tools/configurations.js' import { API_URL } from "#src/tools/configurations.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import { discordStrategy, getDiscordUserData } from '../__utils__/utils.js' import { discordStrategy, getDiscordUserData } from "../__utils__/utils.js"
import { buildQueryURL } from '#src/tools/utils/buildQueryURL.js' import { buildQueryURL } from "#src/tools/utils/buildQueryURL.js"
import { getUserWithBearerToken } from '#src/tools/plugins/authenticateUser.js' import { getUserWithBearerToken } from "#src/tools/plugins/authenticateUser.js"
const querySchema = Type.Object({ const querySchema = Type.Object({
code: Type.String(), code: Type.String(),
state: Type.String(), state: Type.String(),
redirectURI: Type.String({ format: 'uri-reference' }) redirectURI: Type.String({ format: "uri-reference" }),
}) })
type QuerySchemaType = Static<typeof querySchema> type QuerySchemaType = Static<typeof querySchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: 'Discord OAuth2 - callback-add-strategy', description: "Discord OAuth2 - callback-add-strategy",
tags: ['oauth2'] as string[], tags: ["oauth2"] as string[],
querystring: querySchema, querystring: querySchema,
response: { response: {
200: Type.String(), 200: Type.String(),
400: fastifyErrors[400], 400: fastifyErrors[400],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getCallbackAddStrategyDiscordOAuth2Service: FastifyPluginAsync = export const getCallbackAddStrategyDiscordOAuth2Service: FastifyPluginAsync =
@ -32,26 +32,26 @@ export const getCallbackAddStrategyDiscordOAuth2Service: FastifyPluginAsync =
await fastify.route<{ await fastify.route<{
Querystring: QuerySchemaType Querystring: QuerySchemaType
}>({ }>({
method: 'GET', method: "GET",
url: '/users/oauth2/discord/callback-add-strategy', url: "/users/oauth2/discord/callback-add-strategy",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
const { redirectURI, code, state: accessToken } = request.query const { redirectURI, code, state: accessToken } = request.query
const userRequest = await getUserWithBearerToken( const userRequest = await getUserWithBearerToken(
`Bearer ${accessToken}` `Bearer ${accessToken}`,
) )
const discordUser = await getDiscordUserData( const discordUser = await getDiscordUserData(
code, code,
`${API_URL}/users/oauth2/discord/callback-add-strategy?redirectURI=${redirectURI}` `${API_URL}/users/oauth2/discord/callback-add-strategy?redirectURI=${redirectURI}`,
) )
const message = await discordStrategy.callbackAddStrategy( const message = await discordStrategy.callbackAddStrategy(
{ {
name: discordUser.username, name: discordUser.username,
id: discordUser.id id: discordUser.id,
}, },
userRequest userRequest,
) )
return await reply.redirect(buildQueryURL(redirectURI, { message })) return await reply.redirect(buildQueryURL(redirectURI, { message }))
} },
}) })
} }

View File

@ -1,50 +1,50 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import { API_URL } from '#src/tools/configurations.js' import { API_URL } from "#src/tools/configurations.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import { discordStrategy, getDiscordUserData } from '../__utils__/utils.js' import { discordStrategy, getDiscordUserData } from "../__utils__/utils.js"
import { buildQueryURL } from '#src/tools/utils/buildQueryURL.js' import { buildQueryURL } from "#src/tools/utils/buildQueryURL.js"
const querySchema = Type.Object({ const querySchema = Type.Object({
code: Type.String(), code: Type.String(),
redirectURI: Type.String({ format: 'uri-reference' }) redirectURI: Type.String({ format: "uri-reference" }),
}) })
type QuerySchemaType = Static<typeof querySchema> type QuerySchemaType = Static<typeof querySchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: 'Discord OAuth2 - callback', description: "Discord OAuth2 - callback",
tags: ['oauth2'] as string[], tags: ["oauth2"] as string[],
querystring: querySchema, querystring: querySchema,
response: { response: {
200: Type.String(), 200: Type.String(),
400: fastifyErrors[400], 400: fastifyErrors[400],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getCallbackDiscordOAuth2Service: FastifyPluginAsync = async ( export const getCallbackDiscordOAuth2Service: FastifyPluginAsync = async (
fastify fastify,
) => { ) => {
await fastify.route<{ await fastify.route<{
Querystring: QuerySchemaType Querystring: QuerySchemaType
}>({ }>({
method: 'GET', method: "GET",
url: '/users/oauth2/discord/callback', url: "/users/oauth2/discord/callback",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
const { redirectURI, code } = request.query const { redirectURI, code } = request.query
const discordUser = await getDiscordUserData( const discordUser = await getDiscordUserData(
code, code,
`${API_URL}/users/oauth2/discord/callback?redirectURI=${redirectURI}` `${API_URL}/users/oauth2/discord/callback?redirectURI=${redirectURI}`,
) )
const responseJWT = await discordStrategy.callbackSignin({ const responseJWT = await discordStrategy.callbackSignin({
name: discordUser.username, name: discordUser.username,
id: discordUser.id id: discordUser.id,
}) })
return await reply.redirect(buildQueryURL(redirectURI, responseJWT)) return await reply.redirect(buildQueryURL(redirectURI, responseJWT))
} },
}) })
} }

View File

@ -1,36 +1,36 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import { API_URL } from '#src/tools/configurations.js' import { API_URL } from "#src/tools/configurations.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import { DISCORD_BASE_URL, DISCORD_CLIENT_ID } from '../__utils__/utils.js' import { DISCORD_BASE_URL, DISCORD_CLIENT_ID } from "../__utils__/utils.js"
const querySchema = Type.Object({ const querySchema = Type.Object({
redirectURI: Type.String({ format: 'uri-reference' }) redirectURI: Type.String({ format: "uri-reference" }),
}) })
type QuerySchemaType = Static<typeof querySchema> type QuerySchemaType = Static<typeof querySchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: 'Discord OAuth2 - signin', description: "Discord OAuth2 - signin",
tags: ['oauth2'] as string[], tags: ["oauth2"] as string[],
querystring: querySchema, querystring: querySchema,
response: { response: {
200: Type.String(), 200: Type.String(),
400: fastifyErrors[400], 400: fastifyErrors[400],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getSigninDiscordOAuth2Service: FastifyPluginAsync = async ( export const getSigninDiscordOAuth2Service: FastifyPluginAsync = async (
fastify fastify,
) => { ) => {
await fastify.route<{ await fastify.route<{
Querystring: QuerySchemaType Querystring: QuerySchemaType
}>({ }>({
method: 'GET', method: "GET",
url: '/users/oauth2/discord/signin', url: "/users/oauth2/discord/signin",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
const { redirectURI } = request.query const { redirectURI } = request.query
@ -38,6 +38,6 @@ export const getSigninDiscordOAuth2Service: FastifyPluginAsync = async (
const url = `${DISCORD_BASE_URL}/oauth2/authorize?client_id=${DISCORD_CLIENT_ID}&scope=identify&response_type=code&redirect_uri=${redirectCallback}` const url = `${DISCORD_BASE_URL}/oauth2/authorize?client_id=${DISCORD_CLIENT_ID}&scope=identify&response_type=code&redirect_uri=${redirectCallback}`
reply.statusCode = 200 reply.statusCode = 200
return url return url
} },
}) })
} }

View File

@ -1,16 +1,16 @@
import querystring from 'node:querystring' import querystring from "node:querystring"
import axios from 'axios' import axios from "axios"
import { OAuthStrategy } from '#src/tools/utils/OAuthStrategy.js' import { OAuthStrategy } from "#src/tools/utils/OAuthStrategy.js"
export const GITHUB_PROVIDER = 'GitHub' export const GITHUB_PROVIDER = "GitHub"
export const GITHUB_BASE_URL = 'https://github.com' export const GITHUB_BASE_URL = "https://github.com"
export const GITHUB_API_BASE_URL = 'https://api.github.com' export const GITHUB_API_BASE_URL = "https://api.github.com"
export const GITHUB_CLIENT_ID = export const GITHUB_CLIENT_ID =
process.env['GITHUB_CLIENT_ID'] ?? 'GITHUB_CLIENT_ID' process.env["GITHUB_CLIENT_ID"] ?? "GITHUB_CLIENT_ID"
export const GITHUB_CLIENT_SECRET = export const GITHUB_CLIENT_SECRET =
process.env['GITHUB_CLIENT_SECRET'] ?? 'GITHUB_CLIENT_SECRET' process.env["GITHUB_CLIENT_SECRET"] ?? "GITHUB_CLIENT_SECRET"
export const githubStrategy = new OAuthStrategy(GITHUB_PROVIDER) export const githubStrategy = new OAuthStrategy(GITHUB_PROVIDER)
export interface GitHubUser { export interface GitHubUser {
@ -28,7 +28,7 @@ export interface GitHubTokens {
export const getGitHubUserData = async ( export const getGitHubUserData = async (
code: string, code: string,
redirectURI: string redirectURI: string,
): Promise<GitHubUser> => { ): Promise<GitHubUser> => {
const { data: token } = await axios.post<GitHubTokens>( const { data: token } = await axios.post<GitHubTokens>(
`${GITHUB_BASE_URL}/login/oauth/access_token`, `${GITHUB_BASE_URL}/login/oauth/access_token`,
@ -36,22 +36,22 @@ export const getGitHubUserData = async (
client_id: GITHUB_CLIENT_ID, client_id: GITHUB_CLIENT_ID,
client_secret: GITHUB_CLIENT_SECRET, client_secret: GITHUB_CLIENT_SECRET,
code, code,
redirect_uri: redirectURI redirect_uri: redirectURI,
}), }),
{ {
headers: { headers: {
'Content-Type': 'application/x-www-form-urlencoded', "Content-Type": "application/x-www-form-urlencoded",
Accept: 'application/json' Accept: "application/json",
} },
} },
) )
const { data: githubUser } = await axios.get<GitHubUser>( const { data: githubUser } = await axios.get<GitHubUser>(
`${GITHUB_API_BASE_URL}/user`, `${GITHUB_API_BASE_URL}/user`,
{ {
headers: { headers: {
Authorization: `token ${token.access_token}` Authorization: `token ${token.access_token}`,
} },
} },
) )
return githubUser return githubUser
} }

View File

@ -1,44 +1,44 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import { API_URL } from '#src/tools/configurations.js' import { API_URL } from "#src/tools/configurations.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import { GITHUB_BASE_URL, GITHUB_CLIENT_ID } from '../__utils__/utils.js' import { GITHUB_BASE_URL, GITHUB_CLIENT_ID } from "../__utils__/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
const querySchema = Type.Object({ const querySchema = Type.Object({
redirectURI: Type.String({ format: 'uri-reference' }) redirectURI: Type.String({ format: "uri-reference" }),
}) })
type QuerySchemaType = Static<typeof querySchema> type QuerySchemaType = Static<typeof querySchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: 'GitHub OAuth2 - add-strategy', description: "GitHub OAuth2 - add-strategy",
tags: ['oauth2'] as string[], tags: ["oauth2"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
querystring: querySchema, querystring: querySchema,
response: { response: {
200: Type.String(), 200: Type.String(),
400: fastifyErrors[400], 400: fastifyErrors[400],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getAddStrategyGitHubOAuth2Service: FastifyPluginAsync = async ( export const getAddStrategyGitHubOAuth2Service: FastifyPluginAsync = async (
fastify fastify,
) => { ) => {
await fastify.register(authenticateUser) await fastify.register(authenticateUser)
await fastify.route<{ await fastify.route<{
Querystring: QuerySchemaType Querystring: QuerySchemaType
}>({ }>({
method: 'GET', method: "GET",
url: '/users/oauth2/github/add-strategy', url: "/users/oauth2/github/add-strategy",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -49,6 +49,6 @@ export const getAddStrategyGitHubOAuth2Service: FastifyPluginAsync = async (
const url = `${GITHUB_BASE_URL}/login/oauth/authorize?client_id=${GITHUB_CLIENT_ID}&state=${request.user.accessToken}&redirect_uri=${redirectCallback}` const url = `${GITHUB_BASE_URL}/login/oauth/authorize?client_id=${GITHUB_CLIENT_ID}&state=${request.user.accessToken}&redirect_uri=${redirectCallback}`
reply.statusCode = 200 reply.statusCode = 200
return url return url
} },
}) })
} }

View File

@ -1,30 +1,30 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import { API_URL } from '#src/tools/configurations.js' import { API_URL } from "#src/tools/configurations.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import { githubStrategy, getGitHubUserData } from '../__utils__/utils.js' import { githubStrategy, getGitHubUserData } from "../__utils__/utils.js"
import { buildQueryURL } from '#src/tools/utils/buildQueryURL.js' import { buildQueryURL } from "#src/tools/utils/buildQueryURL.js"
import { getUserWithBearerToken } from '#src/tools/plugins/authenticateUser.js' import { getUserWithBearerToken } from "#src/tools/plugins/authenticateUser.js"
const querySchema = Type.Object({ const querySchema = Type.Object({
code: Type.String(), code: Type.String(),
state: Type.String(), state: Type.String(),
redirectURI: Type.String({ format: 'uri-reference' }) redirectURI: Type.String({ format: "uri-reference" }),
}) })
type QuerySchemaType = Static<typeof querySchema> type QuerySchemaType = Static<typeof querySchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: 'GitHub OAuth2 - callback-add-strategy', description: "GitHub OAuth2 - callback-add-strategy",
tags: ['oauth2'] as string[], tags: ["oauth2"] as string[],
querystring: querySchema, querystring: querySchema,
response: { response: {
200: Type.String(), 200: Type.String(),
400: fastifyErrors[400], 400: fastifyErrors[400],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getCallbackAddStrategyGitHubOAuth2Service: FastifyPluginAsync = export const getCallbackAddStrategyGitHubOAuth2Service: FastifyPluginAsync =
@ -32,26 +32,26 @@ export const getCallbackAddStrategyGitHubOAuth2Service: FastifyPluginAsync =
await fastify.route<{ await fastify.route<{
Querystring: QuerySchemaType Querystring: QuerySchemaType
}>({ }>({
method: 'GET', method: "GET",
url: '/users/oauth2/github/callback-add-strategy', url: "/users/oauth2/github/callback-add-strategy",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
const { redirectURI, code, state: accessToken } = request.query const { redirectURI, code, state: accessToken } = request.query
const userRequest = await getUserWithBearerToken( const userRequest = await getUserWithBearerToken(
`Bearer ${accessToken}` `Bearer ${accessToken}`,
) )
const githubUser = await getGitHubUserData( const githubUser = await getGitHubUserData(
code, code,
`${API_URL}/users/oauth2/github/callback-add-strategy?redirectURI=${redirectURI}` `${API_URL}/users/oauth2/github/callback-add-strategy?redirectURI=${redirectURI}`,
) )
const message = await githubStrategy.callbackAddStrategy( const message = await githubStrategy.callbackAddStrategy(
{ {
name: githubUser.name, name: githubUser.name,
id: githubUser.id id: githubUser.id,
}, },
userRequest userRequest,
) )
return await reply.redirect(buildQueryURL(redirectURI, { message })) return await reply.redirect(buildQueryURL(redirectURI, { message }))
} },
}) })
} }

View File

@ -1,50 +1,50 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import { API_URL } from '#src/tools/configurations.js' import { API_URL } from "#src/tools/configurations.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import { githubStrategy, getGitHubUserData } from '../__utils__/utils.js' import { githubStrategy, getGitHubUserData } from "../__utils__/utils.js"
import { buildQueryURL } from '#src/tools/utils/buildQueryURL.js' import { buildQueryURL } from "#src/tools/utils/buildQueryURL.js"
const querySchema = Type.Object({ const querySchema = Type.Object({
code: Type.String(), code: Type.String(),
redirectURI: Type.String({ format: 'uri-reference' }) redirectURI: Type.String({ format: "uri-reference" }),
}) })
type QuerySchemaType = Static<typeof querySchema> type QuerySchemaType = Static<typeof querySchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: 'GitHub OAuth2 - callback', description: "GitHub OAuth2 - callback",
tags: ['oauth2'] as string[], tags: ["oauth2"] as string[],
querystring: querySchema, querystring: querySchema,
response: { response: {
200: Type.String(), 200: Type.String(),
400: fastifyErrors[400], 400: fastifyErrors[400],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getCallbackGitHubOAuth2Service: FastifyPluginAsync = async ( export const getCallbackGitHubOAuth2Service: FastifyPluginAsync = async (
fastify fastify,
) => { ) => {
await fastify.route<{ await fastify.route<{
Querystring: QuerySchemaType Querystring: QuerySchemaType
}>({ }>({
method: 'GET', method: "GET",
url: '/users/oauth2/github/callback', url: "/users/oauth2/github/callback",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
const { redirectURI, code } = request.query const { redirectURI, code } = request.query
const githubUser = await getGitHubUserData( const githubUser = await getGitHubUserData(
code, code,
`${API_URL}/users/oauth2/github/callback?redirectURI=${redirectURI}` `${API_URL}/users/oauth2/github/callback?redirectURI=${redirectURI}`,
) )
const responseJWT = await githubStrategy.callbackSignin({ const responseJWT = await githubStrategy.callbackSignin({
name: githubUser.name, name: githubUser.name,
id: githubUser.id id: githubUser.id,
}) })
return await reply.redirect(buildQueryURL(redirectURI, responseJWT)) return await reply.redirect(buildQueryURL(redirectURI, responseJWT))
} },
}) })
} }

View File

@ -1,36 +1,36 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import { API_URL } from '#src/tools/configurations.js' import { API_URL } from "#src/tools/configurations.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import { GITHUB_BASE_URL, GITHUB_CLIENT_ID } from '../__utils__/utils.js' import { GITHUB_BASE_URL, GITHUB_CLIENT_ID } from "../__utils__/utils.js"
const querySchema = Type.Object({ const querySchema = Type.Object({
redirectURI: Type.String({ format: 'uri-reference' }) redirectURI: Type.String({ format: "uri-reference" }),
}) })
type QuerySchemaType = Static<typeof querySchema> type QuerySchemaType = Static<typeof querySchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: 'GitHub OAuth2 - signin', description: "GitHub OAuth2 - signin",
tags: ['oauth2'] as string[], tags: ["oauth2"] as string[],
querystring: querySchema, querystring: querySchema,
response: { response: {
200: Type.String(), 200: Type.String(),
400: fastifyErrors[400], 400: fastifyErrors[400],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getSigninGitHubOAuth2Service: FastifyPluginAsync = async ( export const getSigninGitHubOAuth2Service: FastifyPluginAsync = async (
fastify fastify,
) => { ) => {
await fastify.route<{ await fastify.route<{
Querystring: QuerySchemaType Querystring: QuerySchemaType
}>({ }>({
method: 'GET', method: "GET",
url: '/users/oauth2/github/signin', url: "/users/oauth2/github/signin",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
const { redirectURI } = request.query const { redirectURI } = request.query
@ -38,6 +38,6 @@ export const getSigninGitHubOAuth2Service: FastifyPluginAsync = async (
const url = `${GITHUB_BASE_URL}/login/oauth/authorize?client_id=${GITHUB_CLIENT_ID}&redirect_uri=${redirectCallback}` const url = `${GITHUB_BASE_URL}/login/oauth/authorize?client_id=${GITHUB_CLIENT_ID}&redirect_uri=${redirectCallback}`
reply.statusCode = 200 reply.statusCode = 200
return url return url
} },
}) })
} }

View File

@ -1,18 +1,18 @@
import querystring from 'node:querystring' import querystring from "node:querystring"
import axios from 'axios' import axios from "axios"
import { OAuthStrategy } from '#src/tools/utils/OAuthStrategy.js' import { OAuthStrategy } from "#src/tools/utils/OAuthStrategy.js"
export const GOOGLE_PROVIDER = 'Google' export const GOOGLE_PROVIDER = "Google"
export const GOOGLE_BASE_URL = 'https://accounts.google.com/o/oauth2/v2/auth' export const GOOGLE_BASE_URL = "https://accounts.google.com/o/oauth2/v2/auth"
export const GOOGLE_OAUTH2_TOKEN = 'https://oauth2.googleapis.com/token' export const GOOGLE_OAUTH2_TOKEN = "https://oauth2.googleapis.com/token"
export const GOOGLE_USERINFO = export const GOOGLE_USERINFO =
'https://www.googleapis.com/oauth2/v1/userinfo?alt=json' "https://www.googleapis.com/oauth2/v1/userinfo?alt=json"
export const GOOGLE_CLIENT_ID = export const GOOGLE_CLIENT_ID =
process.env['GOOGLE_CLIENT_ID'] ?? 'GOOGLE_CLIENT_ID' process.env["GOOGLE_CLIENT_ID"] ?? "GOOGLE_CLIENT_ID"
export const GOOGLE_CLIENT_SECRET = export const GOOGLE_CLIENT_SECRET =
process.env['GOOGLE_CLIENT_SECRET'] ?? 'GOOGLE_CLIENT_SECRET' process.env["GOOGLE_CLIENT_SECRET"] ?? "GOOGLE_CLIENT_SECRET"
export const googleStrategy = new OAuthStrategy(GOOGLE_PROVIDER) export const googleStrategy = new OAuthStrategy(GOOGLE_PROVIDER)
export interface GoogleUser { export interface GoogleUser {
@ -34,7 +34,7 @@ export interface GoogleTokens {
export const getGoogleUserData = async ( export const getGoogleUserData = async (
code: string, code: string,
redirectURI: string redirectURI: string,
): Promise<GoogleUser> => { ): Promise<GoogleUser> => {
const { data: token } = await axios.post<GoogleTokens>( const { data: token } = await axios.post<GoogleTokens>(
GOOGLE_OAUTH2_TOKEN, GOOGLE_OAUTH2_TOKEN,
@ -43,17 +43,17 @@ export const getGoogleUserData = async (
client_secret: GOOGLE_CLIENT_SECRET, client_secret: GOOGLE_CLIENT_SECRET,
code, code,
redirect_uri: redirectURI, redirect_uri: redirectURI,
grant_type: 'authorization_code' grant_type: "authorization_code",
}), }),
{ {
headers: { headers: {
'Content-Type': 'application/x-www-form-urlencoded', "Content-Type": "application/x-www-form-urlencoded",
Accept: 'application/json' Accept: "application/json",
} },
} },
) )
const { data: googleUser } = await axios.get<GoogleUser>( const { data: googleUser } = await axios.get<GoogleUser>(
`${GOOGLE_USERINFO}&access_token=${token.access_token}` `${GOOGLE_USERINFO}&access_token=${token.access_token}`,
) )
return googleUser return googleUser
} }

View File

@ -1,44 +1,44 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import { API_URL } from '#src/tools/configurations.js' import { API_URL } from "#src/tools/configurations.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import { GOOGLE_BASE_URL, GOOGLE_CLIENT_ID } from '../__utils__/utils.js' import { GOOGLE_BASE_URL, GOOGLE_CLIENT_ID } from "../__utils__/utils.js"
import authenticateUser from '#src/tools/plugins/authenticateUser.js' import authenticateUser from "#src/tools/plugins/authenticateUser.js"
const querySchema = Type.Object({ const querySchema = Type.Object({
redirectURI: Type.String({ format: 'uri-reference' }) redirectURI: Type.String({ format: "uri-reference" }),
}) })
type QuerySchemaType = Static<typeof querySchema> type QuerySchemaType = Static<typeof querySchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: 'Google OAuth2 - add-strategy', description: "Google OAuth2 - add-strategy",
tags: ['oauth2'] as string[], tags: ["oauth2"] as string[],
security: [ security: [
{ {
bearerAuth: [] bearerAuth: [],
} },
] as Array<{ [key: string]: [] }>, ] as Array<{ [key: string]: [] }>,
querystring: querySchema, querystring: querySchema,
response: { response: {
200: Type.String(), 200: Type.String(),
400: fastifyErrors[400], 400: fastifyErrors[400],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getAddStrategyGoogleOAuth2Service: FastifyPluginAsync = async ( export const getAddStrategyGoogleOAuth2Service: FastifyPluginAsync = async (
fastify fastify,
) => { ) => {
await fastify.register(authenticateUser) await fastify.register(authenticateUser)
await fastify.route<{ await fastify.route<{
Querystring: QuerySchemaType Querystring: QuerySchemaType
}>({ }>({
method: 'GET', method: "GET",
url: '/users/oauth2/google/add-strategy', url: "/users/oauth2/google/add-strategy",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
if (request.user == null) { if (request.user == null) {
@ -49,6 +49,6 @@ export const getAddStrategyGoogleOAuth2Service: FastifyPluginAsync = async (
const url = `${GOOGLE_BASE_URL}?client_id=${GOOGLE_CLIENT_ID}&state=${request.user.accessToken}&redirect_uri=${redirectCallback}&response_type=code&scope=profile&access_type=online` const url = `${GOOGLE_BASE_URL}?client_id=${GOOGLE_CLIENT_ID}&state=${request.user.accessToken}&redirect_uri=${redirectCallback}&response_type=code&scope=profile&access_type=online`
reply.statusCode = 200 reply.statusCode = 200
return url return url
} },
}) })
} }

View File

@ -1,30 +1,30 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import { API_URL } from '#src/tools/configurations.js' import { API_URL } from "#src/tools/configurations.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import { googleStrategy, getGoogleUserData } from '../__utils__/utils.js' import { googleStrategy, getGoogleUserData } from "../__utils__/utils.js"
import { buildQueryURL } from '#src/tools/utils/buildQueryURL.js' import { buildQueryURL } from "#src/tools/utils/buildQueryURL.js"
import { getUserWithBearerToken } from '#src/tools/plugins/authenticateUser.js' import { getUserWithBearerToken } from "#src/tools/plugins/authenticateUser.js"
const querySchema = Type.Object({ const querySchema = Type.Object({
code: Type.String(), code: Type.String(),
state: Type.String(), state: Type.String(),
redirectURI: Type.String({ format: 'uri-reference' }) redirectURI: Type.String({ format: "uri-reference" }),
}) })
type QuerySchemaType = Static<typeof querySchema> type QuerySchemaType = Static<typeof querySchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: 'Google OAuth2 - callback-add-strategy', description: "Google OAuth2 - callback-add-strategy",
tags: ['oauth2'] as string[], tags: ["oauth2"] as string[],
querystring: querySchema, querystring: querySchema,
response: { response: {
200: Type.String(), 200: Type.String(),
400: fastifyErrors[400], 400: fastifyErrors[400],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getCallbackAddStrategyGoogleOAuth2Service: FastifyPluginAsync = export const getCallbackAddStrategyGoogleOAuth2Service: FastifyPluginAsync =
@ -32,26 +32,26 @@ export const getCallbackAddStrategyGoogleOAuth2Service: FastifyPluginAsync =
await fastify.route<{ await fastify.route<{
Querystring: QuerySchemaType Querystring: QuerySchemaType
}>({ }>({
method: 'GET', method: "GET",
url: '/users/oauth2/google/callback-add-strategy', url: "/users/oauth2/google/callback-add-strategy",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
const { redirectURI, code, state: accessToken } = request.query const { redirectURI, code, state: accessToken } = request.query
const userRequest = await getUserWithBearerToken( const userRequest = await getUserWithBearerToken(
`Bearer ${accessToken}` `Bearer ${accessToken}`,
) )
const googleUser = await getGoogleUserData( const googleUser = await getGoogleUserData(
code, code,
`${API_URL}/users/oauth2/google/callback-add-strategy?redirectURI=${redirectURI}` `${API_URL}/users/oauth2/google/callback-add-strategy?redirectURI=${redirectURI}`,
) )
const message = await googleStrategy.callbackAddStrategy( const message = await googleStrategy.callbackAddStrategy(
{ {
name: googleUser.name, name: googleUser.name,
id: googleUser.id id: googleUser.id,
}, },
userRequest userRequest,
) )
return await reply.redirect(buildQueryURL(redirectURI, { message })) return await reply.redirect(buildQueryURL(redirectURI, { message }))
} },
}) })
} }

View File

@ -1,50 +1,50 @@
import type { Static } from '@sinclair/typebox' import type { Static } from "@sinclair/typebox"
import { Type } from '@sinclair/typebox' import { Type } from "@sinclair/typebox"
import type { FastifyPluginAsync, FastifySchema } from 'fastify' import type { FastifyPluginAsync, FastifySchema } from "fastify"
import { API_URL } from '#src/tools/configurations.js' import { API_URL } from "#src/tools/configurations.js"
import { fastifyErrors } from '#src/models/utils.js' import { fastifyErrors } from "#src/models/utils.js"
import { googleStrategy, getGoogleUserData } from '../__utils__/utils.js' import { googleStrategy, getGoogleUserData } from "../__utils__/utils.js"
import { buildQueryURL } from '#src/tools/utils/buildQueryURL.js' import { buildQueryURL } from "#src/tools/utils/buildQueryURL.js"
const querySchema = Type.Object({ const querySchema = Type.Object({
code: Type.String(), code: Type.String(),
redirectURI: Type.String({ format: 'uri-reference' }) redirectURI: Type.String({ format: "uri-reference" }),
}) })
type QuerySchemaType = Static<typeof querySchema> type QuerySchemaType = Static<typeof querySchema>
const getServiceSchema: FastifySchema = { const getServiceSchema: FastifySchema = {
description: 'Google OAuth2 - callback', description: "Google OAuth2 - callback",
tags: ['oauth2'] as string[], tags: ["oauth2"] as string[],
querystring: querySchema, querystring: querySchema,
response: { response: {
200: Type.String(), 200: Type.String(),
400: fastifyErrors[400], 400: fastifyErrors[400],
500: fastifyErrors[500] 500: fastifyErrors[500],
} },
} as const } as const
export const getCallbackGoogleOAuth2Service: FastifyPluginAsync = async ( export const getCallbackGoogleOAuth2Service: FastifyPluginAsync = async (
fastify fastify,
) => { ) => {
await fastify.route<{ await fastify.route<{
Querystring: QuerySchemaType Querystring: QuerySchemaType
}>({ }>({
method: 'GET', method: "GET",
url: '/users/oauth2/google/callback', url: "/users/oauth2/google/callback",
schema: getServiceSchema, schema: getServiceSchema,
handler: async (request, reply) => { handler: async (request, reply) => {
const { redirectURI, code } = request.query const { redirectURI, code } = request.query
const googleUser = await getGoogleUserData( const googleUser = await getGoogleUserData(
code, code,
`${API_URL}/users/oauth2/google/callback?redirectURI=${redirectURI}` `${API_URL}/users/oauth2/google/callback?redirectURI=${redirectURI}`,
) )
const responseJWT = await googleStrategy.callbackSignin({ const responseJWT = await googleStrategy.callbackSignin({
name: googleUser.name, name: googleUser.name,
id: googleUser.id id: googleUser.id,
}) })
return await reply.redirect(buildQueryURL(redirectURI, responseJWT)) return await reply.redirect(buildQueryURL(redirectURI, responseJWT))
} },
}) })
} }

Some files were not shown because too many files have changed in this diff Show More