Compare commits
25 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
4de97e23fc | ||
cec2e803ef | |||
0847b72ed5 | |||
2aefe73afa | |||
|
5591449094 | ||
5532a6a398 | |||
2bdcae81b5 | |||
cc9fa70498 | |||
|
59cd6083a6 | ||
9a1684e22b | |||
|
23d2a9da71 | ||
8e238f80c5 | |||
ca7de85e4b | |||
ab19598edd | |||
1c1644f243 | |||
|
10110d1a36 | ||
|
73d2da66b2 | ||
|
b07a62de8b | ||
|
8a327eb7c7 | ||
|
78d7dbdb3f | ||
|
e30a66eeb6 | ||
|
12dcabccb3 | ||
|
224d3b3764 | ||
|
fdecf5ce1a | ||
|
6926132a1b |
@ -1,7 +1,3 @@
|
||||
{
|
||||
"extends": ["@commitlint/config-conventional"],
|
||||
"rules": {
|
||||
"body-max-length": [0, "always"],
|
||||
"body-max-line-length": [0, "always"]
|
||||
}
|
||||
"extends": ["@commitlint/config-conventional"]
|
||||
}
|
||||
|
@ -1 +1 @@
|
||||
FROM mcr.microsoft.com/devcontainers/javascript-node:16
|
||||
FROM mcr.microsoft.com/devcontainers/javascript-node:20
|
||||
|
23
.devcontainer/compose.yaml
Normal file
23
.devcontainer/compose.yaml
Normal file
@ -0,0 +1,23 @@
|
||||
services:
|
||||
workspace:
|
||||
build:
|
||||
context: "./"
|
||||
dockerfile: "./Dockerfile"
|
||||
volumes:
|
||||
- "..:/workspace:cached"
|
||||
command: "sleep infinity"
|
||||
network_mode: "host"
|
||||
|
||||
thream-database:
|
||||
image: "postgres:15.4"
|
||||
environment:
|
||||
POSTGRES_USER: "thream_user"
|
||||
POSTGRES_PASSWORD: "password"
|
||||
POSTGRES_DB: "thream"
|
||||
volumes:
|
||||
- "thream-postgres-data:/var/lib/postgresql/data"
|
||||
restart: "unless-stopped"
|
||||
network_mode: "host"
|
||||
|
||||
volumes:
|
||||
thream-postgres-data:
|
@ -1,21 +1,24 @@
|
||||
{
|
||||
"name": "@thream/api",
|
||||
"dockerComposeFile": "./docker-compose.yml",
|
||||
"dockerComposeFile": "./compose.yaml",
|
||||
"service": "workspace",
|
||||
"workspaceFolder": "/workspace",
|
||||
"settings": {
|
||||
"remote.autoForwardPorts": false
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"settings": {
|
||||
"remote.autoForwardPorts": false,
|
||||
"remote.localPortHost": "allInterfaces"
|
||||
}
|
||||
},
|
||||
"extensions": [
|
||||
"editorconfig.editorconfig",
|
||||
"esbenp.prettier-vscode",
|
||||
"dbaeumer.vscode-eslint",
|
||||
"davidanson.vscode-markdownlint",
|
||||
"prisma.prisma",
|
||||
"mikestead.dotenv",
|
||||
"ms-azuretools.vscode-docker"
|
||||
]
|
||||
},
|
||||
"extensions": [
|
||||
"editorconfig.editorconfig",
|
||||
"esbenp.prettier-vscode",
|
||||
"dbaeumer.vscode-eslint",
|
||||
"davidanson.vscode-markdownlint",
|
||||
"prisma.prisma",
|
||||
"mikestead.dotenv",
|
||||
"ms-azuretools.vscode-docker"
|
||||
],
|
||||
"forwardPorts": [8080, 5555, 5432, 1080],
|
||||
"postAttachCommand": ["npm", "install"],
|
||||
"remoteUser": "node"
|
||||
}
|
||||
|
@ -1,30 +0,0 @@
|
||||
version: '3.0'
|
||||
|
||||
services:
|
||||
workspace:
|
||||
build:
|
||||
context: './'
|
||||
dockerfile: './Dockerfile'
|
||||
volumes:
|
||||
- '..:/workspace:cached'
|
||||
command: 'sleep infinity'
|
||||
extra_hosts:
|
||||
- 'host.docker.internal:host-gateway'
|
||||
|
||||
thream-database:
|
||||
image: 'postgres:14.5'
|
||||
environment:
|
||||
POSTGRES_USER: 'user'
|
||||
POSTGRES_PASSWORD: 'password'
|
||||
POSTGRES_DB: 'thream'
|
||||
volumes:
|
||||
- 'postgres-data:/var/lib/postgresql/data'
|
||||
restart: 'unless-stopped'
|
||||
|
||||
thream-maildev:
|
||||
image: 'maildev/maildev:1.1.0'
|
||||
ports:
|
||||
- '1080:80'
|
||||
|
||||
volumes:
|
||||
postgres-data:
|
@ -1,9 +1,6 @@
|
||||
.vscode
|
||||
.git
|
||||
.env
|
||||
.*
|
||||
!.npmrc
|
||||
!.swcrc
|
||||
build
|
||||
coverage
|
||||
.nyc_output
|
||||
node_modules
|
||||
tmp
|
||||
temp
|
||||
|
22
.env.example
22
.env.example
@ -1,14 +1,22 @@
|
||||
API_URL=http://localhost:8080
|
||||
API_URL=http://127.0.0.1:8080
|
||||
COMPOSE_PROJECT_NAME=thream-api
|
||||
DATABASE_URL=postgresql://user:password@thream-database:5432/thream
|
||||
|
||||
DATABASE_USER=thream_user
|
||||
DATABASE_PASSWORD=password
|
||||
DATABASE_NAME=thream
|
||||
DATABASE_URL=postgresql://thream_user:password@127.0.0.1:5432/thream
|
||||
|
||||
EMAIL_HOST=0.0.0.0
|
||||
EMAIL_PASSWORD=password
|
||||
EMAIL_PORT=1025
|
||||
EMAIL_USER=no-reply@thream.fr
|
||||
|
||||
DISCORD_CLIENT_ID=
|
||||
DISCORD_CLIENT_SECRET=
|
||||
EMAIL_HOST=thream-maildev
|
||||
EMAIL_PASSWORD=password
|
||||
EMAIL_PORT=25
|
||||
EMAIL_USER=no-reply@thream.fr
|
||||
|
||||
FILE_UPLOADS_API_KEY=apiKeySecret
|
||||
FILE_UPLOADS_API_URL=http://host.docker.internal:8000
|
||||
FILE_UPLOADS_API_URL=http://127.0.0.1:8000
|
||||
|
||||
GITHUB_CLIENT_ID=
|
||||
GITHUB_CLIENT_SECRET=
|
||||
GOOGLE_CLIENT_ID=
|
||||
|
@ -1,16 +1,13 @@
|
||||
{
|
||||
"extends": ["conventions", "prettier"],
|
||||
"plugins": ["prettier", "import", "unicorn"],
|
||||
"parser": "@typescript-eslint/parser",
|
||||
"parserOptions": {
|
||||
"project": "./tsconfig.json"
|
||||
},
|
||||
"env": {
|
||||
"node": true
|
||||
},
|
||||
"rules": {
|
||||
"prettier/prettier": "error",
|
||||
"import/extensions": ["error", "always"],
|
||||
"unicorn/prevent-abbreviations": "error",
|
||||
"unicorn/prefer-node-protocol": "error"
|
||||
"unicorn/prevent-abbreviations": "error"
|
||||
}
|
||||
}
|
||||
|
8
.github/ISSUE_TEMPLATE/BUG.md
vendored
8
.github/ISSUE_TEMPLATE/BUG.md
vendored
@ -1,8 +1,8 @@
|
||||
---
|
||||
name: '🐛 Bug Report'
|
||||
about: 'Report an unexpected problem or unintended behavior.'
|
||||
title: '[Bug]'
|
||||
labels: 'bug'
|
||||
name: "🐛 Bug Report"
|
||||
about: "Report an unexpected problem or unintended behavior."
|
||||
title: "[Bug]"
|
||||
labels: "bug"
|
||||
---
|
||||
|
||||
<!--
|
||||
|
8
.github/ISSUE_TEMPLATE/DOCUMENTATION.md
vendored
8
.github/ISSUE_TEMPLATE/DOCUMENTATION.md
vendored
@ -1,8 +1,8 @@
|
||||
---
|
||||
name: '📜 Documentation'
|
||||
about: 'Correct spelling errors, improvements or additions to documentation files (README, CONTRIBUTING...).'
|
||||
title: '[Documentation]'
|
||||
labels: 'documentation'
|
||||
name: "📜 Documentation"
|
||||
about: "Correct spelling errors, improvements or additions to documentation files (README, CONTRIBUTING...)."
|
||||
title: "[Documentation]"
|
||||
labels: "documentation"
|
||||
---
|
||||
|
||||
<!-- Please make sure your issue has not already been fixed. -->
|
||||
|
8
.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md
vendored
8
.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md
vendored
@ -1,8 +1,8 @@
|
||||
---
|
||||
name: '✨ Feature Request'
|
||||
about: 'Suggest a new feature idea.'
|
||||
title: '[Feature]'
|
||||
labels: 'feature request'
|
||||
name: "✨ Feature Request"
|
||||
about: "Suggest a new feature idea."
|
||||
title: "[Feature]"
|
||||
labels: "feature request"
|
||||
---
|
||||
|
||||
<!-- Please make sure your issue has not already been fixed. -->
|
||||
|
8
.github/ISSUE_TEMPLATE/IMPROVEMENT.md
vendored
8
.github/ISSUE_TEMPLATE/IMPROVEMENT.md
vendored
@ -1,8 +1,8 @@
|
||||
---
|
||||
name: '🔧 Improvement'
|
||||
about: 'Improve structure/format/performance/refactor/tests of the code.'
|
||||
title: '[Improvement]'
|
||||
labels: 'improvement'
|
||||
name: "🔧 Improvement"
|
||||
about: "Improve structure/format/performance/refactor/tests of the code."
|
||||
title: "[Improvement]"
|
||||
labels: "improvement"
|
||||
---
|
||||
|
||||
<!-- Please make sure your issue has not already been fixed. -->
|
||||
|
8
.github/ISSUE_TEMPLATE/QUESTION.md
vendored
8
.github/ISSUE_TEMPLATE/QUESTION.md
vendored
@ -1,8 +1,8 @@
|
||||
---
|
||||
name: '🙋 Question'
|
||||
about: 'Further information is requested.'
|
||||
title: '[Question]'
|
||||
labels: 'question'
|
||||
name: "🙋 Question"
|
||||
about: "Further information is requested."
|
||||
title: "[Question]"
|
||||
labels: "question"
|
||||
---
|
||||
|
||||
### Question
|
||||
|
2
.github/PULL_REQUEST_TEMPLATE.md
vendored
2
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -1,6 +1,6 @@
|
||||
<!-- Please first discuss the change you wish to make via issue before making a change. It might avoid a waste of your time. -->
|
||||
|
||||
## What changes this PR introduce?
|
||||
# What changes this PR introduce?
|
||||
|
||||
## List any relevant issue numbers
|
||||
|
||||
|
16
.github/workflows/analyze.yml
vendored
16
.github/workflows/analyze.yml
vendored
@ -1,4 +1,4 @@
|
||||
name: 'Analyze'
|
||||
name: "Analyze"
|
||||
|
||||
on:
|
||||
push:
|
||||
@ -8,20 +8,20 @@ on:
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
runs-on: 'ubuntu-latest'
|
||||
runs-on: "ubuntu-latest"
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
language: ['javascript']
|
||||
language: ["javascript"]
|
||||
|
||||
steps:
|
||||
- uses: 'actions/checkout@v3.0.0'
|
||||
- uses: "actions/checkout@v4.0.0"
|
||||
|
||||
- name: 'Initialize CodeQL'
|
||||
uses: 'github/codeql-action/init@v1'
|
||||
- name: "Initialize CodeQL"
|
||||
uses: "github/codeql-action/init@v2"
|
||||
with:
|
||||
languages: ${{ matrix.language }}
|
||||
|
||||
- name: 'Perform CodeQL Analysis'
|
||||
uses: 'github/codeql-action/analyze@v1'
|
||||
- name: "Perform CodeQL Analysis"
|
||||
uses: "github/codeql-action/analyze@v1"
|
||||
|
24
.github/workflows/build.yml
vendored
24
.github/workflows/build.yml
vendored
@ -1,4 +1,4 @@
|
||||
name: 'Build'
|
||||
name: "Build"
|
||||
|
||||
on:
|
||||
push:
|
||||
@ -8,18 +8,20 @@ on:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: 'ubuntu-latest'
|
||||
runs-on: "ubuntu-latest"
|
||||
steps:
|
||||
- uses: 'actions/checkout@v3.0.0'
|
||||
- uses: "actions/checkout@v4.0.0"
|
||||
|
||||
- name: 'Use Node.js'
|
||||
uses: 'actions/setup-node@v3.0.0'
|
||||
- name: "Setup Node.js"
|
||||
uses: "actions/setup-node@v3.8.1"
|
||||
with:
|
||||
node-version: '16.x'
|
||||
cache: 'npm'
|
||||
node-version: "20.x"
|
||||
cache: "npm"
|
||||
|
||||
- name: 'Install'
|
||||
run: 'npm install'
|
||||
- name: "Install dependencies"
|
||||
run: "npm clean-install"
|
||||
|
||||
- name: 'Build'
|
||||
run: 'npm run build'
|
||||
- name: "Build"
|
||||
run: "npm run build"
|
||||
|
||||
- run: "npm run build:typescript"
|
||||
|
50
.github/workflows/lint.yml
vendored
50
.github/workflows/lint.yml
vendored
@ -1,4 +1,4 @@
|
||||
name: 'Lint'
|
||||
name: "Lint"
|
||||
|
||||
on:
|
||||
push:
|
||||
@ -8,43 +8,33 @@ on:
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: 'ubuntu-latest'
|
||||
runs-on: "ubuntu-latest"
|
||||
steps:
|
||||
- uses: 'actions/checkout@v3.0.0'
|
||||
- uses: "actions/checkout@v4.0.0"
|
||||
|
||||
- name: 'Use Node.js'
|
||||
uses: 'actions/setup-node@v3.0.0'
|
||||
- name: "Setup Node.js"
|
||||
uses: "actions/setup-node@v3.8.1"
|
||||
with:
|
||||
node-version: '16.x'
|
||||
cache: 'npm'
|
||||
node-version: "20.x"
|
||||
cache: "npm"
|
||||
|
||||
- name: 'Install'
|
||||
run: 'npm install'
|
||||
- name: "Install dependencies"
|
||||
run: "npm clean-install"
|
||||
|
||||
- name: 'lint:commit'
|
||||
- name: "lint:commit"
|
||||
run: 'npm run lint:commit -- --to "${{ github.sha }}"'
|
||||
|
||||
- name: 'lint:editorconfig'
|
||||
run: 'npm run lint:editorconfig'
|
||||
- name: "lint:editorconfig"
|
||||
run: "npm run lint:editorconfig"
|
||||
|
||||
- name: 'lint:markdown'
|
||||
run: 'npm run lint:markdown'
|
||||
- name: "lint:markdown"
|
||||
run: "npm run lint:markdown"
|
||||
|
||||
- name: 'lint:typescript'
|
||||
run: 'npm run lint:typescript'
|
||||
- name: "lint:eslint"
|
||||
run: "npm run lint:eslint"
|
||||
|
||||
- name: 'lint:prettier'
|
||||
run: 'npm run lint:prettier'
|
||||
- name: "lint:prettier"
|
||||
run: "npm run lint:prettier"
|
||||
|
||||
- name: 'lint:dotenv'
|
||||
uses: 'dotenv-linter/action-dotenv-linter@v2'
|
||||
with:
|
||||
github_token: ${{ secrets.github_token }}
|
||||
|
||||
- name: 'lint:docker'
|
||||
uses: 'hadolint/hadolint-action@v1.6.0'
|
||||
with:
|
||||
dockerfile: './Dockerfile'
|
||||
|
||||
- name: 'prisma:validate'
|
||||
run: 'cp .env.example .env && npm run prisma:validate'
|
||||
- name: "prisma:validate"
|
||||
run: "cp .env.example .env && npm run prisma:validate"
|
||||
|
38
.github/workflows/release.yml
vendored
38
.github/workflows/release.yml
vendored
@ -1,4 +1,4 @@
|
||||
name: 'Release'
|
||||
name: "Release"
|
||||
|
||||
on:
|
||||
push:
|
||||
@ -6,34 +6,36 @@ on:
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: 'ubuntu-latest'
|
||||
runs-on: "ubuntu-latest"
|
||||
steps:
|
||||
- uses: 'actions/checkout@v3.0.0'
|
||||
- uses: "actions/checkout@v4.0.0"
|
||||
with:
|
||||
fetch-depth: 0
|
||||
persist-credentials: false
|
||||
|
||||
- name: 'Import GPG key'
|
||||
uses: 'crazy-max/ghaction-import-gpg@v3.2.0'
|
||||
- name: "Import GPG key"
|
||||
uses: "crazy-max/ghaction-import-gpg@v6.0.0"
|
||||
with:
|
||||
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||
git-user-signingkey: true
|
||||
git-commit-gpgsign: true
|
||||
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||
git_user_signingkey: true
|
||||
git_commit_gpgsign: true
|
||||
|
||||
- name: 'Use Node.js'
|
||||
uses: 'actions/setup-node@v3.0.0'
|
||||
- name: "Setup Node.js"
|
||||
uses: "actions/setup-node@v3.8.1"
|
||||
with:
|
||||
node-version: '16.x'
|
||||
cache: 'npm'
|
||||
node-version: "20.x"
|
||||
cache: "npm"
|
||||
|
||||
- name: 'Install'
|
||||
run: 'npm install'
|
||||
- name: "Install dependencies"
|
||||
run: "npm clean-install"
|
||||
|
||||
- name: 'Build'
|
||||
run: 'npm run build'
|
||||
- name: "Build"
|
||||
run: "npm run build"
|
||||
|
||||
- name: 'Release'
|
||||
run: 'npm run release'
|
||||
- run: "npm run build:typescript"
|
||||
|
||||
- name: "Release"
|
||||
run: "npm run release"
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||
GIT_COMMITTER_NAME: ${{ secrets.GIT_NAME }}
|
||||
|
28
.github/workflows/test.yml
vendored
28
.github/workflows/test.yml
vendored
@ -1,4 +1,4 @@
|
||||
name: 'Test'
|
||||
name: "Test"
|
||||
|
||||
on:
|
||||
push:
|
||||
@ -8,23 +8,23 @@ on:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: 'ubuntu-latest'
|
||||
runs-on: "ubuntu-latest"
|
||||
steps:
|
||||
- uses: 'actions/checkout@v3.0.0'
|
||||
- uses: "actions/checkout@v4.0.0"
|
||||
|
||||
- name: 'Use Node.js'
|
||||
uses: 'actions/setup-node@v3.0.0'
|
||||
- name: "Setup Node.js"
|
||||
uses: "actions/setup-node@v3.8.1"
|
||||
with:
|
||||
node-version: '16.x'
|
||||
cache: 'npm'
|
||||
node-version: "20.x"
|
||||
cache: "npm"
|
||||
|
||||
- name: 'Install'
|
||||
run: 'npm install'
|
||||
- name: "Install dependencies"
|
||||
run: "npm clean-install"
|
||||
|
||||
- name: 'Build'
|
||||
run: 'npm run build'
|
||||
- name: "Build"
|
||||
run: "npm run build"
|
||||
|
||||
- run: 'cp .env.example .env'
|
||||
- run: "cp .env.example .env"
|
||||
|
||||
- name: 'Test'
|
||||
run: 'npm run test'
|
||||
- name: "Test"
|
||||
run: "npm run test"
|
||||
|
@ -3,3 +3,4 @@
|
||||
|
||||
npm run lint:staged
|
||||
npm run build
|
||||
npm run build:typescript
|
||||
|
@ -1,10 +1,11 @@
|
||||
{
|
||||
"config": {
|
||||
"extends": "markdownlint/style/prettier",
|
||||
"relative-links": true,
|
||||
"default": true,
|
||||
"MD013": false,
|
||||
"MD033": false,
|
||||
"MD041": false
|
||||
"MD033": false
|
||||
},
|
||||
"globs": ["**/*.{md,mdx}"],
|
||||
"ignores": ["**/node_modules"]
|
||||
"ignores": ["**/node_modules"],
|
||||
"customRules": ["markdownlint-rule-relative-links"]
|
||||
}
|
||||
|
@ -1,5 +0,0 @@
|
||||
{
|
||||
"reporter": ["text", "cobertura"],
|
||||
"src": "./build",
|
||||
"all": true
|
||||
}
|
@ -1,6 +1,3 @@
|
||||
{
|
||||
"singleQuote": true,
|
||||
"jsxSingleQuote": true,
|
||||
"semi": false,
|
||||
"trailingComma": "none"
|
||||
"semi": false
|
||||
}
|
||||
|
3
.swcrc
3
.swcrc
@ -1,10 +1,11 @@
|
||||
{
|
||||
"sourceMaps": true,
|
||||
"jsc": {
|
||||
"parser": {
|
||||
"syntax": "typescript",
|
||||
"dynamicImport": true
|
||||
},
|
||||
"target": "es2022"
|
||||
"target": "esnext"
|
||||
},
|
||||
"module": {
|
||||
"type": "es6"
|
||||
|
8
.taprc
8
.taprc
@ -1,8 +0,0 @@
|
||||
ts: false
|
||||
jsx: false
|
||||
flow: false
|
||||
check-coverage: false
|
||||
coverage: false
|
||||
|
||||
files:
|
||||
- 'build/**/*.test.js'
|
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
@ -5,7 +5,7 @@
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||
"editor.formatOnSave": true,
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.fixAll": true
|
||||
"source.fixAll": "explicit"
|
||||
},
|
||||
"eslint.options": { "ignorePath": ".gitignore" },
|
||||
"[prisma]": {
|
||||
|
@ -60,7 +60,7 @@ representative at an online or offline event.
|
||||
|
||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
||||
reported to the community leaders responsible for enforcement at
|
||||
contact@divlo.fr.
|
||||
<contact@theoludwig.fr>.
|
||||
All complaints will be reviewed and investigated promptly and fairly.
|
||||
|
||||
All community leaders are obligated to respect the privacy and security of the
|
||||
|
@ -29,31 +29,7 @@ If you're adding new features to **Thream/api**, please include tests.
|
||||
|
||||
## Commits
|
||||
|
||||
The commit message guidelines respect
|
||||
[@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/master/%40commitlint/config-conventional)
|
||||
and [Semantic Versioning](https://semver.org/) for releases.
|
||||
|
||||
### Types
|
||||
|
||||
Types define which kind of changes you made to the project.
|
||||
|
||||
| Types | Description |
|
||||
| -------- | ------------------------------------------------------------------------------------------------------------ |
|
||||
| feat | A new feature. |
|
||||
| fix | A bug fix. |
|
||||
| docs | Documentation only changes. |
|
||||
| style | Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc). |
|
||||
| refactor | A code change that neither fixes a bug nor adds a feature. |
|
||||
| perf | A code change that improves performance. |
|
||||
| test | Adding missing tests or correcting existing tests. |
|
||||
| build | Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm). |
|
||||
| ci | Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs). |
|
||||
| chore | Other changes that don't modify src or test files. |
|
||||
| revert | Reverts a previous commit. |
|
||||
|
||||
### Scopes
|
||||
|
||||
Scopes define what part of the code changed.
|
||||
The commit message guidelines adheres to [Conventional Commits](https://www.conventionalcommits.org/) and [Semantic Versioning](https://semver.org/) for releases.
|
||||
|
||||
### Examples
|
||||
|
||||
@ -91,7 +67,7 @@ git commit -m "fix: should emit events to connected users"
|
||||
|
||||
We have API REST services for the `channels`.
|
||||
|
||||
Here is what potentially look like a folder structure for this service :
|
||||
Here is what potentially look like a folder structure for this service:
|
||||
|
||||
```text
|
||||
└── src
|
||||
@ -110,7 +86,7 @@ Here is what potentially look like a folder structure for this service :
|
||||
└── index.ts
|
||||
```
|
||||
|
||||
This folder structure will map to these REST API routes :
|
||||
This folder structure will map to these REST API routes:
|
||||
|
||||
- GET `/channels`
|
||||
- DELETE `/channels/:channelId`
|
||||
|
11
Dockerfile
11
Dockerfile
@ -1,21 +1,22 @@
|
||||
FROM node:16.17.0 AS dependencies
|
||||
FROM node:20.9.0 AS dependencies
|
||||
WORKDIR /usr/src/app
|
||||
COPY ./package*.json ./
|
||||
RUN npm install
|
||||
RUN npm clean-install
|
||||
|
||||
FROM node:16.17.0 AS builder
|
||||
FROM node:20.9.0 AS builder
|
||||
WORKDIR /usr/src/app
|
||||
COPY --from=dependencies /usr/src/app/node_modules ./node_modules
|
||||
COPY ./ ./
|
||||
RUN npm run prisma:generate && npm run build
|
||||
|
||||
FROM node:16.17.0 AS runner
|
||||
FROM node:20.9.0 AS runner
|
||||
WORKDIR /usr/src/app
|
||||
ENV NODE_ENV=production
|
||||
ENV NODE_OPTIONS=--enable-source-maps
|
||||
COPY --from=builder /usr/src/app/node_modules ./node_modules
|
||||
COPY --from=builder /usr/src/app/package.json ./package.json
|
||||
COPY --from=builder /usr/src/app/email ./email
|
||||
COPY --from=builder /usr/src/app/build ./build
|
||||
COPY --from=builder /usr/src/app/prisma ./prisma
|
||||
USER node
|
||||
CMD ["node", "build/index.js"]
|
||||
CMD npm run prisma:migrate:deploy && node build/index.js
|
||||
|
76
README.md
76
README.md
@ -1,4 +1,8 @@
|
||||
<h1 align="center"><a href="https://api.thream.divlo.fr/documentation">Thream/api</a></h1>
|
||||
<h1 align="center"><a href="https://api.thream.theoludwig.fr/documentation">Thream/api</a></h1>
|
||||
|
||||
<p align="center">
|
||||
<strong>⚠️ This project is not maintained anymore, you can still use the code as you wish and fork it to maintain it yourself.</strong>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<a href="./CONTRIBUTING.md"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat" /></a>
|
||||
@ -18,7 +22,7 @@
|
||||
|
||||
Thream's Application Programming Interface (API) to stay close with your friends and communities.
|
||||
|
||||
It uses [Thream/file-uploads-api](https://github.com/Thream/file-uploads-api) [v1.1.0](https://github.com/Thream/file-uploads-api/releases/tag/v1.1.0).
|
||||
It uses [Thream/file-uploads-api](https://github.com/Thream/file-uploads-api) [v1.1.8](https://github.com/Thream/file-uploads-api/releases/tag/v1.1.8).
|
||||
|
||||
## ⚙️ Getting Started
|
||||
|
||||
@ -32,50 +36,80 @@ It uses [Thream/file-uploads-api](https://github.com/Thream/file-uploads-api) [v
|
||||
|
||||
```sh
|
||||
# Clone the repository
|
||||
git clone https://github.com/Thream/api.git
|
||||
git clone git@github.com:Thream/api.git
|
||||
|
||||
# Go to the project root
|
||||
cd api
|
||||
|
||||
# Install dependencies
|
||||
npm clean-install
|
||||
|
||||
# Configure environment variables
|
||||
cp .env.example .env
|
||||
|
||||
# Install
|
||||
npm install
|
||||
# Generate Prisma client types
|
||||
npm run prisma:generate
|
||||
```
|
||||
|
||||
You will need to configure the environment variables by creating an `.env` file at
|
||||
the root of the project (see `.env.example`).
|
||||
### Database Setup
|
||||
|
||||
```sh
|
||||
# Create a new user and database
|
||||
psql
|
||||
CREATE DATABASE thream;
|
||||
CREATE USER thream_user with encrypted password 'password';
|
||||
ALTER USER thream_user WITH SUPERUSER;
|
||||
```
|
||||
|
||||
### Database Production migration
|
||||
|
||||
```sh
|
||||
npm run prisma:migrate:deploy
|
||||
```
|
||||
|
||||
### Local Development environment
|
||||
|
||||
Recommended to use [VSCode: Remote development in Containers](https://code.visualstudio.com/docs/remote/containers-tutorial).
|
||||
|
||||
#### Setup the database
|
||||
|
||||
```sh
|
||||
# Create a new user and database
|
||||
psql
|
||||
create database thream_database;
|
||||
create user thream_user with encrypted password 'password';
|
||||
ALTER USER thream_user WITH SUPERUSER;
|
||||
```
|
||||
|
||||
Replace `DATABASE_URL` inside `.env` with `postgresql://thream_user:password@localhost:5432/thream_database`
|
||||
#### Database Development migration
|
||||
|
||||
```sh
|
||||
# Run Prisma migrations
|
||||
npm run prisma:migrate:dev
|
||||
|
||||
# Reset the database (WARNING: This will delete all data)
|
||||
npm run prisma:migrate:reset
|
||||
```
|
||||
|
||||
#### Usage
|
||||
|
||||
```sh
|
||||
# Run API
|
||||
npm run dev
|
||||
```
|
||||
|
||||
# Run Prisma Studio
|
||||
npm run prisma:studio
|
||||
##### Services started
|
||||
|
||||
- `api`: <http://127.0.0.1:8080>
|
||||
- [Maildev](https://maildev.github.io/maildev/): <http://127.0.0.1:1080>
|
||||
- [Prisma Studio](https://www.prisma.io/studio): <http://127.0.0.1:5555>
|
||||
|
||||
##### Commands
|
||||
|
||||
```sh
|
||||
# Build, Lint and Test
|
||||
npm run build
|
||||
npm run build:typescript
|
||||
npm run lint:editorconfig
|
||||
npm run lint:markdown
|
||||
npm run lint:eslint
|
||||
npm run lint:prettier
|
||||
npm run test
|
||||
```
|
||||
|
||||
### Production environment (with [Docker](https://www.docker.com/))
|
||||
|
||||
```sh
|
||||
docker compose up --build
|
||||
```
|
||||
|
||||
## 💡 Contributing
|
||||
|
27
compose.yaml
Normal file
27
compose.yaml
Normal file
@ -0,0 +1,27 @@
|
||||
services:
|
||||
thream-api:
|
||||
container_name: "thream-api"
|
||||
image: "thream-api"
|
||||
restart: "unless-stopped"
|
||||
network_mode: "host"
|
||||
build:
|
||||
context: "./"
|
||||
env_file: ".env"
|
||||
depends_on:
|
||||
- "thream-database"
|
||||
|
||||
thream-database:
|
||||
container_name: "thream-database"
|
||||
image: "postgres:15.4"
|
||||
restart: "unless-stopped"
|
||||
network_mode: "host"
|
||||
env_file: ".env"
|
||||
environment:
|
||||
POSTGRES_USER: ${DATABASE_USER}
|
||||
POSTGRES_PASSWORD: ${DATABASE_PASSWORD}
|
||||
POSTGRES_DB: ${DATABASE_NAME}
|
||||
volumes:
|
||||
- "thream-postgres-data:/var/lib/postgresql/data"
|
||||
|
||||
volumes:
|
||||
thream-postgres-data:
|
@ -1,45 +1,45 @@
|
||||
/** @type {import('node-plop').PlopGeneratorConfig} */
|
||||
export const serviceGenerator = {
|
||||
description: 'REST API endpoint',
|
||||
description: "REST API endpoint",
|
||||
prompts: [
|
||||
{
|
||||
type: 'input',
|
||||
name: 'url',
|
||||
message: 'url'
|
||||
type: "input",
|
||||
name: "url",
|
||||
message: "url",
|
||||
},
|
||||
{
|
||||
type: 'list',
|
||||
name: 'httpMethod',
|
||||
message: 'httpMethod',
|
||||
choices: ['GET', 'POST', 'PUT', 'DELETE']
|
||||
type: "list",
|
||||
name: "httpMethod",
|
||||
message: "httpMethod",
|
||||
choices: ["GET", "POST", "PUT", "DELETE"],
|
||||
},
|
||||
{
|
||||
type: 'input',
|
||||
name: 'description',
|
||||
message: 'description'
|
||||
type: "input",
|
||||
name: "description",
|
||||
message: "description",
|
||||
},
|
||||
{
|
||||
type: 'list',
|
||||
name: 'tag',
|
||||
message: 'tag',
|
||||
choices: ['users', 'oauth2', 'guilds', 'channels', 'messages', 'members']
|
||||
type: "list",
|
||||
name: "tag",
|
||||
message: "tag",
|
||||
choices: ["users", "oauth2", "guilds", "channels", "messages", "members"],
|
||||
},
|
||||
{
|
||||
type: 'confirm',
|
||||
name: 'shouldBeAuthenticated',
|
||||
message: 'shouldBeAuthenticated'
|
||||
}
|
||||
type: "confirm",
|
||||
name: "shouldBeAuthenticated",
|
||||
message: "shouldBeAuthenticated",
|
||||
},
|
||||
],
|
||||
actions: [
|
||||
{
|
||||
type: 'add',
|
||||
path: 'src/services/{{url}}/{{lowerCase httpMethod}}.ts',
|
||||
templateFile: 'generators/service/service.ts.hbs'
|
||||
type: "add",
|
||||
path: "src/services/{{url}}/{{lowerCase httpMethod}}.ts",
|
||||
templateFile: "generators/service/service.ts.hbs",
|
||||
},
|
||||
{
|
||||
type: 'add',
|
||||
path: 'src/services/{{url}}/__test__/{{lowerCase httpMethod}}.test.ts',
|
||||
templateFile: 'generators/service/service.test.ts.hbs'
|
||||
}
|
||||
]
|
||||
type: "add",
|
||||
path: "src/services/{{url}}/__test__/{{lowerCase httpMethod}}.test.ts",
|
||||
templateFile: "generators/service/service.test.ts.hbs",
|
||||
},
|
||||
],
|
||||
}
|
||||
|
@ -1,18 +1,20 @@
|
||||
import tap from 'tap'
|
||||
import test from 'node:test'
|
||||
import assert from 'node:assert/strict'
|
||||
|
||||
import sinon from 'sinon'
|
||||
|
||||
import { application } from 'application.js'
|
||||
import { application } from '#src/application.js'
|
||||
{{#if shouldBeAuthenticated}}
|
||||
import { authenticateUserTest } from '__test__/utils/authenticateUserTest.js'
|
||||
import { authenticateUserTest } from '#src/__test__/utils/authenticateUserTest.js'
|
||||
{{/if}}
|
||||
import prisma from 'tools/database/prisma.js'
|
||||
import prisma from '#src/tools/database/prisma.js'
|
||||
|
||||
await tap.test('{{httpMethod}} {{url}}', async (t) => {
|
||||
await test('{{httpMethod}} {{url}}', async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
await t.test('succeeds', async () => {
|
||||
{{#if shouldBeAuthenticated}}
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
{{/if}}
|
||||
@ -32,6 +34,6 @@ await tap.test('{{httpMethod}} {{url}}', async (t) => {
|
||||
payload: {}
|
||||
})
|
||||
// const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
})
|
||||
})
|
||||
|
@ -1,10 +1,10 @@
|
||||
import { Static, Type } from '@sinclair/typebox'
|
||||
import { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
|
||||
import prisma from 'tools/database/prisma.js'
|
||||
import { fastifyErrors } from 'models/utils.js'
|
||||
import prisma from '#src/tools/database/prisma.js'
|
||||
import { fastifyErrors } from '#src/models/utils.js'
|
||||
{{#if shouldBeAuthenticated}}
|
||||
import authenticateUser from 'tools/plugins/authenticateUser.js'
|
||||
import authenticateUser from '#src/tools/plugins/authenticateUser.js'
|
||||
{{/if}}
|
||||
|
||||
const body{{sentenceCase httpMethod}}ServiceSchema = Type.Object({
|
||||
|
27086
package-lock.json
generated
27086
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
146
package.json
146
package.json
@ -1,104 +1,110 @@
|
||||
{
|
||||
"name": "@thream/api",
|
||||
"version": "1.2.1",
|
||||
"version": "1.2.10",
|
||||
"description": "Thream's application programming interface to stay close with your friends and communities.",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Thream/api"
|
||||
"imports": {
|
||||
"#src/*": "./build/*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=16.0.0",
|
||||
"npm": ">=8.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Thream/api"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rimraf ./build && swc ./src --out-dir ./build && tsc",
|
||||
"build:dev": "swc ./src --out-dir ./build --watch",
|
||||
"start": "node build/index.js",
|
||||
"dev": "concurrently -k -n \"TypeScript,Node\" -p \"[{name}]\" -c \"blue,green\" \"npm run build:dev\" \"cross-env NODE_ENV=development nodemon build/index.js\"",
|
||||
"build": "rimraf ./build && swc ./src --out-dir ./build",
|
||||
"build:typescript": "tsc",
|
||||
"start": "node --enable-source-maps build/index.js",
|
||||
"dev:build": "swc ./src --out-dir ./build --watch",
|
||||
"dev": "concurrently --kill-others --names \"TypeScript,Node,Maildev,Prisma Studio\" \"npm run dev:build\" \"cross-env NODE_ENV=development node --watch --enable-source-maps build/index.js\" \"npm run maildev\" \"npm run prisma:studio\"",
|
||||
"maildev": "maildev",
|
||||
"generate": "plop",
|
||||
"generate:jwt-secret": "node ./build/scripts/generate-jwt-secret.js",
|
||||
"generate:jwt-secret": "node --enable-source-maps ./build/scripts/generate-jwt-secret.js",
|
||||
"lint:commit": "commitlint",
|
||||
"lint:editorconfig": "editorconfig-checker",
|
||||
"lint:markdown": "markdownlint-cli2",
|
||||
"lint:typescript": "eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path \".gitignore\"",
|
||||
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\"",
|
||||
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
|
||||
"lint:prettier": "prettier . --check",
|
||||
"lint:staged": "lint-staged",
|
||||
"test": "cross-env NODE_ENV=test c8 tap",
|
||||
"test": "cross-env NODE_ENV=test node --enable-source-maps --test build/",
|
||||
"prisma:validate": "prisma validate",
|
||||
"prisma:generate": "prisma generate",
|
||||
"prisma:studio": "prisma studio",
|
||||
"prisma:studio": "prisma studio --browser=none",
|
||||
"prisma:migrate:dev": "prisma migrate dev",
|
||||
"prisma:migrate:deploy": "prisma migrate deploy",
|
||||
"release": "semantic-release",
|
||||
"postinstall": "husky install"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fastify/cors": "8.1.0",
|
||||
"@fastify/helmet": "10.0.1",
|
||||
"@fastify/multipart": "7.2.0",
|
||||
"@fastify/rate-limit": "7.4.0",
|
||||
"@fastify/sensible": "5.1.1",
|
||||
"@fastify/swagger": "7.6.1",
|
||||
"@prisma/client": "4.4.0",
|
||||
"@sinclair/typebox": "0.24.44",
|
||||
"@thream/socketio-jwt": "3.0.1",
|
||||
"axios": "0.26.1",
|
||||
"@fastify/cors": "8.4.0",
|
||||
"@fastify/helmet": "11.1.1",
|
||||
"@fastify/multipart": "8.0.0",
|
||||
"@fastify/rate-limit": "8.0.3",
|
||||
"@fastify/sensible": "5.5.0",
|
||||
"@fastify/swagger": "8.12.0",
|
||||
"@fastify/swagger-ui": "1.10.1",
|
||||
"@prisma/client": "5.4.2",
|
||||
"@sinclair/typebox": "0.31.18",
|
||||
"@thream/socketio-jwt": "3.1.3",
|
||||
"axios": "1.5.1",
|
||||
"bcryptjs": "2.4.3",
|
||||
"dotenv": "16.0.3",
|
||||
"ejs": "3.1.8",
|
||||
"fastify": "4.7.0",
|
||||
"fastify-plugin": "4.2.1",
|
||||
"dotenv": "16.3.1",
|
||||
"ejs": "3.1.9",
|
||||
"fastify": "4.24.3",
|
||||
"fastify-plugin": "4.5.1",
|
||||
"form-data": "4.0.0",
|
||||
"http-errors": "2.0.0",
|
||||
"jsonwebtoken": "8.5.1",
|
||||
"jsonwebtoken": "9.0.2",
|
||||
"ms": "2.1.3",
|
||||
"nodemailer": "6.8.0",
|
||||
"read-pkg": "7.1.0",
|
||||
"socket.io": "4.5.2"
|
||||
"nodemailer": "6.9.7",
|
||||
"read-pkg": "8.1.0",
|
||||
"socket.io": "4.7.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@commitlint/cli": "17.1.2",
|
||||
"@commitlint/config-conventional": "17.1.0",
|
||||
"@saithodev/semantic-release-backmerge": "2.1.2",
|
||||
"@commitlint/cli": "18.4.3",
|
||||
"@commitlint/config-conventional": "18.4.3",
|
||||
"@saithodev/semantic-release-backmerge": "4.0.1",
|
||||
"@semantic-release/git": "10.0.1",
|
||||
"@swc/cli": "0.1.57",
|
||||
"@swc/core": "1.3.4",
|
||||
"@types/bcryptjs": "2.4.2",
|
||||
"@types/busboy": "1.5.0",
|
||||
"@types/ejs": "3.1.1",
|
||||
"@types/http-errors": "1.8.2",
|
||||
"@types/jsonwebtoken": "8.5.9",
|
||||
"@types/ms": "0.7.31",
|
||||
"@types/node": "18.8.1",
|
||||
"@types/nodemailer": "6.4.6",
|
||||
"@types/sinon": "10.0.13",
|
||||
"@types/tap": "15.0.7",
|
||||
"@typescript-eslint/eslint-plugin": "5.39.0",
|
||||
"@typescript-eslint/parser": "5.39.0",
|
||||
"c8": "7.12.0",
|
||||
"concurrently": "7.4.0",
|
||||
"@swc/cli": "0.1.62",
|
||||
"@swc/core": "1.3.94",
|
||||
"@tsconfig/strictest": "2.0.2",
|
||||
"@types/bcryptjs": "2.4.5",
|
||||
"@types/busboy": "1.5.2",
|
||||
"@types/ejs": "3.1.4",
|
||||
"@types/http-errors": "2.0.3",
|
||||
"@types/jsonwebtoken": "9.0.4",
|
||||
"@types/ms": "0.7.33",
|
||||
"@types/node": "20.8.7",
|
||||
"@types/nodemailer": "6.4.13",
|
||||
"@types/sinon": "10.0.20",
|
||||
"@typescript-eslint/eslint-plugin": "6.9.0",
|
||||
"@typescript-eslint/parser": "6.9.0",
|
||||
"chokidar": "3.5.3",
|
||||
"concurrently": "8.2.2",
|
||||
"cross-env": "7.0.3",
|
||||
"editorconfig-checker": "4.0.2",
|
||||
"eslint": "8.24.0",
|
||||
"eslint-config-conventions": "5.0.0",
|
||||
"eslint-config-prettier": "8.5.0",
|
||||
"eslint-plugin-import": "2.26.0",
|
||||
"eslint-plugin-prettier": "4.2.1",
|
||||
"eslint-plugin-promise": "6.0.1",
|
||||
"eslint-plugin-unicorn": "44.0.0",
|
||||
"husky": "8.0.1",
|
||||
"lint-staged": "13.0.3",
|
||||
"markdownlint-cli2": "0.5.1",
|
||||
"nodemon": "2.0.20",
|
||||
"plop": "3.1.1",
|
||||
"prettier": "2.7.1",
|
||||
"prisma": "4.4.0",
|
||||
"rimraf": "3.0.2",
|
||||
"semantic-release": "19.0.5",
|
||||
"sinon": "14.0.1",
|
||||
"tap": "16.3.0",
|
||||
"typescript": "4.8.4"
|
||||
"editorconfig-checker": "5.1.1",
|
||||
"eslint": "8.52.0",
|
||||
"eslint-config-conventions": "12.0.0",
|
||||
"eslint-config-prettier": "9.0.0",
|
||||
"eslint-plugin-import": "2.29.0",
|
||||
"eslint-plugin-prettier": "5.0.1",
|
||||
"eslint-plugin-promise": "6.1.1",
|
||||
"eslint-plugin-unicorn": "48.0.1",
|
||||
"husky": "8.0.3",
|
||||
"lint-staged": "15.0.2",
|
||||
"maildev": "2.1.0",
|
||||
"markdownlint-cli2": "0.10.0",
|
||||
"markdownlint-rule-relative-links": "2.1.0",
|
||||
"plop": "4.0.0",
|
||||
"prettier": "3.0.3",
|
||||
"prisma": "5.4.2",
|
||||
"rimraf": "5.0.5",
|
||||
"semantic-release": "22.0.12",
|
||||
"sinon": "17.0.0",
|
||||
"typescript": "5.2.2"
|
||||
}
|
||||
}
|
||||
|
@ -1,8 +1,8 @@
|
||||
import { serviceGenerator } from './generators/service/index.js'
|
||||
import { serviceGenerator } from "./generators/service/index.js"
|
||||
|
||||
export default (
|
||||
/** @type {import('plop').NodePlopAPI} */
|
||||
plop
|
||||
plop,
|
||||
) => {
|
||||
plop.setGenerator('service', serviceGenerator)
|
||||
plop.setGenerator("service", serviceGenerator)
|
||||
}
|
||||
|
@ -1,52 +1,53 @@
|
||||
import type { User } from '@prisma/client'
|
||||
import sinon from 'sinon'
|
||||
import type { User } from "@prisma/client"
|
||||
import sinon from "sinon"
|
||||
|
||||
import { refreshTokenExample } from '../../models/RefreshToken.js'
|
||||
import type { UserJWT } from '../../models/User.js'
|
||||
import { userExample } from '../../models/User.js'
|
||||
import { userSettingsExample } from '../../models/UserSettings.js'
|
||||
import { refreshTokenExample } from "#src/models/RefreshToken.js"
|
||||
import type { UserJWT } from "#src/models/User.js"
|
||||
import { userExample } from "#src/models/User.js"
|
||||
import { userSettingsExample } from "#src/models/UserSettings.js"
|
||||
import {
|
||||
generateAccessToken,
|
||||
generateRefreshToken
|
||||
} from '../../tools/utils/jwtToken.js'
|
||||
import prisma from '../../tools/database/prisma.js'
|
||||
generateRefreshToken,
|
||||
} from "#src/tools/utils/jwtToken.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
|
||||
const userStubValue = {
|
||||
findUnique: async () => {
|
||||
return userExample
|
||||
},
|
||||
}
|
||||
const userSettingStubValue = {
|
||||
findFirst: async () => {
|
||||
return userSettingsExample
|
||||
},
|
||||
}
|
||||
const oAuthStubValue = {
|
||||
findMany: async () => {
|
||||
return []
|
||||
},
|
||||
}
|
||||
const refreshTokenStubValue = {
|
||||
create: async () => {
|
||||
return refreshTokenExample
|
||||
},
|
||||
}
|
||||
|
||||
export const authenticateUserTest = async (): Promise<{
|
||||
accessToken: string
|
||||
refreshToken: string
|
||||
user: User
|
||||
userStubValue: any
|
||||
userSettingStubValue: any
|
||||
oAuthStubValue: any
|
||||
refreshTokenStubValue: any
|
||||
userStubValue: typeof userStubValue
|
||||
userSettingStubValue: typeof userSettingStubValue
|
||||
oAuthStubValue: typeof oAuthStubValue
|
||||
refreshTokenStubValue: typeof refreshTokenStubValue
|
||||
}> => {
|
||||
const userStubValue = {
|
||||
findUnique: async () => {
|
||||
return userExample
|
||||
}
|
||||
}
|
||||
const userSettingStubValue = {
|
||||
findFirst: async () => {
|
||||
return userSettingsExample
|
||||
}
|
||||
}
|
||||
const oAuthStubValue = {
|
||||
findMany: async () => {
|
||||
return []
|
||||
}
|
||||
}
|
||||
const refreshTokenStubValue = {
|
||||
create: async () => {
|
||||
return refreshTokenExample
|
||||
}
|
||||
}
|
||||
sinon.stub(prisma, 'user').value(userStubValue)
|
||||
sinon.stub(prisma, 'userSetting').value(userSettingStubValue)
|
||||
sinon.stub(prisma, 'oAuth').value(oAuthStubValue)
|
||||
sinon.stub(prisma, 'refreshToken').value(refreshTokenStubValue)
|
||||
sinon.stub(prisma, "user").value(userStubValue)
|
||||
sinon.stub(prisma, "userSetting").value(userSettingStubValue)
|
||||
sinon.stub(prisma, "oAuth").value(oAuthStubValue)
|
||||
sinon.stub(prisma, "refreshToken").value(refreshTokenStubValue)
|
||||
const userJWT: UserJWT = {
|
||||
currentStrategy: 'Local',
|
||||
id: 1
|
||||
currentStrategy: "Local",
|
||||
id: 1,
|
||||
}
|
||||
const accessToken = generateAccessToken(userJWT)
|
||||
const refreshToken = await generateRefreshToken(userJWT)
|
||||
@ -57,6 +58,6 @@ export const authenticateUserTest = async (): Promise<{
|
||||
userStubValue,
|
||||
userSettingStubValue,
|
||||
oAuthStubValue,
|
||||
refreshTokenStubValue
|
||||
refreshTokenStubValue,
|
||||
}
|
||||
}
|
||||
|
@ -1,43 +1,75 @@
|
||||
import dotenv from 'dotenv'
|
||||
import fastify from 'fastify'
|
||||
import fastifyCors from '@fastify/cors'
|
||||
import fastifySwagger from '@fastify/swagger'
|
||||
import fastifyHelmet from '@fastify/helmet'
|
||||
import fastifyRateLimit from '@fastify/rate-limit'
|
||||
import fastifySensible from '@fastify/sensible'
|
||||
import dotenv from "dotenv"
|
||||
import fastify from "fastify"
|
||||
import fastifyCors from "@fastify/cors"
|
||||
import fastifySwagger from "@fastify/swagger"
|
||||
import fastifySwaggerUI from "@fastify/swagger-ui"
|
||||
import fastifyHelmet from "@fastify/helmet"
|
||||
import fastifyRateLimit from "@fastify/rate-limit"
|
||||
import fastifySensible from "@fastify/sensible"
|
||||
import { readPackage } from "read-pkg"
|
||||
|
||||
import { services } from './services/index.js'
|
||||
import { swaggerOptions } from './tools/configurations/swaggerOptions.js'
|
||||
import fastifySocketIo from './tools/plugins/socket-io.js'
|
||||
import { services } from "#src/services/index.js"
|
||||
import fastifySocketIo from "#src/tools/plugins/socket-io.js"
|
||||
|
||||
dotenv.config()
|
||||
const packageJSON = await readPackage()
|
||||
export const application = fastify({
|
||||
logger: process.env.NODE_ENV === 'development',
|
||||
logger: process.env["NODE_ENV"] === "development",
|
||||
ajv: {
|
||||
customOptions: {
|
||||
strict: 'log',
|
||||
keywords: ['kind', 'modifier'],
|
||||
strict: "log",
|
||||
keywords: ["kind", "modifier"],
|
||||
formats: {
|
||||
full: true
|
||||
}
|
||||
}
|
||||
}
|
||||
full: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
await application.register(fastifyCors)
|
||||
await application.register(fastifySensible)
|
||||
await application.register(fastifySocketIo, {
|
||||
cors: {
|
||||
origin: '*',
|
||||
methods: 'GET,HEAD,PUT,PATCH,POST,DELETE',
|
||||
origin: "*",
|
||||
methods: "GET,HEAD,PUT,PATCH,POST,DELETE",
|
||||
preflightContinue: false,
|
||||
optionsSuccessStatus: 204
|
||||
}
|
||||
optionsSuccessStatus: 204,
|
||||
},
|
||||
})
|
||||
await application.register(fastifyHelmet)
|
||||
await application.register(fastifyRateLimit, {
|
||||
max: 200,
|
||||
timeWindow: '1 minute'
|
||||
timeWindow: "1 minute",
|
||||
})
|
||||
await application.register(fastifySwagger, {
|
||||
openapi: {
|
||||
info: {
|
||||
title: packageJSON.name,
|
||||
description: packageJSON.description,
|
||||
version: packageJSON.version,
|
||||
},
|
||||
tags: [
|
||||
{ name: "users" },
|
||||
{ name: "oauth2" },
|
||||
{ name: "guilds" },
|
||||
{ name: "channels" },
|
||||
{ name: "messages" },
|
||||
{ name: "members" },
|
||||
],
|
||||
components: {
|
||||
securitySchemes: {
|
||||
bearerAuth: {
|
||||
type: "http",
|
||||
scheme: "bearer",
|
||||
bearerFormat: "JWT",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
hideUntagged: true,
|
||||
})
|
||||
await application.register(fastifySwaggerUI, {
|
||||
routePrefix: "/documentation",
|
||||
staticCSP: true,
|
||||
})
|
||||
await application.register(fastifySwagger, swaggerOptions)
|
||||
await application.register(services)
|
||||
|
@ -1,8 +1,8 @@
|
||||
import { application } from './application.js'
|
||||
import { HOST, PORT } from './tools/configurations/index.js'
|
||||
import { application } from "#src/application.js"
|
||||
import { HOST, PORT } from "#src/tools/configurations.js"
|
||||
|
||||
const address = await application.listen({
|
||||
port: PORT,
|
||||
host: HOST
|
||||
host: HOST,
|
||||
})
|
||||
console.log('\u001B[36m%s\u001B[0m', `🚀 Server listening at ${address}`)
|
||||
console.log(`Server listening at ${address}`)
|
||||
|
@ -1,23 +1,23 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { Channel } from '@prisma/client'
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { Channel } from "@prisma/client"
|
||||
|
||||
import { date, id } from './utils.js'
|
||||
import { guildExample } from './Guild.js'
|
||||
import { date, id } from "#src/models/utils.js"
|
||||
import { guildExample } from "#src/models/Guild.js"
|
||||
|
||||
export const types = [Type.Literal('text')]
|
||||
export const types = [Type.Literal("text")]
|
||||
|
||||
export const channelSchema = {
|
||||
id,
|
||||
name: Type.String({ minLength: 1, maxLength: 20 }),
|
||||
createdAt: date.createdAt,
|
||||
updatedAt: date.updatedAt,
|
||||
guildId: id
|
||||
guildId: id,
|
||||
}
|
||||
|
||||
export const channelExample: Channel = {
|
||||
id: 1,
|
||||
name: 'general',
|
||||
name: "general",
|
||||
guildId: guildExample.id,
|
||||
createdAt: new Date(),
|
||||
updatedAt: new Date()
|
||||
updatedAt: new Date(),
|
||||
}
|
||||
|
@ -1,28 +1,28 @@
|
||||
import type { Guild } from '@prisma/client'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { Guild } from "@prisma/client"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
|
||||
import { date, id } from './utils.js'
|
||||
import { date, id } from "#src/models/utils.js"
|
||||
|
||||
export const guildSchema = {
|
||||
id,
|
||||
name: Type.String({ minLength: 1, maxLength: 30 }),
|
||||
icon: Type.Union([
|
||||
Type.String({ format: 'uri-reference', minLength: 1 }),
|
||||
Type.Null()
|
||||
Type.String({ format: "uri-reference", minLength: 1 }),
|
||||
Type.Null(),
|
||||
]),
|
||||
description: Type.Union([
|
||||
Type.String({ minLength: 1, maxLength: 160 }),
|
||||
Type.Null()
|
||||
Type.Null(),
|
||||
]),
|
||||
createdAt: date.createdAt,
|
||||
updatedAt: date.updatedAt
|
||||
updatedAt: date.updatedAt,
|
||||
}
|
||||
|
||||
export const guildExample: Guild = {
|
||||
id: 1,
|
||||
name: 'GuildExample',
|
||||
description: 'guild example.',
|
||||
name: "GuildExample",
|
||||
description: "guild example.",
|
||||
icon: null,
|
||||
createdAt: new Date(),
|
||||
updatedAt: new Date()
|
||||
updatedAt: new Date(),
|
||||
}
|
||||
|
@ -1,9 +1,9 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { Member } from '@prisma/client'
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { Member } from "@prisma/client"
|
||||
|
||||
import { date, id } from './utils.js'
|
||||
import { guildExample } from './Guild.js'
|
||||
import { userExample } from './User.js'
|
||||
import { date, id } from "#src/models/utils.js"
|
||||
import { guildExample } from "#src/models/Guild.js"
|
||||
import { userExample } from "#src/models/User.js"
|
||||
|
||||
export const memberSchema = {
|
||||
id,
|
||||
@ -11,7 +11,7 @@ export const memberSchema = {
|
||||
createdAt: date.createdAt,
|
||||
updatedAt: date.updatedAt,
|
||||
userId: id,
|
||||
guildId: id
|
||||
guildId: id,
|
||||
}
|
||||
|
||||
export const memberExample: Member = {
|
||||
@ -20,5 +20,5 @@ export const memberExample: Member = {
|
||||
userId: userExample.id,
|
||||
guildId: guildExample.id,
|
||||
createdAt: new Date(),
|
||||
updatedAt: new Date()
|
||||
updatedAt: new Date(),
|
||||
}
|
||||
|
@ -1,34 +1,34 @@
|
||||
import type { Message } from '@prisma/client'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { Message } from "@prisma/client"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
|
||||
import { date, id } from './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 = {
|
||||
id,
|
||||
value: Type.String({
|
||||
minLength: 1,
|
||||
maxLength: 20_000
|
||||
maxLength: 20_000,
|
||||
}),
|
||||
type: Type.Union(types, { default: 'text' }),
|
||||
type: Type.Union(types, { default: "text" }),
|
||||
mimetype: Type.String({
|
||||
maxLength: 127,
|
||||
default: 'text/plain'
|
||||
default: "text/plain",
|
||||
}),
|
||||
createdAt: date.createdAt,
|
||||
updatedAt: date.updatedAt,
|
||||
memberId: id,
|
||||
channelId: id
|
||||
channelId: id,
|
||||
}
|
||||
|
||||
export const messageExample: Message = {
|
||||
id: 1,
|
||||
value: 'Hello, world!',
|
||||
type: 'text',
|
||||
mimetype: 'text/plain',
|
||||
value: "Hello, world!",
|
||||
type: "text",
|
||||
mimetype: "text/plain",
|
||||
createdAt: new Date(),
|
||||
updatedAt: new Date(),
|
||||
memberId: 1,
|
||||
channelId: 1
|
||||
channelId: 1,
|
||||
}
|
||||
|
@ -1,9 +1,9 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from "@sinclair/typebox"
|
||||
|
||||
import { date, id } from './utils.js'
|
||||
import { date, id } from "#src/models/utils.js"
|
||||
|
||||
export const providers = ['Google', 'GitHub', 'Discord'] as const
|
||||
export const strategies = [...providers, 'Local'] as const
|
||||
export const providers = ["Google", "GitHub", "Discord"] as const
|
||||
export const strategies = [...providers, "Local"] as const
|
||||
|
||||
export const strategiesTypebox = strategies.map((strategy) => {
|
||||
return Type.Literal(strategy)
|
||||
@ -12,8 +12,8 @@ export const providersTypebox = providers.map((provider) => {
|
||||
return Type.Literal(provider)
|
||||
})
|
||||
|
||||
export type ProviderOAuth = typeof providers[number]
|
||||
export type AuthenticationStrategy = typeof strategies[number]
|
||||
export type ProviderOAuth = (typeof providers)[number]
|
||||
export type AuthenticationStrategy = (typeof strategies)[number]
|
||||
|
||||
export const oauthSchema = {
|
||||
id,
|
||||
@ -21,5 +21,5 @@ export const oauthSchema = {
|
||||
provider: Type.Union([...providersTypebox]),
|
||||
createdAt: date.createdAt,
|
||||
updatedAt: date.updatedAt,
|
||||
userId: id
|
||||
userId: id,
|
||||
}
|
||||
|
@ -1,21 +1,21 @@
|
||||
import type { RefreshToken } from '@prisma/client'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { RefreshToken } from "@prisma/client"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
|
||||
import { userExample } from './User.js'
|
||||
import { date, id } from './utils.js'
|
||||
import { userExample } from "#src/models/User.js"
|
||||
import { date, id } from "#src/models/utils.js"
|
||||
|
||||
export const refreshTokensSchema = {
|
||||
id,
|
||||
token: Type.String({ format: 'uuid' }),
|
||||
token: Type.String({ format: "uuid" }),
|
||||
createdAt: date.createdAt,
|
||||
updatedAt: date.updatedAt,
|
||||
userId: id
|
||||
userId: id,
|
||||
}
|
||||
|
||||
export const refreshTokenExample: RefreshToken = {
|
||||
id: 1,
|
||||
userId: userExample.id,
|
||||
token: 'sometokenUUID',
|
||||
token: "sometokenUUID",
|
||||
createdAt: new Date(),
|
||||
updatedAt: new Date()
|
||||
updatedAt: new Date(),
|
||||
}
|
||||
|
@ -1,11 +1,11 @@
|
||||
import type { User } from '@prisma/client'
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { User } from "@prisma/client"
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
|
||||
import type { AuthenticationStrategy } from './OAuth.js'
|
||||
import { strategiesTypebox } from './OAuth.js'
|
||||
import { userSettingsSchema } from './UserSettings.js'
|
||||
import { date, id } from './utils.js'
|
||||
import type { AuthenticationStrategy } from "#src/models/OAuth.js"
|
||||
import { strategiesTypebox } from "#src/models/OAuth.js"
|
||||
import { userSettingsSchema } from "#src/models/UserSettings.js"
|
||||
import { date, id } from "#src/models/utils.js"
|
||||
|
||||
export interface UserJWT {
|
||||
id: number
|
||||
@ -25,21 +25,21 @@ export interface UserRequest {
|
||||
export const userSchema = {
|
||||
id,
|
||||
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 }),
|
||||
logo: Type.String({ minLength: 1, format: 'uri-reference' }),
|
||||
logo: Type.String({ minLength: 1, format: "uri-reference" }),
|
||||
status: Type.String({ minLength: 1, maxLength: 50 }),
|
||||
biography: Type.String({ minLength: 1, maxLength: 160 }),
|
||||
website: Type.String({
|
||||
minLength: 1,
|
||||
maxLength: 255,
|
||||
format: 'uri'
|
||||
format: "uri",
|
||||
}),
|
||||
isConfirmed: Type.Boolean({ default: false }),
|
||||
temporaryToken: Type.String(),
|
||||
temporaryExpirationToken: Type.String({ format: 'date-time' }),
|
||||
temporaryExpirationToken: Type.String({ format: "date-time" }),
|
||||
createdAt: date.createdAt,
|
||||
updatedAt: date.updatedAt
|
||||
updatedAt: date.updatedAt,
|
||||
}
|
||||
|
||||
export const userPublicWithoutSettingsSchema = {
|
||||
@ -52,20 +52,20 @@ export const userPublicWithoutSettingsSchema = {
|
||||
website: Type.Union([userSchema.website, Type.Null()]),
|
||||
isConfirmed: userSchema.isConfirmed,
|
||||
createdAt: date.createdAt,
|
||||
updatedAt: date.updatedAt
|
||||
updatedAt: date.updatedAt,
|
||||
}
|
||||
|
||||
export const userPublicSchema = {
|
||||
...userPublicWithoutSettingsSchema,
|
||||
settings: Type.Object(userSettingsSchema)
|
||||
settings: Type.Object(userSettingsSchema),
|
||||
}
|
||||
|
||||
export const userCurrentSchema = Type.Object({
|
||||
user: Type.Object({
|
||||
...userPublicSchema,
|
||||
currentStrategy: Type.Union([...strategiesTypebox]),
|
||||
strategies: Type.Array(Type.Union([...strategiesTypebox]))
|
||||
})
|
||||
strategies: Type.Array(Type.Union([...strategiesTypebox])),
|
||||
}),
|
||||
})
|
||||
|
||||
export const bodyUserSchema = Type.Object({
|
||||
@ -73,23 +73,23 @@ export const bodyUserSchema = Type.Object({
|
||||
name: userSchema.name,
|
||||
password: userSchema.password,
|
||||
theme: userSettingsSchema.theme,
|
||||
language: userSettingsSchema.language
|
||||
language: userSettingsSchema.language,
|
||||
})
|
||||
|
||||
export type BodyUserSchemaType = Static<typeof bodyUserSchema>
|
||||
|
||||
export const userExample: User = {
|
||||
id: 1,
|
||||
name: 'Divlo',
|
||||
email: 'contact@divlo.fr',
|
||||
password: 'somepassword',
|
||||
name: "Divlo",
|
||||
email: "contact@divlo.fr",
|
||||
password: "somepassword",
|
||||
logo: null,
|
||||
status: null,
|
||||
biography: null,
|
||||
website: null,
|
||||
isConfirmed: true,
|
||||
temporaryToken: 'temporaryUUIDtoken',
|
||||
temporaryToken: "temporaryUUIDtoken",
|
||||
temporaryExpirationToken: new Date(),
|
||||
createdAt: new Date(),
|
||||
updatedAt: new Date()
|
||||
updatedAt: new Date(),
|
||||
}
|
||||
|
@ -1,11 +1,11 @@
|
||||
import type { UserSetting } from '@prisma/client'
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { UserSetting } from "@prisma/client"
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
|
||||
import { date, id } from './utils.js'
|
||||
import { date, id } from "#src/models/utils.js"
|
||||
|
||||
export const languages = [Type.Literal('fr'), Type.Literal('en')]
|
||||
export const themes = [Type.Literal('light'), Type.Literal('dark')]
|
||||
export const languages = [Type.Literal("fr"), Type.Literal("en")]
|
||||
export const themes = [Type.Literal("light"), Type.Literal("dark")]
|
||||
|
||||
export const userSettingsSchema = {
|
||||
id,
|
||||
@ -15,7 +15,7 @@ export const userSettingsSchema = {
|
||||
isPublicGuilds: Type.Boolean(),
|
||||
createdAt: date.createdAt,
|
||||
updatedAt: date.updatedAt,
|
||||
userId: id
|
||||
userId: id,
|
||||
}
|
||||
|
||||
export type Theme = Static<typeof userSettingsSchema.theme>
|
||||
@ -23,11 +23,11 @@ export type Language = Static<typeof userSettingsSchema.language>
|
||||
|
||||
export const userSettingsExample: UserSetting = {
|
||||
id: 1,
|
||||
theme: 'dark',
|
||||
language: 'en',
|
||||
theme: "dark",
|
||||
language: "en",
|
||||
isPublicEmail: false,
|
||||
isPublicGuilds: false,
|
||||
userId: 1,
|
||||
createdAt: new Date(),
|
||||
updatedAt: new Date()
|
||||
updatedAt: new Date(),
|
||||
}
|
||||
|
@ -1,51 +1,51 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import { Type } from "@sinclair/typebox"
|
||||
|
||||
export const date = {
|
||||
createdAt: Type.String({
|
||||
format: 'date-time',
|
||||
description: 'Created date time'
|
||||
format: "date-time",
|
||||
description: "Created date time",
|
||||
}),
|
||||
updatedAt: Type.String({
|
||||
format: 'date-time',
|
||||
description: 'Last updated date time'
|
||||
})
|
||||
format: "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 = {
|
||||
400: {
|
||||
statusCode: Type.Literal(400),
|
||||
error: Type.Literal('Bad Request'),
|
||||
message: Type.String()
|
||||
error: Type.Literal("Bad Request"),
|
||||
message: Type.String(),
|
||||
},
|
||||
401: {
|
||||
statusCode: Type.Literal(401),
|
||||
error: Type.Literal('Unauthorized'),
|
||||
message: Type.Literal('Unauthorized')
|
||||
error: Type.Literal("Unauthorized"),
|
||||
message: Type.Literal("Unauthorized"),
|
||||
},
|
||||
403: {
|
||||
statusCode: Type.Literal(403),
|
||||
error: Type.Literal('Forbidden'),
|
||||
message: Type.Literal('Forbidden')
|
||||
error: Type.Literal("Forbidden"),
|
||||
message: Type.Literal("Forbidden"),
|
||||
},
|
||||
404: {
|
||||
statusCode: Type.Literal(404),
|
||||
error: Type.Literal('Not Found'),
|
||||
message: Type.String()
|
||||
error: Type.Literal("Not Found"),
|
||||
message: Type.String(),
|
||||
},
|
||||
431: {
|
||||
statusCode: Type.Literal(431),
|
||||
error: Type.Literal('Request Header Fields Too Large'),
|
||||
message: Type.String()
|
||||
error: Type.Literal("Request Header Fields Too Large"),
|
||||
message: Type.String(),
|
||||
},
|
||||
500: {
|
||||
statusCode: Type.Literal(500),
|
||||
error: Type.Literal('Internal Server Error'),
|
||||
message: Type.Literal('Something went wrong')
|
||||
}
|
||||
error: Type.Literal("Internal Server Error"),
|
||||
message: Type.Literal("Something went wrong"),
|
||||
},
|
||||
}
|
||||
|
||||
export const fastifyErrors = {
|
||||
@ -54,5 +54,5 @@ export const fastifyErrors = {
|
||||
403: Type.Object(fastifyErrorsSchema[403]),
|
||||
404: Type.Object(fastifyErrorsSchema[404]),
|
||||
431: Type.Object(fastifyErrorsSchema[431]),
|
||||
500: Type.Object(fastifyErrorsSchema[500])
|
||||
500: Type.Object(fastifyErrorsSchema[500]),
|
||||
}
|
||||
|
@ -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"))
|
||||
|
@ -1,28 +1,30 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../application.js'
|
||||
import { authenticateUserTest } from '../../../../__test__/utils/authenticateUserTest.js'
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { channelExample } from '../../../../models/Channel.js'
|
||||
import { memberExample } from '../../../../models/Member.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
await tap.test('DELETE /channels/[channelId]', async (t) => {
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { channelExample } from "#src/models/Channel.js"
|
||||
import { memberExample } from "#src/models/Member.js"
|
||||
|
||||
await test("DELETE /channels/[channelId]", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
await t.test("succeeds", async () => {
|
||||
const defaultChannelId = 5
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return channelExample
|
||||
},
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...channelExample,
|
||||
id: defaultChannelId
|
||||
id: defaultChannelId,
|
||||
}
|
||||
},
|
||||
count: async () => {
|
||||
@ -30,114 +32,114 @@ await tap.test('DELETE /channels/[channelId]', async (t) => {
|
||||
},
|
||||
delete: async () => {
|
||||
return channelExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return memberExample
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'DELETE',
|
||||
method: "DELETE",
|
||||
url: `/channels/${channelExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.id, channelExample.id)
|
||||
t.equal(responseJson.name, channelExample.name)
|
||||
t.equal(responseJson.guildId, channelExample.guildId)
|
||||
t.equal(responseJson.defaultChannelId, defaultChannelId)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.id, channelExample.id)
|
||||
assert.strictEqual(responseJson.name, channelExample.name)
|
||||
assert.strictEqual(responseJson.guildId, channelExample.guildId)
|
||||
assert.strictEqual(responseJson.defaultChannelId, defaultChannelId)
|
||||
})
|
||||
|
||||
await t.test('fails if there is only one channel', async (t) => {
|
||||
await t.test("fails if there is only one channel", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return channelExample
|
||||
},
|
||||
count: async () => {
|
||||
return 1
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return memberExample
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'DELETE',
|
||||
method: "DELETE",
|
||||
url: `/channels/${channelExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
t.equal(response.statusCode, 400)
|
||||
assert.strictEqual(response.statusCode, 400)
|
||||
})
|
||||
|
||||
await t.test('fails if the channel is not found', async (t) => {
|
||||
await t.test("fails if the channel is not found", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'DELETE',
|
||||
method: "DELETE",
|
||||
url: `/channels/${channelExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
t.equal(response.statusCode, 404)
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
})
|
||||
|
||||
await t.test('fails if the member is not found', async (t) => {
|
||||
await t.test("fails if the member is not found", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return channelExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'DELETE',
|
||||
method: "DELETE",
|
||||
url: `/channels/${channelExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
t.equal(response.statusCode, 404)
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
})
|
||||
|
||||
await t.test('fails if the member is not owner', async (t) => {
|
||||
await t.test("fails if the member is not owner", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return channelExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...memberExample,
|
||||
isOwner: false
|
||||
isOwner: false,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'DELETE',
|
||||
method: "DELETE",
|
||||
url: `/channels/${channelExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
t.equal(response.statusCode, 400)
|
||||
assert.strictEqual(response.statusCode, 400)
|
||||
})
|
||||
})
|
||||
|
@ -1,96 +1,98 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../application.js'
|
||||
import { authenticateUserTest } from '../../../../__test__/utils/authenticateUserTest.js'
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { channelExample } from '../../../../models/Channel.js'
|
||||
import { memberExample } from '../../../../models/Member.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
await tap.test('GET /channels/[channelId]', async (t) => {
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { channelExample } from "#src/models/Channel.js"
|
||||
import { memberExample } from "#src/models/Member.js"
|
||||
|
||||
await test("GET /channels/[channelId]", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
await t.test("succeeds", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return channelExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return memberExample
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
method: "GET",
|
||||
url: `/channels/${channelExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.channel.id, channelExample.id)
|
||||
t.equal(responseJson.channel.name, channelExample.name)
|
||||
t.equal(responseJson.channel.guildId, channelExample.guildId)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.channel.id, channelExample.id)
|
||||
assert.strictEqual(responseJson.channel.name, channelExample.name)
|
||||
assert.strictEqual(responseJson.channel.guildId, channelExample.guildId)
|
||||
})
|
||||
|
||||
await t.test('fails with not found member', async (t) => {
|
||||
await t.test("fails with not found member", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return channelExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
method: "GET",
|
||||
url: `/channels/${channelExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 404)
|
||||
t.equal(responseJson.message, 'Channel not found')
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
assert.strictEqual(responseJson.message, "Channel not found")
|
||||
})
|
||||
|
||||
await t.test('fails with not found channel', async (t) => {
|
||||
await t.test("fails with not found channel", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return memberExample
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
method: "GET",
|
||||
url: `/channels/${channelExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 404)
|
||||
t.equal(responseJson.message, 'Channel not found')
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
assert.strictEqual(responseJson.message, "Channel not found")
|
||||
})
|
||||
|
||||
await t.test('fails with unauthenticated user', async (t) => {
|
||||
await t.test("fails with unauthenticated user", async () => {
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
url: '/channels/1'
|
||||
method: "GET",
|
||||
url: "/channels/1",
|
||||
})
|
||||
t.equal(response.statusCode, 401)
|
||||
assert.strictEqual(response.statusCode, 401)
|
||||
})
|
||||
})
|
||||
|
@ -1,129 +1,131 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../application.js'
|
||||
import { authenticateUserTest } from '../../../../__test__/utils/authenticateUserTest.js'
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { channelExample } from '../../../../models/Channel.js'
|
||||
import { memberExample } from '../../../../models/Member.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
const newName = 'new channel name'
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { channelExample } from "#src/models/Channel.js"
|
||||
import { memberExample } from "#src/models/Member.js"
|
||||
|
||||
await tap.test('PUT /channels/[channelId]', async (t) => {
|
||||
const newName = "new channel name"
|
||||
|
||||
await test("PUT /channels/[channelId]", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
await t.test("succeeds", async () => {
|
||||
const defaultChannelId = 5
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return channelExample
|
||||
},
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...channelExample,
|
||||
id: defaultChannelId
|
||||
id: defaultChannelId,
|
||||
}
|
||||
},
|
||||
update: async () => {
|
||||
return {
|
||||
...channelExample,
|
||||
name: newName
|
||||
name: newName,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return memberExample
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'PUT',
|
||||
method: "PUT",
|
||||
url: `/channels/${channelExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: { name: newName }
|
||||
payload: { name: newName },
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.id, channelExample.id)
|
||||
t.equal(responseJson.name, newName)
|
||||
t.equal(responseJson.guildId, channelExample.guildId)
|
||||
t.equal(responseJson.defaultChannelId, defaultChannelId)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.id, channelExample.id)
|
||||
assert.strictEqual(responseJson.name, newName)
|
||||
assert.strictEqual(responseJson.guildId, channelExample.guildId)
|
||||
assert.strictEqual(responseJson.defaultChannelId, defaultChannelId)
|
||||
})
|
||||
|
||||
await t.test('fails if the channel is not found', async (t) => {
|
||||
await t.test("fails if the channel is not found", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return memberExample
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'PUT',
|
||||
method: "PUT",
|
||||
url: `/channels/${channelExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: { name: newName }
|
||||
payload: { name: newName },
|
||||
})
|
||||
t.equal(response.statusCode, 404)
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
})
|
||||
|
||||
await t.test('fails if the member is not found', async (t) => {
|
||||
await t.test("fails if the member is not found", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return channelExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'PUT',
|
||||
method: "PUT",
|
||||
url: `/channels/${channelExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: { name: newName }
|
||||
payload: { name: newName },
|
||||
})
|
||||
t.equal(response.statusCode, 404)
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
})
|
||||
|
||||
await t.test('fails if the member is not owner', async (t) => {
|
||||
await t.test("fails if the member is not owner", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return channelExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...memberExample,
|
||||
isOwner: false
|
||||
isOwner: false,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'PUT',
|
||||
method: "PUT",
|
||||
url: `/channels/${channelExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: { name: newName }
|
||||
payload: { name: newName },
|
||||
})
|
||||
t.equal(response.statusCode, 400)
|
||||
assert.strictEqual(response.statusCode, 400)
|
||||
})
|
||||
})
|
||||
|
@ -1,38 +1,38 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../models/utils.js'
|
||||
import authenticateUser from '../../../tools/plugins/authenticateUser.js'
|
||||
import { channelSchema } from '../../../models/Channel.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { channelSchema } from "#src/models/Channel.js"
|
||||
|
||||
const parametersSchema = Type.Object({
|
||||
channelId: channelSchema.id
|
||||
channelId: channelSchema.id,
|
||||
})
|
||||
|
||||
type Parameters = Static<typeof parametersSchema>
|
||||
|
||||
const deleteServiceSchema: FastifySchema = {
|
||||
description: 'DELETE a channel with its id.',
|
||||
tags: ['channels'] as string[],
|
||||
description: "DELETE a channel with its id.",
|
||||
tags: ["channels"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
params: parametersSchema,
|
||||
response: {
|
||||
200: Type.Object({
|
||||
...channelSchema,
|
||||
defaultChannelId: channelSchema.id
|
||||
defaultChannelId: channelSchema.id,
|
||||
}),
|
||||
400: fastifyErrors[400],
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
404: fastifyErrors[404],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const deleteChannelService: FastifyPluginAsync = async (fastify) => {
|
||||
@ -41,61 +41,61 @@ export const deleteChannelService: FastifyPluginAsync = async (fastify) => {
|
||||
fastify.route<{
|
||||
Params: Parameters
|
||||
}>({
|
||||
method: 'DELETE',
|
||||
url: '/channels/:channelId',
|
||||
method: "DELETE",
|
||||
url: "/channels/:channelId",
|
||||
schema: deleteServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
throw fastify.httpErrors.forbidden()
|
||||
}
|
||||
const { user } = request
|
||||
const { channelId } = request.params
|
||||
const { user, params } = request
|
||||
const { channelId } = params
|
||||
const channelCheck = await prisma.channel.findUnique({
|
||||
where: { id: channelId }
|
||||
where: { id: channelId },
|
||||
})
|
||||
if (channelCheck == null) {
|
||||
throw fastify.httpErrors.notFound('Channel not found')
|
||||
throw fastify.httpErrors.notFound("Channel not found")
|
||||
}
|
||||
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) {
|
||||
throw fastify.httpErrors.notFound('Member not found')
|
||||
throw fastify.httpErrors.notFound("Member not found")
|
||||
}
|
||||
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({
|
||||
where: { guildId: channelCheck.guildId }
|
||||
where: { guildId: channelCheck.guildId },
|
||||
})
|
||||
if (channelCount <= 1) {
|
||||
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({
|
||||
where: { id: channelId }
|
||||
where: { id: channelId },
|
||||
})
|
||||
const defaultChannel = await prisma.channel.findFirst({
|
||||
where: { guildId: member.guildId }
|
||||
where: { guildId: member.guildId },
|
||||
})
|
||||
if (defaultChannel == null) {
|
||||
throw fastify.httpErrors.internalServerError()
|
||||
}
|
||||
const item = {
|
||||
...channel,
|
||||
defaultChannelId: defaultChannel.id
|
||||
defaultChannelId: defaultChannel.id,
|
||||
}
|
||||
await fastify.io.emitToMembers({
|
||||
event: 'channels',
|
||||
event: "channels",
|
||||
guildId: member.guildId,
|
||||
payload: {
|
||||
action: 'delete',
|
||||
item
|
||||
}
|
||||
action: "delete",
|
||||
item,
|
||||
},
|
||||
})
|
||||
reply.statusCode = 200
|
||||
return item
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,37 +1,37 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../models/utils.js'
|
||||
import authenticateUser from '../../../tools/plugins/authenticateUser.js'
|
||||
import { channelSchema } from '../../../models/Channel.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { channelSchema } from "#src/models/Channel.js"
|
||||
|
||||
const parametersSchema = Type.Object({
|
||||
channelId: channelSchema.id
|
||||
channelId: channelSchema.id,
|
||||
})
|
||||
|
||||
type Parameters = Static<typeof parametersSchema>
|
||||
|
||||
const getServiceSchema: FastifySchema = {
|
||||
description: 'GET a channel with its id.',
|
||||
tags: ['channels'] as string[],
|
||||
description: "GET a channel with its id.",
|
||||
tags: ["channels"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
params: parametersSchema,
|
||||
response: {
|
||||
200: Type.Object({
|
||||
channel: Type.Object(channelSchema)
|
||||
channel: Type.Object(channelSchema),
|
||||
}),
|
||||
400: fastifyErrors[400],
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
404: fastifyErrors[404],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const getChannelByIdService: FastifyPluginAsync = async (fastify) => {
|
||||
@ -40,8 +40,8 @@ export const getChannelByIdService: FastifyPluginAsync = async (fastify) => {
|
||||
fastify.route<{
|
||||
Params: Parameters
|
||||
}>({
|
||||
method: 'GET',
|
||||
url: '/channels/:channelId',
|
||||
method: "GET",
|
||||
url: "/channels/:channelId",
|
||||
schema: getServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
@ -49,19 +49,19 @@ export const getChannelByIdService: FastifyPluginAsync = async (fastify) => {
|
||||
}
|
||||
const { channelId } = request.params
|
||||
const channel = await prisma.channel.findUnique({
|
||||
where: { id: channelId }
|
||||
where: { id: channelId },
|
||||
})
|
||||
if (channel == null) {
|
||||
throw fastify.httpErrors.notFound('Channel not found')
|
||||
throw fastify.httpErrors.notFound("Channel not found")
|
||||
}
|
||||
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) {
|
||||
throw fastify.httpErrors.notFound('Channel not found')
|
||||
throw fastify.httpErrors.notFound("Channel not found")
|
||||
}
|
||||
reply.statusCode = 200
|
||||
return { channel }
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,115 +1,117 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../../application.js'
|
||||
import { authenticateUserTest } from '../../../../../__test__/utils/authenticateUserTest.js'
|
||||
import prisma from '../../../../../tools/database/prisma.js'
|
||||
import { channelExample } from '../../../../../models/Channel.js'
|
||||
import { memberExample } from '../../../../../models/Member.js'
|
||||
import { userExample } from '../../../../../models/User.js'
|
||||
import { messageExample } from '../../../../../models/Message.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
await tap.test('GET /channels/[channelId]/messages', async (t) => {
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { channelExample } from "#src/models/Channel.js"
|
||||
import { memberExample } from "#src/models/Member.js"
|
||||
import { userExample } from "#src/models/User.js"
|
||||
import { messageExample } from "#src/models/Message.js"
|
||||
|
||||
await test("GET /channels/[channelId]/messages", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
await t.test("succeeds", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return channelExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...memberExample,
|
||||
user: userExample
|
||||
user: userExample,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'message').value({
|
||||
sinon.stub(prisma, "message").value({
|
||||
findMany: async () => {
|
||||
return [messageExample]
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
method: "GET",
|
||||
url: `/channels/${channelExample.id}/messages`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.length, 1)
|
||||
t.equal(responseJson[0].id, messageExample.id)
|
||||
t.equal(responseJson[0].value, messageExample.value)
|
||||
t.equal(responseJson[0].type, messageExample.type)
|
||||
t.equal(responseJson[0].mimetype, messageExample.mimetype)
|
||||
t.equal(responseJson[0].member.id, memberExample.id)
|
||||
t.equal(responseJson[0].member.isOwner, memberExample.isOwner)
|
||||
t.equal(responseJson[0].member.user.id, userExample.id)
|
||||
t.equal(responseJson[0].member.user.name, userExample.name)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.length, 1)
|
||||
assert.strictEqual(responseJson[0].id, messageExample.id)
|
||||
assert.strictEqual(responseJson[0].value, messageExample.value)
|
||||
assert.strictEqual(responseJson[0].type, messageExample.type)
|
||||
assert.strictEqual(responseJson[0].mimetype, messageExample.mimetype)
|
||||
assert.strictEqual(responseJson[0].member.id, memberExample.id)
|
||||
assert.strictEqual(responseJson[0].member.isOwner, memberExample.isOwner)
|
||||
assert.strictEqual(responseJson[0].member.user.id, userExample.id)
|
||||
assert.strictEqual(responseJson[0].member.user.name, userExample.name)
|
||||
})
|
||||
|
||||
await t.test('fails with not found channel', async (t) => {
|
||||
await t.test("fails with not found channel", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...memberExample,
|
||||
user: userExample
|
||||
user: userExample,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
method: "GET",
|
||||
url: `/channels/${channelExample.id}/messages`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 404)
|
||||
t.equal(responseJson.message, 'Channel not found')
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
assert.strictEqual(responseJson.message, "Channel not found")
|
||||
})
|
||||
|
||||
await t.test('fails with not found member', async (t) => {
|
||||
await t.test("fails with not found member", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return channelExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
method: "GET",
|
||||
url: `/channels/${channelExample.id}/messages`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 404)
|
||||
t.equal(responseJson.message, 'Channel not found')
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
assert.strictEqual(responseJson.message, "Channel not found")
|
||||
})
|
||||
|
||||
await t.test('fails with unauthenticated user', async (t) => {
|
||||
await t.test("fails with unauthenticated user", async () => {
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
url: `/channels/1/messages`
|
||||
method: "GET",
|
||||
url: `/channels/1/messages`,
|
||||
})
|
||||
t.equal(response.statusCode, 401)
|
||||
assert.strictEqual(response.statusCode, 401)
|
||||
})
|
||||
})
|
||||
|
@ -1,135 +1,137 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../../application.js'
|
||||
import { authenticateUserTest } from '../../../../../__test__/utils/authenticateUserTest.js'
|
||||
import prisma from '../../../../../tools/database/prisma.js'
|
||||
import { channelExample } from '../../../../../models/Channel.js'
|
||||
import { memberExample } from '../../../../../models/Member.js'
|
||||
import { userExample } from '../../../../../models/User.js'
|
||||
import { messageExample } from '../../../../../models/Message.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
await tap.test('POST /channels/[channelId]/messages', async (t) => {
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { channelExample } from "#src/models/Channel.js"
|
||||
import { memberExample } from "#src/models/Member.js"
|
||||
import { userExample } from "#src/models/User.js"
|
||||
import { messageExample } from "#src/models/Message.js"
|
||||
|
||||
await test("POST /channels/[channelId]/messages", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
await t.test("succeeds", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return channelExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...memberExample,
|
||||
user: userExample
|
||||
user: userExample,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'message').value({
|
||||
sinon.stub(prisma, "message").value({
|
||||
create: async () => {
|
||||
return messageExample
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'POST',
|
||||
method: "POST",
|
||||
url: `/channels/${channelExample.id}/messages`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: { value: messageExample.value }
|
||||
payload: { value: messageExample.value },
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 201)
|
||||
t.equal(responseJson.id, messageExample.id)
|
||||
t.equal(responseJson.value, messageExample.value)
|
||||
t.equal(responseJson.type, messageExample.type)
|
||||
t.equal(responseJson.mimetype, messageExample.mimetype)
|
||||
t.equal(responseJson.member.id, memberExample.id)
|
||||
t.equal(responseJson.member.isOwner, memberExample.isOwner)
|
||||
t.equal(responseJson.member.user.id, userExample.id)
|
||||
t.equal(responseJson.member.user.name, userExample.name)
|
||||
assert.strictEqual(response.statusCode, 201)
|
||||
assert.strictEqual(responseJson.id, messageExample.id)
|
||||
assert.strictEqual(responseJson.value, messageExample.value)
|
||||
assert.strictEqual(responseJson.type, messageExample.type)
|
||||
assert.strictEqual(responseJson.mimetype, messageExample.mimetype)
|
||||
assert.strictEqual(responseJson.member.id, memberExample.id)
|
||||
assert.strictEqual(responseJson.member.isOwner, memberExample.isOwner)
|
||||
assert.strictEqual(responseJson.member.user.id, userExample.id)
|
||||
assert.strictEqual(responseJson.member.user.name, userExample.name)
|
||||
})
|
||||
|
||||
await t.test('fails with no message value', async (t) => {
|
||||
await t.test("fails with no message value", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return channelExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...memberExample,
|
||||
user: userExample
|
||||
user: userExample,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'POST',
|
||||
method: "POST",
|
||||
url: `/channels/${channelExample.id}/messages`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: {}
|
||||
payload: {},
|
||||
})
|
||||
t.equal(response.statusCode, 400)
|
||||
assert.strictEqual(response.statusCode, 400)
|
||||
})
|
||||
|
||||
await t.test('fails with not found channel', async (t) => {
|
||||
await t.test("fails with not found channel", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...memberExample,
|
||||
user: userExample
|
||||
user: userExample,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'POST',
|
||||
url: '/channels/5/messages',
|
||||
method: "POST",
|
||||
url: "/channels/5/messages",
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: { value: messageExample.value }
|
||||
payload: { value: messageExample.value },
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 404)
|
||||
t.equal(responseJson.message, 'Channel not found')
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
assert.strictEqual(responseJson.message, "Channel not found")
|
||||
})
|
||||
|
||||
await t.test('fails with not found member', async (t) => {
|
||||
await t.test("fails with not found member", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findUnique: async () => {
|
||||
return channelExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'POST',
|
||||
method: "POST",
|
||||
url: `/channels/${channelExample.id}/messages`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: { value: messageExample.value }
|
||||
payload: { value: messageExample.value },
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 404)
|
||||
t.equal(responseJson.message, 'Channel not found')
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
assert.strictEqual(responseJson.message, "Channel not found")
|
||||
})
|
||||
})
|
||||
|
@ -1,34 +1,34 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../../models/utils.js'
|
||||
import authenticateUser from '../../../../tools/plugins/authenticateUser.js'
|
||||
import { messageSchema } from '../../../../models/Message.js'
|
||||
import { memberSchema } from '../../../../models/Member.js'
|
||||
import { userPublicWithoutSettingsSchema } from '../../../../models/User.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { messageSchema } from "#src/models/Message.js"
|
||||
import { memberSchema } from "#src/models/Member.js"
|
||||
import { userPublicWithoutSettingsSchema } from "#src/models/User.js"
|
||||
import {
|
||||
getPaginationOptions,
|
||||
queryPaginationObjectSchema
|
||||
} from '../../../../tools/database/pagination.js'
|
||||
import { channelSchema } from '../../../../models/Channel.js'
|
||||
queryPaginationObjectSchema,
|
||||
} from "#src/tools/database/pagination.js"
|
||||
import { channelSchema } from "#src/models/Channel.js"
|
||||
|
||||
type QuerySchemaType = Static<typeof queryPaginationObjectSchema>
|
||||
|
||||
const parametersSchema = Type.Object({
|
||||
channelId: channelSchema.id
|
||||
channelId: channelSchema.id,
|
||||
})
|
||||
|
||||
type Parameters = Static<typeof parametersSchema>
|
||||
|
||||
const getServiceSchema: FastifySchema = {
|
||||
description: 'GET all the messages of a channel by its id.',
|
||||
tags: ['messages'] as string[],
|
||||
description: "GET all the messages of a channel by its id.",
|
||||
tags: ["messages"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
params: parametersSchema,
|
||||
querystring: queryPaginationObjectSchema,
|
||||
@ -38,20 +38,20 @@ const getServiceSchema: FastifySchema = {
|
||||
...messageSchema,
|
||||
member: Type.Object({
|
||||
...memberSchema,
|
||||
user: Type.Object(userPublicWithoutSettingsSchema)
|
||||
})
|
||||
})
|
||||
user: Type.Object(userPublicWithoutSettingsSchema),
|
||||
}),
|
||||
}),
|
||||
),
|
||||
400: fastifyErrors[400],
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
404: fastifyErrors[404],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const getMessagesByChannelIdService: FastifyPluginAsync = async (
|
||||
fastify
|
||||
fastify,
|
||||
) => {
|
||||
await fastify.register(authenticateUser)
|
||||
|
||||
@ -59,8 +59,8 @@ export const getMessagesByChannelIdService: FastifyPluginAsync = async (
|
||||
Params: Parameters
|
||||
Querystring: QuerySchemaType
|
||||
}>({
|
||||
method: 'GET',
|
||||
url: '/channels/:channelId/messages',
|
||||
method: "GET",
|
||||
url: "/channels/:channelId/messages",
|
||||
schema: getServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
@ -68,21 +68,21 @@ export const getMessagesByChannelIdService: FastifyPluginAsync = async (
|
||||
}
|
||||
const { channelId } = request.params
|
||||
const channel = await prisma.channel.findUnique({
|
||||
where: { id: channelId }
|
||||
where: { id: channelId },
|
||||
})
|
||||
if (channel == null) {
|
||||
throw fastify.httpErrors.notFound('Channel not found')
|
||||
throw fastify.httpErrors.notFound("Channel not found")
|
||||
}
|
||||
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) {
|
||||
throw fastify.httpErrors.notFound('Channel not found')
|
||||
throw fastify.httpErrors.notFound("Channel not found")
|
||||
}
|
||||
const messagesRequest = await prisma.message.findMany({
|
||||
...getPaginationOptions(request.query),
|
||||
orderBy: { createdAt: 'desc' },
|
||||
where: { channelId }
|
||||
orderBy: { createdAt: "desc" },
|
||||
where: { channelId },
|
||||
})
|
||||
const messages = await Promise.all(
|
||||
messagesRequest.reverse().map(async (message) => {
|
||||
@ -98,10 +98,10 @@ export const getMessagesByChannelIdService: FastifyPluginAsync = async (
|
||||
biography: true,
|
||||
website: true,
|
||||
createdAt: true,
|
||||
updatedAt: true
|
||||
}
|
||||
}
|
||||
}
|
||||
updatedAt: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
return {
|
||||
...message,
|
||||
@ -109,14 +109,14 @@ export const getMessagesByChannelIdService: FastifyPluginAsync = async (
|
||||
...member,
|
||||
user: {
|
||||
...member?.user,
|
||||
email: null
|
||||
}
|
||||
}
|
||||
email: null,
|
||||
},
|
||||
},
|
||||
}
|
||||
})
|
||||
}),
|
||||
)
|
||||
reply.statusCode = 200
|
||||
return messages
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,35 +1,35 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../../models/utils.js'
|
||||
import authenticateUser from '../../../../tools/plugins/authenticateUser.js'
|
||||
import { messageSchema } from '../../../../models/Message.js'
|
||||
import { channelSchema } from '../../../../models/Channel.js'
|
||||
import { memberSchema } from '../../../../models/Member.js'
|
||||
import { userPublicWithoutSettingsSchema } from '../../../../models/User.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { messageSchema } from "#src/models/Message.js"
|
||||
import { channelSchema } from "#src/models/Channel.js"
|
||||
import { memberSchema } from "#src/models/Member.js"
|
||||
import { userPublicWithoutSettingsSchema } from "#src/models/User.js"
|
||||
|
||||
const parametersSchema = Type.Object({
|
||||
channelId: channelSchema.id
|
||||
channelId: channelSchema.id,
|
||||
})
|
||||
|
||||
type Parameters = Static<typeof parametersSchema>
|
||||
|
||||
const bodyPostServiceSchema = Type.Object({
|
||||
value: messageSchema.value
|
||||
value: messageSchema.value,
|
||||
})
|
||||
|
||||
type BodyPostServiceSchemaType = Static<typeof bodyPostServiceSchema>
|
||||
|
||||
const postServiceSchema: FastifySchema = {
|
||||
description:
|
||||
'POST a new message (text) in a specific channel using its channelId.',
|
||||
tags: ['messages'] as string[],
|
||||
"POST a new message (text) in a specific channel using its channelId.",
|
||||
tags: ["messages"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
body: bodyPostServiceSchema,
|
||||
params: parametersSchema,
|
||||
@ -38,19 +38,19 @@ const postServiceSchema: FastifySchema = {
|
||||
...messageSchema,
|
||||
member: Type.Object({
|
||||
...memberSchema,
|
||||
user: Type.Object(userPublicWithoutSettingsSchema)
|
||||
})
|
||||
user: Type.Object(userPublicWithoutSettingsSchema),
|
||||
}),
|
||||
}),
|
||||
400: fastifyErrors[400],
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
404: fastifyErrors[404],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const postMessageByChannelIdService: FastifyPluginAsync = async (
|
||||
fastify
|
||||
fastify,
|
||||
) => {
|
||||
await fastify.register(authenticateUser)
|
||||
|
||||
@ -58,8 +58,8 @@ export const postMessageByChannelIdService: FastifyPluginAsync = async (
|
||||
Body: BodyPostServiceSchemaType
|
||||
Params: Parameters
|
||||
}>({
|
||||
method: 'POST',
|
||||
url: '/channels/:channelId/messages',
|
||||
method: "POST",
|
||||
url: "/channels/:channelId/messages",
|
||||
schema: postServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
@ -67,10 +67,10 @@ export const postMessageByChannelIdService: FastifyPluginAsync = async (
|
||||
}
|
||||
const { channelId } = request.params
|
||||
const channel = await prisma.channel.findUnique({
|
||||
where: { id: channelId }
|
||||
where: { id: channelId },
|
||||
})
|
||||
if (channel == null) {
|
||||
throw fastify.httpErrors.notFound('Channel not found')
|
||||
throw fastify.httpErrors.notFound("Channel not found")
|
||||
}
|
||||
const memberCheck = await prisma.member.findFirst({
|
||||
where: { guildId: channel.guildId, userId: request.user.current.id },
|
||||
@ -84,23 +84,23 @@ export const postMessageByChannelIdService: FastifyPluginAsync = async (
|
||||
biography: true,
|
||||
website: true,
|
||||
createdAt: true,
|
||||
updatedAt: true
|
||||
}
|
||||
}
|
||||
}
|
||||
updatedAt: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
if (memberCheck == null) {
|
||||
throw fastify.httpErrors.notFound('Channel not found')
|
||||
throw fastify.httpErrors.notFound("Channel not found")
|
||||
}
|
||||
const { value } = request.body
|
||||
const message = await prisma.message.create({
|
||||
data: {
|
||||
value,
|
||||
type: 'text',
|
||||
mimetype: 'text/plain',
|
||||
type: "text",
|
||||
mimetype: "text/plain",
|
||||
channelId,
|
||||
memberId: memberCheck.id
|
||||
}
|
||||
memberId: memberCheck.id,
|
||||
},
|
||||
})
|
||||
const item = {
|
||||
...message,
|
||||
@ -108,17 +108,17 @@ export const postMessageByChannelIdService: FastifyPluginAsync = async (
|
||||
...memberCheck,
|
||||
user: {
|
||||
...memberCheck.user,
|
||||
email: null
|
||||
}
|
||||
}
|
||||
email: null,
|
||||
},
|
||||
},
|
||||
}
|
||||
await fastify.io.emitToMembers({
|
||||
event: 'messages',
|
||||
event: "messages",
|
||||
guildId: item.member.guildId,
|
||||
payload: { action: 'create', item }
|
||||
payload: { action: "create", item },
|
||||
})
|
||||
reply.statusCode = 201
|
||||
return item
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,33 +1,33 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import fastifyMultipart from '@fastify/multipart'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
import fastifyMultipart from "@fastify/multipart"
|
||||
|
||||
import prisma from '../../../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../../../models/utils.js'
|
||||
import authenticateUser from '../../../../../tools/plugins/authenticateUser.js'
|
||||
import { messageSchema } from '../../../../../models/Message.js'
|
||||
import { memberSchema } from '../../../../../models/Member.js'
|
||||
import { userPublicWithoutSettingsSchema } from '../../../../../models/User.js'
|
||||
import { channelSchema } from '../../../../../models/Channel.js'
|
||||
import { uploadFile } from '../../../../../tools/utils/uploadFile.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { messageSchema } from "#src/models/Message.js"
|
||||
import { memberSchema } from "#src/models/Member.js"
|
||||
import { userPublicWithoutSettingsSchema } from "#src/models/User.js"
|
||||
import { channelSchema } from "#src/models/Channel.js"
|
||||
import { uploadFile } from "#src/tools/utils/uploadFile.js"
|
||||
|
||||
const parametersSchema = Type.Object({
|
||||
channelId: channelSchema.id
|
||||
channelId: channelSchema.id,
|
||||
})
|
||||
|
||||
type Parameters = Static<typeof parametersSchema>
|
||||
|
||||
const postServiceSchema: FastifySchema = {
|
||||
description:
|
||||
'POST a new message (file) in a specific channel using its channelId.',
|
||||
tags: ['messages'] as string[],
|
||||
consumes: ['multipart/form-data'] as string[],
|
||||
produces: ['application/json'] as string[],
|
||||
"POST a new message (file) in a specific channel using its channelId.",
|
||||
tags: ["messages"] as string[],
|
||||
consumes: ["multipart/form-data"] as string[],
|
||||
produces: ["application/json"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
params: parametersSchema,
|
||||
response: {
|
||||
@ -35,20 +35,20 @@ const postServiceSchema: FastifySchema = {
|
||||
...messageSchema,
|
||||
member: Type.Object({
|
||||
...memberSchema,
|
||||
user: Type.Object(userPublicWithoutSettingsSchema)
|
||||
})
|
||||
user: Type.Object(userPublicWithoutSettingsSchema),
|
||||
}),
|
||||
}),
|
||||
400: fastifyErrors[400],
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
404: fastifyErrors[404],
|
||||
431: fastifyErrors[431],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const postMessageUploadsByChannelIdService: FastifyPluginAsync = async (
|
||||
fastify
|
||||
fastify,
|
||||
) => {
|
||||
await fastify.register(authenticateUser)
|
||||
|
||||
@ -57,8 +57,8 @@ export const postMessageUploadsByChannelIdService: FastifyPluginAsync = async (
|
||||
fastify.route<{
|
||||
Params: Parameters
|
||||
}>({
|
||||
method: 'POST',
|
||||
url: '/channels/:channelId/messages/uploads',
|
||||
method: "POST",
|
||||
url: "/channels/:channelId/messages/uploads",
|
||||
schema: postServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
@ -66,10 +66,10 @@ export const postMessageUploadsByChannelIdService: FastifyPluginAsync = async (
|
||||
}
|
||||
const { channelId } = request.params
|
||||
const channel = await prisma.channel.findUnique({
|
||||
where: { id: channelId }
|
||||
where: { id: channelId },
|
||||
})
|
||||
if (channel == null) {
|
||||
throw fastify.httpErrors.notFound('Channel not found')
|
||||
throw fastify.httpErrors.notFound("Channel not found")
|
||||
}
|
||||
const memberCheck = await prisma.member.findFirst({
|
||||
where: { guildId: channel.guildId, userId: request.user.current.id },
|
||||
@ -83,27 +83,27 @@ export const postMessageUploadsByChannelIdService: FastifyPluginAsync = async (
|
||||
biography: true,
|
||||
website: true,
|
||||
createdAt: true,
|
||||
updatedAt: true
|
||||
}
|
||||
}
|
||||
}
|
||||
updatedAt: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
if (memberCheck == null) {
|
||||
throw fastify.httpErrors.notFound('Channel not found')
|
||||
throw fastify.httpErrors.notFound("Channel not found")
|
||||
}
|
||||
const file = await uploadFile({
|
||||
fastify,
|
||||
request,
|
||||
folderInUploadsFolder: 'messages'
|
||||
folderInUploadsFolder: "messages",
|
||||
})
|
||||
const message = await prisma.message.create({
|
||||
data: {
|
||||
value: file.pathToStoreInDatabase,
|
||||
type: 'file',
|
||||
type: "file",
|
||||
mimetype: file.mimetype,
|
||||
channelId,
|
||||
memberId: memberCheck.id
|
||||
}
|
||||
memberId: memberCheck.id,
|
||||
},
|
||||
})
|
||||
reply.statusCode = 201
|
||||
const item = {
|
||||
@ -112,16 +112,16 @@ export const postMessageUploadsByChannelIdService: FastifyPluginAsync = async (
|
||||
...memberCheck,
|
||||
user: {
|
||||
...memberCheck.user,
|
||||
email: null
|
||||
}
|
||||
}
|
||||
email: null,
|
||||
},
|
||||
},
|
||||
}
|
||||
await fastify.io.emitToMembers({
|
||||
event: 'messages',
|
||||
event: "messages",
|
||||
guildId: item.member.guildId,
|
||||
payload: { action: 'create', item }
|
||||
payload: { action: "create", item },
|
||||
})
|
||||
return item
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,45 +1,45 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../models/utils.js'
|
||||
import authenticateUser from '../../../tools/plugins/authenticateUser.js'
|
||||
import { channelSchema } from '../../../models/Channel.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { channelSchema } from "#src/models/Channel.js"
|
||||
|
||||
const bodyPutServiceSchema = Type.Object({
|
||||
name: channelSchema.name
|
||||
name: channelSchema.name,
|
||||
})
|
||||
|
||||
type BodyPutServiceSchemaType = Static<typeof bodyPutServiceSchema>
|
||||
|
||||
const parametersSchema = Type.Object({
|
||||
channelId: channelSchema.id
|
||||
channelId: channelSchema.id,
|
||||
})
|
||||
|
||||
type Parameters = Static<typeof parametersSchema>
|
||||
|
||||
const putServiceSchema: FastifySchema = {
|
||||
description: 'UPDATE a channel with its id.',
|
||||
tags: ['channels'] as string[],
|
||||
description: "UPDATE a channel with its id.",
|
||||
tags: ["channels"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
params: parametersSchema,
|
||||
body: bodyPutServiceSchema,
|
||||
response: {
|
||||
200: Type.Object({
|
||||
...channelSchema,
|
||||
defaultChannelId: channelSchema.id
|
||||
defaultChannelId: channelSchema.id,
|
||||
}),
|
||||
400: fastifyErrors[400],
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
404: fastifyErrors[404],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const putChannelService: FastifyPluginAsync = async (fastify) => {
|
||||
@ -49,55 +49,55 @@ export const putChannelService: FastifyPluginAsync = async (fastify) => {
|
||||
Body: BodyPutServiceSchemaType
|
||||
Params: Parameters
|
||||
}>({
|
||||
method: 'PUT',
|
||||
url: '/channels/:channelId',
|
||||
method: "PUT",
|
||||
url: "/channels/:channelId",
|
||||
schema: putServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
throw fastify.httpErrors.forbidden()
|
||||
}
|
||||
const { user } = request
|
||||
const { channelId } = request.params
|
||||
const { name } = request.body
|
||||
const { user, params, body } = request
|
||||
const { channelId } = params
|
||||
const { name } = body
|
||||
const channelCheck = await prisma.channel.findUnique({
|
||||
where: { id: channelId }
|
||||
where: { id: channelId },
|
||||
})
|
||||
if (channelCheck == null) {
|
||||
throw fastify.httpErrors.notFound('Channel not found')
|
||||
throw fastify.httpErrors.notFound("Channel not found")
|
||||
}
|
||||
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) {
|
||||
throw fastify.httpErrors.notFound('Member not found')
|
||||
throw fastify.httpErrors.notFound("Member not found")
|
||||
}
|
||||
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({
|
||||
where: { id: channelId },
|
||||
data: { name }
|
||||
data: { name },
|
||||
})
|
||||
const defaultChannel = await prisma.channel.findFirst({
|
||||
where: { guildId: member.guildId }
|
||||
where: { guildId: member.guildId },
|
||||
})
|
||||
if (defaultChannel == null) {
|
||||
throw fastify.httpErrors.internalServerError()
|
||||
}
|
||||
const item = {
|
||||
...channel,
|
||||
defaultChannelId: defaultChannel.id
|
||||
defaultChannelId: defaultChannel.id,
|
||||
}
|
||||
await fastify.io.emitToMembers({
|
||||
event: 'channels',
|
||||
event: "channels",
|
||||
guildId: member.guildId,
|
||||
payload: {
|
||||
action: 'update',
|
||||
item
|
||||
}
|
||||
action: "update",
|
||||
item,
|
||||
},
|
||||
})
|
||||
reply.statusCode = 200
|
||||
return item
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,11 +1,11 @@
|
||||
import type { FastifyPluginAsync } from 'fastify'
|
||||
import type { FastifyPluginAsync } from "fastify"
|
||||
|
||||
import { deleteChannelService } from './[channelId]/delete.js'
|
||||
import { getChannelByIdService } from './[channelId]/get.js'
|
||||
import { getMessagesByChannelIdService } from './[channelId]/messages/get.js'
|
||||
import { postMessageByChannelIdService } from './[channelId]/messages/post.js'
|
||||
import { postMessageUploadsByChannelIdService } from './[channelId]/messages/uploads/post.js'
|
||||
import { putChannelService } from './[channelId]/put.js'
|
||||
import { deleteChannelService } from "./[channelId]/delete.js"
|
||||
import { getChannelByIdService } from "./[channelId]/get.js"
|
||||
import { getMessagesByChannelIdService } from "./[channelId]/messages/get.js"
|
||||
import { postMessageByChannelIdService } from "./[channelId]/messages/post.js"
|
||||
import { postMessageUploadsByChannelIdService } from "./[channelId]/messages/uploads/post.js"
|
||||
import { putChannelService } from "./[channelId]/put.js"
|
||||
|
||||
export const channelsService: FastifyPluginAsync = async (fastify) => {
|
||||
await fastify.register(getChannelByIdService)
|
||||
|
@ -1,84 +1,89 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../application.js'
|
||||
import { authenticateUserTest } from '../../../../__test__/utils/authenticateUserTest.js'
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { memberExample } from '../../../../models/Member.js'
|
||||
import { guildExample } from '../../../../models/Guild.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
await tap.test('DELETE /guilds/[guildId]', async (t) => {
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { memberExample } from "#src/models/Member.js"
|
||||
import { guildExample } from "#src/models/Guild.js"
|
||||
|
||||
await test("DELETE /guilds/[guildId]", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds and delete the guild', async (t) => {
|
||||
await t.test("succeeds and delete the guild", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...memberExample,
|
||||
isOwner: true,
|
||||
guild: guildExample
|
||||
guild: guildExample,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'guild').value({
|
||||
sinon.stub(prisma, "guild").value({
|
||||
delete: async () => {
|
||||
return guildExample
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'DELETE',
|
||||
method: "DELETE",
|
||||
url: `/guilds/${guildExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.id, guildExample.id)
|
||||
t.equal(responseJson.name, guildExample.name)
|
||||
t.equal(responseJson.description, guildExample.description)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.id, guildExample.id)
|
||||
assert.strictEqual(responseJson.name, guildExample.name)
|
||||
assert.strictEqual(responseJson.description, guildExample.description)
|
||||
})
|
||||
|
||||
await t.test("fails if the guild doesn't exist", async (t) => {
|
||||
await t.test("fails if the guild doesn't exist", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'DELETE',
|
||||
method: "DELETE",
|
||||
url: `/guilds/${guildExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
t.equal(response.statusCode, 404)
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
})
|
||||
|
||||
await t.test('fails if the user is not the owner', async (t) => {
|
||||
await t.test("fails if the user is not the owner", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...memberExample,
|
||||
isOwner: false,
|
||||
guild: guildExample
|
||||
guild: guildExample,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'DELETE',
|
||||
method: "DELETE",
|
||||
url: `/guilds/${guildExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 400)
|
||||
t.equal(responseJson.message, 'You should be an owner of the guild')
|
||||
assert.strictEqual(response.statusCode, 400)
|
||||
assert.strictEqual(
|
||||
responseJson.message,
|
||||
"You should be an owner of the guild",
|
||||
)
|
||||
})
|
||||
})
|
||||
|
@ -1,82 +1,84 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../application.js'
|
||||
import { authenticateUserTest } from '../../../../__test__/utils/authenticateUserTest.js'
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { memberExample } from '../../../../models/Member.js'
|
||||
import { guildExample } from '../../../../models/Guild.js'
|
||||
import { userExample } from '../../../../models/User.js'
|
||||
import { channelExample } from '../../../../models/Channel.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { memberExample } from "#src/models/Member.js"
|
||||
import { guildExample } from "#src/models/Guild.js"
|
||||
import { userExample } from "#src/models/User.js"
|
||||
import { channelExample } from "#src/models/Channel.js"
|
||||
|
||||
const defaultChannelId = 5
|
||||
|
||||
await tap.test('GET /guilds/[guildId]', async (t) => {
|
||||
await test("GET /guilds/[guildId]", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
await t.test("succeeds", async () => {
|
||||
const { accessToken, user } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...memberExample,
|
||||
guild: guildExample,
|
||||
user: userExample
|
||||
user: userExample,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...channelExample,
|
||||
id: defaultChannelId
|
||||
id: defaultChannelId,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
method: "GET",
|
||||
url: `/guilds/${guildExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.member.id, memberExample.id)
|
||||
t.equal(responseJson.member.isOwner, memberExample.isOwner)
|
||||
t.equal(responseJson.member.user.name, user.name)
|
||||
t.equal(responseJson.member.user.email, null)
|
||||
t.equal(responseJson.guild.id, guildExample.id)
|
||||
t.equal(responseJson.guild.name, guildExample.name)
|
||||
t.equal(responseJson.guild.defaultChannelId, defaultChannelId)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.member.id, memberExample.id)
|
||||
assert.strictEqual(responseJson.member.isOwner, memberExample.isOwner)
|
||||
assert.strictEqual(responseJson.member.user.name, user.name)
|
||||
assert.strictEqual(responseJson.member.user.email, null)
|
||||
assert.strictEqual(responseJson.guild.id, guildExample.id)
|
||||
assert.strictEqual(responseJson.guild.name, guildExample.name)
|
||||
assert.strictEqual(responseJson.guild.defaultChannelId, defaultChannelId)
|
||||
})
|
||||
|
||||
await t.test('fails with not found member/guild', async (t) => {
|
||||
await t.test("fails with not found member/guild", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
url: '/guilds/1',
|
||||
method: "GET",
|
||||
url: "/guilds/1",
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 404)
|
||||
t.equal(responseJson.message, 'Member not found')
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
assert.strictEqual(responseJson.message, "Member not found")
|
||||
})
|
||||
|
||||
await t.test('fails with unauthenticated user', async (t) => {
|
||||
await t.test("fails with unauthenticated user", async () => {
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
url: '/guilds/1'
|
||||
method: "GET",
|
||||
url: "/guilds/1",
|
||||
})
|
||||
t.equal(response.statusCode, 401)
|
||||
assert.strictEqual(response.statusCode, 401)
|
||||
})
|
||||
})
|
||||
|
@ -1,113 +1,118 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../application.js'
|
||||
import { authenticateUserTest } from '../../../../__test__/utils/authenticateUserTest.js'
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { memberExample } from '../../../../models/Member.js'
|
||||
import { guildExample } from '../../../../models/Guild.js'
|
||||
import { channelExample } from '../../../../models/Channel.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { memberExample } from "#src/models/Member.js"
|
||||
import { guildExample } from "#src/models/Guild.js"
|
||||
import { channelExample } from "#src/models/Channel.js"
|
||||
|
||||
const defaultChannelId = 5
|
||||
const newName = 'New guild name'
|
||||
const newDescription = 'New guild description'
|
||||
const newName = "New guild name"
|
||||
const newDescription = "New guild description"
|
||||
|
||||
await tap.test('PUT /guilds/[guildId]', async (t) => {
|
||||
await test("PUT /guilds/[guildId]", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds and edit the guild', async (t) => {
|
||||
await t.test("succeeds and edit the guild", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...memberExample,
|
||||
isOwner: true,
|
||||
guild: guildExample
|
||||
guild: guildExample,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...channelExample,
|
||||
id: defaultChannelId
|
||||
id: defaultChannelId,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'guild').value({
|
||||
sinon.stub(prisma, "guild").value({
|
||||
update: async () => {
|
||||
return {
|
||||
...guildExample,
|
||||
name: newName,
|
||||
description: newDescription
|
||||
description: newDescription,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'PUT',
|
||||
method: "PUT",
|
||||
url: `/guilds/${guildExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: {
|
||||
name: newName,
|
||||
description: newDescription
|
||||
}
|
||||
description: newDescription,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.name, newName)
|
||||
t.equal(responseJson.description, newDescription)
|
||||
t.equal(responseJson.defaultChannelId, defaultChannelId)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.name, newName)
|
||||
assert.strictEqual(responseJson.description, newDescription)
|
||||
assert.strictEqual(responseJson.defaultChannelId, defaultChannelId)
|
||||
})
|
||||
|
||||
await t.test("fails if the guild doesn't exist", async (t) => {
|
||||
await t.test("fails if the guild doesn't exist", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'PUT',
|
||||
method: "PUT",
|
||||
url: `/guilds/${guildExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: {
|
||||
name: newName,
|
||||
description: newDescription
|
||||
}
|
||||
description: newDescription,
|
||||
},
|
||||
})
|
||||
t.equal(response.statusCode, 404)
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
})
|
||||
|
||||
await t.test('fails if the user is not the owner', async (t) => {
|
||||
await t.test("fails if the user is not the owner", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...memberExample,
|
||||
isOwner: false,
|
||||
guild: guildExample
|
||||
guild: guildExample,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'PUT',
|
||||
method: "PUT",
|
||||
url: `/guilds/${guildExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: {
|
||||
name: newName,
|
||||
description: newDescription
|
||||
}
|
||||
description: newDescription,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 400)
|
||||
t.equal(responseJson.message, 'You should be an owner of the guild')
|
||||
assert.strictEqual(response.statusCode, 400)
|
||||
assert.strictEqual(
|
||||
responseJson.message,
|
||||
"You should be an owner of the guild",
|
||||
)
|
||||
})
|
||||
})
|
||||
|
@ -1,69 +1,71 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../../application.js'
|
||||
import { authenticateUserTest } from '../../../../../__test__/utils/authenticateUserTest.js'
|
||||
import prisma from '../../../../../tools/database/prisma.js'
|
||||
import { memberExample } from '../../../../../models/Member.js'
|
||||
import { guildExample } from '../../../../../models/Guild.js'
|
||||
import { channelExample } from '../../../../../models/Channel.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
await tap.test('GET /guilds/[guildId]/channels', async (t) => {
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { memberExample } from "#src/models/Member.js"
|
||||
import { guildExample } from "#src/models/Guild.js"
|
||||
import { channelExample } from "#src/models/Channel.js"
|
||||
|
||||
await test("GET /guilds/[guildId]/channels", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
await t.test("succeeds", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return memberExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findMany: async () => {
|
||||
return [channelExample]
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
method: "GET",
|
||||
url: `/guilds/${guildExample.id}/channels`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.length, 1)
|
||||
t.equal(responseJson[0].id, channelExample.id)
|
||||
t.equal(responseJson[0].name, channelExample.name)
|
||||
t.equal(responseJson[0].guildId, channelExample.guildId)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.length, 1)
|
||||
assert.strictEqual(responseJson[0].id, channelExample.id)
|
||||
assert.strictEqual(responseJson[0].name, channelExample.name)
|
||||
assert.strictEqual(responseJson[0].guildId, channelExample.guildId)
|
||||
})
|
||||
|
||||
await t.test('fails with not found member/guild', async (t) => {
|
||||
await t.test("fails with not found member/guild", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
url: '/guilds/1/channels',
|
||||
method: "GET",
|
||||
url: "/guilds/1/channels",
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 404)
|
||||
t.equal(responseJson.message, 'Member not found')
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
assert.strictEqual(responseJson.message, "Member not found")
|
||||
})
|
||||
|
||||
await t.test('fails with unauthenticated user', async (t) => {
|
||||
await t.test("fails with unauthenticated user", async () => {
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
url: '/guilds/1/channels'
|
||||
method: "GET",
|
||||
url: "/guilds/1/channels",
|
||||
})
|
||||
t.equal(response.statusCode, 401)
|
||||
assert.strictEqual(response.statusCode, 401)
|
||||
})
|
||||
})
|
||||
|
@ -1,90 +1,92 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../../application.js'
|
||||
import { authenticateUserTest } from '../../../../../__test__/utils/authenticateUserTest.js'
|
||||
import prisma from '../../../../../tools/database/prisma.js'
|
||||
import { memberExample } from '../../../../../models/Member.js'
|
||||
import { guildExample } from '../../../../../models/Guild.js'
|
||||
import { channelExample } from '../../../../../models/Channel.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { memberExample } from "#src/models/Member.js"
|
||||
import { guildExample } from "#src/models/Guild.js"
|
||||
import { channelExample } from "#src/models/Channel.js"
|
||||
|
||||
const defaultChannelId = 5
|
||||
|
||||
await tap.test('POST /guilds/[guildId]/channels', async (t) => {
|
||||
await test("POST /guilds/[guildId]/channels", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
await t.test("succeeds", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return memberExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...channelExample,
|
||||
id: defaultChannelId
|
||||
id: defaultChannelId,
|
||||
}
|
||||
},
|
||||
create: async () => {
|
||||
return channelExample
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'POST',
|
||||
method: "POST",
|
||||
url: `/guilds/${guildExample.id}/channels`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: { name: channelExample.name }
|
||||
payload: { name: channelExample.name },
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 201)
|
||||
t.equal(responseJson.id, channelExample.id)
|
||||
t.equal(responseJson.name, channelExample.name)
|
||||
t.equal(responseJson.guildId, channelExample.guildId)
|
||||
t.equal(responseJson.defaultChannelId, defaultChannelId)
|
||||
assert.strictEqual(response.statusCode, 201)
|
||||
assert.strictEqual(responseJson.id, channelExample.id)
|
||||
assert.strictEqual(responseJson.name, channelExample.name)
|
||||
assert.strictEqual(responseJson.guildId, channelExample.guildId)
|
||||
assert.strictEqual(responseJson.defaultChannelId, defaultChannelId)
|
||||
})
|
||||
|
||||
await t.test('fails if the member is not found', async (t) => {
|
||||
await t.test("fails if the member is not found", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'POST',
|
||||
method: "POST",
|
||||
url: `/guilds/${guildExample.id}/channels`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: { name: channelExample.name }
|
||||
payload: { name: channelExample.name },
|
||||
})
|
||||
t.equal(response.statusCode, 404)
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
})
|
||||
|
||||
await t.test('fails if the member is not owner', async (t) => {
|
||||
await t.test("fails if the member is not owner", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...memberExample,
|
||||
isOwner: false
|
||||
isOwner: false,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'POST',
|
||||
method: "POST",
|
||||
url: `/guilds/${guildExample.id}/channels`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: { name: channelExample.name }
|
||||
payload: { name: channelExample.name },
|
||||
})
|
||||
t.equal(response.statusCode, 400)
|
||||
assert.strictEqual(response.statusCode, 400)
|
||||
})
|
||||
})
|
||||
|
@ -1,32 +1,32 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../../models/utils.js'
|
||||
import authenticateUser from '../../../../tools/plugins/authenticateUser.js'
|
||||
import { guildSchema } from '../../../../models/Guild.js'
|
||||
import { channelSchema } from '../../../../models/Channel.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { guildSchema } from "#src/models/Guild.js"
|
||||
import { channelSchema } from "#src/models/Channel.js"
|
||||
import {
|
||||
getPaginationOptions,
|
||||
queryPaginationObjectSchema
|
||||
} from '../../../../tools/database/pagination.js'
|
||||
queryPaginationObjectSchema,
|
||||
} from "#src/tools/database/pagination.js"
|
||||
|
||||
type QuerySchemaType = Static<typeof queryPaginationObjectSchema>
|
||||
|
||||
const parametersSchema = Type.Object({
|
||||
guildId: guildSchema.id
|
||||
guildId: guildSchema.id,
|
||||
})
|
||||
|
||||
type Parameters = Static<typeof parametersSchema>
|
||||
|
||||
const getServiceSchema: FastifySchema = {
|
||||
description: 'GET all the channels of a guild with its id.',
|
||||
tags: ['channels'] as string[],
|
||||
description: "GET all the channels of a guild with its id.",
|
||||
tags: ["channels"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
params: parametersSchema,
|
||||
querystring: queryPaginationObjectSchema,
|
||||
@ -36,12 +36,12 @@ const getServiceSchema: FastifySchema = {
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
404: fastifyErrors[404],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const getChannelsByGuildIdService: FastifyPluginAsync = async (
|
||||
fastify
|
||||
fastify,
|
||||
) => {
|
||||
await fastify.register(authenticateUser)
|
||||
|
||||
@ -49,8 +49,8 @@ export const getChannelsByGuildIdService: FastifyPluginAsync = async (
|
||||
Params: Parameters
|
||||
Querystring: QuerySchemaType
|
||||
}>({
|
||||
method: 'GET',
|
||||
url: '/guilds/:guildId/channels',
|
||||
method: "GET",
|
||||
url: "/guilds/:guildId/channels",
|
||||
schema: getServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
@ -58,19 +58,19 @@ export const getChannelsByGuildIdService: FastifyPluginAsync = async (
|
||||
}
|
||||
const { guildId } = request.params
|
||||
const member = await prisma.member.findFirst({
|
||||
where: { guildId, userId: request.user.current.id }
|
||||
where: { guildId, userId: request.user.current.id },
|
||||
})
|
||||
if (member == null) {
|
||||
throw fastify.httpErrors.notFound('Member not found')
|
||||
throw fastify.httpErrors.notFound("Member not found")
|
||||
}
|
||||
const channels = await prisma.channel.findMany({
|
||||
...getPaginationOptions(request.query),
|
||||
where: {
|
||||
guildId
|
||||
}
|
||||
guildId,
|
||||
},
|
||||
})
|
||||
reply.statusCode = 200
|
||||
return channels
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,46 +1,46 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../../models/utils.js'
|
||||
import authenticateUser from '../../../../tools/plugins/authenticateUser.js'
|
||||
import { channelSchema } from '../../../../models/Channel.js'
|
||||
import { guildSchema } from '../../../../models/Guild.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { channelSchema } from "#src/models/Channel.js"
|
||||
import { guildSchema } from "#src/models/Guild.js"
|
||||
|
||||
const bodyPostServiceSchema = Type.Object({
|
||||
name: channelSchema.name
|
||||
name: channelSchema.name,
|
||||
})
|
||||
|
||||
type BodyPostServiceSchemaType = Static<typeof bodyPostServiceSchema>
|
||||
|
||||
const parametersSchema = Type.Object({
|
||||
guildId: guildSchema.id
|
||||
guildId: guildSchema.id,
|
||||
})
|
||||
|
||||
type Parameters = Static<typeof parametersSchema>
|
||||
|
||||
const postChannelServiceSchema: FastifySchema = {
|
||||
description: 'Create a channel.',
|
||||
tags: ['channels'] as string[],
|
||||
description: "Create a channel.",
|
||||
tags: ["channels"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
body: bodyPostServiceSchema,
|
||||
params: parametersSchema,
|
||||
response: {
|
||||
201: Type.Object({
|
||||
...channelSchema,
|
||||
defaultChannelId: channelSchema.id
|
||||
defaultChannelId: channelSchema.id,
|
||||
}),
|
||||
400: fastifyErrors[400],
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
404: fastifyErrors[404],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const postChannelService: FastifyPluginAsync = async (fastify) => {
|
||||
@ -50,51 +50,51 @@ export const postChannelService: FastifyPluginAsync = async (fastify) => {
|
||||
Body: BodyPostServiceSchemaType
|
||||
Params: Parameters
|
||||
}>({
|
||||
method: 'POST',
|
||||
url: '/guilds/:guildId/channels',
|
||||
method: "POST",
|
||||
url: "/guilds/:guildId/channels",
|
||||
schema: postChannelServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
throw fastify.httpErrors.forbidden()
|
||||
}
|
||||
const { user } = request
|
||||
const { guildId } = request.params
|
||||
const { name } = request.body
|
||||
const { user, params, body } = request
|
||||
const { guildId } = params
|
||||
const { name } = body
|
||||
const member = await prisma.member.findFirst({
|
||||
where: { guildId, userId: user.current.id }
|
||||
where: { guildId, userId: user.current.id },
|
||||
})
|
||||
if (member == null) {
|
||||
throw fastify.httpErrors.notFound('Member not found')
|
||||
throw fastify.httpErrors.notFound("Member not found")
|
||||
}
|
||||
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({
|
||||
data: {
|
||||
name,
|
||||
guildId
|
||||
}
|
||||
guildId,
|
||||
},
|
||||
})
|
||||
const defaultChannel = await prisma.channel.findFirst({
|
||||
where: { guildId: member.guildId }
|
||||
where: { guildId: member.guildId },
|
||||
})
|
||||
if (defaultChannel == null) {
|
||||
throw fastify.httpErrors.internalServerError()
|
||||
}
|
||||
const item = {
|
||||
...channel,
|
||||
defaultChannelId: defaultChannel.id
|
||||
defaultChannelId: defaultChannel.id,
|
||||
}
|
||||
await fastify.io.emitToMembers({
|
||||
event: 'channels',
|
||||
event: "channels",
|
||||
guildId,
|
||||
payload: {
|
||||
action: 'create',
|
||||
item
|
||||
}
|
||||
action: "create",
|
||||
item,
|
||||
},
|
||||
})
|
||||
reply.statusCode = 201
|
||||
return item
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,25 +1,25 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../models/utils.js'
|
||||
import authenticateUser from '../../../tools/plugins/authenticateUser.js'
|
||||
import { guildSchema } from '../../../models/Guild.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { guildSchema } from "#src/models/Guild.js"
|
||||
|
||||
const parametersSchema = Type.Object({
|
||||
guildId: guildSchema.id
|
||||
guildId: guildSchema.id,
|
||||
})
|
||||
|
||||
type Parameters = Static<typeof parametersSchema>
|
||||
|
||||
const deleteServiceSchema: FastifySchema = {
|
||||
description: 'DELETE a guild with the guildId.',
|
||||
tags: ['guilds'] as string[],
|
||||
description: "DELETE a guild with the guildId.",
|
||||
tags: ["guilds"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
params: parametersSchema,
|
||||
response: {
|
||||
@ -28,8 +28,8 @@ const deleteServiceSchema: FastifySchema = {
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
404: fastifyErrors[404],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const deleteGuildByIdService: FastifyPluginAsync = async (fastify) => {
|
||||
@ -38,8 +38,8 @@ export const deleteGuildByIdService: FastifyPluginAsync = async (fastify) => {
|
||||
fastify.route<{
|
||||
Params: Parameters
|
||||
}>({
|
||||
method: 'DELETE',
|
||||
url: '/guilds/:guildId',
|
||||
method: "DELETE",
|
||||
url: "/guilds/:guildId",
|
||||
schema: deleteServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
@ -49,30 +49,30 @@ export const deleteGuildByIdService: FastifyPluginAsync = async (fastify) => {
|
||||
const member = await prisma.member.findFirst({
|
||||
where: { guildId, userId: request.user.current.id },
|
||||
include: {
|
||||
guild: true
|
||||
}
|
||||
guild: true,
|
||||
},
|
||||
})
|
||||
if (member == null || member.guild == null) {
|
||||
throw fastify.httpErrors.notFound('Member not found')
|
||||
throw fastify.httpErrors.notFound("Member not found")
|
||||
}
|
||||
if (!member.isOwner) {
|
||||
throw fastify.httpErrors.badRequest(
|
||||
'You should be an owner of the guild'
|
||||
"You should be an owner of the guild",
|
||||
)
|
||||
}
|
||||
await fastify.io.emitToMembers({
|
||||
event: 'guilds',
|
||||
event: "guilds",
|
||||
guildId: member.guildId,
|
||||
payload: {
|
||||
action: 'delete',
|
||||
item: member.guild
|
||||
}
|
||||
action: "delete",
|
||||
item: member.guild,
|
||||
},
|
||||
})
|
||||
const guild = await prisma.guild.delete({
|
||||
where: { id: member.guildId }
|
||||
where: { id: member.guildId },
|
||||
})
|
||||
reply.statusCode = 200
|
||||
return guild
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,59 +1,59 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../models/utils.js'
|
||||
import authenticateUser from '../../../tools/plugins/authenticateUser.js'
|
||||
import { guildSchema } from '../../../models/Guild.js'
|
||||
import { memberSchema } from '../../../models/Member.js'
|
||||
import { userPublicWithoutSettingsSchema } from '../../../models/User.js'
|
||||
import { channelSchema } from '../../../models/Channel.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { guildSchema } from "#src/models/Guild.js"
|
||||
import { memberSchema } from "#src/models/Member.js"
|
||||
import { userPublicWithoutSettingsSchema } from "#src/models/User.js"
|
||||
import { channelSchema } from "#src/models/Channel.js"
|
||||
|
||||
const parametersSchema = Type.Object({
|
||||
guildId: guildSchema.id
|
||||
guildId: guildSchema.id,
|
||||
})
|
||||
|
||||
type Parameters = Static<typeof parametersSchema>
|
||||
|
||||
const getServiceSchema: FastifySchema = {
|
||||
description: 'GET a guild member with the guildId.',
|
||||
tags: ['guilds'] as string[],
|
||||
description: "GET a guild member with the guildId.",
|
||||
tags: ["guilds"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
params: parametersSchema,
|
||||
response: {
|
||||
200: Type.Object({
|
||||
guild: Type.Object({
|
||||
...guildSchema,
|
||||
defaultChannelId: channelSchema.id
|
||||
defaultChannelId: channelSchema.id,
|
||||
}),
|
||||
member: Type.Object({
|
||||
...memberSchema,
|
||||
user: Type.Object(userPublicWithoutSettingsSchema)
|
||||
})
|
||||
user: Type.Object(userPublicWithoutSettingsSchema),
|
||||
}),
|
||||
}),
|
||||
400: fastifyErrors[400],
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
404: fastifyErrors[404],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const getGuildMemberByIdService: FastifyPluginAsync = async (
|
||||
fastify
|
||||
fastify,
|
||||
) => {
|
||||
await fastify.register(authenticateUser)
|
||||
|
||||
fastify.route<{
|
||||
Params: Parameters
|
||||
}>({
|
||||
method: 'GET',
|
||||
url: '/guilds/:guildId',
|
||||
method: "GET",
|
||||
url: "/guilds/:guildId",
|
||||
schema: getServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
@ -72,17 +72,17 @@ export const getGuildMemberByIdService: FastifyPluginAsync = async (
|
||||
biography: true,
|
||||
website: true,
|
||||
createdAt: true,
|
||||
updatedAt: true
|
||||
}
|
||||
updatedAt: true,
|
||||
},
|
||||
},
|
||||
guild: true
|
||||
}
|
||||
guild: true,
|
||||
},
|
||||
})
|
||||
if (member == null) {
|
||||
throw fastify.httpErrors.notFound('Member not found')
|
||||
throw fastify.httpErrors.notFound("Member not found")
|
||||
}
|
||||
const defaultChannel = await prisma.channel.findFirst({
|
||||
where: { guildId: member.guildId }
|
||||
where: { guildId: member.guildId },
|
||||
})
|
||||
if (defaultChannel == null) {
|
||||
throw fastify.httpErrors.internalServerError()
|
||||
@ -90,18 +90,18 @@ export const getGuildMemberByIdService: FastifyPluginAsync = async (
|
||||
const item = {
|
||||
guild: {
|
||||
...member.guild,
|
||||
defaultChannelId: defaultChannel.id
|
||||
defaultChannelId: defaultChannel.id,
|
||||
},
|
||||
member: {
|
||||
...member,
|
||||
user: {
|
||||
...member.user,
|
||||
email: null
|
||||
}
|
||||
}
|
||||
email: null,
|
||||
},
|
||||
},
|
||||
}
|
||||
reply.statusCode = 200
|
||||
return item
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,44 +1,44 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import fastifyMultipart from '@fastify/multipart'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
import fastifyMultipart from "@fastify/multipart"
|
||||
|
||||
import authenticateUser from '../../../../tools/plugins/authenticateUser.js'
|
||||
import { fastifyErrors } from '../../../../models/utils.js'
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { uploadFile } from '../../../../tools/utils/uploadFile.js'
|
||||
import { guildSchema } from '../../../../models/Guild.js'
|
||||
import { channelSchema } from '../../../../models/Channel.js'
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { uploadFile } from "#src/tools/utils/uploadFile.js"
|
||||
import { guildSchema } from "#src/models/Guild.js"
|
||||
import { channelSchema } from "#src/models/Channel.js"
|
||||
|
||||
const parametersSchema = Type.Object({
|
||||
guildId: guildSchema.id
|
||||
guildId: guildSchema.id,
|
||||
})
|
||||
|
||||
type Parameters = Static<typeof parametersSchema>
|
||||
|
||||
const putServiceSchema: FastifySchema = {
|
||||
description: 'Edit the icon of the guild with its id',
|
||||
tags: ['guilds'] as string[],
|
||||
consumes: ['multipart/form-data'] as string[],
|
||||
produces: ['application/json'] as string[],
|
||||
description: "Edit the icon of the guild with its id",
|
||||
tags: ["guilds"] as string[],
|
||||
consumes: ["multipart/form-data"] as string[],
|
||||
produces: ["application/json"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
params: parametersSchema,
|
||||
response: {
|
||||
200: Type.Object({
|
||||
...guildSchema,
|
||||
defaultChannelId: channelSchema.id
|
||||
defaultChannelId: channelSchema.id,
|
||||
}),
|
||||
400: fastifyErrors[400],
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
404: fastifyErrors[404],
|
||||
431: fastifyErrors[431],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const putGuildIconById: FastifyPluginAsync = async (fastify) => {
|
||||
@ -49,8 +49,8 @@ export const putGuildIconById: FastifyPluginAsync = async (fastify) => {
|
||||
fastify.route<{
|
||||
Params: Parameters
|
||||
}>({
|
||||
method: 'PUT',
|
||||
url: '/guilds/:guildId/icon',
|
||||
method: "PUT",
|
||||
url: "/guilds/:guildId/icon",
|
||||
schema: putServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
@ -64,14 +64,14 @@ export const putGuildIconById: FastifyPluginAsync = async (fastify) => {
|
||||
const file = await uploadFile({
|
||||
fastify,
|
||||
request,
|
||||
folderInUploadsFolder: 'guilds'
|
||||
folderInUploadsFolder: "guilds",
|
||||
})
|
||||
await prisma.guild.update({
|
||||
where: { id: guildId },
|
||||
data: { icon: file.pathToStoreInDatabase }
|
||||
data: { icon: file.pathToStoreInDatabase },
|
||||
})
|
||||
const defaultChannel = await prisma.channel.findFirst({
|
||||
where: { guildId: guild.id }
|
||||
where: { guildId: guild.id },
|
||||
})
|
||||
if (defaultChannel == null) {
|
||||
throw fastify.httpErrors.internalServerError()
|
||||
@ -79,15 +79,15 @@ export const putGuildIconById: FastifyPluginAsync = async (fastify) => {
|
||||
const item = {
|
||||
...guild,
|
||||
icon: file.pathToStoreInDatabase,
|
||||
defaultChannelId: defaultChannel.id
|
||||
defaultChannelId: defaultChannel.id,
|
||||
}
|
||||
await fastify.io.emitToMembers({
|
||||
event: 'guilds',
|
||||
event: "guilds",
|
||||
guildId: guild.id,
|
||||
payload: { action: 'update', item }
|
||||
payload: { action: "update", item },
|
||||
})
|
||||
reply.statusCode = 200
|
||||
return item
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,69 +1,71 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../../application.js'
|
||||
import { authenticateUserTest } from '../../../../../__test__/utils/authenticateUserTest.js'
|
||||
import prisma from '../../../../../tools/database/prisma.js'
|
||||
import { memberExample } from '../../../../../models/Member.js'
|
||||
import { guildExample } from '../../../../../models/Guild.js'
|
||||
import { userExample } from '../../../../../models/User.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
await tap.test('GET /guilds/[guildId]/members', async (t) => {
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { memberExample } from "#src/models/Member.js"
|
||||
import { guildExample } from "#src/models/Guild.js"
|
||||
import { userExample } from "#src/models/User.js"
|
||||
|
||||
await test("GET /guilds/[guildId]/members", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
await t.test("succeeds", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return memberExample
|
||||
},
|
||||
findMany: async () => {
|
||||
return [{ ...memberExample, user: userExample }]
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
method: "GET",
|
||||
url: `/guilds/${guildExample.id}/members`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.length, 1)
|
||||
t.equal(responseJson[0].id, memberExample.id)
|
||||
t.equal(responseJson[0].isOwner, memberExample.isOwner)
|
||||
t.equal(responseJson[0].user.id, userExample.id)
|
||||
t.equal(responseJson[0].user.name, userExample.name)
|
||||
t.equal(responseJson[0].user.email, null)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.length, 1)
|
||||
assert.strictEqual(responseJson[0].id, memberExample.id)
|
||||
assert.strictEqual(responseJson[0].isOwner, memberExample.isOwner)
|
||||
assert.strictEqual(responseJson[0].user.id, userExample.id)
|
||||
assert.strictEqual(responseJson[0].user.name, userExample.name)
|
||||
assert.strictEqual(responseJson[0].user.email, null)
|
||||
})
|
||||
|
||||
await t.test('fails with not found member/guild', async (t) => {
|
||||
await t.test("fails with not found member/guild", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
url: '/guilds/1/members',
|
||||
method: "GET",
|
||||
url: "/guilds/1/members",
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 404)
|
||||
t.equal(responseJson.message, 'Member not found')
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
assert.strictEqual(responseJson.message, "Member not found")
|
||||
})
|
||||
|
||||
await t.test('fails with unauthenticated user', async (t) => {
|
||||
await t.test("fails with unauthenticated user", async () => {
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
url: '/guilds/1/members'
|
||||
method: "GET",
|
||||
url: "/guilds/1/members",
|
||||
})
|
||||
t.equal(response.statusCode, 401)
|
||||
assert.strictEqual(response.statusCode, 401)
|
||||
})
|
||||
})
|
||||
|
@ -1,33 +1,33 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../../models/utils.js'
|
||||
import authenticateUser from '../../../../tools/plugins/authenticateUser.js'
|
||||
import { guildSchema } from '../../../../models/Guild.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { guildSchema } from "#src/models/Guild.js"
|
||||
import {
|
||||
getPaginationOptions,
|
||||
queryPaginationObjectSchema
|
||||
} from '../../../../tools/database/pagination.js'
|
||||
import { memberSchema } from '../../../../models/Member.js'
|
||||
import { userPublicWithoutSettingsSchema } from '../../../../models/User.js'
|
||||
queryPaginationObjectSchema,
|
||||
} from "#src/tools/database/pagination.js"
|
||||
import { memberSchema } from "#src/models/Member.js"
|
||||
import { userPublicWithoutSettingsSchema } from "#src/models/User.js"
|
||||
|
||||
type QuerySchemaType = Static<typeof queryPaginationObjectSchema>
|
||||
|
||||
const parametersSchema = Type.Object({
|
||||
guildId: guildSchema.id
|
||||
guildId: guildSchema.id,
|
||||
})
|
||||
|
||||
type Parameters = Static<typeof parametersSchema>
|
||||
|
||||
const getServiceSchema: FastifySchema = {
|
||||
description: 'GET all the members of a guild with its id.',
|
||||
tags: ['members'] as string[],
|
||||
description: "GET all the members of a guild with its id.",
|
||||
tags: ["members"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
params: parametersSchema,
|
||||
querystring: queryPaginationObjectSchema,
|
||||
@ -35,19 +35,19 @@ const getServiceSchema: FastifySchema = {
|
||||
200: Type.Array(
|
||||
Type.Object({
|
||||
...memberSchema,
|
||||
user: Type.Object(userPublicWithoutSettingsSchema)
|
||||
})
|
||||
user: Type.Object(userPublicWithoutSettingsSchema),
|
||||
}),
|
||||
),
|
||||
400: fastifyErrors[400],
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
404: fastifyErrors[404],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const getMembersByGuildIdService: FastifyPluginAsync = async (
|
||||
fastify
|
||||
fastify,
|
||||
) => {
|
||||
await fastify.register(authenticateUser)
|
||||
|
||||
@ -55,8 +55,8 @@ export const getMembersByGuildIdService: FastifyPluginAsync = async (
|
||||
Params: Parameters
|
||||
Querystring: QuerySchemaType
|
||||
}>({
|
||||
method: 'GET',
|
||||
url: '/guilds/:guildId/members',
|
||||
method: "GET",
|
||||
url: "/guilds/:guildId/members",
|
||||
schema: getServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
@ -64,14 +64,14 @@ export const getMembersByGuildIdService: FastifyPluginAsync = async (
|
||||
}
|
||||
const { guildId } = request.params
|
||||
const memberCheck = await prisma.member.findFirst({
|
||||
where: { guildId, userId: request.user.current.id }
|
||||
where: { guildId, userId: request.user.current.id },
|
||||
})
|
||||
if (memberCheck == null) {
|
||||
throw fastify.httpErrors.notFound('Member not found')
|
||||
throw fastify.httpErrors.notFound("Member not found")
|
||||
}
|
||||
const membersRequest = await prisma.member.findMany({
|
||||
...getPaginationOptions(request.query),
|
||||
orderBy: { createdAt: 'asc' },
|
||||
orderBy: { createdAt: "asc" },
|
||||
where: { guildId },
|
||||
include: {
|
||||
user: {
|
||||
@ -83,22 +83,22 @@ export const getMembersByGuildIdService: FastifyPluginAsync = async (
|
||||
biography: true,
|
||||
website: true,
|
||||
createdAt: true,
|
||||
updatedAt: true
|
||||
}
|
||||
}
|
||||
}
|
||||
updatedAt: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
const members = membersRequest.map((member) => {
|
||||
return {
|
||||
...member,
|
||||
user: {
|
||||
...member.user,
|
||||
email: null
|
||||
}
|
||||
email: null,
|
||||
},
|
||||
}
|
||||
})
|
||||
reply.statusCode = 200
|
||||
return members
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,115 +1,117 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../../../application.js'
|
||||
import { authenticateUserTest } from '../../../../../../__test__/utils/authenticateUserTest.js'
|
||||
import prisma from '../../../../../../tools/database/prisma.js'
|
||||
import { memberExample } from '../../../../../../models/Member.js'
|
||||
import { guildExample } from '../../../../../../models/Guild.js'
|
||||
import { userExample } from '../../../../../../models/User.js'
|
||||
import { channelExample } from '../../../../../../models/Channel.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { memberExample } from "#src/models/Member.js"
|
||||
import { guildExample } from "#src/models/Guild.js"
|
||||
import { userExample } from "#src/models/User.js"
|
||||
import { channelExample } from "#src/models/Channel.js"
|
||||
|
||||
const defaultChannelId = 5
|
||||
|
||||
await tap.test('POST /guilds/[guildId]/members/join', async (t) => {
|
||||
await test("POST /guilds/[guildId]/members/join", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
await t.test("succeeds", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
},
|
||||
create: async () => {
|
||||
return { ...memberExample, user: userExample }
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findFirst: async () => {
|
||||
return channelExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'guild').value({
|
||||
sinon.stub(prisma, "guild").value({
|
||||
findUnique: async () => {
|
||||
return guildExample
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'POST',
|
||||
method: "POST",
|
||||
url: `/guilds/${guildExample.id}/members/join`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 201)
|
||||
t.equal(responseJson.id, memberExample.id)
|
||||
t.equal(responseJson.userId, memberExample.userId)
|
||||
t.equal(responseJson.user.name, userExample.name)
|
||||
t.equal(responseJson.user.email, null)
|
||||
t.equal(responseJson.guild.id, guildExample.id)
|
||||
t.equal(responseJson.guild.name, guildExample.name)
|
||||
t.equal(responseJson.guild.defaultChannelId, channelExample.id)
|
||||
assert.strictEqual(response.statusCode, 201)
|
||||
assert.strictEqual(responseJson.id, memberExample.id)
|
||||
assert.strictEqual(responseJson.userId, memberExample.userId)
|
||||
assert.strictEqual(responseJson.user.name, userExample.name)
|
||||
assert.strictEqual(responseJson.user.email, null)
|
||||
assert.strictEqual(responseJson.guild.id, guildExample.id)
|
||||
assert.strictEqual(responseJson.guild.name, guildExample.name)
|
||||
assert.strictEqual(responseJson.guild.defaultChannelId, channelExample.id)
|
||||
})
|
||||
|
||||
await t.test('fails if the guild is not found', async (t) => {
|
||||
await t.test("fails if the guild is not found", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'guild').value({
|
||||
sinon.stub(prisma, "guild").value({
|
||||
findUnique: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'POST',
|
||||
method: "POST",
|
||||
url: `/guilds/${guildExample.id}/members/join`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
t.equal(response.statusCode, 404)
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
})
|
||||
|
||||
await t.test('fails if the user is already in the guild', async (t) => {
|
||||
await t.test("fails if the user is already in the guild", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return memberExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...channelExample,
|
||||
id: defaultChannelId
|
||||
id: defaultChannelId,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'guild').value({
|
||||
sinon.stub(prisma, "guild").value({
|
||||
findUnique: async () => {
|
||||
return guildExample
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'POST',
|
||||
method: "POST",
|
||||
url: `/guilds/${guildExample.id}/members/join`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 400)
|
||||
t.equal(responseJson.defaultChannelId, defaultChannelId)
|
||||
assert.strictEqual(response.statusCode, 400)
|
||||
assert.strictEqual(responseJson.defaultChannelId, defaultChannelId)
|
||||
})
|
||||
})
|
||||
|
@ -1,32 +1,28 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../../../tools/database/prisma.js'
|
||||
import {
|
||||
fastifyErrors,
|
||||
fastifyErrorsSchema,
|
||||
id
|
||||
} from '../../../../../models/utils.js'
|
||||
import authenticateUser from '../../../../../tools/plugins/authenticateUser.js'
|
||||
import { guildSchema } from '../../../../../models/Guild.js'
|
||||
import { memberSchema } from '../../../../../models/Member.js'
|
||||
import { userPublicWithoutSettingsSchema } from '../../../../../models/User.js'
|
||||
import { channelSchema } from '../../../../../models/Channel.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors, fastifyErrorsSchema, id } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { guildSchema } from "#src/models/Guild.js"
|
||||
import { memberSchema } from "#src/models/Member.js"
|
||||
import { userPublicWithoutSettingsSchema } from "#src/models/User.js"
|
||||
import { channelSchema } from "#src/models/Channel.js"
|
||||
|
||||
const parametersSchema = Type.Object({
|
||||
guildId: guildSchema.id
|
||||
guildId: guildSchema.id,
|
||||
})
|
||||
|
||||
type Parameters = Static<typeof parametersSchema>
|
||||
|
||||
const postServiceSchema: FastifySchema = {
|
||||
description: 'Join a guild (create a member).',
|
||||
tags: ['members'] as string[],
|
||||
description: "Join a guild (create a member).",
|
||||
tags: ["members"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
params: parametersSchema,
|
||||
response: {
|
||||
@ -34,19 +30,19 @@ const postServiceSchema: FastifySchema = {
|
||||
...memberSchema,
|
||||
guild: Type.Object({
|
||||
...guildSchema,
|
||||
defaultChannelId: id
|
||||
defaultChannelId: id,
|
||||
}),
|
||||
user: Type.Object(userPublicWithoutSettingsSchema)
|
||||
user: Type.Object(userPublicWithoutSettingsSchema),
|
||||
}),
|
||||
400: Type.Object({
|
||||
...fastifyErrorsSchema[400],
|
||||
defaultChannelId: channelSchema.id
|
||||
defaultChannelId: channelSchema.id,
|
||||
}),
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
404: fastifyErrors[404],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const postMemberService: FastifyPluginAsync = async (fastify) => {
|
||||
@ -55,27 +51,27 @@ export const postMemberService: FastifyPluginAsync = async (fastify) => {
|
||||
fastify.route<{
|
||||
Params: Parameters
|
||||
}>({
|
||||
method: 'POST',
|
||||
url: '/guilds/:guildId/members/join',
|
||||
method: "POST",
|
||||
url: "/guilds/:guildId/members/join",
|
||||
schema: postServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
throw fastify.httpErrors.forbidden()
|
||||
}
|
||||
const { user } = request
|
||||
const { guildId } = request.params
|
||||
const { user, params } = request
|
||||
const { guildId } = params
|
||||
const guild = await prisma.guild.findUnique({
|
||||
where: {
|
||||
id: guildId
|
||||
}
|
||||
id: guildId,
|
||||
},
|
||||
})
|
||||
if (guild == null) {
|
||||
throw fastify.httpErrors.notFound('Guild not found')
|
||||
throw fastify.httpErrors.notFound("Guild not found")
|
||||
}
|
||||
const defaultChannel = await prisma.channel.findFirst({
|
||||
where: {
|
||||
guildId
|
||||
}
|
||||
guildId,
|
||||
},
|
||||
})
|
||||
if (defaultChannel == null) {
|
||||
throw fastify.httpErrors.internalServerError()
|
||||
@ -83,22 +79,22 @@ export const postMemberService: FastifyPluginAsync = async (fastify) => {
|
||||
const memberCheck = await prisma.member.findFirst({
|
||||
where: {
|
||||
userId: user.current.id,
|
||||
guildId: guild.id
|
||||
}
|
||||
guildId: guild.id,
|
||||
},
|
||||
})
|
||||
if (memberCheck != null) {
|
||||
throw fastify.httpErrors.createError(
|
||||
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({
|
||||
data: {
|
||||
guildId,
|
||||
userId: user.current.id
|
||||
userId: user.current.id,
|
||||
},
|
||||
include: {
|
||||
user: {
|
||||
@ -110,33 +106,33 @@ export const postMemberService: FastifyPluginAsync = async (fastify) => {
|
||||
biography: true,
|
||||
website: true,
|
||||
createdAt: true,
|
||||
updatedAt: true
|
||||
}
|
||||
}
|
||||
}
|
||||
updatedAt: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
const item = {
|
||||
...member,
|
||||
user: {
|
||||
...member.user,
|
||||
email: null
|
||||
email: null,
|
||||
},
|
||||
guild: {
|
||||
...guild,
|
||||
defaultChannelId: defaultChannel.id
|
||||
}
|
||||
defaultChannelId: defaultChannel.id,
|
||||
},
|
||||
}
|
||||
await fastify.io.emitToMembers({
|
||||
event: 'members',
|
||||
event: "members",
|
||||
guildId,
|
||||
payload: {
|
||||
action: 'create',
|
||||
item
|
||||
}
|
||||
action: "create",
|
||||
item,
|
||||
},
|
||||
})
|
||||
reply.statusCode = 201
|
||||
return item
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,80 +1,82 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../../../application.js'
|
||||
import { authenticateUserTest } from '../../../../../../__test__/utils/authenticateUserTest.js'
|
||||
import prisma from '../../../../../../tools/database/prisma.js'
|
||||
import { memberExample } from '../../../../../../models/Member.js'
|
||||
import { guildExample } from '../../../../../../models/Guild.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
await tap.test('DELETE /guilds/[guildId]/members/leave', async (t) => {
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { memberExample } from "#src/models/Member.js"
|
||||
import { guildExample } from "#src/models/Guild.js"
|
||||
|
||||
await test("DELETE /guilds/[guildId]/members/leave", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
await t.test("succeeds", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
const member = {
|
||||
...memberExample,
|
||||
isOwner: false
|
||||
isOwner: false,
|
||||
}
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return member
|
||||
},
|
||||
delete: async () => {
|
||||
return member
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'DELETE',
|
||||
method: "DELETE",
|
||||
url: `/guilds/${guildExample.id}/members/leave`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.id, member.id)
|
||||
t.equal(responseJson.isOwner, member.isOwner)
|
||||
t.equal(responseJson.userId, member.userId)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.id, member.id)
|
||||
assert.strictEqual(responseJson.isOwner, member.isOwner)
|
||||
assert.strictEqual(responseJson.userId, member.userId)
|
||||
})
|
||||
|
||||
await t.test('fails if the member is not found', async (t) => {
|
||||
await t.test("fails if the member is not found", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'DELETE',
|
||||
method: "DELETE",
|
||||
url: `/guilds/${guildExample.id}/members/leave`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
t.equal(response.statusCode, 404)
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
})
|
||||
|
||||
await t.test('fails if the member is owner', async (t) => {
|
||||
await t.test("fails if the member is owner", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
const member = {
|
||||
...memberExample,
|
||||
isOwner: true
|
||||
isOwner: true,
|
||||
}
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return member
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'DELETE',
|
||||
method: "DELETE",
|
||||
url: `/guilds/${guildExample.id}/members/leave`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
t.equal(response.statusCode, 400)
|
||||
assert.strictEqual(response.statusCode, 400)
|
||||
})
|
||||
})
|
||||
|
@ -1,26 +1,26 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../../../models/utils.js'
|
||||
import authenticateUser from '../../../../../tools/plugins/authenticateUser.js'
|
||||
import { guildSchema } from '../../../../../models/Guild.js'
|
||||
import { memberSchema } from '../../../../../models/Member.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { guildSchema } from "#src/models/Guild.js"
|
||||
import { memberSchema } from "#src/models/Member.js"
|
||||
|
||||
const parametersSchema = Type.Object({
|
||||
guildId: guildSchema.id
|
||||
guildId: guildSchema.id,
|
||||
})
|
||||
|
||||
type Parameters = Static<typeof parametersSchema>
|
||||
|
||||
const deleteServiceSchema: FastifySchema = {
|
||||
description: 'Leave a guild (delete a member).',
|
||||
tags: ['members'] as string[],
|
||||
description: "Leave a guild (delete a member).",
|
||||
tags: ["members"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
params: parametersSchema,
|
||||
response: {
|
||||
@ -29,8 +29,8 @@ const deleteServiceSchema: FastifySchema = {
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
404: fastifyErrors[404],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const deleteMemberService: FastifyPluginAsync = async (fastify) => {
|
||||
@ -39,37 +39,37 @@ export const deleteMemberService: FastifyPluginAsync = async (fastify) => {
|
||||
fastify.route<{
|
||||
Params: Parameters
|
||||
}>({
|
||||
method: 'DELETE',
|
||||
url: '/guilds/:guildId/members/leave',
|
||||
method: "DELETE",
|
||||
url: "/guilds/:guildId/members/leave",
|
||||
schema: deleteServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
throw fastify.httpErrors.forbidden()
|
||||
}
|
||||
const { user } = request
|
||||
const { guildId } = request.params
|
||||
const { user, params } = request
|
||||
const { guildId } = params
|
||||
const member = await prisma.member.findFirst({
|
||||
where: { guildId, userId: user.current.id }
|
||||
where: { guildId, userId: user.current.id },
|
||||
})
|
||||
if (member == null) {
|
||||
throw fastify.httpErrors.notFound('Member not found')
|
||||
throw fastify.httpErrors.notFound("Member not found")
|
||||
}
|
||||
if (member.isOwner) {
|
||||
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 fastify.io.emitToMembers({
|
||||
event: 'members',
|
||||
event: "members",
|
||||
guildId,
|
||||
payload: {
|
||||
action: 'delete',
|
||||
item: member
|
||||
}
|
||||
action: "delete",
|
||||
item: member,
|
||||
},
|
||||
})
|
||||
reply.statusCode = 200
|
||||
return member
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,48 +1,48 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../models/utils.js'
|
||||
import authenticateUser from '../../../tools/plugins/authenticateUser.js'
|
||||
import { guildSchema } from '../../../models/Guild.js'
|
||||
import { parseStringNullish } from '../../../tools/utils/parseStringNullish.js'
|
||||
import { channelSchema } from '../../../models/Channel.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { guildSchema } from "#src/models/Guild.js"
|
||||
import { parseStringNullish } from "#src/tools/utils/parseStringNullish.js"
|
||||
import { channelSchema } from "#src/models/Channel.js"
|
||||
|
||||
const parametersSchema = Type.Object({
|
||||
guildId: guildSchema.id
|
||||
guildId: guildSchema.id,
|
||||
})
|
||||
|
||||
type Parameters = Static<typeof parametersSchema>
|
||||
|
||||
const bodyPutServiceSchema = Type.Object({
|
||||
name: Type.Optional(guildSchema.name),
|
||||
description: Type.Optional(guildSchema.description)
|
||||
description: Type.Optional(guildSchema.description),
|
||||
})
|
||||
|
||||
type BodyPutServiceSchemaType = Static<typeof bodyPutServiceSchema>
|
||||
|
||||
const putServiceSchema: FastifySchema = {
|
||||
description: 'Update a guild with the guildId.',
|
||||
tags: ['guilds'] as string[],
|
||||
description: "Update a guild with the guildId.",
|
||||
tags: ["guilds"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
body: bodyPutServiceSchema,
|
||||
params: parametersSchema,
|
||||
response: {
|
||||
200: Type.Object({
|
||||
...guildSchema,
|
||||
defaultChannelId: channelSchema.id
|
||||
defaultChannelId: channelSchema.id,
|
||||
}),
|
||||
400: fastifyErrors[400],
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
404: fastifyErrors[404],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const putGuildByIdService: FastifyPluginAsync = async (fastify) => {
|
||||
@ -52,8 +52,8 @@ export const putGuildByIdService: FastifyPluginAsync = async (fastify) => {
|
||||
Body: BodyPutServiceSchemaType
|
||||
Params: Parameters
|
||||
}>({
|
||||
method: 'PUT',
|
||||
url: '/guilds/:guildId',
|
||||
method: "PUT",
|
||||
url: "/guilds/:guildId",
|
||||
schema: putServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
@ -64,41 +64,44 @@ export const putGuildByIdService: FastifyPluginAsync = async (fastify) => {
|
||||
const member = await prisma.member.findFirst({
|
||||
where: { guildId, userId: request.user.current.id },
|
||||
include: {
|
||||
guild: true
|
||||
}
|
||||
guild: true,
|
||||
},
|
||||
})
|
||||
if (member == null || member.guild == null) {
|
||||
throw fastify.httpErrors.notFound('Member not found')
|
||||
throw fastify.httpErrors.notFound("Member not found")
|
||||
}
|
||||
if (!member.isOwner) {
|
||||
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({
|
||||
where: { id: guildId },
|
||||
data: {
|
||||
name: name ?? member.guild.name,
|
||||
description: parseStringNullish(member.guild.description, description)
|
||||
}
|
||||
description: parseStringNullish(
|
||||
member.guild.description,
|
||||
description,
|
||||
),
|
||||
},
|
||||
})
|
||||
const defaultChannel = await prisma.channel.findFirst({
|
||||
where: { guildId: guild.id }
|
||||
where: { guildId: guild.id },
|
||||
})
|
||||
if (defaultChannel == null) {
|
||||
throw fastify.httpErrors.internalServerError()
|
||||
}
|
||||
const item = {
|
||||
...guild,
|
||||
defaultChannelId: defaultChannel.id
|
||||
defaultChannelId: defaultChannel.id,
|
||||
}
|
||||
await fastify.io.emitToMembers({
|
||||
event: 'guilds',
|
||||
event: "guilds",
|
||||
guildId: guild.id,
|
||||
payload: { action: 'update', item }
|
||||
payload: { action: "update", item },
|
||||
})
|
||||
reply.statusCode = 200
|
||||
return item
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,47 +1,49 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../application.js'
|
||||
import { authenticateUserTest } from '../../../__test__/utils/authenticateUserTest.js'
|
||||
import prisma from '../../../tools/database/prisma.js'
|
||||
import { memberExample } from '../../../models/Member.js'
|
||||
import { guildExample } from '../../../models/Guild.js'
|
||||
import { channelExample } from '../../../models/Channel.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
await tap.test('GET /guilds', async (t) => {
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { memberExample } from "#src/models/Member.js"
|
||||
import { guildExample } from "#src/models/Guild.js"
|
||||
import { channelExample } from "#src/models/Channel.js"
|
||||
|
||||
await test("GET /guilds", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
await t.test("succeeds", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'guild').value({
|
||||
sinon.stub(prisma, "guild").value({
|
||||
findUnique: async () => {
|
||||
return guildExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findMany: async () => {
|
||||
return [memberExample]
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
findFirst: async () => {
|
||||
return channelExample
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
url: '/guilds',
|
||||
method: "GET",
|
||||
url: "/guilds",
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.length, 1)
|
||||
t.equal(responseJson[0].name, guildExample.name)
|
||||
t.equal(responseJson[0].description, guildExample.description)
|
||||
t.equal(responseJson[0].defaultChannelId, channelExample.id)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.length, 1)
|
||||
assert.strictEqual(responseJson[0].name, guildExample.name)
|
||||
assert.strictEqual(responseJson[0].description, guildExample.description)
|
||||
assert.strictEqual(responseJson[0].defaultChannelId, channelExample.id)
|
||||
})
|
||||
})
|
||||
|
@ -1,77 +1,82 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../application.js'
|
||||
import { authenticateUserTest } from '../../../__test__/utils/authenticateUserTest.js'
|
||||
import prisma from '../../../tools/database/prisma.js'
|
||||
import { memberExample } from '../../../models/Member.js'
|
||||
import { guildExample } from '../../../models/Guild.js'
|
||||
import { channelExample } from '../../../models/Channel.js'
|
||||
import { userExample } from '../../../models/User.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
await tap.test('POST /guilds', async (t) => {
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { memberExample } from "#src/models/Member.js"
|
||||
import { guildExample } from "#src/models/Guild.js"
|
||||
import { channelExample } from "#src/models/Channel.js"
|
||||
import { userExample } from "#src/models/User.js"
|
||||
|
||||
await test("POST /guilds", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
await t.test("succeeds", async () => {
|
||||
const { accessToken, user } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'guild').value({
|
||||
sinon.stub(prisma, "guild").value({
|
||||
create: async () => {
|
||||
return guildExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
create: async () => {
|
||||
return memberExample
|
||||
},
|
||||
findUnique: async () => {
|
||||
return {
|
||||
...memberExample,
|
||||
...userExample
|
||||
...userExample,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'channel').value({
|
||||
sinon.stub(prisma, "channel").value({
|
||||
create: async () => {
|
||||
return channelExample
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'POST',
|
||||
url: '/guilds',
|
||||
method: "POST",
|
||||
url: "/guilds",
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: {
|
||||
name: guildExample.name,
|
||||
description: guildExample.description
|
||||
}
|
||||
description: guildExample.description,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 201)
|
||||
t.equal(responseJson.guild.id, guildExample.id)
|
||||
t.equal(responseJson.guild.name, guildExample.name)
|
||||
t.equal(responseJson.guild.description, guildExample.description)
|
||||
t.equal(responseJson.guild.members.length, 1)
|
||||
t.equal(responseJson.guild.members[0].userId, user.id)
|
||||
t.equal(responseJson.guild.members[0].user.name, user.name)
|
||||
t.equal(responseJson.guild.members[0].guildId, guildExample.id)
|
||||
t.equal(responseJson.guild.members[0].isOwner, memberExample.isOwner)
|
||||
t.equal(responseJson.guild.channels.length, 1)
|
||||
t.equal(responseJson.guild.channels[0].id, channelExample.id)
|
||||
t.equal(responseJson.guild.channels[0].guildId, guildExample.id)
|
||||
assert.strictEqual(response.statusCode, 201)
|
||||
assert.strictEqual(responseJson.guild.id, guildExample.id)
|
||||
assert.strictEqual(responseJson.guild.name, guildExample.name)
|
||||
assert.strictEqual(responseJson.guild.description, guildExample.description)
|
||||
assert.strictEqual(responseJson.guild.members.length, 1)
|
||||
assert.strictEqual(responseJson.guild.members[0].userId, user.id)
|
||||
assert.strictEqual(responseJson.guild.members[0].user.name, user.name)
|
||||
assert.strictEqual(responseJson.guild.members[0].guildId, guildExample.id)
|
||||
assert.strictEqual(
|
||||
responseJson.guild.members[0].isOwner,
|
||||
memberExample.isOwner,
|
||||
)
|
||||
assert.strictEqual(responseJson.guild.channels.length, 1)
|
||||
assert.strictEqual(responseJson.guild.channels[0].id, channelExample.id)
|
||||
assert.strictEqual(responseJson.guild.channels[0].guildId, guildExample.id)
|
||||
})
|
||||
|
||||
await t.test('fails with empty name and description', async (t) => {
|
||||
await t.test("fails with empty name and description", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
const response = await application.inject({
|
||||
method: 'POST',
|
||||
url: '/guilds',
|
||||
method: "POST",
|
||||
url: "/guilds",
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
t.equal(response.statusCode, 400)
|
||||
assert.strictEqual(response.statusCode, 400)
|
||||
})
|
||||
})
|
||||
|
@ -1,39 +1,39 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../tools/database/prisma.js'
|
||||
import { fastifyErrors, id } from '../../models/utils.js'
|
||||
import authenticateUser from '../../tools/plugins/authenticateUser.js'
|
||||
import { guildSchema } from '../../models/Guild.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors, id } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { guildSchema } from "#src/models/Guild.js"
|
||||
import {
|
||||
getPaginationOptions,
|
||||
queryPaginationObjectSchema
|
||||
} from '../../tools/database/pagination.js'
|
||||
queryPaginationObjectSchema,
|
||||
} from "#src/tools/database/pagination.js"
|
||||
|
||||
type QuerySchemaType = Static<typeof queryPaginationObjectSchema>
|
||||
|
||||
const getServiceSchema: FastifySchema = {
|
||||
description: 'GET all the guilds of an user.',
|
||||
tags: ['guilds'] as string[],
|
||||
description: "GET all the guilds of an user.",
|
||||
tags: ["guilds"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
querystring: queryPaginationObjectSchema,
|
||||
response: {
|
||||
200: Type.Array(
|
||||
Type.Object({
|
||||
...guildSchema,
|
||||
defaultChannelId: id
|
||||
})
|
||||
defaultChannelId: id,
|
||||
}),
|
||||
),
|
||||
400: fastifyErrors[400],
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const getGuilds: FastifyPluginAsync = async (fastify) => {
|
||||
@ -42,8 +42,8 @@ export const getGuilds: FastifyPluginAsync = async (fastify) => {
|
||||
fastify.route<{
|
||||
Querystring: QuerySchemaType
|
||||
}>({
|
||||
method: 'GET',
|
||||
url: '/guilds',
|
||||
method: "GET",
|
||||
url: "/guilds",
|
||||
schema: getServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
@ -52,29 +52,29 @@ export const getGuilds: FastifyPluginAsync = async (fastify) => {
|
||||
const membersRequest = await prisma.member.findMany({
|
||||
...getPaginationOptions(request.query),
|
||||
where: {
|
||||
userId: request.user.current.id
|
||||
}
|
||||
userId: request.user.current.id,
|
||||
},
|
||||
})
|
||||
const guilds = await Promise.all(
|
||||
membersRequest.map(async (member) => {
|
||||
const channel = await prisma.channel.findFirst({
|
||||
where: {
|
||||
guildId: member.guildId
|
||||
}
|
||||
guildId: member.guildId,
|
||||
},
|
||||
})
|
||||
const guild = await prisma.guild.findUnique({
|
||||
where: {
|
||||
id: member.guildId
|
||||
}
|
||||
id: member.guildId,
|
||||
},
|
||||
})
|
||||
return {
|
||||
...guild,
|
||||
defaultChannelId: channel?.id
|
||||
defaultChannelId: channel?.id,
|
||||
}
|
||||
})
|
||||
}),
|
||||
)
|
||||
reply.statusCode = 200
|
||||
return guilds
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,17 +1,17 @@
|
||||
import type { FastifyPluginAsync } from 'fastify'
|
||||
import type { FastifyPluginAsync } from "fastify"
|
||||
|
||||
import { getGuilds } from './get.js'
|
||||
import { postGuilds } from './post.js'
|
||||
import { getGuildsPublic } from './public/get.js'
|
||||
import { getChannelsByGuildIdService } from './[guildId]/channels/get.js'
|
||||
import { postChannelService } from './[guildId]/channels/post.js'
|
||||
import { deleteGuildByIdService } from './[guildId]/delete.js'
|
||||
import { getGuildMemberByIdService } from './[guildId]/get.js'
|
||||
import { putGuildIconById } from './[guildId]/icon/put.js'
|
||||
import { getMembersByGuildIdService } from './[guildId]/members/get.js'
|
||||
import { postMemberService } from './[guildId]/members/join/post.js'
|
||||
import { deleteMemberService } from './[guildId]/members/leave/delete.js'
|
||||
import { putGuildByIdService } from './[guildId]/put.js'
|
||||
import { getGuilds } from "./get.js"
|
||||
import { postGuilds } from "./post.js"
|
||||
import { getGuildsPublic } from "./public/get.js"
|
||||
import { getChannelsByGuildIdService } from "./[guildId]/channels/get.js"
|
||||
import { postChannelService } from "./[guildId]/channels/post.js"
|
||||
import { deleteGuildByIdService } from "./[guildId]/delete.js"
|
||||
import { getGuildMemberByIdService } from "./[guildId]/get.js"
|
||||
import { putGuildIconById } from "./[guildId]/icon/put.js"
|
||||
import { getMembersByGuildIdService } from "./[guildId]/members/get.js"
|
||||
import { postMemberService } from "./[guildId]/members/join/post.js"
|
||||
import { deleteMemberService } from "./[guildId]/members/leave/delete.js"
|
||||
import { putGuildByIdService } from "./[guildId]/put.js"
|
||||
|
||||
export const guildsService: FastifyPluginAsync = async (fastify) => {
|
||||
await fastify.register(postGuilds)
|
||||
|
@ -1,30 +1,30 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../models/utils.js'
|
||||
import authenticateUser from '../../tools/plugins/authenticateUser.js'
|
||||
import { guildSchema } from '../../models/Guild.js'
|
||||
import { channelSchema } from '../../models/Channel.js'
|
||||
import { memberSchema } from '../../models/Member.js'
|
||||
import { userPublicWithoutSettingsSchema } from '../../models/User.js'
|
||||
import { parseStringNullish } from '../../tools/utils/parseStringNullish.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { guildSchema } from "#src/models/Guild.js"
|
||||
import { channelSchema } from "#src/models/Channel.js"
|
||||
import { memberSchema } from "#src/models/Member.js"
|
||||
import { userPublicWithoutSettingsSchema } from "#src/models/User.js"
|
||||
import { parseStringNullish } from "#src/tools/utils/parseStringNullish.js"
|
||||
|
||||
const bodyPostServiceSchema = Type.Object({
|
||||
name: guildSchema.name,
|
||||
description: guildSchema.description
|
||||
description: guildSchema.description,
|
||||
})
|
||||
|
||||
type BodyPostServiceSchemaType = Static<typeof bodyPostServiceSchema>
|
||||
|
||||
const postServiceSchema: FastifySchema = {
|
||||
description: 'Create a guild.',
|
||||
tags: ['guilds'] as string[],
|
||||
description: "Create a guild.",
|
||||
tags: ["guilds"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
body: bodyPostServiceSchema,
|
||||
response: {
|
||||
@ -35,16 +35,16 @@ const postServiceSchema: FastifySchema = {
|
||||
members: Type.Array(
|
||||
Type.Object({
|
||||
...memberSchema,
|
||||
user: Type.Object(userPublicWithoutSettingsSchema)
|
||||
})
|
||||
)
|
||||
})
|
||||
user: Type.Object(userPublicWithoutSettingsSchema),
|
||||
}),
|
||||
),
|
||||
}),
|
||||
}),
|
||||
400: fastifyErrors[400],
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const postGuilds: FastifyPluginAsync = async (fastify) => {
|
||||
@ -53,8 +53,8 @@ export const postGuilds: FastifyPluginAsync = async (fastify) => {
|
||||
fastify.route<{
|
||||
Body: BodyPostServiceSchemaType
|
||||
}>({
|
||||
method: 'POST',
|
||||
url: '/guilds',
|
||||
method: "POST",
|
||||
url: "/guilds",
|
||||
schema: postServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
@ -62,37 +62,37 @@ export const postGuilds: FastifyPluginAsync = async (fastify) => {
|
||||
}
|
||||
const { name, description } = request.body
|
||||
const guild = await prisma.guild.create({
|
||||
data: { name, description: parseStringNullish(description) }
|
||||
data: { name, description: parseStringNullish(description) },
|
||||
})
|
||||
const channel = await prisma.channel.create({
|
||||
data: { name: 'general', guildId: guild.id }
|
||||
data: { name: "general", guildId: guild.id },
|
||||
})
|
||||
const memberCreated = await prisma.member.create({
|
||||
data: {
|
||||
userId: request.user.current.id,
|
||||
isOwner: true,
|
||||
guildId: guild.id
|
||||
}
|
||||
guildId: guild.id,
|
||||
},
|
||||
})
|
||||
const members = await Promise.all(
|
||||
[memberCreated].map(async (member) => {
|
||||
const user = await prisma.user.findUnique({
|
||||
where: { id: member?.userId }
|
||||
where: { id: member?.userId },
|
||||
})
|
||||
return {
|
||||
...member,
|
||||
user
|
||||
user,
|
||||
}
|
||||
})
|
||||
}),
|
||||
)
|
||||
reply.statusCode = 201
|
||||
return {
|
||||
guild: {
|
||||
...guild,
|
||||
channels: [channel],
|
||||
members
|
||||
}
|
||||
members,
|
||||
},
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,39 +1,41 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../application.js'
|
||||
import { authenticateUserTest } from '../../../../__test__/utils/authenticateUserTest.js'
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { guildExample } from '../../../../models/Guild.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
await tap.test('GET /guilds/public', async (t) => {
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { guildExample } from "#src/models/Guild.js"
|
||||
|
||||
await test("GET /guilds/public", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
await t.test("succeeds", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'guild').value({
|
||||
sinon.stub(prisma, "guild").value({
|
||||
findMany: async () => {
|
||||
return [guildExample]
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
count: async () => {
|
||||
return 2
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
url: '/guilds/public',
|
||||
method: "GET",
|
||||
url: "/guilds/public",
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.length, 1)
|
||||
t.equal(responseJson[0].name, guildExample.name)
|
||||
t.equal(responseJson[0].membersCount, 2)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.length, 1)
|
||||
assert.strictEqual(responseJson[0].name, guildExample.name)
|
||||
assert.strictEqual(responseJson[0].membersCount, 2)
|
||||
})
|
||||
})
|
||||
|
@ -1,45 +1,45 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../models/utils.js'
|
||||
import authenticateUser from '../../../tools/plugins/authenticateUser.js'
|
||||
import { guildSchema } from '../../../models/Guild.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { guildSchema } from "#src/models/Guild.js"
|
||||
import {
|
||||
getPaginationOptions,
|
||||
queryPaginationSchema
|
||||
} from '../../../tools/database/pagination.js'
|
||||
queryPaginationSchema,
|
||||
} from "#src/tools/database/pagination.js"
|
||||
|
||||
const querySchema = Type.Object({
|
||||
search: Type.Optional(Type.String()),
|
||||
...queryPaginationSchema
|
||||
...queryPaginationSchema,
|
||||
})
|
||||
|
||||
export type QuerySchemaType = Static<typeof querySchema>
|
||||
|
||||
const getServiceSchema: FastifySchema = {
|
||||
description:
|
||||
'GET all the public guilds (ordered by descending members count).',
|
||||
tags: ['guilds'] as string[],
|
||||
"GET all the public guilds (ordered by descending members count).",
|
||||
tags: ["guilds"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
querystring: querySchema,
|
||||
response: {
|
||||
200: Type.Array(
|
||||
Type.Object({
|
||||
...guildSchema,
|
||||
membersCount: Type.Integer()
|
||||
})
|
||||
membersCount: Type.Integer(),
|
||||
}),
|
||||
),
|
||||
400: fastifyErrors[400],
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const getGuildsPublic: FastifyPluginAsync = async (fastify) => {
|
||||
@ -48,8 +48,8 @@ export const getGuildsPublic: FastifyPluginAsync = async (fastify) => {
|
||||
fastify.route<{
|
||||
Querystring: QuerySchemaType
|
||||
}>({
|
||||
method: 'GET',
|
||||
url: '/guilds/public',
|
||||
method: "GET",
|
||||
url: "/guilds/public",
|
||||
schema: getServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
@ -59,28 +59,28 @@ export const getGuildsPublic: FastifyPluginAsync = async (fastify) => {
|
||||
...getPaginationOptions(request.query),
|
||||
orderBy: {
|
||||
members: {
|
||||
_count: 'desc'
|
||||
}
|
||||
_count: "desc",
|
||||
},
|
||||
},
|
||||
...(request.query.search != null && {
|
||||
where: {
|
||||
name: { contains: request.query.search }
|
||||
}
|
||||
})
|
||||
name: { contains: request.query.search },
|
||||
},
|
||||
}),
|
||||
})
|
||||
const guilds = await Promise.all(
|
||||
guildsRequest.map(async (guild) => {
|
||||
const membersCount = await prisma.member.count({
|
||||
where: { guildId: guild.id }
|
||||
where: { guildId: guild.id },
|
||||
})
|
||||
return {
|
||||
...guild,
|
||||
membersCount
|
||||
membersCount,
|
||||
}
|
||||
})
|
||||
}),
|
||||
)
|
||||
reply.statusCode = 200
|
||||
return guilds
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,9 +1,9 @@
|
||||
import type { FastifyPluginAsync } from 'fastify'
|
||||
import type { FastifyPluginAsync } from "fastify"
|
||||
|
||||
import { usersService } from './users/index.js'
|
||||
import { guildsService } from './guilds/index.js'
|
||||
import { channelsService } from './channels/index.js'
|
||||
import { messagesService } from './messages/index.js'
|
||||
import { usersService } from "./users/index.js"
|
||||
import { guildsService } from "./guilds/index.js"
|
||||
import { channelsService } from "./channels/index.js"
|
||||
import { messagesService } from "./messages/index.js"
|
||||
|
||||
export const services: FastifyPluginAsync = async (fastify) => {
|
||||
await fastify.register(channelsService)
|
||||
|
@ -1,127 +1,129 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../application.js'
|
||||
import { authenticateUserTest } from '../../../../__test__/utils/authenticateUserTest.js'
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { messageExample } from '../../../../models/Message.js'
|
||||
import { memberExample } from '../../../../models/Member.js'
|
||||
import { userExample } from '../../../../models/User.js'
|
||||
import { channelExample } from '../../../../models/Channel.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
await tap.test('DELETE /messsages/[messageId]', async (t) => {
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { messageExample } from "#src/models/Message.js"
|
||||
import { memberExample } from "#src/models/Member.js"
|
||||
import { userExample } from "#src/models/User.js"
|
||||
import { channelExample } from "#src/models/Channel.js"
|
||||
|
||||
await test("DELETE /messsages/[messageId]", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
await t.test("succeeds", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'message').value({
|
||||
sinon.stub(prisma, "message").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...messageExample,
|
||||
channel: channelExample
|
||||
channel: channelExample,
|
||||
}
|
||||
},
|
||||
delete: async () => {
|
||||
return messageExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...memberExample,
|
||||
user: userExample
|
||||
user: userExample,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'DELETE',
|
||||
method: "DELETE",
|
||||
url: `/messages/${messageExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.id, messageExample.id)
|
||||
t.equal(responseJson.value, messageExample.value)
|
||||
t.equal(responseJson.type, messageExample.type)
|
||||
t.equal(responseJson.mimetype, messageExample.mimetype)
|
||||
t.equal(responseJson.member.id, memberExample.id)
|
||||
t.equal(responseJson.member.isOwner, memberExample.isOwner)
|
||||
t.equal(responseJson.member.user.id, userExample.id)
|
||||
t.equal(responseJson.member.user.name, userExample.name)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.id, messageExample.id)
|
||||
assert.strictEqual(responseJson.value, messageExample.value)
|
||||
assert.strictEqual(responseJson.type, messageExample.type)
|
||||
assert.strictEqual(responseJson.mimetype, messageExample.mimetype)
|
||||
assert.strictEqual(responseJson.member.id, memberExample.id)
|
||||
assert.strictEqual(responseJson.member.isOwner, memberExample.isOwner)
|
||||
assert.strictEqual(responseJson.member.user.id, userExample.id)
|
||||
assert.strictEqual(responseJson.member.user.name, userExample.name)
|
||||
})
|
||||
|
||||
await t.test('fails if the message is not found', async (t) => {
|
||||
await t.test("fails if the message is not found", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'message').value({
|
||||
sinon.stub(prisma, "message").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'DELETE',
|
||||
method: "DELETE",
|
||||
url: `/messages/${messageExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
t.equal(response.statusCode, 404)
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
})
|
||||
|
||||
await t.test('fails if the member is not found', async (t) => {
|
||||
await t.test("fails if the member is not found", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'message').value({
|
||||
sinon.stub(prisma, "message").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...messageExample,
|
||||
channel: channelExample
|
||||
channel: channelExample,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'DELETE',
|
||||
method: "DELETE",
|
||||
url: `/messages/${messageExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
t.equal(response.statusCode, 404)
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
})
|
||||
|
||||
await t.test('fails if the member is not owner of the message', async (t) => {
|
||||
await t.test("fails if the member is not owner of the message", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
const randomUserIdOwnerOfMessage = 14
|
||||
sinon.stub(prisma, 'message').value({
|
||||
sinon.stub(prisma, "message").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...messageExample,
|
||||
channel: channelExample
|
||||
channel: channelExample,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...memberExample,
|
||||
userId: randomUserIdOwnerOfMessage
|
||||
userId: randomUserIdOwnerOfMessage,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'DELETE',
|
||||
method: "DELETE",
|
||||
url: `/messages/${messageExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
t.equal(response.statusCode, 400)
|
||||
assert.strictEqual(response.statusCode, 400)
|
||||
})
|
||||
})
|
||||
|
@ -1,141 +1,143 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../application.js'
|
||||
import { authenticateUserTest } from '../../../../__test__/utils/authenticateUserTest.js'
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { messageExample } from '../../../../models/Message.js'
|
||||
import { memberExample } from '../../../../models/Member.js'
|
||||
import { userExample } from '../../../../models/User.js'
|
||||
import { channelExample } from '../../../../models/Channel.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
await tap.test('PUT /messsages/[messageId]', async (t) => {
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { messageExample } from "#src/models/Message.js"
|
||||
import { memberExample } from "#src/models/Member.js"
|
||||
import { userExample } from "#src/models/User.js"
|
||||
import { channelExample } from "#src/models/Channel.js"
|
||||
|
||||
await test("PUT /messsages/[messageId]", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
await t.test("succeeds", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
const newValue = 'some message'
|
||||
sinon.stub(prisma, 'message').value({
|
||||
const newValue = "some message"
|
||||
sinon.stub(prisma, "message").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...messageExample,
|
||||
channel: channelExample
|
||||
channel: channelExample,
|
||||
}
|
||||
},
|
||||
update: async () => {
|
||||
return {
|
||||
...messageExample,
|
||||
value: newValue
|
||||
value: newValue,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...memberExample,
|
||||
user: userExample
|
||||
user: userExample,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'PUT',
|
||||
method: "PUT",
|
||||
url: `/messages/${messageExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: { value: newValue }
|
||||
payload: { value: newValue },
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.id, messageExample.id)
|
||||
t.equal(responseJson.value, newValue)
|
||||
t.equal(responseJson.type, messageExample.type)
|
||||
t.equal(responseJson.mimetype, messageExample.mimetype)
|
||||
t.equal(responseJson.member.id, memberExample.id)
|
||||
t.equal(responseJson.member.isOwner, memberExample.isOwner)
|
||||
t.equal(responseJson.member.user.id, userExample.id)
|
||||
t.equal(responseJson.member.user.name, userExample.name)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.id, messageExample.id)
|
||||
assert.strictEqual(responseJson.value, newValue)
|
||||
assert.strictEqual(responseJson.type, messageExample.type)
|
||||
assert.strictEqual(responseJson.mimetype, messageExample.mimetype)
|
||||
assert.strictEqual(responseJson.member.id, memberExample.id)
|
||||
assert.strictEqual(responseJson.member.isOwner, memberExample.isOwner)
|
||||
assert.strictEqual(responseJson.member.user.id, userExample.id)
|
||||
assert.strictEqual(responseJson.member.user.name, userExample.name)
|
||||
})
|
||||
|
||||
await t.test('fails if the message is not found', async (t) => {
|
||||
await t.test("fails if the message is not found", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
const newValue = 'some message'
|
||||
sinon.stub(prisma, 'message').value({
|
||||
const newValue = "some message"
|
||||
sinon.stub(prisma, "message").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'PUT',
|
||||
method: "PUT",
|
||||
url: `/messages/${messageExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: { value: newValue }
|
||||
payload: { value: newValue },
|
||||
})
|
||||
t.equal(response.statusCode, 404)
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
})
|
||||
|
||||
await t.test('fails if the member is not found', async (t) => {
|
||||
await t.test("fails if the member is not found", async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
const newValue = 'some message'
|
||||
sinon.stub(prisma, 'message').value({
|
||||
const newValue = "some message"
|
||||
sinon.stub(prisma, "message").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...messageExample,
|
||||
channel: channelExample
|
||||
channel: channelExample,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'PUT',
|
||||
method: "PUT",
|
||||
url: `/messages/${messageExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: { value: newValue }
|
||||
payload: { value: newValue },
|
||||
})
|
||||
t.equal(response.statusCode, 404)
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
})
|
||||
|
||||
await t.test(
|
||||
'fails if the member is not the owner of the message',
|
||||
async (t) => {
|
||||
"fails if the member is not the owner of the message",
|
||||
async () => {
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
const newValue = 'some message'
|
||||
const newValue = "some message"
|
||||
const randomUserIdOwnerOfMessage = 14
|
||||
sinon.stub(prisma, 'message').value({
|
||||
sinon.stub(prisma, "message").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...messageExample,
|
||||
channel: channelExample
|
||||
channel: channelExample,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'member').value({
|
||||
sinon.stub(prisma, "member").value({
|
||||
findFirst: async () => {
|
||||
return {
|
||||
...memberExample,
|
||||
userId: randomUserIdOwnerOfMessage
|
||||
userId: randomUserIdOwnerOfMessage,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'PUT',
|
||||
method: "PUT",
|
||||
url: `/messages/${messageExample.id}`,
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: { value: newValue }
|
||||
payload: { value: newValue },
|
||||
})
|
||||
t.equal(response.statusCode, 400)
|
||||
}
|
||||
assert.strictEqual(response.statusCode, 400)
|
||||
},
|
||||
)
|
||||
})
|
||||
|
@ -1,27 +1,27 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../models/utils.js'
|
||||
import authenticateUser from '../../../tools/plugins/authenticateUser.js'
|
||||
import { messageSchema } from '../../../models/Message.js'
|
||||
import { memberSchema } from '../../../models/Member.js'
|
||||
import { userPublicWithoutSettingsSchema } from '../../../models/User.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { messageSchema } from "#src/models/Message.js"
|
||||
import { memberSchema } from "#src/models/Member.js"
|
||||
import { userPublicWithoutSettingsSchema } from "#src/models/User.js"
|
||||
|
||||
const parametersSchema = Type.Object({
|
||||
messageId: messageSchema.id
|
||||
messageId: messageSchema.id,
|
||||
})
|
||||
|
||||
type Parameters = Static<typeof parametersSchema>
|
||||
|
||||
const putServiceSchema: FastifySchema = {
|
||||
description: 'UPDATE a message with its id.',
|
||||
tags: ['messages'] as string[],
|
||||
description: "UPDATE a message with its id.",
|
||||
tags: ["messages"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
params: parametersSchema,
|
||||
response: {
|
||||
@ -29,15 +29,15 @@ const putServiceSchema: FastifySchema = {
|
||||
...messageSchema,
|
||||
member: Type.Object({
|
||||
...memberSchema,
|
||||
user: Type.Object(userPublicWithoutSettingsSchema)
|
||||
})
|
||||
user: Type.Object(userPublicWithoutSettingsSchema),
|
||||
}),
|
||||
}),
|
||||
400: fastifyErrors[400],
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
404: fastifyErrors[404],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const deleteMessageService: FastifyPluginAsync = async (fastify) => {
|
||||
@ -46,28 +46,28 @@ export const deleteMessageService: FastifyPluginAsync = async (fastify) => {
|
||||
fastify.route<{
|
||||
Params: Parameters
|
||||
}>({
|
||||
method: 'DELETE',
|
||||
url: '/messages/:messageId',
|
||||
method: "DELETE",
|
||||
url: "/messages/:messageId",
|
||||
schema: putServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
throw fastify.httpErrors.forbidden()
|
||||
}
|
||||
const { user } = request
|
||||
const { messageId } = request.params
|
||||
const { user, params } = request
|
||||
const { messageId } = params
|
||||
const messageCheck = await prisma.message.findFirst({
|
||||
where: { id: messageId },
|
||||
include: {
|
||||
channel: true
|
||||
}
|
||||
channel: true,
|
||||
},
|
||||
})
|
||||
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({
|
||||
where: {
|
||||
guildId: messageCheck.channel.guildId,
|
||||
userId: user.current.id
|
||||
userId: user.current.id,
|
||||
},
|
||||
include: {
|
||||
user: {
|
||||
@ -79,23 +79,23 @@ export const deleteMessageService: FastifyPluginAsync = async (fastify) => {
|
||||
biography: true,
|
||||
website: true,
|
||||
createdAt: true,
|
||||
updatedAt: true
|
||||
}
|
||||
}
|
||||
}
|
||||
updatedAt: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
if (member == null) {
|
||||
throw fastify.httpErrors.notFound('Member not found')
|
||||
throw fastify.httpErrors.notFound("Member not found")
|
||||
}
|
||||
if (member.userId !== user.current.id) {
|
||||
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({
|
||||
where: {
|
||||
id: messageCheck.id
|
||||
}
|
||||
id: messageCheck.id,
|
||||
},
|
||||
})
|
||||
const item = {
|
||||
...message,
|
||||
@ -103,17 +103,17 @@ export const deleteMessageService: FastifyPluginAsync = async (fastify) => {
|
||||
...member,
|
||||
user: {
|
||||
...member.user,
|
||||
email: null
|
||||
}
|
||||
}
|
||||
email: null,
|
||||
},
|
||||
},
|
||||
}
|
||||
await fastify.io.emitToMembers({
|
||||
event: 'messages',
|
||||
event: "messages",
|
||||
guildId: item.member.guildId,
|
||||
payload: { action: 'delete', item }
|
||||
payload: { action: "delete", item },
|
||||
})
|
||||
reply.statusCode = 200
|
||||
return item
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,33 +1,33 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../models/utils.js'
|
||||
import authenticateUser from '../../../tools/plugins/authenticateUser.js'
|
||||
import { messageSchema } from '../../../models/Message.js'
|
||||
import { memberSchema } from '../../../models/Member.js'
|
||||
import { userPublicWithoutSettingsSchema } from '../../../models/User.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { messageSchema } from "#src/models/Message.js"
|
||||
import { memberSchema } from "#src/models/Member.js"
|
||||
import { userPublicWithoutSettingsSchema } from "#src/models/User.js"
|
||||
|
||||
const bodyPutServiceSchema = Type.Object({
|
||||
value: messageSchema.value
|
||||
value: messageSchema.value,
|
||||
})
|
||||
|
||||
type BodyPutServiceSchemaType = Static<typeof bodyPutServiceSchema>
|
||||
|
||||
const parametersSchema = Type.Object({
|
||||
messageId: messageSchema.id
|
||||
messageId: messageSchema.id,
|
||||
})
|
||||
|
||||
type Parameters = Static<typeof parametersSchema>
|
||||
|
||||
const putServiceSchema: FastifySchema = {
|
||||
description: 'UPDATE a message with its id.',
|
||||
tags: ['messages'] as string[],
|
||||
description: "UPDATE a message with its id.",
|
||||
tags: ["messages"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
body: bodyPutServiceSchema,
|
||||
params: parametersSchema,
|
||||
@ -36,15 +36,15 @@ const putServiceSchema: FastifySchema = {
|
||||
...messageSchema,
|
||||
member: Type.Object({
|
||||
...memberSchema,
|
||||
user: Type.Object(userPublicWithoutSettingsSchema)
|
||||
})
|
||||
user: Type.Object(userPublicWithoutSettingsSchema),
|
||||
}),
|
||||
}),
|
||||
400: fastifyErrors[400],
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
404: fastifyErrors[404],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const putMessageService: FastifyPluginAsync = async (fastify) => {
|
||||
@ -54,29 +54,29 @@ export const putMessageService: FastifyPluginAsync = async (fastify) => {
|
||||
Body: BodyPutServiceSchemaType
|
||||
Params: Parameters
|
||||
}>({
|
||||
method: 'PUT',
|
||||
url: '/messages/:messageId',
|
||||
method: "PUT",
|
||||
url: "/messages/:messageId",
|
||||
schema: putServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
throw fastify.httpErrors.forbidden()
|
||||
}
|
||||
const { user } = request
|
||||
const { messageId } = request.params
|
||||
const { value } = request.body
|
||||
const { user, params, body } = request
|
||||
const { messageId } = params
|
||||
const { value } = body
|
||||
const messageCheck = await prisma.message.findFirst({
|
||||
where: { id: messageId, type: 'text' },
|
||||
where: { id: messageId, type: "text" },
|
||||
include: {
|
||||
channel: true
|
||||
}
|
||||
channel: true,
|
||||
},
|
||||
})
|
||||
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({
|
||||
where: {
|
||||
guildId: messageCheck.channel.guildId,
|
||||
userId: user.current.id
|
||||
userId: user.current.id,
|
||||
},
|
||||
include: {
|
||||
user: {
|
||||
@ -88,26 +88,26 @@ export const putMessageService: FastifyPluginAsync = async (fastify) => {
|
||||
biography: true,
|
||||
website: true,
|
||||
createdAt: true,
|
||||
updatedAt: true
|
||||
}
|
||||
}
|
||||
}
|
||||
updatedAt: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
if (member == null) {
|
||||
throw fastify.httpErrors.notFound('Member not found')
|
||||
throw fastify.httpErrors.notFound("Member not found")
|
||||
}
|
||||
if (member.userId !== user.current.id) {
|
||||
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({
|
||||
where: {
|
||||
id: messageCheck.id
|
||||
id: messageCheck.id,
|
||||
},
|
||||
data: {
|
||||
value
|
||||
}
|
||||
value,
|
||||
},
|
||||
})
|
||||
const item = {
|
||||
...message,
|
||||
@ -115,17 +115,17 @@ export const putMessageService: FastifyPluginAsync = async (fastify) => {
|
||||
...member,
|
||||
user: {
|
||||
...member.user,
|
||||
email: null
|
||||
}
|
||||
}
|
||||
email: null,
|
||||
},
|
||||
},
|
||||
}
|
||||
await fastify.io.emitToMembers({
|
||||
event: 'messages',
|
||||
event: "messages",
|
||||
guildId: item.member.guildId,
|
||||
payload: { action: 'update', item }
|
||||
payload: { action: "update", item },
|
||||
})
|
||||
reply.statusCode = 200
|
||||
return item
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
import type { FastifyPluginAsync } from 'fastify'
|
||||
import type { FastifyPluginAsync } from "fastify"
|
||||
|
||||
import { deleteMessageService } from './[messageId]/delete.js'
|
||||
import { putMessageService } from './[messageId]/put.js'
|
||||
import { deleteMessageService } from "./[messageId]/delete.js"
|
||||
import { putMessageService } from "./[messageId]/put.js"
|
||||
|
||||
export const messagesService: FastifyPluginAsync = async (fastify) => {
|
||||
await fastify.register(putMessageService)
|
||||
|
@ -1,54 +1,56 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../application.js'
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { userExample } from '../../../../models/User.js'
|
||||
import { userSettingsExample } from '../../../../models/UserSettings.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
await tap.test('GET /users/[userId]', async (t) => {
|
||||
import { application } from "#src/application.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { userExample } from "#src/models/User.js"
|
||||
import { userSettingsExample } from "#src/models/UserSettings.js"
|
||||
|
||||
await test("GET /users/[userId]", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
sinon.stub(prisma, 'guild').value({
|
||||
await t.test("succeeds", async () => {
|
||||
sinon.stub(prisma, "guild").value({
|
||||
findMany: async () => {
|
||||
return []
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'user').value({
|
||||
sinon.stub(prisma, "user").value({
|
||||
findUnique: async () => {
|
||||
return userExample
|
||||
}
|
||||
},
|
||||
})
|
||||
sinon.stub(prisma, 'userSetting').value({
|
||||
sinon.stub(prisma, "userSetting").value({
|
||||
findFirst: async () => {
|
||||
return userSettingsExample
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
url: `/users/${userExample.id}`
|
||||
method: "GET",
|
||||
url: `/users/${userExample.id}`,
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.user.id, userExample.id)
|
||||
t.equal(responseJson.user.name, userExample.name)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.user.id, userExample.id)
|
||||
assert.strictEqual(responseJson.user.name, userExample.name)
|
||||
})
|
||||
|
||||
await t.test('fails with not found user', async (t) => {
|
||||
sinon.stub(prisma, 'userSetting').value({
|
||||
await t.test("fails with not found user", async () => {
|
||||
sinon.stub(prisma, "userSetting").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
url: `/users/1`
|
||||
method: "GET",
|
||||
url: `/users/1`,
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 404)
|
||||
t.equal(responseJson.message, 'User not found')
|
||||
assert.strictEqual(response.statusCode, 404)
|
||||
assert.strictEqual(responseJson.message, "User not found")
|
||||
})
|
||||
})
|
||||
|
@ -1,51 +1,51 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../models/utils.js'
|
||||
import { userPublicSchema } from '../../../models/User.js'
|
||||
import { guildSchema } from '../../../models/Guild.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import { userPublicSchema } from "#src/models/User.js"
|
||||
import { guildSchema } from "#src/models/Guild.js"
|
||||
|
||||
const parametersGetUserSchema = Type.Object({
|
||||
userId: userPublicSchema.id
|
||||
userId: userPublicSchema.id,
|
||||
})
|
||||
|
||||
type ParametersGetUser = Static<typeof parametersGetUserSchema>
|
||||
|
||||
const getServiceSchema: FastifySchema = {
|
||||
description: 'GET the public user informations with its id',
|
||||
tags: ['users'] as string[],
|
||||
description: "GET the public user informations with its id",
|
||||
tags: ["users"] as string[],
|
||||
params: parametersGetUserSchema,
|
||||
response: {
|
||||
200: Type.Object({
|
||||
user: Type.Object(userPublicSchema),
|
||||
guilds: Type.Array(Type.Object(guildSchema))
|
||||
guilds: Type.Array(Type.Object(guildSchema)),
|
||||
}),
|
||||
400: fastifyErrors[400],
|
||||
404: fastifyErrors[404],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const getUserById: FastifyPluginAsync = async (fastify) => {
|
||||
await fastify.route<{
|
||||
Params: ParametersGetUser
|
||||
}>({
|
||||
method: 'GET',
|
||||
url: '/users/:userId',
|
||||
method: "GET",
|
||||
url: "/users/:userId",
|
||||
schema: getServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
const { userId } = request.params
|
||||
const settings = await prisma.userSetting.findFirst({
|
||||
where: { userId }
|
||||
where: { userId },
|
||||
})
|
||||
if (settings == null) {
|
||||
throw fastify.httpErrors.notFound('User not found')
|
||||
throw fastify.httpErrors.notFound("User not found")
|
||||
}
|
||||
const user = await prisma.user.findUnique({
|
||||
where: {
|
||||
id: userId
|
||||
id: userId,
|
||||
},
|
||||
select: {
|
||||
id: true,
|
||||
@ -57,18 +57,18 @@ export const getUserById: FastifyPluginAsync = async (fastify) => {
|
||||
biography: true,
|
||||
website: true,
|
||||
createdAt: true,
|
||||
updatedAt: true
|
||||
}
|
||||
updatedAt: true,
|
||||
},
|
||||
})
|
||||
if (user == null) {
|
||||
throw fastify.httpErrors.notFound('User not found')
|
||||
throw fastify.httpErrors.notFound("User not found")
|
||||
}
|
||||
reply.statusCode = 200
|
||||
return {
|
||||
user: {
|
||||
...user,
|
||||
email: user.email ?? null,
|
||||
settings
|
||||
settings,
|
||||
},
|
||||
guilds: !settings.isPublicGuilds
|
||||
? []
|
||||
@ -77,12 +77,12 @@ export const getUserById: FastifyPluginAsync = async (fastify) => {
|
||||
where: {
|
||||
members: {
|
||||
some: {
|
||||
userId
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
userId,
|
||||
},
|
||||
},
|
||||
},
|
||||
}),
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,50 +1,52 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../application.js'
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { userExample } from '../../../../models/User.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
await tap.test('GET /users/confirm-email', async (t) => {
|
||||
import { application } from "#src/application.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { userExample } from "#src/models/User.js"
|
||||
|
||||
await test("GET /users/confirm-email", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
sinon.stub(prisma, 'user').value({
|
||||
await t.test("succeeds", async () => {
|
||||
sinon.stub(prisma, "user").value({
|
||||
findFirst: async () => {
|
||||
return userExample
|
||||
},
|
||||
update: async () => {
|
||||
return { ...userExample, isConfirmed: true, temporaryToken: null }
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
url: '/users/confirm-email',
|
||||
method: "GET",
|
||||
url: "/users/confirm-email",
|
||||
query: {
|
||||
temporaryToken: userExample.temporaryToken ?? ''
|
||||
}
|
||||
temporaryToken: userExample.temporaryToken ?? "",
|
||||
},
|
||||
})
|
||||
t.equal(response.statusCode, 200)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
})
|
||||
|
||||
await t.test('should fails with invalid `temporaryToken`', async (t) => {
|
||||
sinon.stub(prisma, 'user').value({
|
||||
await t.test("should fails with invalid `temporaryToken`", async () => {
|
||||
sinon.stub(prisma, "user").value({
|
||||
findFirst: async () => {
|
||||
return null
|
||||
},
|
||||
update: async () => {
|
||||
return { ...userExample, isConfirmed: true, temporaryToken: null }
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
url: '/users/confirm-email',
|
||||
method: "GET",
|
||||
url: "/users/confirm-email",
|
||||
query: {
|
||||
temporaryToken: userExample.temporaryToken ?? ''
|
||||
}
|
||||
temporaryToken: userExample.temporaryToken ?? "",
|
||||
},
|
||||
})
|
||||
t.equal(response.statusCode, 403)
|
||||
assert.strictEqual(response.statusCode, 403)
|
||||
})
|
||||
})
|
||||
|
@ -1,44 +1,44 @@
|
||||
import type { Static } from '@sinclair/typebox'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { Static } from "@sinclair/typebox"
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../models/utils.js'
|
||||
import { userSchema } from '../../../models/User.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import { userSchema } from "#src/models/User.js"
|
||||
|
||||
const queryGetConfirmEmailSchema = Type.Object({
|
||||
redirectURI: Type.Optional(Type.String({ format: 'uri-reference' })),
|
||||
temporaryToken: userSchema.temporaryToken
|
||||
redirectURI: Type.Optional(Type.String({ format: "uri-reference" })),
|
||||
temporaryToken: userSchema.temporaryToken,
|
||||
})
|
||||
|
||||
type QueryGetConfirmEmailSchemaType = Static<typeof queryGetConfirmEmailSchema>
|
||||
|
||||
const getConfirmEmailSchema: FastifySchema = {
|
||||
description: 'Confirm the account of the user.',
|
||||
tags: ['users'] as string[],
|
||||
description: "Confirm the account of the user.",
|
||||
tags: ["users"] as string[],
|
||||
querystring: queryGetConfirmEmailSchema,
|
||||
response: {
|
||||
200: Type.String(),
|
||||
400: fastifyErrors[400],
|
||||
403: fastifyErrors[403],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const getConfirmEmail: FastifyPluginAsync = async (fastify) => {
|
||||
await fastify.route<{
|
||||
Querystring: QueryGetConfirmEmailSchemaType
|
||||
}>({
|
||||
method: 'GET',
|
||||
url: '/users/confirm-email',
|
||||
method: "GET",
|
||||
url: "/users/confirm-email",
|
||||
schema: getConfirmEmailSchema,
|
||||
handler: async (request, reply) => {
|
||||
const { redirectURI, temporaryToken } = request.query
|
||||
const user = await prisma.user.findFirst({
|
||||
where: {
|
||||
temporaryToken,
|
||||
isConfirmed: false
|
||||
}
|
||||
isConfirmed: false,
|
||||
},
|
||||
})
|
||||
if (user == null) {
|
||||
throw fastify.httpErrors.forbidden()
|
||||
@ -47,14 +47,14 @@ export const getConfirmEmail: FastifyPluginAsync = async (fastify) => {
|
||||
where: { id: user.id },
|
||||
data: {
|
||||
temporaryToken: null,
|
||||
isConfirmed: true
|
||||
}
|
||||
isConfirmed: true,
|
||||
},
|
||||
})
|
||||
if (redirectURI == null) {
|
||||
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!"
|
||||
}
|
||||
await reply.redirect(redirectURI)
|
||||
}
|
||||
return await reply.redirect(redirectURI)
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,34 +1,36 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../application.js'
|
||||
import { authenticateUserTest } from '../../../../__test__/utils/authenticateUserTest.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
await tap.test('GET /users/current', async (t) => {
|
||||
import { application } from "#src/application.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
|
||||
await test("GET /users/current", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds', async (t) => {
|
||||
await t.test("succeeds", async () => {
|
||||
const { accessToken, user } = await authenticateUserTest()
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
url: '/users/current',
|
||||
method: "GET",
|
||||
url: "/users/current",
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
}
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.user.name, user.name)
|
||||
t.strictSame(responseJson.user.strategies, ['Local'])
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.user.name, user.name)
|
||||
assert.deepStrictEqual(responseJson.user.strategies, ["Local"])
|
||||
})
|
||||
|
||||
await t.test('fails with unauthenticated user', async (t) => {
|
||||
await t.test("fails with unauthenticated user", async () => {
|
||||
const response = await application.inject({
|
||||
method: 'GET',
|
||||
url: '/users/current'
|
||||
method: "GET",
|
||||
url: "/users/current",
|
||||
})
|
||||
t.equal(response.statusCode, 401)
|
||||
assert.strictEqual(response.statusCode, 401)
|
||||
})
|
||||
})
|
||||
|
@ -1,19 +1,21 @@
|
||||
import tap from 'tap'
|
||||
import sinon from 'sinon'
|
||||
import test from "node:test"
|
||||
import assert from "node:assert/strict"
|
||||
|
||||
import { application } from '../../../../application.js'
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { authenticateUserTest } from '../../../../__test__/utils/authenticateUserTest.js'
|
||||
import sinon from "sinon"
|
||||
|
||||
await tap.test('PUT /users/current', async (t) => {
|
||||
import { application } from "#src/application.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { authenticateUserTest } from "#src/__test__/utils/authenticateUserTest.js"
|
||||
|
||||
await test("PUT /users/current", async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('succeeds with valid accessToken and valid name', async (t) => {
|
||||
const newName = 'John Doe'
|
||||
await t.test("succeeds with valid accessToken and valid name", async () => {
|
||||
const newName = "John Doe"
|
||||
const { accessToken, user, userStubValue } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'user').value({
|
||||
sinon.stub(prisma, "user").value({
|
||||
...userStubValue,
|
||||
findFirst: async () => {
|
||||
return null
|
||||
@ -21,29 +23,29 @@ await tap.test('PUT /users/current', async (t) => {
|
||||
update: async () => {
|
||||
return {
|
||||
...user,
|
||||
name: newName
|
||||
name: newName,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'PUT',
|
||||
url: '/users/current',
|
||||
method: "PUT",
|
||||
url: "/users/current",
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: {
|
||||
name: newName
|
||||
}
|
||||
name: newName,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.user.name, newName)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.user.name, newName)
|
||||
})
|
||||
|
||||
await t.test('succeeds and only update the status', async (t) => {
|
||||
const newStatus = '👀 Working on secret projects...'
|
||||
await t.test("succeeds and only update the status", async () => {
|
||||
const newStatus = "👀 Working on secret projects..."
|
||||
const { accessToken, user, userStubValue } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'user').value({
|
||||
sinon.stub(prisma, "user").value({
|
||||
...userStubValue,
|
||||
findFirst: async () => {
|
||||
return null
|
||||
@ -51,68 +53,68 @@ await tap.test('PUT /users/current', async (t) => {
|
||||
update: async () => {
|
||||
return {
|
||||
...user,
|
||||
status: newStatus
|
||||
status: newStatus,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'PUT',
|
||||
url: '/users/current',
|
||||
method: "PUT",
|
||||
url: "/users/current",
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: {
|
||||
status: newStatus
|
||||
}
|
||||
status: newStatus,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.user.name, user.name)
|
||||
t.equal(responseJson.user.status, newStatus)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.user.name, user.name)
|
||||
assert.strictEqual(responseJson.user.status, newStatus)
|
||||
})
|
||||
|
||||
await t.test('fails with name already used', async (t) => {
|
||||
const newName = 'John Doe'
|
||||
await t.test("fails with name already used", async () => {
|
||||
const newName = "John Doe"
|
||||
const { accessToken, user, userStubValue } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'user').value({
|
||||
sinon.stub(prisma, "user").value({
|
||||
...userStubValue,
|
||||
findFirst: async () => {
|
||||
return user
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'PUT',
|
||||
url: '/users/current',
|
||||
method: "PUT",
|
||||
url: "/users/current",
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: {
|
||||
name: newName
|
||||
}
|
||||
name: newName,
|
||||
},
|
||||
})
|
||||
t.equal(response.statusCode, 400)
|
||||
assert.strictEqual(response.statusCode, 400)
|
||||
})
|
||||
|
||||
await t.test('fails with invalid website url', async (t) => {
|
||||
const newWebsite = 'invalid website url'
|
||||
await t.test("fails with invalid website url", async () => {
|
||||
const newWebsite = "invalid website url"
|
||||
const { accessToken } = await authenticateUserTest()
|
||||
const response = await application.inject({
|
||||
method: 'PUT',
|
||||
url: '/users/current',
|
||||
method: "PUT",
|
||||
url: "/users/current",
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: {
|
||||
website: newWebsite
|
||||
}
|
||||
website: newWebsite,
|
||||
},
|
||||
})
|
||||
t.equal(response.statusCode, 400)
|
||||
assert.strictEqual(response.statusCode, 400)
|
||||
})
|
||||
|
||||
await t.test('succeeds with valid website url', async (t) => {
|
||||
const newWebsite = 'https://somerandomwebsite.com'
|
||||
await t.test("succeeds with valid website url", async () => {
|
||||
const newWebsite = "https://somerandomwebsite.com"
|
||||
const { accessToken, user, userStubValue } = await authenticateUserTest()
|
||||
sinon.stub(prisma, 'user').value({
|
||||
sinon.stub(prisma, "user").value({
|
||||
...userStubValue,
|
||||
findFirst: async () => {
|
||||
return null
|
||||
@ -120,23 +122,23 @@ await tap.test('PUT /users/current', async (t) => {
|
||||
update: async () => {
|
||||
return {
|
||||
...user,
|
||||
website: newWebsite
|
||||
website: newWebsite,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
const response = await application.inject({
|
||||
method: 'PUT',
|
||||
url: '/users/current',
|
||||
method: "PUT",
|
||||
url: "/users/current",
|
||||
headers: {
|
||||
authorization: `Bearer ${accessToken}`
|
||||
authorization: `Bearer ${accessToken}`,
|
||||
},
|
||||
payload: {
|
||||
website: newWebsite
|
||||
}
|
||||
website: newWebsite,
|
||||
},
|
||||
})
|
||||
const responseJson = response.json()
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(responseJson.user.name, user.name)
|
||||
t.equal(responseJson.user.website, newWebsite)
|
||||
assert.strictEqual(response.statusCode, 200)
|
||||
assert.strictEqual(responseJson.user.name, user.name)
|
||||
assert.strictEqual(responseJson.user.website, newWebsite)
|
||||
})
|
||||
})
|
||||
|
@ -1,33 +1,33 @@
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
|
||||
import prisma from '../../../tools/database/prisma.js'
|
||||
import { fastifyErrors } from '../../../models/utils.js'
|
||||
import authenticateUser from '../../../tools/plugins/authenticateUser.js'
|
||||
import { userCurrentSchema } from '../../../models/User.js'
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { userCurrentSchema } from "#src/models/User.js"
|
||||
|
||||
const getCurrentUserSchema: FastifySchema = {
|
||||
description: 'GET the current connected user',
|
||||
tags: ['users'] as string[],
|
||||
description: "GET the current connected user",
|
||||
tags: ["users"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
response: {
|
||||
200: userCurrentSchema,
|
||||
400: fastifyErrors[400],
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const getCurrentUser: FastifyPluginAsync = async (fastify) => {
|
||||
await fastify.register(authenticateUser)
|
||||
|
||||
fastify.route({
|
||||
method: 'GET',
|
||||
url: '/users/current',
|
||||
method: "GET",
|
||||
url: "/users/current",
|
||||
schema: getCurrentUserSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
@ -35,16 +35,16 @@ export const getCurrentUser: FastifyPluginAsync = async (fastify) => {
|
||||
}
|
||||
const { user } = request
|
||||
const settings = await prisma.userSetting.findFirst({
|
||||
where: { userId: user.current.id }
|
||||
where: { userId: user.current.id },
|
||||
})
|
||||
const OAuths = await prisma.oAuth.findMany({
|
||||
where: { userId: user.current.id }
|
||||
where: { userId: user.current.id },
|
||||
})
|
||||
const strategies = OAuths.map((oauth) => {
|
||||
return oauth.provider
|
||||
})
|
||||
if (user.current.password != null) {
|
||||
strategies.push('Local')
|
||||
strategies.push("Local")
|
||||
}
|
||||
reply.statusCode = 200
|
||||
return {
|
||||
@ -52,9 +52,9 @@ export const getCurrentUser: FastifyPluginAsync = async (fastify) => {
|
||||
...user.current,
|
||||
settings,
|
||||
currentStrategy: user.currentStrategy,
|
||||
strategies
|
||||
}
|
||||
strategies,
|
||||
},
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -1,34 +1,34 @@
|
||||
import { Type } from '@sinclair/typebox'
|
||||
import type { FastifyPluginAsync, FastifySchema } from 'fastify'
|
||||
import fastifyMultipart from '@fastify/multipart'
|
||||
import { Type } from "@sinclair/typebox"
|
||||
import type { FastifyPluginAsync, FastifySchema } from "fastify"
|
||||
import fastifyMultipart from "@fastify/multipart"
|
||||
|
||||
import authenticateUser from '../../../../tools/plugins/authenticateUser.js'
|
||||
import { fastifyErrors } from '../../../../models/utils.js'
|
||||
import prisma from '../../../../tools/database/prisma.js'
|
||||
import { uploadFile } from '../../../../tools/utils/uploadFile.js'
|
||||
import authenticateUser from "#src/tools/plugins/authenticateUser.js"
|
||||
import { fastifyErrors } from "#src/models/utils.js"
|
||||
import prisma from "#src/tools/database/prisma.js"
|
||||
import { uploadFile } from "#src/tools/utils/uploadFile.js"
|
||||
|
||||
const putServiceSchema: FastifySchema = {
|
||||
description: 'Edit the current connected user logo',
|
||||
tags: ['users'] as string[],
|
||||
consumes: ['multipart/form-data'] as string[],
|
||||
produces: ['application/json'] as string[],
|
||||
description: "Edit the current connected user logo",
|
||||
tags: ["users"] as string[],
|
||||
consumes: ["multipart/form-data"] as string[],
|
||||
produces: ["application/json"] as string[],
|
||||
security: [
|
||||
{
|
||||
bearerAuth: []
|
||||
}
|
||||
bearerAuth: [],
|
||||
},
|
||||
] as Array<{ [key: string]: [] }>,
|
||||
response: {
|
||||
200: Type.Object({
|
||||
user: Type.Object({
|
||||
logo: Type.String()
|
||||
})
|
||||
logo: Type.String(),
|
||||
}),
|
||||
}),
|
||||
400: fastifyErrors[400],
|
||||
401: fastifyErrors[401],
|
||||
403: fastifyErrors[403],
|
||||
431: fastifyErrors[431],
|
||||
500: fastifyErrors[500]
|
||||
}
|
||||
500: fastifyErrors[500],
|
||||
},
|
||||
} as const
|
||||
|
||||
export const putCurrentUserLogo: FastifyPluginAsync = async (fastify) => {
|
||||
@ -37,8 +37,8 @@ export const putCurrentUserLogo: FastifyPluginAsync = async (fastify) => {
|
||||
await fastify.register(fastifyMultipart)
|
||||
|
||||
fastify.route({
|
||||
method: 'PUT',
|
||||
url: '/users/current/logo',
|
||||
method: "PUT",
|
||||
url: "/users/current/logo",
|
||||
schema: putServiceSchema,
|
||||
handler: async (request, reply) => {
|
||||
if (request.user == null) {
|
||||
@ -47,18 +47,18 @@ export const putCurrentUserLogo: FastifyPluginAsync = async (fastify) => {
|
||||
const file = await uploadFile({
|
||||
fastify,
|
||||
request,
|
||||
folderInUploadsFolder: 'users'
|
||||
folderInUploadsFolder: "users",
|
||||
})
|
||||
await prisma.user.update({
|
||||
where: { id: request.user.current.id },
|
||||
data: { logo: file.pathToStoreInDatabase }
|
||||
data: { logo: file.pathToStoreInDatabase },
|
||||
})
|
||||
reply.statusCode = 200
|
||||
return {
|
||||
user: {
|
||||
logo: file.pathToStoreInDatabase
|
||||
}
|
||||
logo: file.pathToStoreInDatabase,
|
||||
},
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
}
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user