mirror of
https://github.com/sern-handler/handler
synced 2026-06-06 01:16:55 +00:00
Compare commits
99 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1059065980 | ||
|
|
974c30fa6c | ||
|
|
3a569726d8 | ||
|
|
1b7f2a49a8 | ||
|
|
97fa2a2d78 | ||
|
|
a52ad270d8 | ||
|
|
3f703c17b8 | ||
|
|
f9e7eaf92d | ||
|
|
52e145600d | ||
|
|
59d08ef207 | ||
|
|
7deb79e907 | ||
|
|
f2d4b5bda1 | ||
|
|
a575b3ed74 | ||
|
|
2042559b4d | ||
|
|
220a60ecf8 | ||
|
|
55715d5659 | ||
|
|
d0c3b7469e | ||
|
|
eabfb81819 | ||
|
|
1789ccb2f2 | ||
|
|
25c5891ade | ||
|
|
2106cdc1d0 | ||
|
|
61e82fdc7b | ||
|
|
3755b95b1a | ||
|
|
06807ea77f | ||
|
|
3fd3f1c236 | ||
|
|
92623d2914 | ||
|
|
a91f260a86 | ||
|
|
dda0e3395b | ||
|
|
9a8904f5ae | ||
|
|
04c4625bfa | ||
|
|
91b3768e37 | ||
|
|
d6f49d1d97 | ||
|
|
8ecd30cf18 | ||
|
|
a19edaf883 | ||
|
|
90e55dfa14 | ||
|
|
2106522812 | ||
|
|
ce8c4bf649 | ||
|
|
e89b918390 | ||
|
|
f8b69ae542 | ||
|
|
48f9f6ec16 | ||
|
|
86ebb221ed | ||
|
|
4efdbb21fb | ||
|
|
07b11b357b | ||
|
|
ac7f47c590 | ||
| 45cbda7b42 | |||
|
|
5cad432589 | ||
|
|
044a10dace | ||
|
|
9d5c6c714f | ||
|
|
4f2387119a | ||
|
|
a6fa4e3dcb | ||
|
|
c281832db2 | ||
|
|
a359f73fa2 | ||
| 655bb8d358 | |||
| e8d5029834 | |||
|
|
b0399f9507 | ||
|
|
b962dae36c | ||
|
|
c73cf96cb2 | ||
|
|
7458befe8a | ||
|
|
efe49391e8 | ||
|
|
3140f80c10 | ||
|
|
504cdee7b2 | ||
|
|
c7661f272c | ||
|
|
daac37c288 | ||
|
|
a579e272d0 | ||
|
|
2051aa1ac0 | ||
|
|
237c8537c6 | ||
|
|
77fb00d386 | ||
|
|
89f6bbb975 | ||
|
|
8ef4ee87e9 | ||
|
|
fd39858636 | ||
|
|
132b625070 | ||
|
|
03439fec43 | ||
|
|
fc87e99ed0 | ||
|
|
a08541a8e7 | ||
|
|
8bd5eb4949 | ||
|
|
e1059f93f7 | ||
|
|
800531453f | ||
|
|
c9f2d75665 | ||
|
|
e59e0b9d40 | ||
|
|
26ccd118ff | ||
|
|
4b97d86908 | ||
|
|
b1c82448bd | ||
|
|
d80081384a | ||
|
|
50253ca322 | ||
|
|
215aca2f46 | ||
|
|
a7f5ea269f | ||
|
|
52d6368440 | ||
|
|
1e723a4154 | ||
|
|
5fe13f43d2 | ||
|
|
ab9d39306a | ||
|
|
d429f3adbf | ||
|
|
5e011b471e | ||
|
|
41344608c6 | ||
|
|
7a72cc4fe3 | ||
|
|
70cca0dbb0 | ||
|
|
7798e36458 | ||
|
|
9144485c39 | ||
|
|
cf15b67ede | ||
|
|
57cc94ff81 |
13
.eslintrc
13
.eslintrc
@@ -1,13 +0,0 @@
|
|||||||
{
|
|
||||||
"parser": "@typescript-eslint/parser",
|
|
||||||
"extends": ["plugin:@typescript-eslint/recommended"],
|
|
||||||
"parserOptions": { "ecmaVersion": "latest", "sourceType": "script" },
|
|
||||||
"rules": {
|
|
||||||
"@typescript-eslint/no-non-null-assertion": "off",
|
|
||||||
"quotes": [2, "single", { "avoidEscape": true, "allowTemplateLiterals": true }],
|
|
||||||
"semi": ["error", "always"],
|
|
||||||
"@typescript-eslint/no-empty-interface": 0,
|
|
||||||
"@typescript-eslint/ban-types": 0,
|
|
||||||
"@typescript-eslint/no-explicit-any": "off"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
1
.github/FUNDING.yml
vendored
Normal file
1
.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
open_collective: sern
|
||||||
39
.github/workflows/codeql-analysis.yml
vendored
39
.github/workflows/codeql-analysis.yml
vendored
@@ -1,39 +0,0 @@
|
|||||||
name: "CodeQL"
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ main ]
|
|
||||||
paths: ["src/**/*"]
|
|
||||||
pull_request:
|
|
||||||
branches: [ main ]
|
|
||||||
paths: ["src/**/*"]
|
|
||||||
schedule:
|
|
||||||
- cron: '37 20 * * 4'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
analyze:
|
|
||||||
name: Analyze
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
actions: read
|
|
||||||
contents: read
|
|
||||||
security-events: write
|
|
||||||
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
language: [ 'javascript' ]
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Initialize CodeQL
|
|
||||||
uses: github/codeql-action/init@v2
|
|
||||||
with:
|
|
||||||
languages: ${{ matrix.language }}
|
|
||||||
- name: Autobuild
|
|
||||||
uses: github/codeql-action/autobuild@v2
|
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
|
||||||
uses: github/codeql-action/analyze@v2
|
|
||||||
50
.github/workflows/continuous-integration.yml
vendored
50
.github/workflows/continuous-integration.yml
vendored
@@ -1,50 +0,0 @@
|
|||||||
name: Continuous Integration
|
|
||||||
|
|
||||||
on:
|
|
||||||
# Trigger the workflow on push or pull request or custom
|
|
||||||
push:
|
|
||||||
branches: [main]
|
|
||||||
paths:
|
|
||||||
- '*.ts'
|
|
||||||
pull_request_target:
|
|
||||||
branches:
|
|
||||||
main
|
|
||||||
paths:
|
|
||||||
- '*ts'
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
Prettier:
|
|
||||||
name: Run Prettier
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Check out Git repository
|
|
||||||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
|
|
||||||
|
|
||||||
- name: Set up Node.js
|
|
||||||
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
|
|
||||||
with:
|
|
||||||
node-version: 17
|
|
||||||
|
|
||||||
- name: Install pnpm
|
|
||||||
run: npm i -g yarn
|
|
||||||
|
|
||||||
# Prettier must be in `package.json`
|
|
||||||
- name: Install Node.js dependencies
|
|
||||||
run: yarn --immutable
|
|
||||||
|
|
||||||
- name: Run Prettier
|
|
||||||
run: yarn pretty
|
|
||||||
|
|
||||||
- name: Create Pull Request
|
|
||||||
id: cpr
|
|
||||||
uses: peter-evans/create-pull-request@v4
|
|
||||||
with:
|
|
||||||
commit-message: "style: pretty please"
|
|
||||||
branch: prettier
|
|
||||||
delete-branch: true
|
|
||||||
branch-suffix: short-commit-hash
|
|
||||||
title: "style: pretty please"
|
|
||||||
body: "pretty pretty prettier"
|
|
||||||
reviewers: EvolutionX-10
|
|
||||||
4
.github/workflows/dependency-review.yml
vendored
4
.github/workflows/dependency-review.yml
vendored
@@ -15,6 +15,6 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: 'Checkout Repository'
|
- name: 'Checkout Repository'
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
|
||||||
- name: 'Dependency Review'
|
- name: 'Dependency Review'
|
||||||
uses: actions/dependency-review-action@v2
|
uses: actions/dependency-review-action@0efb1d1d84fc9633afcdaad14c485cbbc90ef46c # v2
|
||||||
|
|||||||
34
.github/workflows/npm-publish-dev.yml
vendored
Normal file
34
.github/workflows/npm-publish-dev.yml
vendored
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
name: Continuous Delivery
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- 'src/**'
|
||||||
|
- 'package.json'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Publish:
|
||||||
|
name: Publishing Dev
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Check out Git repository
|
||||||
|
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
|
||||||
|
|
||||||
|
- name: Set up Node.js
|
||||||
|
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
registry-url: 'https://registry.npmjs.org'
|
||||||
|
|
||||||
|
- name: Install Node.js dependencies
|
||||||
|
run: npm i && npm run build:dev
|
||||||
|
|
||||||
|
- name: Publish to npm
|
||||||
|
run: |
|
||||||
|
npm version premajor --preid "dev.$(git rev-parse --verify --short HEAD)" --git-tag-version=false
|
||||||
|
npm publish --tag dev
|
||||||
|
env:
|
||||||
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||||
10
.github/workflows/npm-publish.yml
vendored
10
.github/workflows/npm-publish.yml
vendored
@@ -2,17 +2,21 @@ name: NPM / Publish
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
# We only publish if the version of sern handler is different. workflow automatically cancels if verson is the same
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'main'
|
||||||
jobs:
|
jobs:
|
||||||
test-and-publish:
|
test-and-publish:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
|
||||||
- uses: actions/setup-node@v3
|
- uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3
|
||||||
with:
|
with:
|
||||||
node-version: 17
|
node-version: 17
|
||||||
- run: yarn --immutable
|
- run: yarn --immutable
|
||||||
- run: yarn build:prod
|
- run: yarn build:prod
|
||||||
- uses: JS-DevTools/npm-publish@v1
|
- uses: JS-DevTools/npm-publish@0f451a94170d1699fd50710966d48fb26194d939 # v1
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.NPM_TOKEN }}
|
token: ${{ secrets.NPM_TOKEN }}
|
||||||
access: "public"
|
access: "public"
|
||||||
|
|||||||
2
.github/workflows/release-please.yml
vendored
2
.github/workflows/release-please.yml
vendored
@@ -6,7 +6,7 @@ jobs:
|
|||||||
release-please:
|
release-please:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: google-github-actions/release-please-action@v3
|
- uses: google-github-actions/release-please-action@db8f2c60ee802b3748b512940dde88eabd7b7e01 # v3
|
||||||
with:
|
with:
|
||||||
release-type: node
|
release-type: node
|
||||||
package-name: release-please-action
|
package-name: release-please-action
|
||||||
|
|||||||
29
.github/workflows/test.yml
vendored
Normal file
29
.github/workflows/test.yml
vendored
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
|
||||||
|
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
|
||||||
|
|
||||||
|
name: Node.js CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches: [ "main" ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [18.x, 19.x, 20.x]
|
||||||
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
|
||||||
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
|
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
|
cache: 'npm'
|
||||||
|
- run: npm install -g yarn
|
||||||
|
- run: yarn install
|
||||||
|
- run: yarn test
|
||||||
6
.gitignore
vendored
6
.gitignore
vendored
@@ -91,3 +91,9 @@ dist
|
|||||||
# Yarn files
|
# Yarn files
|
||||||
.yarn/install-state.gz
|
.yarn/install-state.gz
|
||||||
.yarn/build-state.yml
|
.yarn/build-state.yml
|
||||||
|
|
||||||
|
.yalc
|
||||||
|
|
||||||
|
yalc.lock
|
||||||
|
|
||||||
|
*.svg
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ logs
|
|||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
|
.yarn
|
||||||
# Runtime data
|
# Runtime data
|
||||||
pids
|
pids
|
||||||
*.pid
|
*.pid
|
||||||
@@ -80,9 +81,7 @@ typings/
|
|||||||
# FuseBox cache
|
# FuseBox cache
|
||||||
.fusebox/
|
.fusebox/
|
||||||
|
|
||||||
# TypeScript build output
|
test
|
||||||
dist
|
|
||||||
|
|
||||||
# VisualStudio Config file
|
# VisualStudio Config file
|
||||||
.vs
|
.vs
|
||||||
|
|
||||||
@@ -114,3 +113,4 @@ tsconfig-cjs.json
|
|||||||
tsconfig-esm.json
|
tsconfig-esm.json
|
||||||
|
|
||||||
renovate.json
|
renovate.json
|
||||||
|
fortnite
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
{
|
|
||||||
"semi": true,
|
|
||||||
"trailingComma": "all",
|
|
||||||
"singleQuote": true,
|
|
||||||
"printWidth": 100,
|
|
||||||
"tabWidth": 4,
|
|
||||||
"arrowParens": "avoid"
|
|
||||||
}
|
|
||||||
177
CHANGELOG.md
177
CHANGELOG.md
@@ -1,5 +1,182 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [4.2.2](https://github.com/sern-handler/handler/compare/v4.2.1...v4.2.2) (2025-02-03)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* faster autocomplete lookup ([#387](https://github.com/sern-handler/handler/issues/387)) ([974c30f](https://github.com/sern-handler/handler/commit/974c30fa6cccaae7b1c2c3246ffa9eecb6bc7bf9))
|
||||||
|
|
||||||
|
## [4.2.1](https://github.com/sern-handler/handler/compare/v4.2.0...v4.2.1) (2025-01-24)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* context-interactions error ([#382](https://github.com/sern-handler/handler/issues/382)) ([a52ad27](https://github.com/sern-handler/handler/commit/a52ad270d843e92db5bf2049d07527eed59d428c))
|
||||||
|
|
||||||
|
## [4.2.0](https://github.com/sern-handler/handler/compare/v4.1.1...v4.2.0) (2025-01-18)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* 4.2.0 load multiple directories & `handleModuleErrors` ([#378](https://github.com/sern-handler/handler/issues/378)) ([f9e7eaf](https://github.com/sern-handler/handler/commit/f9e7eaf92d22b76d3d02a1bbe8324ca6813f48f8))
|
||||||
|
|
||||||
|
## [4.1.1](https://github.com/sern-handler/handler/compare/v4.1.0...v4.1.1) (2025-01-13)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* remove rxjs ([#376](https://github.com/sern-handler/handler/issues/376)) ([59d08ef](https://github.com/sern-handler/handler/commit/59d08ef207c486ce1cf0aba267e6f862838e0dfb))
|
||||||
|
* This puts the light back into lightweight (\- 4.1 MB)
|
||||||
|
|
||||||
|
## [4.1.0](https://github.com/sern-handler/handler/compare/v4.0.3...v4.1.0) (2025-01-06)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* moduleinfo-in-eventplugins ([#373](https://github.com/sern-handler/handler/issues/373)) ([220a60e](https://github.com/sern-handler/handler/commit/220a60ecf853df8d288de2533c669562a430c3f9))
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* update github username ([#371](https://github.com/sern-handler/handler/issues/371)) ([55715d5](https://github.com/sern-handler/handler/commit/55715d565990fe686159f3c1eda3754d1262c72c))
|
||||||
|
|
||||||
|
## [4.0.3](https://github.com/sern-handler/handler/compare/v4.0.2...v4.0.3) (2024-10-06)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* async presence ([#369](https://github.com/sern-handler/handler/issues/369)) ([eabfb81](https://github.com/sern-handler/handler/commit/eabfb81819b53a4656d8eac6e21cfb488b724a42))
|
||||||
|
* fix eventModule typing for Discord events ([#368](https://github.com/sern-handler/handler/issues/368)) ([1789ccb](https://github.com/sern-handler/handler/commit/1789ccb2f22f502f87538fecdb07106ff7110434))
|
||||||
|
|
||||||
|
## [4.0.2](https://github.com/sern-handler/handler/compare/v4.0.1...v4.0.2) (2024-08-13)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* type issue ([2106cdc](https://github.com/sern-handler/handler/commit/2106cdc1d033f88b6ee4ccca6754fe7a595a9328))
|
||||||
|
|
||||||
|
## [4.0.1](https://github.com/sern-handler/handler/compare/v4.0.0...v4.0.1) (2024-07-19)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* add SDT typings to autocomplete commands ([#363](https://github.com/sern-handler/handler/issues/363)) ([92623d2](https://github.com/sern-handler/handler/commit/92623d2914fb80e31365f06cf896bb37f36fc814))
|
||||||
|
|
||||||
|
## [4.0.0](https://github.com/sern-handler/handler/compare/v3.3.4...v4.0.0) (2024-07-18)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* v4 ([#361](https://github.com/sern-handler/handler/issues/361)) ([9a8904f](https://github.com/sern-handler/handler/commit/9a8904f5aed4fa36b018ad73bbe58049bae33274))
|
||||||
|
|
||||||
|
|
||||||
|
### Miscellaneous Chores
|
||||||
|
|
||||||
|
* release 4.0.0 ([dda0e33](https://github.com/sern-handler/handler/commit/dda0e3395b6704862bfd3fda2a201e2cb9b45d2f))
|
||||||
|
|
||||||
|
## [3.3.4](https://github.com/sern-handler/handler/compare/v3.3.3...v3.3.4) (2024-03-18)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* sern emitter err ([#358](https://github.com/sern-handler/handler/issues/358)) ([90e55df](https://github.com/sern-handler/handler/commit/90e55dfa1466c91e5da48922251309331921b1ef))
|
||||||
|
|
||||||
|
## [3.3.3](https://github.com/sern-handler/handler/compare/v3.3.2...v3.3.3) (2024-02-25)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* rm deprecated class modules, clean up, rm indirection ([#355](https://github.com/sern-handler/handler/issues/355)) ([48f9f6e](https://github.com/sern-handler/handler/commit/48f9f6ec16e650d574bd24dcbb0ed176933bfe17))
|
||||||
|
* singleton init not being fired when inserting function ([07b11b3](https://github.com/sern-handler/handler/commit/07b11b357baac0c3c7055c022bc353995c80f766))
|
||||||
|
* typings and cleanup ([#356](https://github.com/sern-handler/handler/issues/356)) ([ce8c4bf](https://github.com/sern-handler/handler/commit/ce8c4bf6492b9680fb1c1a530d3e0028f214ad2f))
|
||||||
|
|
||||||
|
## [3.3.2](https://github.com/sern-handler/handler/compare/v3.3.1...v3.3.2) (2024-01-08)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* presence feature not working on cjs applications ([#351](https://github.com/sern-handler/handler/issues/351)) ([4f23871](https://github.com/sern-handler/handler/commit/4f2387119acfde036d0d1626553e9050f55627d1))
|
||||||
|
|
||||||
|
## [3.3.1](https://github.com/sern-handler/handler/compare/v3.3.0...v3.3.1) (2024-01-07)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* crashing when slash command is used as text command ([#349](https://github.com/sern-handler/handler/issues/349)) ([a359f73](https://github.com/sern-handler/handler/commit/a359f73fa24127a4964d411c8c1c0dfea5edc0f1))
|
||||||
|
|
||||||
|
|
||||||
|
### Reverts
|
||||||
|
|
||||||
|
* the last commit ([655bb8d](https://github.com/sern-handler/handler/commit/655bb8d35815fe0ce9797d8b169310a07b284ae0))
|
||||||
|
|
||||||
|
## [3.3.0](https://github.com/sern-handler/handler/compare/v3.2.1...v3.3.0) (2023-12-27)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* presence ([#345](https://github.com/sern-handler/handler/issues/345)) ([7458bef](https://github.com/sern-handler/handler/commit/7458befe8a5900480cd71900df02a8364837dc00))
|
||||||
|
|
||||||
|
## [3.2.1](https://github.com/sern-handler/handler/compare/v3.2.0...v3.2.1) (2023-12-21)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* logger swap failing ([daac37c](https://github.com/sern-handler/handler/commit/daac37c28858c42b21042bdcb8141239db634e7d))
|
||||||
|
|
||||||
|
## [3.2.0](https://github.com/sern-handler/handler/compare/v3.1.1...v3.2.0) (2023-12-15)
|
||||||
|
|
||||||
|
|
||||||
|
### Miscellaneous Chores
|
||||||
|
|
||||||
|
* release 3.2.0 ([237c853](https://github.com/sern-handler/handler/commit/237c8537c66052309d7e13a7e6e0a4f7995c2558))
|
||||||
|
|
||||||
|
## [3.1.1](https://github.com/sern-handler/handler/compare/v3.1.0...v3.1.1) (2023-11-06)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* queuing events ([fd39858](https://github.com/sern-handler/handler/commit/fd39858636d3038abb6d91021b65c99c488a3d6e))
|
||||||
|
* queuing events ([#332](https://github.com/sern-handler/handler/issues/332)) @Benzo-Fury ([#333](https://github.com/sern-handler/handler/issues/333)) ([fd39858](https://github.com/sern-handler/handler/commit/fd39858636d3038abb6d91021b65c99c488a3d6e))
|
||||||
|
|
||||||
|
## [3.1.0](https://github.com/sern-handler/handler/compare/v3.0.2...v3.1.0) (2023-09-04)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* add guaranteed `channelId` and `userId` getters to `Context` ([#320](https://github.com/sern-handler/handler/issues/320)) ([50253ca](https://github.com/sern-handler/handler/commit/50253ca322e7d6dbd2313139c0187a1028f71109))
|
||||||
|
* dispose hooks (deprecate useContainerRaw) ([#323](https://github.com/sern-handler/handler/issues/323)) ([26ccd11](https://github.com/sern-handler/handler/commit/26ccd118ff8cbcde94158a4d09fc0df18da9f254))
|
||||||
|
|
||||||
|
## [3.0.2](https://github.com/sern-handler/handler/compare/v3.0.1...v3.0.2) (2023-08-06)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* invalid id for cts, mts, cjs, mjs files, node paths ([#318](https://github.com/sern-handler/handler/issues/318)) ([a7f5ea2](https://github.com/sern-handler/handler/commit/a7f5ea269fb344e221d10dbdc26a1611ffc8138f))
|
||||||
|
|
||||||
|
## [3.0.1](https://github.com/sern-handler/handler/compare/v3.0.0...v3.0.1) (2023-08-05)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* collectors ([4134460](https://github.com/sern-handler/handler/commit/41344608c677b6069c46412f5f16e4337182ca7d))
|
||||||
|
|
||||||
|
## [3.0.0](https://github.com/sern-handler/handler/compare/v2.6.3...v3.0.0) (2023-07-29)
|
||||||
|
|
||||||
|
|
||||||
|
### ⚠ BREAKING CHANGES
|
||||||
|
|
||||||
|
* v3 ([#294](https://github.com/sern-handler/handler/issues/294))
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* v3 ([#294](https://github.com/sern-handler/handler/issues/294)) ([7798e36](https://github.com/sern-handler/handler/commit/7798e36458c7f555d2bcb8a5857a6db47b7211da))
|
||||||
|
|
||||||
|
|
||||||
|
### Miscellaneous Chores
|
||||||
|
|
||||||
|
* release 3.0.0 ([70cca0d](https://github.com/sern-handler/handler/commit/70cca0dbb01e70b47a8c899b1fc4f43dee5ed8ed))
|
||||||
|
|
||||||
## [2.6.3](https://github.com/sern-handler/handler/compare/v2.6.2...v2.6.3) (2023-06-17)
|
## [2.6.3](https://github.com/sern-handler/handler/compare/v2.6.2...v2.6.3) (2023-06-17)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
2
LICENSE
2
LICENSE
@@ -1,6 +1,6 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2023 sern
|
Copyright (c) 2025 sern
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|||||||
82
README.md
82
README.md
@@ -18,30 +18,17 @@
|
|||||||
- For you. A framework that's tailored to your exact needs.
|
- For you. A framework that's tailored to your exact needs.
|
||||||
- Lightweight. Does a lot while being small.
|
- Lightweight. Does a lot while being small.
|
||||||
- Latest features. Support for discord.js v14 and all of its interactions.
|
- Latest features. Support for discord.js v14 and all of its interactions.
|
||||||
- Hybrid, customizable and composable commands. Create them just how you like.
|
|
||||||
- Start quickly. Plug and play or customize to your liking.
|
- Start quickly. Plug and play or customize to your liking.
|
||||||
- Embraces reactive programming. For consistent and reliable backend.
|
- Works with [bun](https://bun.sh/) and [node](https://nodejs.org/en) out the box!
|
||||||
- Switch and customize how errors are handled, logging, and more.
|
|
||||||
- Use it with TypeScript or JavaScript. CommonJS and ESM supported.
|
- Use it with TypeScript or JavaScript. CommonJS and ESM supported.
|
||||||
- Active and growing community, always here to help. [Join us](https://sern.dev/discord)
|
- Active and growing community, always here to help. [Join us](https://sern.dev/discord)
|
||||||
- Unleash its full potential with a powerful CLI and awesome plugins.
|
- Unleash its full potential with a powerful CLI and awesome plugins.
|
||||||
|
|
||||||
## 📜 Installation
|
## 📜 Installation
|
||||||
|
[Start here!!](https://sern.dev/v4/reference/getting-started)
|
||||||
```sh
|
|
||||||
npm install @sern/handler
|
|
||||||
```
|
|
||||||
|
|
||||||
```sh
|
|
||||||
yarn add @sern/handler
|
|
||||||
```
|
|
||||||
|
|
||||||
```sh
|
|
||||||
pnpm add @sern/handler
|
|
||||||
```
|
|
||||||
|
|
||||||
## 👶 Basic Usage
|
## 👶 Basic Usage
|
||||||
<details open><summary>ping.ts</summary>
|
<details><summary>ping.ts</summary>
|
||||||
|
|
||||||
```ts
|
```ts
|
||||||
export default commandModule({
|
export default commandModule({
|
||||||
@@ -55,64 +42,17 @@ export default commandModule({
|
|||||||
});
|
});
|
||||||
```
|
```
|
||||||
</details>
|
</details>
|
||||||
<details open><summary>modal.ts</summary>
|
|
||||||
|
|
||||||
```ts
|
|
||||||
export default commandModule({
|
|
||||||
type: CommandType.Modal,
|
|
||||||
//Installed a plugin to make sure modal fields pass a validation.
|
|
||||||
plugins : [
|
|
||||||
assertFields({
|
|
||||||
fields: {
|
|
||||||
name: /^([^0-9]*)$/
|
|
||||||
},
|
|
||||||
failure: (errors, modal) => modal.reply('your submission did not pass the validations')
|
|
||||||
})
|
|
||||||
],
|
|
||||||
execute : (modal) => {
|
|
||||||
modal.reply('thanks for the submission!');
|
|
||||||
}
|
|
||||||
})
|
|
||||||
```
|
|
||||||
</details>
|
|
||||||
<details open><summary>index.ts</summary>
|
|
||||||
|
|
||||||
```ts
|
|
||||||
import { Client, GatewayIntentBits } from 'discord.js';
|
|
||||||
import { Sern, single, type Dependencies } from '@sern/handler';
|
|
||||||
|
|
||||||
//client has been declared previously
|
|
||||||
|
|
||||||
interface MyDependencies extends Dependencies {
|
|
||||||
'@sern/client': Singleton<Client>;
|
|
||||||
}
|
|
||||||
export const useContainer = Sern.makeDependencies<MyDependencies>({
|
|
||||||
build: root => root
|
|
||||||
.add({ '@sern/client': single(() => client) })
|
|
||||||
});
|
|
||||||
|
|
||||||
//View docs for all options
|
|
||||||
Sern.init({
|
|
||||||
defaultPrefix: '!', // removing defaultPrefix will shut down text commands
|
|
||||||
commands: 'src/commands',
|
|
||||||
// events: 'src/events' (optional),
|
|
||||||
containerConfig : {
|
|
||||||
get: useContainer
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
client.login("YOUR_BOT_TOKEN_HERE");
|
|
||||||
```
|
|
||||||
</details>
|
|
||||||
|
|
||||||
## 🤖 Bots Using sern
|
## 🤖 Bots Using sern
|
||||||
- [Community Bot](https://github.com/sern-handler/sern-community), the community bot for our [discord server](https://sern.dev/discord).
|
- [Community Bot](https://github.com/sern-handler/sern-community) - The community bot for our [Discord server](https://sern.dev/discord).
|
||||||
- [Vinci](https://github.com/SrIzan10/vinci), the bot for Mara Turing.
|
- [Vinci](https://github.com/SrIzan10/vinci) - The bot for Mara Turing.
|
||||||
- [Bask](https://github.com/baskbotml/bask), Listen your favorite artists on Discord.
|
- [Bask](https://github.com/baskbotml/bask) - Listen to your favorite artists on Discord.
|
||||||
- [ava](https://github.com/SrIzan10/ava), A discord bot that plays KNGI and Gensokyo Radio.
|
- [Murayama](https://github.com/murayamabot/murayama) - :pepega:
|
||||||
- [Murayama](https://github.com/murayamabot/murayama), :pepega:
|
- [Protector](https://github.com/GlitchApotamus/Protector) - Just a simple bot to help enhance a private Minecraft server.
|
||||||
- [Protector (WIP)](https://github.com/needhamgary/Protector), Just a simple bot to help enhance a private minecraft server.
|
- [SmokinWeed 💨](https://github.com/Peter-MJ-Parker/sern-bud) - A fun bot for a small, but growing server.
|
||||||
|
- [Man Nomic](https://github.com/jacoobes/man-nomic) - A simple information bot to provide information to the nomic-ai Discord community.
|
||||||
|
- [Linear-Discord](https://github.com/sern-handler/linear-discord) - Display and manage a linear dashboard.
|
||||||
## 💻 CLI
|
## 💻 CLI
|
||||||
|
|
||||||
It is **highly encouraged** to use the [command line interface](https://github.com/sern-handler/cli) for your project. Don't forget to view it.
|
It is **highly encouraged** to use the [command line interface](https://github.com/sern-handler/cli) for your project. Don't forget to view it.
|
||||||
|
|||||||
87
package.json
87
package.json
@@ -1,26 +1,28 @@
|
|||||||
{
|
{
|
||||||
"name": "@sern/handler",
|
"name": "@sern/handler",
|
||||||
"packageManager": "yarn@3.5.1",
|
"packageManager": "yarn@3.5.0",
|
||||||
"version": "2.6.3",
|
"version": "4.2.2",
|
||||||
"description": "A complete, customizable, typesafe, & reactive framework for discord bots.",
|
"description": "A complete, customizable, typesafe, & reactive framework for discord bots.",
|
||||||
"main": "dist/cjs/index.cjs",
|
"main": "./dist/index.js",
|
||||||
"module": "dist/esm/index.mjs",
|
"module": "./dist/index.js",
|
||||||
"types": "dist/index.d.ts",
|
|
||||||
"exports": {
|
"exports": {
|
||||||
".": {
|
".": {
|
||||||
"import": "./dist/esm/index.mjs",
|
"import": "./dist/index.js",
|
||||||
"require": "./dist/cjs/index.cjs"
|
"require": "./dist/index.js"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"watch": "tsup --watch",
|
"watch": "tsc --watch",
|
||||||
"clean-modules": "rimraf node_modules/ && npm install",
|
|
||||||
"lint": "eslint src/**/*.ts",
|
"lint": "eslint src/**/*.ts",
|
||||||
"format": "eslint src/**/*.ts --fix",
|
"format": "eslint src/**/*.ts --fix",
|
||||||
"build:dev": "tsup && tsup --dts-only --outDir dist",
|
"build:dev": "tsc",
|
||||||
"build:prod": "tsup --minify && tsup --dts-only --outDir dist",
|
"build:prod": "tsc",
|
||||||
"publish": "npm run build:prod",
|
"prepare": "tsc",
|
||||||
"pretty": "prettier --write ."
|
"pretty": "prettier --write .",
|
||||||
|
"tdd": "vitest",
|
||||||
|
"benchmark": "vitest bench",
|
||||||
|
"test": "vitest --run",
|
||||||
|
"analyze-imports": "npx depcruise src --include-only \"^src\" --output-type dot | dot -T svg > dependency-graph.svg"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"sern-handler",
|
"sern-handler",
|
||||||
@@ -34,25 +36,62 @@
|
|||||||
"author": "SernDevs",
|
"author": "SernDevs",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"iti": "^0.6.0",
|
"@sern/ioc": "^1.1.0",
|
||||||
"rxjs": "^7.8.0",
|
"callsites": "^3.1.0",
|
||||||
"ts-results-es": "^3.6.0"
|
"cron": "^3.1.7",
|
||||||
|
"deepmerge": "^4.3.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^18.15.11",
|
"@faker-js/faker": "^8.0.1",
|
||||||
|
"@types/node": "^20.0.0",
|
||||||
|
"@types/node-cron": "^3.0.11",
|
||||||
"@typescript-eslint/eslint-plugin": "5.58.0",
|
"@typescript-eslint/eslint-plugin": "5.58.0",
|
||||||
"@typescript-eslint/parser": "5.59.1",
|
"@typescript-eslint/parser": "5.59.1",
|
||||||
"discord.js": "^14.9.0",
|
"discord.js": "^14.15.3",
|
||||||
"esbuild": "^0.17.0",
|
|
||||||
"esbuild-ifdef": "^0.2.0",
|
|
||||||
"eslint": "8.39.0",
|
"eslint": "8.39.0",
|
||||||
"prettier": "2.8.8",
|
"typescript": "5.0.2",
|
||||||
"tsup": "^6.7.0",
|
"vitest": "^1.6.0"
|
||||||
"typescript": "5.0.2"
|
},
|
||||||
|
"eslintConfig": {
|
||||||
|
"parser": "@typescript-eslint/parser",
|
||||||
|
"extends": [
|
||||||
|
"plugin:@typescript-eslint/recommended"
|
||||||
|
],
|
||||||
|
"parserOptions": {
|
||||||
|
"ecmaVersion": "latest",
|
||||||
|
"sourceType": "script"
|
||||||
|
},
|
||||||
|
"rules": {
|
||||||
|
"@typescript-eslint/no-non-null-assertion": "off",
|
||||||
|
"quotes": [
|
||||||
|
2,
|
||||||
|
"single",
|
||||||
|
{
|
||||||
|
"avoidEscape": true,
|
||||||
|
"allowTemplateLiterals": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"semi": [
|
||||||
|
"error",
|
||||||
|
"always"
|
||||||
|
],
|
||||||
|
"@typescript-eslint/no-empty-interface": 0,
|
||||||
|
"@typescript-eslint/ban-types": 0,
|
||||||
|
"@typescript-eslint/no-explicit-any": "off"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/sern-handler/handler.git"
|
"url": "git+https://github.com/sern-handler/handler.git"
|
||||||
},
|
},
|
||||||
"homepage": "https://sern.dev"
|
"engines": {
|
||||||
|
"node": ">= 20.0.x"
|
||||||
|
},
|
||||||
|
"homepage": "https://sern.dev",
|
||||||
|
"overrides": {
|
||||||
|
"ws": "8.17.1"
|
||||||
|
},
|
||||||
|
"resolutions": {
|
||||||
|
"ws": "8.17.1"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,9 @@
|
|||||||
{
|
{
|
||||||
|
"extends": [
|
||||||
|
"config:base",
|
||||||
|
"helpers:pinGitHubActionDigests",
|
||||||
|
"group:allNonMajor"
|
||||||
|
],
|
||||||
"major": {
|
"major": {
|
||||||
"dependencyDashboardApproval": true,
|
"dependencyDashboardApproval": true,
|
||||||
"reviewers": ["EvolutionX-10", "jacoobes", "Murtatrxx"]
|
"reviewers": ["EvolutionX-10", "jacoobes", "Murtatrxx"]
|
||||||
|
|||||||
124
src/core/functions.ts
Normal file
124
src/core/functions.ts
Normal file
@@ -0,0 +1,124 @@
|
|||||||
|
import type { Module, SernAutocompleteData, SernOptionsData } from '../types/core-modules';
|
||||||
|
import type {
|
||||||
|
AnySelectMenuInteraction,
|
||||||
|
ButtonInteraction,
|
||||||
|
ChatInputCommandInteraction,
|
||||||
|
MessageContextMenuCommandInteraction,
|
||||||
|
ModalSubmitInteraction,
|
||||||
|
UserContextMenuCommandInteraction,
|
||||||
|
AutocompleteInteraction,
|
||||||
|
} from 'discord.js';
|
||||||
|
import { ApplicationCommandOptionType, InteractionType } from 'discord.js';
|
||||||
|
import { PluginType } from './structures/enums';
|
||||||
|
import type { Payload, UnpackedDependencies } from '../types/utility';
|
||||||
|
import path from 'node:path'
|
||||||
|
|
||||||
|
export const createSDT = (module: Module, deps: UnpackedDependencies, params: string|undefined) => {
|
||||||
|
return {
|
||||||
|
state: {},
|
||||||
|
deps,
|
||||||
|
params,
|
||||||
|
type: module.type,
|
||||||
|
module: {
|
||||||
|
name: module.name,
|
||||||
|
description: module.description,
|
||||||
|
locals: module.locals,
|
||||||
|
meta: module.meta
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Removes the first character(s) _[depending on prefix length]_ of the message
|
||||||
|
* @param msg
|
||||||
|
* @param prefix The prefix to remove
|
||||||
|
* @returns The message without the prefix
|
||||||
|
* @example
|
||||||
|
* message.content = '!ping';
|
||||||
|
* console.log(fmt(message.content, '!'));
|
||||||
|
* // [ 'ping' ]
|
||||||
|
*/
|
||||||
|
export function fmt(msg: string, prefix?: string): string[] {
|
||||||
|
if(!prefix) throw Error("Unable to parse message without prefix");
|
||||||
|
return msg.slice(prefix.length).trim().split(/\s+/g);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export function partitionPlugins<T,V>
|
||||||
|
(arr: Array<{ type: PluginType }> = []): [T[], V[]] {
|
||||||
|
const controlPlugins = [];
|
||||||
|
const initPlugins = [];
|
||||||
|
for (const el of arr) {
|
||||||
|
switch (el.type) {
|
||||||
|
case PluginType.Control: controlPlugins.push(el); break;
|
||||||
|
case PluginType.Init: initPlugins.push(el); break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return [controlPlugins, initPlugins] as [T[], V[]];
|
||||||
|
}
|
||||||
|
|
||||||
|
export const createLookupTable = (options: SernOptionsData[]): Map<string, SernAutocompleteData> => {
|
||||||
|
const table = new Map<string, SernAutocompleteData>();
|
||||||
|
_createLookupTable(table, options, "<parent>");
|
||||||
|
return table;
|
||||||
|
}
|
||||||
|
|
||||||
|
const _createLookupTable = (table: Map<string, SernAutocompleteData>, options: SernOptionsData[], parent: string) => {
|
||||||
|
for (const opt of options) {
|
||||||
|
const name = path.posix.join(parent, opt.name)
|
||||||
|
switch(opt.type) {
|
||||||
|
case ApplicationCommandOptionType.Subcommand: {
|
||||||
|
_createLookupTable(table, opt.options ?? [], name);
|
||||||
|
} break;
|
||||||
|
case ApplicationCommandOptionType.SubcommandGroup: {
|
||||||
|
_createLookupTable(table, opt.options ?? [], name);
|
||||||
|
} break;
|
||||||
|
default: {
|
||||||
|
if(Reflect.get(opt, 'autocomplete') === true) {
|
||||||
|
table.set(name, opt as SernAutocompleteData)
|
||||||
|
}
|
||||||
|
} break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
interface InteractionTypable {
|
||||||
|
type: InteractionType;
|
||||||
|
}
|
||||||
|
//discord.js pls fix ur typings or i will >:(
|
||||||
|
type AnyMessageComponentInteraction = AnySelectMenuInteraction | ButtonInteraction;
|
||||||
|
type AnyCommandInteraction =
|
||||||
|
| ChatInputCommandInteraction
|
||||||
|
| MessageContextMenuCommandInteraction
|
||||||
|
| UserContextMenuCommandInteraction;
|
||||||
|
|
||||||
|
export function isMessageComponent(i: InteractionTypable): i is AnyMessageComponentInteraction {
|
||||||
|
return i.type === InteractionType.MessageComponent;
|
||||||
|
}
|
||||||
|
export function isCommand(i: InteractionTypable): i is AnyCommandInteraction {
|
||||||
|
return i.type === InteractionType.ApplicationCommand;
|
||||||
|
}
|
||||||
|
export function isContextCommand(i: AnyCommandInteraction): i is MessageContextMenuCommandInteraction | UserContextMenuCommandInteraction {
|
||||||
|
return i.isContextMenuCommand();
|
||||||
|
}
|
||||||
|
export function isAutocomplete(i: InteractionTypable): i is AutocompleteInteraction {
|
||||||
|
return i.type === InteractionType.ApplicationCommandAutocomplete;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function isModal(i: InteractionTypable): i is ModalSubmitInteraction {
|
||||||
|
return i.type === InteractionType.ModalSubmit;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function resultPayload<T extends 'success'|'warning'|'failure'>
|
||||||
|
(type: T, module?: Module, reason?: unknown) {
|
||||||
|
return { type, module, reason } as Payload & { type : T };
|
||||||
|
}
|
||||||
|
|
||||||
|
export function pipe<T>(arg: unknown, firstFn: Function, ...fns: Function[]): T {
|
||||||
|
let result = firstFn(arg);
|
||||||
|
for (let fn of fns) {
|
||||||
|
result = fn(result);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
74
src/core/id.ts
Normal file
74
src/core/id.ts
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
import { ApplicationCommandType, ComponentType, type Interaction, InteractionType } from 'discord.js';
|
||||||
|
import { CommandType, EventType } from './structures/enums';
|
||||||
|
|
||||||
|
const parseParams = (event: { customId: string }, append: string) => {
|
||||||
|
const hasSlash = event.customId.indexOf('/')
|
||||||
|
if(hasSlash === -1) {
|
||||||
|
return { id:event.customId+append };
|
||||||
|
}
|
||||||
|
const baseid = event.customId.substring(0, hasSlash);
|
||||||
|
const params = event.customId.substring(hasSlash+1);
|
||||||
|
return { id: baseid+append, params }
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Construct unique ID for a given interaction object.
|
||||||
|
* @param event The interaction object for which to create an ID.
|
||||||
|
* @returns An array of unique string IDs based on the type and properties of the interaction object.
|
||||||
|
*/
|
||||||
|
export function reconstruct<T extends Interaction>(event: T) {
|
||||||
|
switch (event.type) {
|
||||||
|
case InteractionType.MessageComponent: {
|
||||||
|
const data = parseParams(event, `_C${event.componentType}`)
|
||||||
|
return [data];
|
||||||
|
}
|
||||||
|
case InteractionType.ApplicationCommand:
|
||||||
|
case InteractionType.ApplicationCommandAutocomplete:
|
||||||
|
return [{ id: `${event.commandName}_A${event.commandType}` }, { id: `${event.commandName}_B` }];
|
||||||
|
//Modal interactions are classified as components for sern
|
||||||
|
case InteractionType.ModalSubmit: {
|
||||||
|
const data = parseParams(event, '_M');
|
||||||
|
return [data];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* A magic number to represent any commandtype that is an ApplicationCommand.
|
||||||
|
*/
|
||||||
|
const PUBLISHABLE = 0b000000001111;
|
||||||
|
|
||||||
|
|
||||||
|
const TypeMap = new Map<number, number>([[CommandType.Text, 0],
|
||||||
|
[CommandType.Both, 0],
|
||||||
|
[CommandType.Slash, ApplicationCommandType.ChatInput],
|
||||||
|
[CommandType.CtxUser, ApplicationCommandType.User],
|
||||||
|
[CommandType.CtxMsg, ApplicationCommandType.Message],
|
||||||
|
[CommandType.Button, ComponentType.Button],
|
||||||
|
[CommandType.StringSelect, ComponentType.StringSelect],
|
||||||
|
[CommandType.Modal, InteractionType.ModalSubmit],
|
||||||
|
[CommandType.UserSelect, ComponentType.UserSelect],
|
||||||
|
[CommandType.MentionableSelect, ComponentType.MentionableSelect],
|
||||||
|
[CommandType.RoleSelect, ComponentType.RoleSelect],
|
||||||
|
[CommandType.ChannelSelect, ComponentType.ChannelSelect]]);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Generates an id based on name and CommandType.
|
||||||
|
* A is for any ApplicationCommand. C is for any ComponentCommand
|
||||||
|
* Then, another number fetched from TypeMap
|
||||||
|
*/
|
||||||
|
export function create(name: string, type: CommandType | EventType) {
|
||||||
|
if(type == CommandType.Text) {
|
||||||
|
return `${name}_T`;
|
||||||
|
}
|
||||||
|
if(type == CommandType.Both) {
|
||||||
|
return `${name}_B`;
|
||||||
|
}
|
||||||
|
if(type == CommandType.Modal) {
|
||||||
|
return `${name}_M`;
|
||||||
|
}
|
||||||
|
const am = (PUBLISHABLE & type) !== 0 ? 'A' : 'C';
|
||||||
|
return `${name}_${am}${TypeMap.get(type)!}`
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
55
src/core/interfaces.ts
Normal file
55
src/core/interfaces.ts
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
import type { AnyFunction } from '../types/utility';
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents an initialization contract.
|
||||||
|
* Let dependencies implement this to initiate some logic.
|
||||||
|
*/
|
||||||
|
export interface Init {
|
||||||
|
init(): unknown;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents a Disposable contract.
|
||||||
|
* Let dependencies implement this to dispose and cleanup.
|
||||||
|
*/
|
||||||
|
export interface Disposable {
|
||||||
|
dispose(): unknown;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export interface Emitter {
|
||||||
|
addListener(eventName: string | symbol, listener: AnyFunction): this;
|
||||||
|
removeListener(eventName: string | symbol, listener: AnyFunction): this;
|
||||||
|
emit(eventName: string | symbol, ...payload: any[]): boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 2.0.0
|
||||||
|
*/
|
||||||
|
export interface ErrorHandling {
|
||||||
|
/**
|
||||||
|
* @deprecated
|
||||||
|
* Version 4 will remove this method
|
||||||
|
*/
|
||||||
|
crash(err: Error): never;
|
||||||
|
/**
|
||||||
|
* A function that is called on every throw.
|
||||||
|
* @param error
|
||||||
|
*/
|
||||||
|
updateAlive(error: Error): void;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 2.0.0
|
||||||
|
*/
|
||||||
|
export interface Logging<T = unknown> {
|
||||||
|
error(payload: LogPayload<T>): void;
|
||||||
|
warning(payload: LogPayload<T>): void;
|
||||||
|
info(payload: LogPayload<T>): void;
|
||||||
|
debug(payload: LogPayload<T>): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export type LogPayload<T = unknown> = { message: T };
|
||||||
163
src/core/ioc.ts
Normal file
163
src/core/ioc.ts
Normal file
@@ -0,0 +1,163 @@
|
|||||||
|
import { Service as $Service, Services as $Services } from '@sern/ioc/global'
|
||||||
|
import { Container } from '@sern/ioc';
|
||||||
|
import * as Contracts from './interfaces';
|
||||||
|
import * as __Services from './structures/default-services';
|
||||||
|
import type { Logging } from './interfaces';
|
||||||
|
import { __init_container, useContainerRaw } from '@sern/ioc/global';
|
||||||
|
import { EventEmitter } from 'node:events';
|
||||||
|
import { Client } from 'discord.js';
|
||||||
|
import { Module } from '../types/core-modules';
|
||||||
|
import { UnpackFunction } from '../types/utility';
|
||||||
|
|
||||||
|
export function disposeAll(logger: Logging|undefined) {
|
||||||
|
useContainerRaw()
|
||||||
|
?.disposeAll()
|
||||||
|
.then(() => logger?.info({ message: 'Cleaning container and crashing' }));
|
||||||
|
}
|
||||||
|
|
||||||
|
type Insertable = | ((container: Dependencies) => object)
|
||||||
|
| object
|
||||||
|
|
||||||
|
const dependencyBuilder = (container: Container) => {
|
||||||
|
return {
|
||||||
|
/**
|
||||||
|
* Insert a dependency into your container.
|
||||||
|
* Supply the correct key and dependency
|
||||||
|
*/
|
||||||
|
add(key: keyof Dependencies, v: Insertable) {
|
||||||
|
if(typeof v !== 'function') {
|
||||||
|
container.addSingleton(key, v)
|
||||||
|
} else {
|
||||||
|
//@ts-ignore
|
||||||
|
container.addWiredSingleton(key, (cntr) => v(cntr))
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @param key the key of the dependency
|
||||||
|
* @param v The dependency to swap out.
|
||||||
|
* Swap out a preexisting dependency.
|
||||||
|
*/
|
||||||
|
swap(key: keyof Dependencies, v: Insertable) {
|
||||||
|
if(typeof v !== 'function') {
|
||||||
|
container.swap(key, v);
|
||||||
|
} else {
|
||||||
|
container.swap(key, v(container.deps()));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
type ValidDependencyConfig =
|
||||||
|
(c: ReturnType<typeof dependencyBuilder>) => any
|
||||||
|
|
||||||
|
/**
|
||||||
|
* makeDependencies constructs a dependency injection container for sern handler to use.
|
||||||
|
* This is required to start the handler, and is to be called before Sern.init.
|
||||||
|
* @example
|
||||||
|
* ```ts
|
||||||
|
* await makeDependencies(({ add }) => {
|
||||||
|
* add('@sern/client', new Client({ intents, partials })
|
||||||
|
* })
|
||||||
|
* ```
|
||||||
|
*/
|
||||||
|
export async function makeDependencies (conf: ValidDependencyConfig) {
|
||||||
|
const container = await __init_container({ autowire: false });
|
||||||
|
//We only include logger if it does not exist
|
||||||
|
const includeLogger = !container.hasKey('@sern/logger');
|
||||||
|
|
||||||
|
if(includeLogger) {
|
||||||
|
container.addSingleton('@sern/logger', new __Services.DefaultLogging);
|
||||||
|
}
|
||||||
|
container.addSingleton('@sern/errors', new __Services.DefaultErrorHandling);
|
||||||
|
container.addSingleton('@sern/modules', new Map);
|
||||||
|
container.addSingleton('@sern/emitter', new EventEmitter({ captureRejections: true }))
|
||||||
|
container.addSingleton('@sern/scheduler', new __Services.TaskScheduler)
|
||||||
|
conf(dependencyBuilder(container));
|
||||||
|
await container.ready();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The Service api, which allows users to access dependencies in places IOC cannot reach.
|
||||||
|
* To obtain intellisense, ensure a .d.ts file exists in the root of compilation.
|
||||||
|
* Our scaffolding tool takes care of this.
|
||||||
|
* Note: this method only works AFTER your container has been initiated
|
||||||
|
* @since 3.0.0
|
||||||
|
* @example
|
||||||
|
* ```ts
|
||||||
|
* const client = Service('@sern/client');
|
||||||
|
* ```
|
||||||
|
* @param key a key that corresponds to a dependency registered.
|
||||||
|
* @throws if container is absent or not present
|
||||||
|
*/
|
||||||
|
export function Service<const T extends keyof Dependencies>(key: T) {
|
||||||
|
return $Service(key) as Dependencies[T]
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @since 3.0.0
|
||||||
|
* The plural version of {@link Service}
|
||||||
|
* @throws if container is absent or not present
|
||||||
|
* @returns array of dependencies, in the same order of keys provided
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
export function Services<const T extends (keyof Dependencies)[]>(...keys: [...T]) {
|
||||||
|
return $Services<T, IntoDependencies<T>>(...keys)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated
|
||||||
|
* Creates a singleton object.
|
||||||
|
* @param cb
|
||||||
|
*/
|
||||||
|
export function single<T>(cb: () => T) {
|
||||||
|
console.log('The `single` function is deprecated and has no effect')
|
||||||
|
return cb();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated
|
||||||
|
* @since 2.0.0
|
||||||
|
* Creates a transient object
|
||||||
|
* @param cb
|
||||||
|
*/
|
||||||
|
export function transient<T>(cb: () => () => T) {
|
||||||
|
console.log('The `transient` function is deprecated and has no effect')
|
||||||
|
return cb()();
|
||||||
|
}
|
||||||
|
|
||||||
|
export type DependencyFromKey<T extends keyof Dependencies> = Dependencies[T];
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
export type IntoDependencies<Tuple extends [...any[]]> = {
|
||||||
|
[Index in keyof Tuple]: UnpackFunction<NonNullable<DependencyFromKey<Tuple[Index]>>>; //Unpack and make NonNullable
|
||||||
|
} & { length: Tuple['length'] };
|
||||||
|
|
||||||
|
export interface CoreDependencies {
|
||||||
|
/**
|
||||||
|
* discord.js client.
|
||||||
|
*/
|
||||||
|
'@sern/client': Client;
|
||||||
|
/**
|
||||||
|
* sern emitter listens to events that happen throughout
|
||||||
|
* the handler. some include module.register, module.activate.
|
||||||
|
*/
|
||||||
|
'@sern/emitter': Contracts.Emitter;
|
||||||
|
/**
|
||||||
|
* An error handler which is the final step before
|
||||||
|
* the sern process actually crashes.
|
||||||
|
*/
|
||||||
|
'@sern/errors': Contracts.ErrorHandling;
|
||||||
|
/**
|
||||||
|
* Optional logger. Performs ... logging
|
||||||
|
*/
|
||||||
|
'@sern/logger'?: Contracts.Logging;
|
||||||
|
/**
|
||||||
|
* Readonly module store. sern stores these
|
||||||
|
* by module.meta.id -> Module
|
||||||
|
*/
|
||||||
|
'@sern/modules': Map<string, Module>;
|
||||||
|
|
||||||
|
'@sern/scheduler': __Services.TaskScheduler
|
||||||
|
}
|
||||||
|
|
||||||
70
src/core/module-loading.ts
Normal file
70
src/core/module-loading.ts
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
import path from 'node:path';
|
||||||
|
import { existsSync } from 'node:fs';
|
||||||
|
import { readdir } from 'fs/promises';
|
||||||
|
import assert from 'node:assert';
|
||||||
|
import * as Id from './id'
|
||||||
|
import { Module } from '../types/core-modules';
|
||||||
|
|
||||||
|
export const parseCallsite = (site: string) => {
|
||||||
|
const pathobj = path.posix.parse(site.replace(/file:\\?/, "")
|
||||||
|
.split(path.sep)
|
||||||
|
.join(path.posix.sep))
|
||||||
|
return { name: pathobj.name,
|
||||||
|
absPath : path.posix.format(pathobj) }
|
||||||
|
}
|
||||||
|
|
||||||
|
export const shouldHandle = (pth: string, filenam: string) => {
|
||||||
|
const file_name = filenam+path.extname(pth);
|
||||||
|
let newPath = path.join(path.dirname(pth), file_name)
|
||||||
|
.replace(/file:\\?/, "");
|
||||||
|
return { exists: existsSync(newPath),
|
||||||
|
path: 'file://'+newPath };
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Import any module based on the absolute path.
|
||||||
|
* This can accept four types of exported modules
|
||||||
|
* commonjs, javascript :
|
||||||
|
* ```js
|
||||||
|
* exports = commandModule({ })
|
||||||
|
* //or
|
||||||
|
* exports.default = commandModule({ })
|
||||||
|
* ```
|
||||||
|
* esm javascript, typescript, and commonjs typescript
|
||||||
|
* export default commandModule({})
|
||||||
|
*/
|
||||||
|
export async function importModule<T>(absPath: string) {
|
||||||
|
let fileModule = await import(absPath);
|
||||||
|
|
||||||
|
let commandModule: Module = fileModule.default;
|
||||||
|
|
||||||
|
assert(commandModule , `No default export @ ${absPath}`);
|
||||||
|
if ('default' in commandModule) {
|
||||||
|
commandModule = commandModule.default as Module;
|
||||||
|
}
|
||||||
|
const p = path.parse(absPath)
|
||||||
|
commandModule.name ??= p.name; commandModule.description ??= "...";
|
||||||
|
commandModule.meta = {
|
||||||
|
id: Id.create(commandModule.name, commandModule.type),
|
||||||
|
absPath,
|
||||||
|
};
|
||||||
|
return { module: commandModule as T };
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export async function* readRecursive(dir: string): AsyncGenerator<string> {
|
||||||
|
const files = await readdir(dir, { withFileTypes: true });
|
||||||
|
for (const file of files) {
|
||||||
|
const fullPath = path.posix.join(dir, file.name);
|
||||||
|
if (file.isDirectory()) {
|
||||||
|
if (!file.name.startsWith('!')) {
|
||||||
|
yield* readRecursive(fullPath);
|
||||||
|
}
|
||||||
|
} else if (!file.name.startsWith('!')) {
|
||||||
|
yield "file:///"+path.resolve(fullPath);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
135
src/core/modules.ts
Normal file
135
src/core/modules.ts
Normal file
@@ -0,0 +1,135 @@
|
|||||||
|
import type { ClientEvents } from 'discord.js';
|
||||||
|
import { EventType } from '../core/structures/enums';
|
||||||
|
import type {
|
||||||
|
InputCommand,
|
||||||
|
InputEvent,
|
||||||
|
Module,
|
||||||
|
ScheduledTask,
|
||||||
|
} from '../types/core-modules';
|
||||||
|
import { partitionPlugins } from './functions'
|
||||||
|
import type { Awaitable } from '../types/utility';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a command module with standardized structure and plugin support.
|
||||||
|
*
|
||||||
|
* @since 1.0.0
|
||||||
|
* @param {InputCommand} mod - Command module configuration
|
||||||
|
* @returns {Module} Processed command module ready for registration
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // Basic slash command
|
||||||
|
* export default commandModule({
|
||||||
|
* type: CommandType.Slash,
|
||||||
|
* description: "Ping command",
|
||||||
|
* execute: async (ctx) => {
|
||||||
|
* await ctx.reply("Pong! 🏓");
|
||||||
|
* }
|
||||||
|
* });
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // Command with component interaction
|
||||||
|
* export default commandModule({
|
||||||
|
* type: CommandType.Slash,
|
||||||
|
* description: "Interactive command",
|
||||||
|
* execute: async (ctx) => {
|
||||||
|
* const button = new ButtonBuilder({
|
||||||
|
* customId: "btn/someData",
|
||||||
|
* label: "Click me",
|
||||||
|
* style: ButtonStyle.Primary
|
||||||
|
* });
|
||||||
|
* await ctx.reply({
|
||||||
|
* content: "Interactive message",
|
||||||
|
* components: [new ActionRowBuilder().addComponents(button)]
|
||||||
|
* });
|
||||||
|
* }
|
||||||
|
* });
|
||||||
|
*/
|
||||||
|
export function commandModule(mod: InputCommand): Module {
|
||||||
|
const [onEvent, plugins] = partitionPlugins(mod.plugins);
|
||||||
|
return { ...mod,
|
||||||
|
onEvent,
|
||||||
|
plugins,
|
||||||
|
locals: {} } as Module;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates an event module for handling Discord.js or custom events.
|
||||||
|
*
|
||||||
|
* @since 1.0.0
|
||||||
|
* @template T - Event name from ClientEvents
|
||||||
|
* @param {InputEvent<T>} mod - Event module configuration
|
||||||
|
* @returns {Module} Processed event module ready for registration
|
||||||
|
* @throws {Error} If ControlPlugins are used in event modules
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // Discord event listener
|
||||||
|
* export default eventModule({
|
||||||
|
* type: EventType.Discord,
|
||||||
|
* execute: async (message) => {
|
||||||
|
* console.log(`${message.author.tag}: ${message.content}`);
|
||||||
|
* }
|
||||||
|
* });
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // Custom sern event
|
||||||
|
* export default eventModule({
|
||||||
|
* type: EventType.Sern,
|
||||||
|
* execute: async (eventData) => {
|
||||||
|
* // Handle sern-specific event
|
||||||
|
* }
|
||||||
|
* });
|
||||||
|
*/
|
||||||
|
export function eventModule<T extends keyof ClientEvents = keyof ClientEvents>(mod: InputEvent<T>): Module {
|
||||||
|
const [onEvent, plugins] = partitionPlugins(mod.plugins);
|
||||||
|
if(onEvent.length !== 0) throw Error("Event modules cannot have ControlPlugins");
|
||||||
|
return { ...mod,
|
||||||
|
plugins,
|
||||||
|
locals: {} } as Module;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Create event modules from discord.js client events,
|
||||||
|
* This was an {@link eventModule} for discord events,
|
||||||
|
* where typings were bad.
|
||||||
|
* @deprecated Use {@link eventModule} instead
|
||||||
|
* @param mod
|
||||||
|
*/
|
||||||
|
export function discordEvent<T extends keyof ClientEvents>(mod: {
|
||||||
|
name: T;
|
||||||
|
once?: boolean;
|
||||||
|
execute: (...args: ClientEvents[T]) => Awaitable<unknown>;
|
||||||
|
}) {
|
||||||
|
return eventModule({ type: EventType.Discord, ...mod, });
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a scheduled task that can be executed at specified intervals using cron patterns
|
||||||
|
*
|
||||||
|
* @param {ScheduledTask} ism - The scheduled task configuration object
|
||||||
|
* @param {string} ism.trigger - A cron pattern that determines when the task should execute
|
||||||
|
* Format: "* * * * *" (minute hour day month day-of-week)
|
||||||
|
* @param {Function} ism.execute - The function to execute when the task is triggered
|
||||||
|
* @param {Object} ism.execute.context - The execution context passed to the task
|
||||||
|
*
|
||||||
|
* @returns {ScheduledTask} The configured scheduled task
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // Create a task that runs every minute
|
||||||
|
* export default scheduledTask({
|
||||||
|
* trigger: "* * * * *",
|
||||||
|
* execute: (context) => {
|
||||||
|
* console.log("Task executed!");
|
||||||
|
* }
|
||||||
|
* });
|
||||||
|
*
|
||||||
|
* @remarks
|
||||||
|
* - Tasks must be placed in the 'tasks' directory specified in your config
|
||||||
|
* - The file name serves as a unique identifier for the task
|
||||||
|
* - Tasks can be cancelled using deps['@sern/scheduler'].kill(uuid)
|
||||||
|
*
|
||||||
|
* @see {@link https://crontab.guru/} for testing and creating cron patterns
|
||||||
|
*/
|
||||||
|
export function scheduledTask(ism: ScheduledTask): ScheduledTask {
|
||||||
|
return ism
|
||||||
|
}
|
||||||
|
|
||||||
137
src/core/plugin.ts
Normal file
137
src/core/plugin.ts
Normal file
@@ -0,0 +1,137 @@
|
|||||||
|
import { CommandType, PluginType } from './structures/enums';
|
||||||
|
import type { Plugin, PluginResult, CommandArgs, InitArgs } from '../types/core-plugin';
|
||||||
|
import { Err, Ok } from './structures/result';
|
||||||
|
import type { Dictionary } from '../types/utility';
|
||||||
|
|
||||||
|
export function makePlugin<V extends unknown[]>(
|
||||||
|
type: PluginType,
|
||||||
|
execute: (...args: any[]) => any,
|
||||||
|
): Plugin<V> {
|
||||||
|
return { type, execute } as Plugin<V>;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @since 2.5.0
|
||||||
|
*/
|
||||||
|
export function EventInitPlugin(execute: (args: InitArgs) => PluginResult) {
|
||||||
|
return makePlugin(PluginType.Init, execute);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates an initialization plugin for command preprocessing and modification
|
||||||
|
*
|
||||||
|
* @since 2.5.0
|
||||||
|
* @template I - Extends CommandType to enforce type safety for command modules
|
||||||
|
*
|
||||||
|
* @param {function} execute - Function to execute during command initialization
|
||||||
|
* @param {InitArgs<T>} execute.args - The initialization arguments
|
||||||
|
* @param {T} execute.args.module - The command module being initialized
|
||||||
|
* @param {string} execute.args.absPath - The absolute path to the module file
|
||||||
|
* @param {Dependencies} execute.args.deps - Dependency injection container
|
||||||
|
*
|
||||||
|
* @returns {Plugin} A plugin that runs during command initialization
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // Plugin to update command description
|
||||||
|
* export const updateDescription = (description: string) => {
|
||||||
|
* return CommandInitPlugin(({ deps }) => {
|
||||||
|
* if(description.length > 100) {
|
||||||
|
* deps.logger?.info({ message: "Invalid description" })
|
||||||
|
* return controller.stop("From updateDescription: description is invalid");
|
||||||
|
* }
|
||||||
|
* module.description = description;
|
||||||
|
* return controller.next();
|
||||||
|
* });
|
||||||
|
* };
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // Plugin to store registration date in module locals
|
||||||
|
* export const dateRegistered = () => {
|
||||||
|
* return CommandInitPlugin(({ module }) => {
|
||||||
|
* module.locals.registered = Date.now()
|
||||||
|
* return controller.next();
|
||||||
|
* });
|
||||||
|
* };
|
||||||
|
*
|
||||||
|
* @remarks
|
||||||
|
* - Init plugins can modify how commands are loaded and perform preprocessing
|
||||||
|
* - The module.locals object can be used to store custom plugin-specific data
|
||||||
|
* - Be careful when modifying module fields as multiple plugins may interact with them
|
||||||
|
* - Use controller.next() to continue to the next plugin
|
||||||
|
* - Use controller.stop(reason) to halt plugin execution
|
||||||
|
*/
|
||||||
|
export function CommandInitPlugin<I extends CommandType>(
|
||||||
|
execute: (args: InitArgs) => PluginResult
|
||||||
|
): Plugin {
|
||||||
|
return makePlugin(PluginType.Init, execute);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a control plugin for command preprocessing, filtering, and state management
|
||||||
|
*
|
||||||
|
* @since 2.5.0
|
||||||
|
* @template I - Extends CommandType to enforce type safety for command modules
|
||||||
|
*
|
||||||
|
* @param {function} execute - Function to execute during command control flow
|
||||||
|
* @param {CommandArgs<I>} execute.args - The command arguments array
|
||||||
|
* @param {Context} execute.args[0] - The discord context (e.g., guild, channel, user info, interaction)
|
||||||
|
* @param {SDT} execute.args[1] - The State, Dependencies, Params, Module, and Type object
|
||||||
|
*
|
||||||
|
* @returns {Plugin} A plugin that runs during command execution flow
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // Plugin to restrict command to specific guild
|
||||||
|
* export const inGuild = (guildId: string) => {
|
||||||
|
* return CommandControlPlugin((ctx, sdt) => {
|
||||||
|
* if(ctx.guild.id !== guildId) {
|
||||||
|
* return controller.stop();
|
||||||
|
* }
|
||||||
|
* return controller.next();
|
||||||
|
* });
|
||||||
|
* };
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // Plugins passing state through the chain
|
||||||
|
* const plugin1 = CommandControlPlugin((ctx, sdt) => {
|
||||||
|
* return controller.next({ 'plugin1/data': 'from plugin1' });
|
||||||
|
* });
|
||||||
|
*
|
||||||
|
* const plugin2 = CommandControlPlugin((ctx, sdt) => {
|
||||||
|
* return controller.next({ 'plugin2/data': ctx.user.id });
|
||||||
|
* });
|
||||||
|
*
|
||||||
|
* export default commandModule({
|
||||||
|
* type: CommandType.Slash,
|
||||||
|
* plugins: [plugin1, plugin2],
|
||||||
|
* execute: (ctx, sdt) => {
|
||||||
|
* console.log(sdt.state); // Access accumulated state
|
||||||
|
* }
|
||||||
|
* });
|
||||||
|
*
|
||||||
|
* @remarks
|
||||||
|
* - Control plugins are executed in order when a discord.js event is emitted
|
||||||
|
* - Use controller.next() to continue to next plugin or controller.stop() to halt execution
|
||||||
|
* - State can be passed between plugins using controller.next({ key: value })
|
||||||
|
* - State keys should be namespaced to avoid collisions (e.g., 'plugin-name/key')
|
||||||
|
* - Final accumulated state is passed to the command's execute function
|
||||||
|
* - All plugins must succeed for the command to execute
|
||||||
|
* - Plugins have access to dependencies through the sdt.deps object
|
||||||
|
* - Useful for implementing preconditions, filters, and command preprocessing
|
||||||
|
*/
|
||||||
|
export function CommandControlPlugin<I extends CommandType>(
|
||||||
|
execute: (...args: CommandArgs<I>) => PluginResult,
|
||||||
|
) {
|
||||||
|
return makePlugin(PluginType.Control, execute);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
* The object passed into every plugin to control a command's behavior
|
||||||
|
*/
|
||||||
|
export const controller = {
|
||||||
|
next: (val?: Dictionary) => Ok(val),
|
||||||
|
stop: (val?: string) => Err(val),
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
export type Controller = typeof controller;
|
||||||
65
src/core/presences.ts
Normal file
65
src/core/presences.ts
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
import type { ActivitiesOptions } from "discord.js";
|
||||||
|
import type { IntoDependencies } from "./ioc";
|
||||||
|
import type { Emitter } from "./interfaces";
|
||||||
|
import { Awaitable } from "../types/utility";
|
||||||
|
|
||||||
|
type Status = 'online' | 'idle' | 'invisible' | 'dnd'
|
||||||
|
type PresenceReduce = (previous: Presence.Result) => Awaitable<Presence.Result>;
|
||||||
|
|
||||||
|
export const Presence = {
|
||||||
|
/**
|
||||||
|
* A small wrapper to provide type inference.
|
||||||
|
* Create a Presence module which **MUST** be put in a file called presence.(language-extension)
|
||||||
|
* adjacent to the file where **Sern.init** is CALLED.
|
||||||
|
*/
|
||||||
|
module : <T extends (keyof Dependencies)[]>(conf: Presence.Config<T>) => conf,
|
||||||
|
/**
|
||||||
|
* Create a Presence body which can be either:
|
||||||
|
* - once, the presence is activated only once.
|
||||||
|
* - repeated, per cycle or event, the presence can be changed.
|
||||||
|
*/
|
||||||
|
of : (root: Omit<Presence.Result, 'repeat' | 'onRepeat'>) => {
|
||||||
|
return {
|
||||||
|
/**
|
||||||
|
* @example
|
||||||
|
* Presence
|
||||||
|
* .of({ activities: [{ name: "deez nuts" }] }) //starts presence with "deez nuts".
|
||||||
|
* .repeated(prev => {
|
||||||
|
* return {
|
||||||
|
* afk: true,
|
||||||
|
* activities: prev.activities?.map(s => ({ ...s, name: s.name+"s" }))
|
||||||
|
* };
|
||||||
|
* }, 10000)) //every 10 s, the callback sets the presence to the value returned.
|
||||||
|
*/
|
||||||
|
repeated: (onRepeat: PresenceReduce, repeat: number | [Emitter, string]) => {
|
||||||
|
return { repeat, onRepeat, ...root }
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @example
|
||||||
|
* ```ts
|
||||||
|
* Presence.of({
|
||||||
|
* activities: [{ name: "Chilling out" }]
|
||||||
|
* }).once() // Sets the presence once, with what's provided in '.of()'
|
||||||
|
* ```
|
||||||
|
*/
|
||||||
|
once: () => root
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
export declare namespace Presence {
|
||||||
|
export type Config<T extends (keyof Dependencies)[]> = {
|
||||||
|
inject?: [...T]
|
||||||
|
execute: (...v: IntoDependencies<T>) => Awaitable<Presence.Result>;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Result {
|
||||||
|
status?: Status;
|
||||||
|
afk?: boolean;
|
||||||
|
activities?: ActivitiesOptions[];
|
||||||
|
shardId?: number[];
|
||||||
|
repeat?: number | [Emitter, string];
|
||||||
|
onRepeat?: PresenceReduce
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
131
src/core/structures/context.ts
Normal file
131
src/core/structures/context.ts
Normal file
@@ -0,0 +1,131 @@
|
|||||||
|
import type {
|
||||||
|
BaseInteraction,
|
||||||
|
ChatInputCommandInteraction,
|
||||||
|
Client,
|
||||||
|
InteractionReplyOptions,
|
||||||
|
Message,
|
||||||
|
MessageReplyOptions,
|
||||||
|
Snowflake,
|
||||||
|
User,
|
||||||
|
} from 'discord.js';
|
||||||
|
import { Result, Ok, Err, val } from './result';
|
||||||
|
import * as assert from 'assert';
|
||||||
|
import type { ReplyOptions } from '../../types/utility';
|
||||||
|
import { fmt } from '../functions'
|
||||||
|
import { SernError } from './enums';
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
* Provides values shared between
|
||||||
|
* Message and ChatInputCommandInteraction
|
||||||
|
*/
|
||||||
|
export class Context {
|
||||||
|
|
||||||
|
get options() {
|
||||||
|
if(this.isMessage()) {
|
||||||
|
const [, ...rest] = fmt(this.message.content, this.prefix);
|
||||||
|
return rest;
|
||||||
|
}
|
||||||
|
return this.interaction.options;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
protected constructor(protected ctx: Result<Message, ChatInputCommandInteraction>,
|
||||||
|
private __prefix?: string) { }
|
||||||
|
public get prefix() {
|
||||||
|
return this.__prefix;
|
||||||
|
}
|
||||||
|
public get id(): Snowflake {
|
||||||
|
return val(this.ctx).id
|
||||||
|
}
|
||||||
|
|
||||||
|
public get channel() {
|
||||||
|
return val(this.ctx).channel;
|
||||||
|
}
|
||||||
|
|
||||||
|
public get channelId(): Snowflake {
|
||||||
|
return val(this.ctx).channelId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If context is holding a message, message.author
|
||||||
|
* else, interaction.user
|
||||||
|
*/
|
||||||
|
public get user(): User {
|
||||||
|
if(this.ctx.ok) {
|
||||||
|
return this.ctx.value.author;
|
||||||
|
}
|
||||||
|
return this.ctx.error.user;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public get userId(): Snowflake {
|
||||||
|
return this.user.id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public get createdTimestamp(): number {
|
||||||
|
return val(this.ctx).createdTimestamp;
|
||||||
|
}
|
||||||
|
|
||||||
|
public get guild() {
|
||||||
|
return val(this.ctx).guild;
|
||||||
|
}
|
||||||
|
|
||||||
|
public get guildId() {
|
||||||
|
return val(this.ctx).guildId;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
* interactions can return APIGuildMember if the guild it is emitted from is not cached
|
||||||
|
*/
|
||||||
|
public get member() {
|
||||||
|
return val(this.ctx).member;
|
||||||
|
}
|
||||||
|
|
||||||
|
get message(): Message {
|
||||||
|
if(this.ctx.ok) {
|
||||||
|
return this.ctx.value;
|
||||||
|
}
|
||||||
|
throw Error(SernError.MismatchEvent);
|
||||||
|
}
|
||||||
|
public isMessage(): this is Context & { ctx: Result<Message, never> } {
|
||||||
|
return this.ctx.ok;
|
||||||
|
}
|
||||||
|
|
||||||
|
public isSlash(): this is Context & { ctx: Result<never, ChatInputCommandInteraction> } {
|
||||||
|
return !this.isMessage();
|
||||||
|
}
|
||||||
|
|
||||||
|
get interaction(): ChatInputCommandInteraction {
|
||||||
|
if(!this.ctx.ok) {
|
||||||
|
return this.ctx.error;
|
||||||
|
}
|
||||||
|
throw Error(SernError.MismatchEvent);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public get client(): Client {
|
||||||
|
return val(this.ctx).client;
|
||||||
|
}
|
||||||
|
|
||||||
|
public get inGuild(): boolean {
|
||||||
|
return val(this.ctx).inGuild()
|
||||||
|
}
|
||||||
|
|
||||||
|
public async reply(content: ReplyOptions) {
|
||||||
|
if(this.ctx.ok) {
|
||||||
|
return this.ctx.value.reply(content as MessageReplyOptions)
|
||||||
|
}
|
||||||
|
interface FetchReply { fetchReply: true };
|
||||||
|
return this.ctx.error.reply(content as InteractionReplyOptions & FetchReply)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
static wrap(wrappable: BaseInteraction | Message, prefix?: string): Context {
|
||||||
|
if ('interaction' in wrappable) {
|
||||||
|
return new Context(Ok(wrappable), prefix);
|
||||||
|
}
|
||||||
|
assert.ok(wrappable.isChatInputCommand(), "Context created with bad interaction.");
|
||||||
|
return new Context(Err(wrappable), prefix);
|
||||||
|
}
|
||||||
|
}
|
||||||
89
src/core/structures/default-services.ts
Normal file
89
src/core/structures/default-services.ts
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
import { ScheduledTask } from '../../types/core-modules';
|
||||||
|
import type { LogPayload, Logging, ErrorHandling, Disposable } from '../interfaces';
|
||||||
|
import { CronJob } from 'cron';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
* @since 2.0.0
|
||||||
|
* Version 4.0.0 will internalize this api. Please refrain from using the defaults!
|
||||||
|
*/
|
||||||
|
export class DefaultErrorHandling implements ErrorHandling {
|
||||||
|
crash(err: Error): never {
|
||||||
|
throw err;
|
||||||
|
}
|
||||||
|
updateAlive(err: Error) {
|
||||||
|
throw err;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
* @since 2.0.0
|
||||||
|
* Version 4.0.0 will internalize this api. Please refrain from using ModuleStore!
|
||||||
|
*/
|
||||||
|
export class DefaultLogging implements Logging {
|
||||||
|
private date() { return new Date() }
|
||||||
|
debug(payload: LogPayload): void {
|
||||||
|
console.debug(`DEBUG: ${this.date().toISOString()} -> ${payload.message}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
error(payload: LogPayload): void {
|
||||||
|
console.error(`ERROR: ${this.date().toISOString()} -> ${payload.message}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
info(payload: LogPayload): void {
|
||||||
|
console.info(`INFO: ${this.date().toISOString()} -> ${payload.message}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
warning(payload: LogPayload): void {
|
||||||
|
console.warn(`WARN: ${this.date().toISOString()} -> ${payload.message}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export class TaskScheduler implements Disposable {
|
||||||
|
private __tasks: Map<string, CronJob<any, any>> = new Map();
|
||||||
|
|
||||||
|
schedule(uuid: string, task: ScheduledTask, deps: Dependencies) {
|
||||||
|
if (this.__tasks.has(uuid)) {
|
||||||
|
throw Error("while scheduling a task \
|
||||||
|
found another task of same name. Not scheduling " +
|
||||||
|
uuid + "again." );
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
const onTick = async function(this: CronJob) {
|
||||||
|
task.execute({ id: uuid,
|
||||||
|
lastTimeExecution: this.lastExecution,
|
||||||
|
nextTimeExecution: this.nextDate().toJSDate() }, { deps })
|
||||||
|
}
|
||||||
|
const job = CronJob.from({ cronTime: task.trigger, onTick, timeZone: task.timezone });
|
||||||
|
job.start();
|
||||||
|
this.__tasks.set(uuid, job);
|
||||||
|
} catch (error) {
|
||||||
|
throw Error(`while scheduling a task ${uuid} ` + error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
kill(taskName: string): boolean {
|
||||||
|
const job = this.__tasks.get(taskName);
|
||||||
|
if (job) {
|
||||||
|
job.stop();
|
||||||
|
this.__tasks.delete(taskName);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
get tasks(): string[] {
|
||||||
|
return Array.from(this.__tasks.keys());
|
||||||
|
}
|
||||||
|
|
||||||
|
dispose() {
|
||||||
|
this.__tasks.forEach((_, id) => {
|
||||||
|
this.kill(id);
|
||||||
|
this.__tasks.delete(id);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -15,45 +15,18 @@
|
|||||||
* ```
|
* ```
|
||||||
*/
|
*/
|
||||||
export enum CommandType {
|
export enum CommandType {
|
||||||
/**
|
Text = 1 << 0,
|
||||||
* The CommandType for text commands
|
Slash = 1 << 1,
|
||||||
*/
|
|
||||||
Text = 1,
|
|
||||||
/**
|
|
||||||
* The CommandType for slash commands
|
|
||||||
*/
|
|
||||||
Slash = 2,
|
|
||||||
/**
|
|
||||||
* The CommandType for hybrid commands, text and slash
|
|
||||||
*/
|
|
||||||
Both = 3,
|
Both = 3,
|
||||||
/**
|
CtxUser = 1 << 2,
|
||||||
* The CommandType for UserContextMenuInteraction commands
|
CtxMsg = 1 << 3,
|
||||||
*/
|
Button = 1 << 4,
|
||||||
CtxUser = 4,
|
StringSelect = 1 << 5,
|
||||||
/**
|
Modal = 1 << 6,
|
||||||
* The CommandType for MessageContextMenuInteraction commands
|
UserSelect = 1 << 7,
|
||||||
*/
|
RoleSelect = 1 << 8,
|
||||||
CtxMsg = 8,
|
MentionableSelect = 1 << 9,
|
||||||
/**
|
ChannelSelect = 1 << 10,
|
||||||
* The CommandType for ButtonInteraction commands
|
|
||||||
*/
|
|
||||||
Button = 16,
|
|
||||||
/**
|
|
||||||
* The CommandType for StringSelectMenuInteraction commands
|
|
||||||
*/
|
|
||||||
StringSelect = 32,
|
|
||||||
/**
|
|
||||||
* The CommandType for ModalSubmitInteraction commands
|
|
||||||
*/
|
|
||||||
Modal = 64,
|
|
||||||
/**
|
|
||||||
* The CommandType for the other SelectMenuInteractions
|
|
||||||
*/
|
|
||||||
ChannelSelect = 256,
|
|
||||||
MentionableSelect = 512,
|
|
||||||
RoleSelect = 1024,
|
|
||||||
UserSelect = 2048,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -75,16 +48,16 @@ export enum EventType {
|
|||||||
/**
|
/**
|
||||||
* The EventType for handling discord events
|
* The EventType for handling discord events
|
||||||
*/
|
*/
|
||||||
Discord = 1,
|
Discord,
|
||||||
/**
|
/**
|
||||||
* The EventType for handling sern events
|
* The EventType for handling sern events
|
||||||
*/
|
*/
|
||||||
Sern = 2,
|
Sern,
|
||||||
/**
|
/**
|
||||||
* The EventType for handling external events.
|
* The EventType for handling external events.
|
||||||
* Could be for example, `process` events, database events
|
* Could be for example, `process` events, database events
|
||||||
*/
|
*/
|
||||||
External = 3,
|
External,
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -106,35 +79,56 @@ export enum PluginType {
|
|||||||
* The PluginType for InitPlugins
|
* The PluginType for InitPlugins
|
||||||
*/
|
*/
|
||||||
Init = 1,
|
Init = 1,
|
||||||
/**
|
|
||||||
* @deprecated
|
|
||||||
* Use PluginType.Init instead
|
|
||||||
*/
|
|
||||||
Command = 1,
|
|
||||||
/**
|
|
||||||
* @deprecated
|
|
||||||
* Use PluginType.Control instead
|
|
||||||
*/
|
|
||||||
Event = 2,
|
|
||||||
/**
|
/**
|
||||||
* The PluginType for EventPlugins
|
* The PluginType for EventPlugins
|
||||||
*/
|
*/
|
||||||
Control = 2,
|
Control = 2,
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* @deprecated - Use strings 'success' | 'failure' | 'warning'
|
||||||
* @enum { string }
|
* @enum { string }
|
||||||
*/
|
*/
|
||||||
export enum PayloadType {
|
export enum PayloadType {
|
||||||
/**
|
|
||||||
* The PayloadType for a SernEmitter success event
|
|
||||||
*/
|
|
||||||
Success = 'success',
|
Success = 'success',
|
||||||
/**
|
|
||||||
* The PayloadType for a SernEmitter failure event
|
|
||||||
*/
|
|
||||||
Failure = 'failure',
|
Failure = 'failure',
|
||||||
/**
|
|
||||||
* The PayloadType for a SernEmitter warning event
|
|
||||||
*/
|
|
||||||
Warning = 'warning',
|
Warning = 'warning',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @enum { string }
|
||||||
|
*/
|
||||||
|
export const enum SernError {
|
||||||
|
/**
|
||||||
|
* Throws when registering an invalid module.
|
||||||
|
* This means it is undefined or an invalid command type was provided
|
||||||
|
*/
|
||||||
|
InvalidModuleType = 'Detected an unknown module type',
|
||||||
|
/**
|
||||||
|
* Attempted to lookup module in command module store. Nothing was found!
|
||||||
|
*/
|
||||||
|
UndefinedModule = `A module could not be detected`,
|
||||||
|
/**
|
||||||
|
* Attempted to lookup module in command module store. Nothing was found!
|
||||||
|
*/
|
||||||
|
MismatchModule = `A module type mismatched with event emitted!`,
|
||||||
|
/**
|
||||||
|
* Unsupported interaction at this moment.
|
||||||
|
*/
|
||||||
|
NotSupportedInteraction = `This interaction is not supported.`,
|
||||||
|
/**
|
||||||
|
* One plugin called `controller.stop()` (end command execution / loading)
|
||||||
|
*/
|
||||||
|
PluginFailure = `A plugin failed to call controller.next()`,
|
||||||
|
/**
|
||||||
|
* A crash that occurs when accessing an invalid property of Context
|
||||||
|
*/
|
||||||
|
MismatchEvent = `You cannot use message when an interaction fired or vice versa`,
|
||||||
|
/**
|
||||||
|
* Unsupported feature attempted to access at this time
|
||||||
|
*/
|
||||||
|
NotSupportedYet = `This feature is not supported yet`,
|
||||||
|
/**
|
||||||
|
* Required Dependency not found
|
||||||
|
*/
|
||||||
|
MissingRequired = `@sern/client is required but was not found`,
|
||||||
|
}
|
||||||
20
src/core/structures/result.ts
Normal file
20
src/core/structures/result.ts
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
export type Result<Ok, Err> =
|
||||||
|
| { ok: true; value: Ok }
|
||||||
|
| { ok: false; error: Err };
|
||||||
|
|
||||||
|
export const Ok = <Ok>(value: Ok) => ({ ok: true, value } as const);
|
||||||
|
export const Err = <Err>(error: Err) => ({ ok: false, error } as const);
|
||||||
|
|
||||||
|
export const val = <O, E>(r: Result<O, E>) => r.ok ? r.value : r.error;
|
||||||
|
export const EMPTY_ERR = Err(undefined);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wrap an async operation that may throw an Error (`try-catch` style) into checked exception style
|
||||||
|
* @param op The operation function
|
||||||
|
*/
|
||||||
|
export async function wrapAsync<T, E = unknown>(op: () => Promise<T>): Promise<Result<T, E>> {
|
||||||
|
try { return op()
|
||||||
|
.then(Ok)
|
||||||
|
.catch(Err); }
|
||||||
|
catch (e) { return Promise.resolve(Err(e as E)); }
|
||||||
|
}
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
import type { Observable } from 'rxjs';
|
|
||||||
import type { Logging } from './logging';
|
|
||||||
import util from 'util';
|
|
||||||
/**
|
|
||||||
* @since 2.0.0
|
|
||||||
*/
|
|
||||||
export interface ErrorHandling {
|
|
||||||
/**
|
|
||||||
* Number of times the process should throw an error until crashing and exiting
|
|
||||||
*/
|
|
||||||
keepAlive: number;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Utility function to crash
|
|
||||||
* @param error
|
|
||||||
*/
|
|
||||||
crash(error: Error): never;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A function that is called on every crash. Updates keepAlive
|
|
||||||
* @param error
|
|
||||||
*/
|
|
||||||
updateAlive(error: Error): void;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @since 2.0.0
|
|
||||||
*/
|
|
||||||
export class DefaultErrorHandling implements ErrorHandling {
|
|
||||||
keepAlive = 5;
|
|
||||||
crash(error: Error): never {
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
updateAlive(_: Error) {
|
|
||||||
this.keepAlive--;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export function handleError<C>(crashHandler: ErrorHandling, logging?: Logging) {
|
|
||||||
return (pload: unknown, caught: Observable<C>) => {
|
|
||||||
// This is done to fit the ErrorHandling contract
|
|
||||||
const err = pload instanceof Error ? pload : Error(util.format(pload));
|
|
||||||
if (crashHandler.keepAlive == 0) {
|
|
||||||
crashHandler.crash(err);
|
|
||||||
}
|
|
||||||
//formatted payload
|
|
||||||
logging?.error({ message: util.format(pload) });
|
|
||||||
crashHandler.updateAlive(err);
|
|
||||||
return caught;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
export { ErrorHandling, DefaultErrorHandling } from './errorHandling';
|
|
||||||
export { Logging, DefaultLogging } from './logging';
|
|
||||||
export { ModuleManager, DefaultModuleManager } from './moduleManager';
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
import type { LogPayload } from '../../types/handler';
|
|
||||||
/**
|
|
||||||
* @since 2.0.0
|
|
||||||
*/
|
|
||||||
export interface Logging<T = unknown> {
|
|
||||||
error(payload: LogPayload<T>): void;
|
|
||||||
warning(payload: LogPayload<T>): void;
|
|
||||||
info(payload: LogPayload<T>): void;
|
|
||||||
debug(payload: LogPayload<T>): void;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @since 2.0.0
|
|
||||||
*/
|
|
||||||
export class DefaultLogging implements Logging {
|
|
||||||
private date = () => new Date();
|
|
||||||
debug(payload: LogPayload): void {
|
|
||||||
console.debug(`DEBUG: ${this.date().toISOString()} -> ${payload.message}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
error(payload: LogPayload): void {
|
|
||||||
console.error(`ERROR: ${this.date().toISOString()} -> ${payload.message}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
info(payload: LogPayload): void {
|
|
||||||
console.info(`INFO: ${this.date().toISOString()} -> ${payload.message}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
warning(payload: LogPayload): void {
|
|
||||||
console.warn(`WARN: ${this.date().toISOString()} -> ${payload.message}`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
import type { CommandModuleDefs } from '../../types/module';
|
|
||||||
import type { CommandType, ModuleStore } from '../structures';
|
|
||||||
import type { Processed } from '../../types/handler';
|
|
||||||
/**
|
|
||||||
* @since 2.0.0
|
|
||||||
*/
|
|
||||||
export interface ModuleManager {
|
|
||||||
get<T extends CommandType>(
|
|
||||||
strat: (ms: ModuleStore) => Processed<CommandModuleDefs[T]> | undefined,
|
|
||||||
): Processed<CommandModuleDefs[T]> | undefined;
|
|
||||||
set(strat: (ms: ModuleStore) => void): void;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @since 2.0.0
|
|
||||||
*/
|
|
||||||
export class DefaultModuleManager implements ModuleManager {
|
|
||||||
constructor(private moduleStore: ModuleStore) {}
|
|
||||||
get<T extends CommandType>(
|
|
||||||
strat: (ms: ModuleStore) => Processed<CommandModuleDefs[T]> | undefined,
|
|
||||||
) {
|
|
||||||
return strat(this.moduleStore);
|
|
||||||
}
|
|
||||||
|
|
||||||
set(strat: (ms: ModuleStore) => void): void {
|
|
||||||
strat(this.moduleStore);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
export { single, transient, many } from './lifetimeFunctions';
|
|
||||||
export { useContainerRaw } from './provider';
|
|
||||||
@@ -1,63 +0,0 @@
|
|||||||
import { _const } from '../utilities/functions';
|
|
||||||
|
|
||||||
type NotFunction =
|
|
||||||
| string
|
|
||||||
| number
|
|
||||||
| boolean
|
|
||||||
| null
|
|
||||||
| undefined
|
|
||||||
| bigint
|
|
||||||
| readonly any[]
|
|
||||||
| { apply?: never; [k: string]: any }
|
|
||||||
| { call?: never; [k: string]: any };
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @deprecated
|
|
||||||
* @param cb
|
|
||||||
*/
|
|
||||||
export function single<T extends NotFunction>(cb: T): () => T;
|
|
||||||
/**
|
|
||||||
* New signature
|
|
||||||
* @since 2.0.0
|
|
||||||
* @param cb
|
|
||||||
*/
|
|
||||||
export function single<T extends () => unknown>(cb: T): T;
|
|
||||||
/**
|
|
||||||
* @__PURE__
|
|
||||||
* @since 2.0.0.
|
|
||||||
* Please note that on intellij, the deprecation is for all signatures, which is unintended behavior (and
|
|
||||||
* very annoying).
|
|
||||||
* For future versions, ensure that single is being passed as a **callback!!**
|
|
||||||
* @param cb
|
|
||||||
*/
|
|
||||||
export function single<T>(cb: T) {
|
|
||||||
if (typeof cb === 'function') return cb;
|
|
||||||
return () => cb;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @deprecated
|
|
||||||
* @param cb
|
|
||||||
* Deprecated signature
|
|
||||||
*/
|
|
||||||
export function transient<T extends NotFunction>(cb: T): () => () => T;
|
|
||||||
export function transient<T extends () => () => unknown>(cb: T): T;
|
|
||||||
/**
|
|
||||||
* @__PURE__
|
|
||||||
* @since 2.0.0
|
|
||||||
* Following iti's singleton and transient implementation,
|
|
||||||
* use transient if you want a new dependency every time your container getter is called
|
|
||||||
* @param cb
|
|
||||||
*/
|
|
||||||
export function transient<T>(cb: (() => () => T) | T) {
|
|
||||||
if (typeof cb !== 'function') return () => () => cb;
|
|
||||||
return cb;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @__PURE__
|
|
||||||
* @deprecated
|
|
||||||
* @param value
|
|
||||||
* Please use the transient function instead
|
|
||||||
*/
|
|
||||||
// prettier-ignore
|
|
||||||
export const many = <T>(value: T) => () => _const(value);
|
|
||||||
@@ -1,86 +0,0 @@
|
|||||||
import type { Container } from 'iti';
|
|
||||||
import type { Dependencies, DependencyConfiguration, MapDeps } from '../../types/handler';
|
|
||||||
import SernEmitter from '../sernEmitter';
|
|
||||||
import { DefaultErrorHandling, DefaultLogging, DefaultModuleManager } from '../contracts';
|
|
||||||
import { Result } from 'ts-results-es';
|
|
||||||
import { BehaviorSubject } from 'rxjs';
|
|
||||||
import { createContainer } from 'iti';
|
|
||||||
import { type Wrapper, ModuleStore, SernError } from '../structures';
|
|
||||||
|
|
||||||
export const containerSubject = new BehaviorSubject(defaultContainer());
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Given the user's conf, check for any excluded dependency keys.
|
|
||||||
* Then, call conf.build to get the rest of the users' dependencies.
|
|
||||||
* Finally, update the containerSubject with the new container state
|
|
||||||
* @param conf
|
|
||||||
*/
|
|
||||||
export function composeRoot<T extends Dependencies>(conf: DependencyConfiguration<T>) {
|
|
||||||
//Get the current container. This should have no client or possible logger yet.
|
|
||||||
const currentContainer = containerSubject.getValue();
|
|
||||||
const excludeLogger = conf.exclude?.has('@sern/logger');
|
|
||||||
if (!excludeLogger) {
|
|
||||||
currentContainer.add({
|
|
||||||
'@sern/logger': () => new DefaultLogging(),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
//Build the container based on the callback provided by the user
|
|
||||||
const container = conf.build(currentContainer);
|
|
||||||
//Check if the built container contains @sern/client or throw
|
|
||||||
// a runtime exception
|
|
||||||
Result.wrap(() => container.get('@sern/client')).expect(SernError.MissingRequired);
|
|
||||||
|
|
||||||
if (!excludeLogger) {
|
|
||||||
container.get('@sern/logger')?.info({ message: 'All dependencies loaded successfully.' });
|
|
||||||
}
|
|
||||||
//I'm sorry little one
|
|
||||||
containerSubject.next(container as any);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function useContainer<T extends Dependencies>() {
|
|
||||||
const container = containerSubject.getValue() as Container<T, {}>;
|
|
||||||
return <V extends (keyof T)[]>(...keys: [...V]) =>
|
|
||||||
keys.map(key => Result.wrap(() => container.get(key)).unwrapOr(undefined)) as MapDeps<T, V>;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the underlying data structure holding all dependencies.
|
|
||||||
* Please be careful as this only gets the client's current state.
|
|
||||||
* Exposes some methods from iti
|
|
||||||
*/
|
|
||||||
export function useContainerRaw<T extends Dependencies>() {
|
|
||||||
return containerSubject.getValue() as Container<T, {}>;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Provides all the defaults for sern to function properly.
|
|
||||||
* The only user provided dependency needs to be @sern/client
|
|
||||||
*/
|
|
||||||
function defaultContainer() {
|
|
||||||
return createContainer()
|
|
||||||
.add({ '@sern/errors': () => new DefaultErrorHandling() })
|
|
||||||
.add({ '@sern/store': () => new ModuleStore() })
|
|
||||||
.add(ctx => {
|
|
||||||
return {
|
|
||||||
'@sern/modules': () => new DefaultModuleManager(ctx['@sern/store']),
|
|
||||||
};
|
|
||||||
})
|
|
||||||
.add({ '@sern/emitter': () => new SernEmitter() }) as Container<
|
|
||||||
Omit<Dependencies, '@sern/client' | '@sern/logger'>,
|
|
||||||
{}
|
|
||||||
>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function makeFetcher(wrapper: Wrapper) {
|
|
||||||
const requiredDependencyKeys = [
|
|
||||||
'@sern/emitter',
|
|
||||||
'@sern/client',
|
|
||||||
'@sern/errors',
|
|
||||||
'@sern/logger',
|
|
||||||
] as ['@sern/emitter', '@sern/client', '@sern/errors', '@sern/logger'];
|
|
||||||
return <Keys extends (keyof Dependencies)[]>(otherKeys: [...Keys]) =>
|
|
||||||
wrapper.containerConfig.get(...requiredDependencyKeys, ...otherKeys) as MapDeps<
|
|
||||||
Dependencies,
|
|
||||||
[...typeof requiredDependencyKeys, ...Keys]
|
|
||||||
>;
|
|
||||||
}
|
|
||||||
@@ -1,67 +0,0 @@
|
|||||||
import type { Processed } from '../../../types/handler';
|
|
||||||
import type { AutocompleteInteraction } from 'discord.js';
|
|
||||||
import { SernError } from '../../structures';
|
|
||||||
import treeSearch from '../../utilities/treeSearch';
|
|
||||||
import type { BothCommand, CommandModule, Module, SlashCommand } from '../../../types/module';
|
|
||||||
import { EventEmitter } from 'events';
|
|
||||||
import * as assert from 'assert';
|
|
||||||
import { concatMap, from, fromEvent, map, OperatorFunction, pipe } from 'rxjs';
|
|
||||||
import { arrayifySource, callPlugin } from '../operators';
|
|
||||||
import { createResultResolver } from '../observableHandling';
|
|
||||||
|
|
||||||
export function dispatchCommand(module: Processed<CommandModule>, createArgs: () => unknown[]) {
|
|
||||||
const args = createArgs();
|
|
||||||
return {
|
|
||||||
module,
|
|
||||||
args,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function intoPayload(module: Processed<Module>) {
|
|
||||||
return pipe(
|
|
||||||
arrayifySource,
|
|
||||||
map(args => ({ module, args })),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const createResult = createResultResolver<
|
|
||||||
Processed<Module>,
|
|
||||||
{ module: Processed<Module>; args: unknown[] },
|
|
||||||
unknown[]
|
|
||||||
>({
|
|
||||||
createStream: ({ module, args }) => from(module.onEvent).pipe(callPlugin(args)),
|
|
||||||
onNext: ({ args }) => args,
|
|
||||||
});
|
|
||||||
/**
|
|
||||||
* Creates an observable from { source }
|
|
||||||
* @param module
|
|
||||||
* @param source
|
|
||||||
*/
|
|
||||||
export function eventDispatcher(module: Processed<Module>, source: unknown) {
|
|
||||||
assert.ok(source instanceof EventEmitter, `${source} is not an EventEmitter`);
|
|
||||||
|
|
||||||
const execute: OperatorFunction<unknown[], unknown> = concatMap(async args =>
|
|
||||||
module.execute(...args),
|
|
||||||
);
|
|
||||||
return fromEvent(source, module.name).pipe(
|
|
||||||
intoPayload(module),
|
|
||||||
concatMap(createResult),
|
|
||||||
execute,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function dispatchAutocomplete(
|
|
||||||
module: Processed<BothCommand | SlashCommand>,
|
|
||||||
interaction: AutocompleteInteraction,
|
|
||||||
) {
|
|
||||||
const option = treeSearch(interaction, module.options);
|
|
||||||
if (option !== undefined) {
|
|
||||||
return {
|
|
||||||
module: option.command as Processed<Module>, //autocomplete is not a true "module" warning cast!
|
|
||||||
args: [interaction],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
throw Error(
|
|
||||||
SernError.NotSupportedInteraction + ` There is no autocomplete tag for this option`,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
export * from './dispatchers';
|
|
||||||
export * from './provideArgs';
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
import type { ChatInputCommandInteraction, Interaction, Message } from 'discord.js';
|
|
||||||
import { Context } from '../../structures';
|
|
||||||
import type { Args, SlashOptions } from '../../../types/handler';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* function overloads to create an arguments list for Context
|
|
||||||
* @param wrap
|
|
||||||
* @param messageArgs
|
|
||||||
*/
|
|
||||||
export function contextArgs(
|
|
||||||
wrap: Message,
|
|
||||||
messageArgs?: string[],
|
|
||||||
): () => [Context, ['text', string[]]];
|
|
||||||
export function contextArgs(wrap: Interaction): () => [Context, ['slash', SlashOptions]];
|
|
||||||
export function contextArgs(wrap: Interaction | Message, messageArgs?: string[]) {
|
|
||||||
const ctx = Context.wrap(wrap as ChatInputCommandInteraction | Message);
|
|
||||||
const args = ctx.isMessage() ? ['text', messageArgs!] : ['slash', ctx.interaction.options];
|
|
||||||
return () => [ctx, args] as [Context, Args];
|
|
||||||
}
|
|
||||||
|
|
||||||
export function interactionArg<T extends Interaction>(interaction: T) {
|
|
||||||
return () => [interaction] as [T];
|
|
||||||
}
|
|
||||||
@@ -1,118 +0,0 @@
|
|||||||
import { Interaction } from 'discord.js';
|
|
||||||
import {
|
|
||||||
catchError,
|
|
||||||
concatMap,
|
|
||||||
EMPTY,
|
|
||||||
filter,
|
|
||||||
finalize,
|
|
||||||
fromEvent,
|
|
||||||
map,
|
|
||||||
Observable,
|
|
||||||
of,
|
|
||||||
OperatorFunction,
|
|
||||||
pipe,
|
|
||||||
} from 'rxjs';
|
|
||||||
import { CommandType, type ModuleStore, SernError } from '../structures';
|
|
||||||
import { contextArgs, dispatchAutocomplete, dispatchCommand, interactionArg } from './dispatchers';
|
|
||||||
import { executeModule, makeModuleExecutor } from './observableHandling';
|
|
||||||
import type { CommandModule } from '../../types/module';
|
|
||||||
import { ErrorHandling, handleError } from '../contracts/errorHandling';
|
|
||||||
import SernEmitter from '../sernEmitter';
|
|
||||||
import type { Processed } from '../../types/handler';
|
|
||||||
import { useContainerRaw } from '../dependencies';
|
|
||||||
import type { Logging, ModuleManager } from '../contracts';
|
|
||||||
import type { EventEmitter } from 'node:events';
|
|
||||||
|
|
||||||
function makeInteractionProcessor(
|
|
||||||
modules: ModuleManager,
|
|
||||||
): OperatorFunction<Interaction, { module: Processed<CommandModule>; event: Interaction }> {
|
|
||||||
const get = (cb: (ms: ModuleStore) => Processed<CommandModule> | undefined) => {
|
|
||||||
return modules.get(cb);
|
|
||||||
};
|
|
||||||
return pipe(
|
|
||||||
concatMap(event => {
|
|
||||||
if (event.isMessageComponent()) {
|
|
||||||
const customId = event.customId;
|
|
||||||
const module = get(ms => {
|
|
||||||
return ms.InteractionHandlers[event.componentType].get(customId);
|
|
||||||
});
|
|
||||||
return of({ module, event });
|
|
||||||
} else if (event.isCommand() || event.isAutocomplete()) {
|
|
||||||
const commandName = event.commandName;
|
|
||||||
const module = get(
|
|
||||||
ms =>
|
|
||||||
/**
|
|
||||||
* try to fetch from ApplicationCommands, if nothing, try BothCommands
|
|
||||||
* exists on the API but not sern
|
|
||||||
*/
|
|
||||||
ms.ApplicationCommands[event.commandType].get(commandName) ??
|
|
||||||
ms.BothCommands.get(commandName),
|
|
||||||
);
|
|
||||||
return of({ module, event });
|
|
||||||
} else if (event.isModalSubmit()) {
|
|
||||||
const module = get(ms => ms.ModalSubmit.get(event.customId));
|
|
||||||
return of({ module, event });
|
|
||||||
} else return EMPTY;
|
|
||||||
}),
|
|
||||||
filter(m => m.module !== undefined),
|
|
||||||
) as OperatorFunction<Interaction, { module: Processed<CommandModule>; event: Interaction }>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function makeInteractionCreate([s, client, err, log, modules]: [
|
|
||||||
SernEmitter,
|
|
||||||
EventEmitter,
|
|
||||||
ErrorHandling,
|
|
||||||
Logging | undefined,
|
|
||||||
ModuleManager,
|
|
||||||
]) {
|
|
||||||
//map. If nothing again,this means a slash command
|
|
||||||
const interactionStream$ = fromEvent(client, 'interactionCreate') as Observable<Interaction>;
|
|
||||||
const interactionProcessor = makeInteractionProcessor(modules);
|
|
||||||
return interactionStream$
|
|
||||||
.pipe(
|
|
||||||
interactionProcessor,
|
|
||||||
map(createDispatcher),
|
|
||||||
makeModuleExecutor(module => {
|
|
||||||
s.emit('module.activate', SernEmitter.failure(module, SernError.PluginFailure));
|
|
||||||
}),
|
|
||||||
concatMap(module => executeModule(s, module)),
|
|
||||||
catchError(handleError(err, log)),
|
|
||||||
finalize(() => {
|
|
||||||
log?.info({
|
|
||||||
message: 'interactionCreate stream closed or reached end of lifetime',
|
|
||||||
});
|
|
||||||
useContainerRaw()
|
|
||||||
?.disposeAll()
|
|
||||||
.then(() => log?.info({ message: 'Cleaning container and crashing' }));
|
|
||||||
}),
|
|
||||||
)
|
|
||||||
.subscribe();
|
|
||||||
}
|
|
||||||
|
|
||||||
function createDispatcher({
|
|
||||||
module,
|
|
||||||
event,
|
|
||||||
}: {
|
|
||||||
event: Interaction;
|
|
||||||
module: Processed<CommandModule>;
|
|
||||||
}) {
|
|
||||||
switch (module.type) {
|
|
||||||
case CommandType.Text:
|
|
||||||
throw Error(SernError.MismatchEvent);
|
|
||||||
case CommandType.Slash:
|
|
||||||
case CommandType.Both: {
|
|
||||||
if (event.isAutocomplete()) {
|
|
||||||
/**
|
|
||||||
* Autocomplete is a special case that
|
|
||||||
* must be handled separately, since it's
|
|
||||||
* too different from regular command modules
|
|
||||||
*/
|
|
||||||
return dispatchAutocomplete(module, event);
|
|
||||||
} else {
|
|
||||||
return dispatchCommand(module, contextArgs(event));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
default:
|
|
||||||
return dispatchCommand(module, interactionArg(event));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,92 +0,0 @@
|
|||||||
import { catchError, concatMap, EMPTY, finalize, fromEvent, map, Observable, of, pipe } from 'rxjs';
|
|
||||||
import { type ModuleStore, SernError } from '../structures';
|
|
||||||
import type { Message } from 'discord.js';
|
|
||||||
import { executeModule, ignoreNonBot, makeModuleExecutor } from './observableHandling';
|
|
||||||
import type { CommandModule, TextCommand } from '../../types/module';
|
|
||||||
import { ErrorHandling, handleError } from '../contracts/errorHandling';
|
|
||||||
import { contextArgs, dispatchCommand } from './dispatchers';
|
|
||||||
import SernEmitter from '../sernEmitter';
|
|
||||||
import type { Processed } from '../../types/handler';
|
|
||||||
import { useContainerRaw } from '../dependencies';
|
|
||||||
import type { Logging, ModuleManager } from '../contracts';
|
|
||||||
import type { EventEmitter } from 'node:events';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Removes the first character(s) _[depending on prefix length]_ of the message
|
|
||||||
* @param msg
|
|
||||||
* @param prefix The prefix to remove
|
|
||||||
* @returns The message without the prefix
|
|
||||||
* @example
|
|
||||||
* message.content = '!ping';
|
|
||||||
* console.log(fmt(message, '!'));
|
|
||||||
* // [ 'ping' ]
|
|
||||||
*/
|
|
||||||
export function fmt(msg: string, prefix: string): string[] {
|
|
||||||
return msg.slice(prefix.length).trim().split(/\s+/g);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* An operator function that processes a message to fetch a command module and prepares context payload.
|
|
||||||
* @param defaultPrefix
|
|
||||||
* @param get
|
|
||||||
*/
|
|
||||||
const createMessageProcessor = (
|
|
||||||
defaultPrefix: string,
|
|
||||||
get: (
|
|
||||||
cb: (ms: ModuleStore) => Processed<CommandModule> | undefined,
|
|
||||||
) => CommandModule | undefined,
|
|
||||||
) =>
|
|
||||||
pipe(
|
|
||||||
ignoreNonBot(defaultPrefix),
|
|
||||||
//This concatMap checks if module is undefined, and if it is, do not continue.
|
|
||||||
// Synonymous to filterMap, but I haven't thought of a generic implementation for filterMap yet
|
|
||||||
concatMap(message => {
|
|
||||||
const [prefix, ...rest] = fmt(message.content, defaultPrefix);
|
|
||||||
const module = get(ms => ms.TextCommands.get(prefix) ?? ms.BothCommands.get(prefix));
|
|
||||||
if (module === undefined) {
|
|
||||||
return EMPTY;
|
|
||||||
}
|
|
||||||
const payload = {
|
|
||||||
args: contextArgs(message, rest),
|
|
||||||
module,
|
|
||||||
};
|
|
||||||
return of(payload);
|
|
||||||
}),
|
|
||||||
map(({ args, module }) => dispatchCommand(module as Processed<TextCommand>, args)),
|
|
||||||
);
|
|
||||||
|
|
||||||
export function makeMessageCreate(
|
|
||||||
[s, client, err, log, modules]: [
|
|
||||||
SernEmitter,
|
|
||||||
EventEmitter,
|
|
||||||
ErrorHandling,
|
|
||||||
Logging | undefined,
|
|
||||||
ModuleManager,
|
|
||||||
],
|
|
||||||
defaultPrefix?: string,
|
|
||||||
) {
|
|
||||||
if (!defaultPrefix) {
|
|
||||||
return EMPTY.subscribe();
|
|
||||||
}
|
|
||||||
const get = (cb: (ms: ModuleStore) => Processed<CommandModule> | undefined) => {
|
|
||||||
return modules.get(cb);
|
|
||||||
};
|
|
||||||
const messageStream$ = fromEvent(client, 'messageCreate') as Observable<Message>;
|
|
||||||
const messageProcessor = createMessageProcessor(defaultPrefix, get);
|
|
||||||
return messageStream$
|
|
||||||
.pipe(
|
|
||||||
messageProcessor,
|
|
||||||
makeModuleExecutor(module => {
|
|
||||||
s.emit('module.activate', SernEmitter.failure(module, SernError.PluginFailure));
|
|
||||||
}),
|
|
||||||
concatMap(payload => executeModule(s, payload)),
|
|
||||||
catchError(handleError(err, log)),
|
|
||||||
finalize(() => {
|
|
||||||
log?.info({ message: 'messageCreate stream closed or reached end of lifetime' });
|
|
||||||
useContainerRaw()
|
|
||||||
?.disposeAll()
|
|
||||||
.then(() => log?.info({ message: 'Cleaning container and crashing' }));
|
|
||||||
}),
|
|
||||||
)
|
|
||||||
.subscribe();
|
|
||||||
}
|
|
||||||
@@ -1,121 +0,0 @@
|
|||||||
import type { Awaitable, Message } from 'discord.js';
|
|
||||||
import { concatMap, EMPTY, filter, from, Observable, of, tap, throwError } from 'rxjs';
|
|
||||||
import { Result } from 'ts-results-es';
|
|
||||||
import type { CommandModule, EventModule, Module } from '../../types/module';
|
|
||||||
import SernEmitter from '../sernEmitter';
|
|
||||||
import { callPlugin, everyPluginOk, filterMapTo } from './operators';
|
|
||||||
import type { ImportPayload, Processed } from '../../types/handler';
|
|
||||||
import type { ControlPlugin, VoidResult } from '../../types/plugin';
|
|
||||||
|
|
||||||
function hasPrefix(prefix: string, content: string) {
|
|
||||||
const prefixInContent = content.slice(0, prefix.length);
|
|
||||||
return prefixInContent.localeCompare(prefix, undefined, { sensitivity: 'accent' }) === 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ignores messages from any person / bot except itself
|
|
||||||
* @param prefix
|
|
||||||
*/
|
|
||||||
export function ignoreNonBot(prefix: string) {
|
|
||||||
const messageFromHumanAndHasPrefix = ({ author, content }: Message) =>
|
|
||||||
!author.bot && hasPrefix(prefix, content);
|
|
||||||
return filter(messageFromHumanAndHasPrefix);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Wraps the task in a Result as a try / catch.
|
|
||||||
* if the task is ok, an event is emitted and the stream becomes empty
|
|
||||||
* if the task is an error, throw an error down the stream which will be handled by catchError
|
|
||||||
* @param emitter reference to SernEmitter that will emit a successful execution of module
|
|
||||||
* @param module the module that will be executed with task
|
|
||||||
* @param task the deferred execution which will be called
|
|
||||||
*/
|
|
||||||
export function executeModule(
|
|
||||||
emitter: SernEmitter,
|
|
||||||
{
|
|
||||||
module,
|
|
||||||
task,
|
|
||||||
}: {
|
|
||||||
module: Processed<Module>;
|
|
||||||
task: () => Awaitable<unknown>;
|
|
||||||
},
|
|
||||||
) {
|
|
||||||
return of(module).pipe(
|
|
||||||
//converting the task into a promise so rxjs can resolve the Awaitable properly
|
|
||||||
concatMap(() => Result.wrapAsync(async () => task())),
|
|
||||||
concatMap(result => {
|
|
||||||
if (result.ok) {
|
|
||||||
emitter.emit('module.activate', SernEmitter.success(module));
|
|
||||||
return EMPTY;
|
|
||||||
} else {
|
|
||||||
return throwError(() => SernEmitter.failure(module, result.val));
|
|
||||||
}
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A higher order function that
|
|
||||||
* - creates a stream of {@link VoidResult} { config.createStream }
|
|
||||||
* - any failures results to { config.onFailure } being called
|
|
||||||
* - if all results are ok, the stream is converted to { config.onSuccess }
|
|
||||||
* emit config.onSuccess Observable
|
|
||||||
* @param config
|
|
||||||
* @returns receiver function for flattening a stream of data
|
|
||||||
*/
|
|
||||||
export function createResultResolver<
|
|
||||||
T extends { execute: (...args: any[]) => any; onEvent: ControlPlugin[] },
|
|
||||||
Args extends { module: T; [key: string]: unknown },
|
|
||||||
Output,
|
|
||||||
>(config: {
|
|
||||||
onStop?: (module: T) => unknown;
|
|
||||||
onNext: (args: Args) => Output;
|
|
||||||
createStream: (args: Args) => Observable<VoidResult>;
|
|
||||||
}) {
|
|
||||||
return (args: Args) => {
|
|
||||||
const task$ = config.createStream(args);
|
|
||||||
return task$.pipe(
|
|
||||||
tap(result => {
|
|
||||||
if (result.err) {
|
|
||||||
config.onStop?.(args.module);
|
|
||||||
}
|
|
||||||
}),
|
|
||||||
everyPluginOk,
|
|
||||||
filterMapTo(() => config.onNext(args)),
|
|
||||||
);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Calls a module's init plugins and checks for Err. If so, call { onStop } and
|
|
||||||
* ignore the module
|
|
||||||
*/
|
|
||||||
export function callInitPlugins<
|
|
||||||
T extends Processed<CommandModule | EventModule>,
|
|
||||||
Args extends ImportPayload<T>,
|
|
||||||
>(config: { onStop?: (module: T) => unknown; onNext: (module: Args) => T }) {
|
|
||||||
return concatMap(
|
|
||||||
createResultResolver({
|
|
||||||
createStream: args => from(args.module.plugins).pipe(callPlugin(args)),
|
|
||||||
...config,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates an executable task ( execute the command ) if all control plugins are successful
|
|
||||||
* @param onStop emits a failure response to the SernEmitter
|
|
||||||
*/
|
|
||||||
export function makeModuleExecutor<
|
|
||||||
M extends Processed<Module>,
|
|
||||||
Args extends { module: M; args: unknown[] },
|
|
||||||
>(onStop: (m: M) => unknown) {
|
|
||||||
const onNext = ({ args, module }: Args) => ({ task: () => module.execute(...args), module });
|
|
||||||
return concatMap(
|
|
||||||
createResultResolver({
|
|
||||||
onStop,
|
|
||||||
createStream: ({ args, module }) => from(module.onEvent).pipe(callPlugin(args)),
|
|
||||||
onNext,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,82 +0,0 @@
|
|||||||
/**
|
|
||||||
* This file holds sern's rxjs operators used for processing data.
|
|
||||||
* Each function should be modular and testable, not bound to discord / sern
|
|
||||||
* and independent of each other
|
|
||||||
*/
|
|
||||||
|
|
||||||
import { concatMap, defaultIfEmpty, EMPTY, every, map, of, OperatorFunction, pipe } from 'rxjs';
|
|
||||||
import type { AnyModule } from '../../../types/module';
|
|
||||||
import { nameOrFilename } from '../../utilities/functions';
|
|
||||||
import type { PluginResult, VoidResult } from '../../../types/plugin';
|
|
||||||
import { guayin } from '../../plugins';
|
|
||||||
import { controller } from '../../sern';
|
|
||||||
import { Result } from 'ts-results-es';
|
|
||||||
import { ImportPayload, Processed } from '../../../types/handler';
|
|
||||||
/**
|
|
||||||
* if {src} is true, mapTo V, else ignore
|
|
||||||
* @param item
|
|
||||||
*/
|
|
||||||
export function filterMapTo<V>(item: () => V): OperatorFunction<boolean, V> {
|
|
||||||
return concatMap(shouldKeep => (shouldKeep ? of(item()) : EMPTY));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Calls any plugin with {args}.
|
|
||||||
* @param args if an array, its spread and plugin called.
|
|
||||||
*/
|
|
||||||
export function callPlugin(args: unknown): OperatorFunction<
|
|
||||||
{
|
|
||||||
execute: (...args: unknown[]) => PluginResult;
|
|
||||||
},
|
|
||||||
VoidResult
|
|
||||||
> {
|
|
||||||
return concatMap(async plugin => {
|
|
||||||
const isNewPlugin = Reflect.has(plugin, guayin);
|
|
||||||
if (isNewPlugin) {
|
|
||||||
if (Array.isArray(args)) {
|
|
||||||
return plugin.execute(...args);
|
|
||||||
}
|
|
||||||
return plugin.execute(args);
|
|
||||||
} else {
|
|
||||||
return plugin.execute(args, controller);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
export const arrayifySource = map(src => (Array.isArray(src) ? (src as unknown[]) : [src]));
|
|
||||||
|
|
||||||
export const fillDefaults = <T extends AnyModule>({ module, absPath }: ImportPayload<T>) => {
|
|
||||||
return {
|
|
||||||
absPath,
|
|
||||||
module: {
|
|
||||||
name: nameOrFilename(module?.name, absPath),
|
|
||||||
description: module?.description ?? '...',
|
|
||||||
...module,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* If the current value in Result stream is an error, calls callback.
|
|
||||||
* This also extracts the Ok value from Result
|
|
||||||
* @param cb
|
|
||||||
* @returns Observable<{ module: T; absPath: string }>
|
|
||||||
*/
|
|
||||||
export function errTap<Ok, Err>(cb: (err: Err) => void): OperatorFunction<Result<Ok, Err>, Ok> {
|
|
||||||
return concatMap(result => {
|
|
||||||
if (result.ok) {
|
|
||||||
return of(result.val);
|
|
||||||
} else {
|
|
||||||
cb(result.val as Err);
|
|
||||||
return EMPTY;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks if the stream of results is all ok.
|
|
||||||
*/
|
|
||||||
export const everyPluginOk: OperatorFunction<VoidResult, boolean> = pipe(
|
|
||||||
every(result => result.ok),
|
|
||||||
defaultIfEmpty(true),
|
|
||||||
);
|
|
||||||
@@ -1,106 +0,0 @@
|
|||||||
import { fromEvent, map, pipe, switchMap, take } from 'rxjs';
|
|
||||||
import * as Files from '../module-loading/readFile';
|
|
||||||
import { callInitPlugins } from './observableHandling';
|
|
||||||
import { CommandType, type ModuleStore, SernError } from '../structures';
|
|
||||||
import { Result } from 'ts-results-es';
|
|
||||||
import { ApplicationCommandType, ComponentType } from 'discord.js';
|
|
||||||
import type { CommandModule } from '../../types/module';
|
|
||||||
import type { Processed } from '../../types/handler';
|
|
||||||
import type { ErrorHandling, Logging, ModuleManager } from '../contracts';
|
|
||||||
import { err, ok } from '../utilities/functions';
|
|
||||||
import { errTap, fillDefaults } from './operators';
|
|
||||||
import SernEmitter from '../sernEmitter';
|
|
||||||
import type { EventEmitter } from 'node:events';
|
|
||||||
|
|
||||||
function buildCommandModules(commandDir: string, sernEmitter: SernEmitter) {
|
|
||||||
return pipe(
|
|
||||||
switchMap(() => Files.buildModuleStream<CommandModule>(commandDir)),
|
|
||||||
errTap(error => {
|
|
||||||
sernEmitter.emit('module.register', SernEmitter.failure(undefined, error));
|
|
||||||
}),
|
|
||||||
map(fillDefaults),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
export function makeReadyEvent(
|
|
||||||
[sEmitter, client, errorHandler, , moduleManager]: [
|
|
||||||
SernEmitter,
|
|
||||||
EventEmitter,
|
|
||||||
ErrorHandling,
|
|
||||||
Logging | undefined,
|
|
||||||
ModuleManager,
|
|
||||||
],
|
|
||||||
commandDir: string,
|
|
||||||
) {
|
|
||||||
const readyOnce$ = fromEvent(client, 'ready').pipe(take(1));
|
|
||||||
return readyOnce$
|
|
||||||
.pipe(
|
|
||||||
buildCommandModules(commandDir, sEmitter),
|
|
||||||
callInitPlugins({
|
|
||||||
onStop: module => {
|
|
||||||
sEmitter.emit(
|
|
||||||
'module.register',
|
|
||||||
SernEmitter.failure(module, SernError.PluginFailure),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
onNext: ({ module }) => {
|
|
||||||
sEmitter.emit('module.register', SernEmitter.success(module));
|
|
||||||
return module;
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
)
|
|
||||||
.subscribe(module => {
|
|
||||||
const result = registerModule(moduleManager, module as Processed<CommandModule>);
|
|
||||||
if (result.err) {
|
|
||||||
errorHandler.crash(Error(SernError.InvalidModuleType));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function registerModule<T extends Processed<CommandModule>>(
|
|
||||||
manager: ModuleManager,
|
|
||||||
mod: T,
|
|
||||||
): Result<void, void> {
|
|
||||||
const name = mod.name;
|
|
||||||
const insert = (cb: (ms: ModuleStore) => void) => {
|
|
||||||
const set = Result.wrap(() => manager.set(cb));
|
|
||||||
return set.ok ? ok() : err();
|
|
||||||
};
|
|
||||||
switch (mod.type) {
|
|
||||||
case CommandType.Text: {
|
|
||||||
mod.alias?.forEach(a => insert(ms => ms.TextCommands.set(a, mod)));
|
|
||||||
return insert(ms => ms.TextCommands.set(name, mod));
|
|
||||||
}
|
|
||||||
case CommandType.Slash:
|
|
||||||
return insert(ms =>
|
|
||||||
ms.ApplicationCommands[ApplicationCommandType.ChatInput].set(name, mod),
|
|
||||||
);
|
|
||||||
case CommandType.Both: {
|
|
||||||
mod.alias?.forEach(a => insert(ms => ms.TextCommands.set(a, mod)));
|
|
||||||
return insert(ms => ms.BothCommands.set(name, mod));
|
|
||||||
}
|
|
||||||
case CommandType.CtxUser:
|
|
||||||
return insert(ms => ms.ApplicationCommands[ApplicationCommandType.User].set(name, mod));
|
|
||||||
case CommandType.CtxMsg:
|
|
||||||
return insert(ms =>
|
|
||||||
ms.ApplicationCommands[ApplicationCommandType.Message].set(name, mod),
|
|
||||||
);
|
|
||||||
case CommandType.Button:
|
|
||||||
return insert(ms => ms.InteractionHandlers[ComponentType.Button].set(name, mod));
|
|
||||||
case CommandType.StringSelect:
|
|
||||||
return insert(ms => ms.InteractionHandlers[ComponentType.StringSelect].set(name, mod));
|
|
||||||
case CommandType.MentionableSelect:
|
|
||||||
return insert(ms =>
|
|
||||||
ms.InteractionHandlers[ComponentType.MentionableSelect].set(name, mod),
|
|
||||||
);
|
|
||||||
case CommandType.UserSelect:
|
|
||||||
return insert(ms => ms.InteractionHandlers[ComponentType.UserSelect].set(name, mod));
|
|
||||||
case CommandType.ChannelSelect:
|
|
||||||
return insert(ms => ms.InteractionHandlers[ComponentType.ChannelSelect].set(name, mod));
|
|
||||||
case CommandType.RoleSelect:
|
|
||||||
return insert(ms => ms.InteractionHandlers[ComponentType.RoleSelect].set(name, mod));
|
|
||||||
case CommandType.Modal:
|
|
||||||
return insert(ms => ms.ModalSubmit.set(name, mod));
|
|
||||||
default:
|
|
||||||
return err();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,74 +0,0 @@
|
|||||||
import { catchError, finalize, map, mergeAll } from 'rxjs';
|
|
||||||
import * as Files from '../module-loading/readFile';
|
|
||||||
import type { Dependencies, Processed } from '../../types/handler';
|
|
||||||
import { callInitPlugins } from './observableHandling';
|
|
||||||
import type { CommandModule, EventModule } from '../../types/module';
|
|
||||||
import type { EventEmitter } from 'events';
|
|
||||||
import SernEmitter from '../sernEmitter';
|
|
||||||
import type { ErrorHandling, Logging } from '../contracts';
|
|
||||||
import { SernError, EventType, type Wrapper } from '../structures';
|
|
||||||
import { eventDispatcher } from './dispatchers';
|
|
||||||
import { handleError } from '../contracts/errorHandling';
|
|
||||||
import { errTap, fillDefaults } from './operators';
|
|
||||||
import { useContainerRaw } from '../dependencies';
|
|
||||||
|
|
||||||
export function makeEventsHandler(
|
|
||||||
[s, client, err, log]: [SernEmitter, EventEmitter, ErrorHandling, Logging | undefined],
|
|
||||||
eventsPath: string,
|
|
||||||
containerGetter: Wrapper['containerConfig'],
|
|
||||||
) {
|
|
||||||
const lazy = (k: string) => containerGetter.get(k as keyof Dependencies)[0];
|
|
||||||
const eventStream$ = eventObservable(eventsPath, s);
|
|
||||||
|
|
||||||
const eventCreation$ = eventStream$.pipe(
|
|
||||||
map(fillDefaults),
|
|
||||||
callInitPlugins({
|
|
||||||
onStop: module =>
|
|
||||||
s.emit('module.register', SernEmitter.failure(module, SernError.PluginFailure)),
|
|
||||||
onNext: ({ module }) => {
|
|
||||||
s.emit('module.register', SernEmitter.success(module));
|
|
||||||
return module;
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
const intoDispatcher = (e: Processed<EventModule | CommandModule>) => {
|
|
||||||
switch (e.type) {
|
|
||||||
case EventType.Sern:
|
|
||||||
return eventDispatcher(e, s);
|
|
||||||
case EventType.Discord:
|
|
||||||
return eventDispatcher(e, client);
|
|
||||||
case EventType.External:
|
|
||||||
return eventDispatcher(e, lazy(e.emitter));
|
|
||||||
default:
|
|
||||||
return err.crash(
|
|
||||||
Error(SernError.InvalidModuleType + ' while creating event handler'),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
eventCreation$
|
|
||||||
.pipe(
|
|
||||||
map(intoDispatcher),
|
|
||||||
/**
|
|
||||||
* Where all events are turned on
|
|
||||||
*/
|
|
||||||
mergeAll(),
|
|
||||||
catchError(handleError(err, log)),
|
|
||||||
finalize(() => {
|
|
||||||
log?.info({ message: 'an event module reached end of lifetime' });
|
|
||||||
useContainerRaw()
|
|
||||||
?.disposeAll()
|
|
||||||
.then(() => {
|
|
||||||
log?.info({ message: 'Cleaning container and crashing' });
|
|
||||||
});
|
|
||||||
}),
|
|
||||||
)
|
|
||||||
.subscribe();
|
|
||||||
}
|
|
||||||
|
|
||||||
function eventObservable(events: string, emitter: SernEmitter) {
|
|
||||||
return Files.buildModuleStream<EventModule>(events).pipe(
|
|
||||||
errTap(reason => {
|
|
||||||
emitter.emit('module.register', SernEmitter.failure(undefined, reason));
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,64 +0,0 @@
|
|||||||
import { readdirSync, statSync } from 'fs';
|
|
||||||
import { join } from 'path';
|
|
||||||
import { type Observable, from, mergeMap } from 'rxjs';
|
|
||||||
import { SernError } from '../structures/errors';
|
|
||||||
import { type Result, Err, Ok } from 'ts-results-es';
|
|
||||||
import { ImportPayload } from '../../types/handler';
|
|
||||||
import { pathToFileURL } from 'node:url';
|
|
||||||
|
|
||||||
// Courtesy @Townsy45
|
|
||||||
function readPath(dir: string, arrayOfFiles: string[] = []): string[] {
|
|
||||||
try {
|
|
||||||
const files = readdirSync(dir);
|
|
||||||
for (const file of files) {
|
|
||||||
if (statSync(dir + '/' + file).isDirectory()) readPath(dir + '/' + file, arrayOfFiles);
|
|
||||||
else arrayOfFiles.push(join(dir, '/', file));
|
|
||||||
}
|
|
||||||
} catch (err) {
|
|
||||||
throw err;
|
|
||||||
}
|
|
||||||
|
|
||||||
return arrayOfFiles;
|
|
||||||
}
|
|
||||||
export const fmtFileName = (n: string) => n.substring(0, n.length - 3);
|
|
||||||
// export const isLazy = (n: string) => n.indexOf(".lazy.", n.length-9) !== -1;
|
|
||||||
|
|
||||||
export async function defaultModuleLoader<T>(
|
|
||||||
absPath: string,
|
|
||||||
): Promise<Result<ImportPayload<T>, SernError>> {
|
|
||||||
// prettier-ignore
|
|
||||||
let module: T | undefined
|
|
||||||
/// #if MODE === 'esm'
|
|
||||||
= (await import(pathToFileURL(absPath).toString())).default
|
|
||||||
/// #elif MODE === 'cjs'
|
|
||||||
= require(absPath).default; // eslint-disable-line
|
|
||||||
/// #endif
|
|
||||||
if (module === undefined) {
|
|
||||||
return Err(SernError.UndefinedModule);
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
module = new (module as unknown as new () => T)();
|
|
||||||
} catch {}
|
|
||||||
return Ok({ module, absPath });
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* a directory string is converted into a stream of modules.
|
|
||||||
* starts the stream of modules that sern needs to process on init
|
|
||||||
* @returns {Observable<{ mod: Module; absPath: string; }[]>} data from command files
|
|
||||||
* @param commandDir
|
|
||||||
*/
|
|
||||||
export function buildModuleStream<T>(
|
|
||||||
commandDir: string,
|
|
||||||
): Observable<Result<ImportPayload<T>, SernError>> {
|
|
||||||
const commands = getCommands(commandDir);
|
|
||||||
return from(commands).pipe(mergeMap(defaultModuleLoader<T>));
|
|
||||||
}
|
|
||||||
|
|
||||||
export function fullPathFrom(dir: string) {
|
|
||||||
return join(process.cwd(), dir);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function getCommands(dir: string): string[] {
|
|
||||||
return readPath(fullPathFrom(dir));
|
|
||||||
}
|
|
||||||
@@ -1,117 +0,0 @@
|
|||||||
import type { CommandType } from '../structures/enums';
|
|
||||||
import type { PluginType } from '../structures/enums';
|
|
||||||
import type { ClientEvents } from 'discord.js';
|
|
||||||
import type {
|
|
||||||
BothCommand,
|
|
||||||
ButtonCommand,
|
|
||||||
ChannelSelectCommand,
|
|
||||||
ContextMenuUser,
|
|
||||||
DiscordEventCommand,
|
|
||||||
ExternalEventCommand,
|
|
||||||
MentionableSelectCommand,
|
|
||||||
ModalSubmitCommand,
|
|
||||||
RoleSelectCommand,
|
|
||||||
SernEventCommand,
|
|
||||||
SlashCommand,
|
|
||||||
StringSelectCommand,
|
|
||||||
TextCommand,
|
|
||||||
UserSelectCommand,
|
|
||||||
ContextMenuMsg,
|
|
||||||
Module,
|
|
||||||
} from '../../types/module';
|
|
||||||
import type { Args, Payload, Processed, SlashOptions } from '../../types/handler';
|
|
||||||
import type Context from '../structures/context';
|
|
||||||
import type { MessageContextMenuCommandInteraction } from 'discord.js';
|
|
||||||
import type {
|
|
||||||
ButtonInteraction,
|
|
||||||
RoleSelectMenuInteraction,
|
|
||||||
StringSelectMenuInteraction,
|
|
||||||
UserContextMenuCommandInteraction,
|
|
||||||
} from 'discord.js';
|
|
||||||
import type {
|
|
||||||
ChannelSelectMenuInteraction,
|
|
||||||
MentionableSelectMenuInteraction,
|
|
||||||
ModalSubmitInteraction,
|
|
||||||
UserSelectMenuInteraction,
|
|
||||||
} from 'discord.js';
|
|
||||||
import { EventType } from '../structures/enums';
|
|
||||||
|
|
||||||
type CommandArgsMatrix = {
|
|
||||||
[CommandType.Text]: {
|
|
||||||
[PluginType.Control]: [Context, ['text', string[]]];
|
|
||||||
[PluginType.Init]: [InitArgs<Processed<TextCommand>>];
|
|
||||||
};
|
|
||||||
[CommandType.Slash]: {
|
|
||||||
[PluginType.Control]: [Context, ['slash', /* library coupled */ SlashOptions]];
|
|
||||||
[PluginType.Init]: [InitArgs<Processed<SlashCommand>>];
|
|
||||||
};
|
|
||||||
[CommandType.Both]: {
|
|
||||||
[PluginType.Control]: [Context, Args];
|
|
||||||
[PluginType.Init]: [InitArgs<Processed<BothCommand>>];
|
|
||||||
};
|
|
||||||
[CommandType.CtxMsg]: {
|
|
||||||
[PluginType.Control]: [/* library coupled */ MessageContextMenuCommandInteraction];
|
|
||||||
[PluginType.Init]: [InitArgs<Processed<ContextMenuMsg>>];
|
|
||||||
};
|
|
||||||
[CommandType.CtxUser]: {
|
|
||||||
[PluginType.Control]: [/* library coupled */ UserContextMenuCommandInteraction];
|
|
||||||
[PluginType.Init]: [InitArgs<Processed<ContextMenuUser>>];
|
|
||||||
};
|
|
||||||
[CommandType.Button]: {
|
|
||||||
[PluginType.Control]: [/* library coupled */ ButtonInteraction];
|
|
||||||
[PluginType.Init]: [InitArgs<Processed<ButtonCommand>>];
|
|
||||||
};
|
|
||||||
[CommandType.StringSelect]: {
|
|
||||||
[PluginType.Control]: [/* library coupled */ StringSelectMenuInteraction];
|
|
||||||
[PluginType.Init]: [InitArgs<Processed<StringSelectCommand>>];
|
|
||||||
};
|
|
||||||
[CommandType.RoleSelect]: {
|
|
||||||
[PluginType.Control]: [/* library coupled */ RoleSelectMenuInteraction];
|
|
||||||
[PluginType.Init]: [InitArgs<Processed<RoleSelectCommand>>];
|
|
||||||
};
|
|
||||||
[CommandType.ChannelSelect]: {
|
|
||||||
[PluginType.Control]: [/* library coupled */ ChannelSelectMenuInteraction];
|
|
||||||
[PluginType.Init]: [InitArgs<Processed<ChannelSelectCommand>>];
|
|
||||||
};
|
|
||||||
[CommandType.MentionableSelect]: {
|
|
||||||
[PluginType.Control]: [/* library coupled */ MentionableSelectMenuInteraction];
|
|
||||||
[PluginType.Init]: [InitArgs<Processed<MentionableSelectCommand>>];
|
|
||||||
};
|
|
||||||
[CommandType.UserSelect]: {
|
|
||||||
[PluginType.Control]: [/* library coupled */ UserSelectMenuInteraction];
|
|
||||||
[PluginType.Init]: [InitArgs<Processed<UserSelectCommand>>];
|
|
||||||
};
|
|
||||||
[CommandType.Modal]: {
|
|
||||||
[PluginType.Control]: [/* library coupled */ ModalSubmitInteraction];
|
|
||||||
[PluginType.Init]: [InitArgs<Processed<ModalSubmitCommand>>];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
type EventArgsMatrix = {
|
|
||||||
[EventType.Discord]: {
|
|
||||||
[PluginType.Control]: /* library coupled */ ClientEvents[keyof ClientEvents];
|
|
||||||
[PluginType.Init]: [InitArgs<Processed<DiscordEventCommand>>];
|
|
||||||
};
|
|
||||||
[EventType.Sern]: {
|
|
||||||
[PluginType.Control]: [Payload];
|
|
||||||
[PluginType.Init]: [InitArgs<Processed<SernEventCommand>>];
|
|
||||||
};
|
|
||||||
[EventType.External]: {
|
|
||||||
[PluginType.Control]: unknown[];
|
|
||||||
[PluginType.Init]: [InitArgs<Processed<ExternalEventCommand>>];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
export interface InitArgs<T extends Processed<Module>> {
|
|
||||||
module: T;
|
|
||||||
absPath: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export type CommandArgs<
|
|
||||||
I extends CommandType = CommandType,
|
|
||||||
J extends PluginType = PluginType,
|
|
||||||
> = CommandArgsMatrix[I][J];
|
|
||||||
export type EventArgs<
|
|
||||||
I extends EventType = EventType,
|
|
||||||
J extends PluginType = PluginType,
|
|
||||||
> = EventArgsMatrix[I][J];
|
|
||||||
@@ -1,64 +0,0 @@
|
|||||||
import { CommandType, EventType, PluginType } from '../structures';
|
|
||||||
import type { Plugin, PluginResult } from '../../types/plugin';
|
|
||||||
import type { CommandArgs, EventArgs } from './args';
|
|
||||||
import type { ClientEvents } from 'discord.js';
|
|
||||||
export const guayin = Symbol('twice<3');
|
|
||||||
export function makePlugin<V extends unknown[]>(
|
|
||||||
type: PluginType,
|
|
||||||
execute: (...args: any[]) => any,
|
|
||||||
): Plugin<V> {
|
|
||||||
return {
|
|
||||||
type,
|
|
||||||
execute,
|
|
||||||
[guayin]: undefined,
|
|
||||||
} as Plugin<V>;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @since 2.5.0
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
export function EventInitPlugin<I extends EventType>(
|
|
||||||
execute: (...args: EventArgs<I, PluginType.Init>) => PluginResult,
|
|
||||||
) {
|
|
||||||
return makePlugin(PluginType.Init, execute);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @since 2.5.0
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
export function CommandInitPlugin<I extends CommandType>(
|
|
||||||
execute: (...args: CommandArgs<I, PluginType.Init>) => PluginResult,
|
|
||||||
) {
|
|
||||||
return makePlugin(PluginType.Init, execute);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @since 2.5.0
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
export function CommandControlPlugin<I extends CommandType>(
|
|
||||||
execute: (...args: CommandArgs<I, PluginType.Control>) => PluginResult,
|
|
||||||
) {
|
|
||||||
return makePlugin(PluginType.Control, execute);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @since 2.5.0
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
export function EventControlPlugin<I extends EventType>(
|
|
||||||
execute: (...args: EventArgs<I, PluginType.Control>) => PluginResult,
|
|
||||||
) {
|
|
||||||
return makePlugin(PluginType.Control, execute);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @since 2.5.0
|
|
||||||
* @Experimental
|
|
||||||
* A specialized function for creating control plugins with discord.js ClientEvents.
|
|
||||||
* Will probably be moved one day!
|
|
||||||
*/
|
|
||||||
export function DiscordEventControlPlugin<T extends keyof ClientEvents>(
|
|
||||||
name: T,
|
|
||||||
execute: (...args: ClientEvents[T]) => PluginResult,
|
|
||||||
) {
|
|
||||||
return makePlugin(PluginType.Control, execute);
|
|
||||||
}
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
export { EventArgs, InitArgs, CommandArgs } from './args';
|
|
||||||
export * from './createPlugin';
|
|
||||||
@@ -1,138 +0,0 @@
|
|||||||
import type Wrapper from './structures/wrapper';
|
|
||||||
import { makeEventsHandler } from './events/userDefinedEventsHandling';
|
|
||||||
import { CommandType, EventType, PluginType } from './structures/enums';
|
|
||||||
import type { AnyEventPlugin, ControlPlugin, InitPlugin, Plugin } from '../types/plugin';
|
|
||||||
import { makeInteractionCreate } from './events/interactionHandler';
|
|
||||||
import { makeReadyEvent } from './events/readyHandler';
|
|
||||||
import { makeMessageCreate } from './events/messageHandler';
|
|
||||||
import type {
|
|
||||||
CommandModule,
|
|
||||||
CommandModuleDefs,
|
|
||||||
EventModule,
|
|
||||||
EventModuleDefs,
|
|
||||||
InputCommand,
|
|
||||||
InputEvent,
|
|
||||||
} from '../types/module';
|
|
||||||
import type { Dependencies, DependencyConfiguration } from '../types/handler';
|
|
||||||
import { composeRoot, makeFetcher, useContainer } from './dependencies/provider';
|
|
||||||
import type { Logging } from './contracts';
|
|
||||||
import { err, ok, partition } from './utilities/functions';
|
|
||||||
import type { Awaitable, ClientEvents } from 'discord.js';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @since 1.0.0
|
|
||||||
* @param wrapper Options to pass into sern.
|
|
||||||
* Function to start the handler up
|
|
||||||
* @example
|
|
||||||
* ```ts title="src/index.ts"
|
|
||||||
* Sern.init({
|
|
||||||
* defaultPrefix: '!',
|
|
||||||
* commands: 'dist/commands',
|
|
||||||
* events: 'dist/events',
|
|
||||||
* containerConfig : {
|
|
||||||
* get: useContainer
|
|
||||||
* }
|
|
||||||
* })
|
|
||||||
* ```
|
|
||||||
*/
|
|
||||||
export function init(wrapper: Wrapper) {
|
|
||||||
const logger = wrapper.containerConfig.get('@sern/logger')[0] as Logging | undefined;
|
|
||||||
const requiredDependenciesAnd = makeFetcher(wrapper);
|
|
||||||
const startTime = performance.now();
|
|
||||||
const { events } = wrapper;
|
|
||||||
if (events !== undefined) {
|
|
||||||
makeEventsHandler(requiredDependenciesAnd([]), events, wrapper.containerConfig);
|
|
||||||
}
|
|
||||||
const dependencies = requiredDependenciesAnd(['@sern/modules']);
|
|
||||||
makeReadyEvent(dependencies, wrapper.commands);
|
|
||||||
makeMessageCreate(dependencies, wrapper.defaultPrefix);
|
|
||||||
makeInteractionCreate(dependencies);
|
|
||||||
const endTime = performance.now();
|
|
||||||
logger?.info({ message: `sern : ${(endTime - startTime).toFixed(2)} ms` });
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @since 1.0.0
|
|
||||||
* The object passed into every plugin to control a command's behavior
|
|
||||||
*/
|
|
||||||
export const controller = {
|
|
||||||
next: ok,
|
|
||||||
stop: err,
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @since 1.0.0
|
|
||||||
* The wrapper function to define command modules for sern
|
|
||||||
* @param mod
|
|
||||||
*/
|
|
||||||
export function commandModule(mod: InputCommand): CommandModule {
|
|
||||||
const [onEvent, plugins] = partition(
|
|
||||||
mod.plugins ?? [],
|
|
||||||
el => (el as Plugin).type === PluginType.Control,
|
|
||||||
);
|
|
||||||
return {
|
|
||||||
...mod,
|
|
||||||
onEvent,
|
|
||||||
plugins,
|
|
||||||
} as CommandModule;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @since 1.0.0
|
|
||||||
* The wrapper function to define event modules for sern
|
|
||||||
* @param mod
|
|
||||||
*/
|
|
||||||
export function eventModule(mod: InputEvent): EventModule {
|
|
||||||
const [onEvent, plugins] = partition(
|
|
||||||
mod.plugins ?? [],
|
|
||||||
el => (el as Plugin).type === PluginType.Control,
|
|
||||||
);
|
|
||||||
return {
|
|
||||||
...mod,
|
|
||||||
onEvent,
|
|
||||||
plugins,
|
|
||||||
} as EventModule;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create event modules from discord.js client events,
|
|
||||||
* This is an {@link eventModule} for discord events,
|
|
||||||
* where typings can be very bad.
|
|
||||||
* @param mod
|
|
||||||
*/
|
|
||||||
export function discordEvent<T extends keyof ClientEvents>(mod: {
|
|
||||||
name: T;
|
|
||||||
plugins?: AnyEventPlugin[];
|
|
||||||
execute: (...args: ClientEvents[T]) => Awaitable<unknown>;
|
|
||||||
}) {
|
|
||||||
return eventModule({ type: EventType.Discord, ...mod });
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @since 2.0.0
|
|
||||||
* @param conf a configuration for creating your project dependencies
|
|
||||||
*/
|
|
||||||
export function makeDependencies<T extends Dependencies>(conf: DependencyConfiguration<T>) {
|
|
||||||
//Until there are more optional dependencies, just check if the logger exists
|
|
||||||
composeRoot(conf);
|
|
||||||
return useContainer<T>();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Experimental
|
|
||||||
* Will be refactored / changed in future
|
|
||||||
*/
|
|
||||||
export abstract class CommandExecutable<Type extends CommandType> {
|
|
||||||
abstract type: Type;
|
|
||||||
plugins: InitPlugin[] = [];
|
|
||||||
onEvent: ControlPlugin[] = [];
|
|
||||||
abstract execute: CommandModuleDefs[Type]['execute'];
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @Experimental
|
|
||||||
* Will be refactored in future
|
|
||||||
*/
|
|
||||||
export abstract class EventExecutable<Type extends EventType> {
|
|
||||||
abstract type: Type;
|
|
||||||
plugins: InitPlugin[] = [];
|
|
||||||
onEvent: ControlPlugin[] = [];
|
|
||||||
abstract execute: EventModuleDefs[Type]['execute'];
|
|
||||||
}
|
|
||||||
@@ -1,88 +0,0 @@
|
|||||||
import { EventEmitter } from 'events';
|
|
||||||
import type { Payload, SernEventsMapping } from '../types/handler';
|
|
||||||
import { PayloadType } from './structures';
|
|
||||||
import type { Module } from '../types/module';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @since 1.0.0
|
|
||||||
*/
|
|
||||||
class SernEmitter extends EventEmitter {
|
|
||||||
/**
|
|
||||||
* Listening to sern events with on. This event stays on until a crash or a normal exit
|
|
||||||
* @param eventName
|
|
||||||
* @param listener what to do with the data
|
|
||||||
*/
|
|
||||||
public override on<T extends keyof SernEventsMapping>(
|
|
||||||
eventName: T,
|
|
||||||
listener: (...args: SernEventsMapping[T][]) => void,
|
|
||||||
): this {
|
|
||||||
return super.on(eventName, listener);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Listening to sern events with on. This event stays on until a crash or a normal exit
|
|
||||||
* @param eventName
|
|
||||||
* @param listener what to do with the data
|
|
||||||
*/
|
|
||||||
public override once<T extends keyof SernEventsMapping>(
|
|
||||||
eventName: T,
|
|
||||||
listener: (...args: SernEventsMapping[T][]) => void,
|
|
||||||
): this {
|
|
||||||
return super.once(eventName, listener);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Listening to sern events with on. This event stays on until a crash or a normal exit
|
|
||||||
* @param eventName
|
|
||||||
* @param args the arguments for emitting the eventName
|
|
||||||
*/
|
|
||||||
public override emit<T extends keyof SernEventsMapping>(
|
|
||||||
eventName: T,
|
|
||||||
...args: SernEventsMapping[T]
|
|
||||||
): boolean {
|
|
||||||
return super.emit(eventName, ...args);
|
|
||||||
}
|
|
||||||
private static payload<T extends Payload>(
|
|
||||||
type: PayloadType,
|
|
||||||
module?: Module,
|
|
||||||
reason?: unknown,
|
|
||||||
) {
|
|
||||||
return { type, module, reason } as T;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a compliant SernEmitter failure payload
|
|
||||||
* @param module
|
|
||||||
* @param reason
|
|
||||||
*/
|
|
||||||
static failure(module?: Module, reason?: unknown) {
|
|
||||||
//The generic cast Payload & { type : PayloadType.* } coerces the type to be a failure payload
|
|
||||||
// same goes to the other methods below
|
|
||||||
return SernEmitter.payload<Payload & { type: PayloadType.Failure }>(
|
|
||||||
PayloadType.Failure,
|
|
||||||
module,
|
|
||||||
reason,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Creates a compliant SernEmitter module success payload
|
|
||||||
* @param module
|
|
||||||
*/
|
|
||||||
static success(module: Module) {
|
|
||||||
return SernEmitter.payload<Payload & { type: PayloadType.Success }>(
|
|
||||||
PayloadType.Success,
|
|
||||||
module,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Creates a compliant SernEmitter module warning payload
|
|
||||||
* @param reason
|
|
||||||
*/
|
|
||||||
static warning(reason: unknown) {
|
|
||||||
return SernEmitter.payload<Payload & { type: PayloadType.Warning }>(
|
|
||||||
PayloadType.Warning,
|
|
||||||
undefined,
|
|
||||||
reason,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default SernEmitter;
|
|
||||||
@@ -1,107 +0,0 @@
|
|||||||
import type {
|
|
||||||
ChatInputCommandInteraction,
|
|
||||||
Client,
|
|
||||||
InteractionReplyOptions,
|
|
||||||
Message,
|
|
||||||
Snowflake,
|
|
||||||
MessageReplyOptions,
|
|
||||||
User,
|
|
||||||
} from 'discord.js';
|
|
||||||
import { Result as Either, Ok as Left, Err as Right } from 'ts-results-es';
|
|
||||||
import type { ReplyOptions } from '../../types/handler';
|
|
||||||
import { SernError } from './errors';
|
|
||||||
|
|
||||||
function safeUnwrap<T>(res: Either<T, T>) {
|
|
||||||
return res.val;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @since 1.0.0
|
|
||||||
* Provides values shared between
|
|
||||||
* Message and ChatInputCommandInteraction
|
|
||||||
*/
|
|
||||||
export default class Context {
|
|
||||||
private constructor(private ctx: Either<Message, ChatInputCommandInteraction>) {}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Getting the Message object. Crashes if module type is
|
|
||||||
* CommandType.Slash or the event fired in a Both command was
|
|
||||||
* ChatInputCommandInteraction
|
|
||||||
*/
|
|
||||||
public get message() {
|
|
||||||
return this.ctx.expect(SernError.MismatchEvent);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Getting the ChatInputCommandInteraction object. Crashes if module type is
|
|
||||||
* CommandType.Text or the event fired in a Both command was
|
|
||||||
* Message
|
|
||||||
*/
|
|
||||||
public get interaction() {
|
|
||||||
return this.ctx.expectErr(SernError.MismatchEvent);
|
|
||||||
}
|
|
||||||
|
|
||||||
public get id(): Snowflake {
|
|
||||||
return this.ctx.val.id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public get channel() {
|
|
||||||
return this.ctx.val.channel;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* If context is holding a message, message.author
|
|
||||||
* else, interaction.user
|
|
||||||
*/
|
|
||||||
public get user(): User {
|
|
||||||
return safeUnwrap(this.ctx.map(m => m.author).mapErr(i => i.user));
|
|
||||||
}
|
|
||||||
|
|
||||||
public get createdTimestamp(): number {
|
|
||||||
return this.ctx.val.createdTimestamp;
|
|
||||||
}
|
|
||||||
|
|
||||||
public get guild() {
|
|
||||||
return this.ctx.val.guild;
|
|
||||||
}
|
|
||||||
|
|
||||||
public get guildId() {
|
|
||||||
return this.ctx.val.guildId;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* interactions can return APIGuildMember if the guild it is emitted from is not cached
|
|
||||||
*/
|
|
||||||
public get member() {
|
|
||||||
return this.ctx.val.member;
|
|
||||||
}
|
|
||||||
|
|
||||||
public get client(): Client {
|
|
||||||
return this.ctx.val.client;
|
|
||||||
}
|
|
||||||
|
|
||||||
public get inGuild(): boolean {
|
|
||||||
return this.ctx.val.inGuild();
|
|
||||||
}
|
|
||||||
public isMessage() {
|
|
||||||
return this.ctx.map(() => true).unwrapOr(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
public isSlash() {
|
|
||||||
return !this.isMessage();
|
|
||||||
}
|
|
||||||
|
|
||||||
static wrap(wrappable: ChatInputCommandInteraction | Message): Context {
|
|
||||||
if ('token' in wrappable) {
|
|
||||||
return new Context(Right(wrappable));
|
|
||||||
}
|
|
||||||
return new Context(Left(wrappable));
|
|
||||||
}
|
|
||||||
|
|
||||||
public reply(content: ReplyOptions) {
|
|
||||||
return safeUnwrap(
|
|
||||||
this.ctx
|
|
||||||
.map(m => m.reply(content as string | MessageReplyOptions))
|
|
||||||
.mapErr(i =>
|
|
||||||
i.reply(content as string | InteractionReplyOptions).then(() => i.fetchReply()),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
/**
|
|
||||||
* @enum { string }
|
|
||||||
*/
|
|
||||||
export enum SernError {
|
|
||||||
/**
|
|
||||||
* Throws when registering an invalid module.
|
|
||||||
* This means it is undefined or an invalid command type was provided
|
|
||||||
*/
|
|
||||||
InvalidModuleType = 'Detected an unknown module type',
|
|
||||||
/**
|
|
||||||
* Attempted to lookup module in command module store. Nothing was found!
|
|
||||||
*/
|
|
||||||
UndefinedModule = `A module could not be detected`,
|
|
||||||
/**
|
|
||||||
* Attempted to lookup module in command module store. Nothing was found!
|
|
||||||
*/
|
|
||||||
MismatchModule = `A module type mismatched with event emitted!`,
|
|
||||||
/**
|
|
||||||
* Unsupported interaction at this moment.
|
|
||||||
*/
|
|
||||||
NotSupportedInteraction = `This interaction is not supported.`,
|
|
||||||
/**
|
|
||||||
* One plugin called `controller.stop()` (end command execution / loading)
|
|
||||||
*/
|
|
||||||
PluginFailure = `A plugin failed to call controller.next()`,
|
|
||||||
/**
|
|
||||||
* A crash that occurs when accessing an invalid property of Context
|
|
||||||
*/
|
|
||||||
MismatchEvent = `You cannot use message when an interaction fired or vice versa`,
|
|
||||||
/**
|
|
||||||
* Unsupported feature attempted to access at this time
|
|
||||||
*/
|
|
||||||
NotSupportedYet = `This feature is not supported yet`,
|
|
||||||
/**
|
|
||||||
* Required Dependency not found
|
|
||||||
*/
|
|
||||||
MissingRequired = `@sern/client is required but was not found`,
|
|
||||||
}
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
import Context from './context';
|
|
||||||
import type Wrapper from './wrapper';
|
|
||||||
import { ModuleStore } from './moduleStore';
|
|
||||||
export * from './errors';
|
|
||||||
export * from './enums';
|
|
||||||
export { Context, Wrapper, ModuleStore };
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
import type { CommandModule } from '../../types/module';
|
|
||||||
import { ApplicationCommandType, ComponentType } from 'discord.js';
|
|
||||||
import type { Processed } from '../../types/handler';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @since 2.0.0
|
|
||||||
* Storing all command modules
|
|
||||||
* This dependency is usually injected into ModuleManager
|
|
||||||
*/
|
|
||||||
export class ModuleStore {
|
|
||||||
readonly BothCommands = new Map<string, Processed<CommandModule>>();
|
|
||||||
readonly ApplicationCommands = {
|
|
||||||
[ApplicationCommandType.User]: new Map<string, Processed<CommandModule>>(),
|
|
||||||
[ApplicationCommandType.Message]: new Map<string, Processed<CommandModule>>(),
|
|
||||||
[ApplicationCommandType.ChatInput]: new Map<string, Processed<CommandModule>>(),
|
|
||||||
};
|
|
||||||
readonly ModalSubmit = new Map<string, Processed<CommandModule>>();
|
|
||||||
readonly TextCommands = new Map<string, Processed<CommandModule>>();
|
|
||||||
readonly InteractionHandlers = {
|
|
||||||
[ComponentType.Button]: new Map<string, Processed<CommandModule>>(),
|
|
||||||
[ComponentType.StringSelect]: new Map<string, Processed<CommandModule>>(),
|
|
||||||
[ComponentType.ChannelSelect]: new Map<string, Processed<CommandModule>>(),
|
|
||||||
[ComponentType.MentionableSelect]: new Map<string, Processed<CommandModule>>(),
|
|
||||||
[ComponentType.RoleSelect]: new Map<string, Processed<CommandModule>>(),
|
|
||||||
[ComponentType.UserSelect]: new Map<string, Processed<CommandModule>>(),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
import type { Dependencies } from '../../types/handler';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @since 1.0.0
|
|
||||||
* An object to be passed into Sern#init() function.
|
|
||||||
* @typedef {object} Wrapper
|
|
||||||
*/
|
|
||||||
interface Wrapper {
|
|
||||||
/**
|
|
||||||
* @deprecated
|
|
||||||
* This will be moved to a new field in 3.0.0
|
|
||||||
*/
|
|
||||||
readonly defaultPrefix?: string;
|
|
||||||
readonly commands: string;
|
|
||||||
readonly events?: string;
|
|
||||||
readonly containerConfig: {
|
|
||||||
get: (...keys: (keyof Dependencies)[]) => unknown[];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
export default Wrapper;
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
import * as Files from '../module-loading/readFile';
|
|
||||||
import { basename } from 'path';
|
|
||||||
import { Err, Ok } from 'ts-results-es';
|
|
||||||
/**
|
|
||||||
* A function that returns whatever value is provided.
|
|
||||||
* Warning: this evaluates { @param value }. It does not defer a value.
|
|
||||||
* @param value
|
|
||||||
* @__PURE__
|
|
||||||
*/
|
|
||||||
// prettier-ignore
|
|
||||||
export const _const = <T>(value: T) => () => value;
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @param modName
|
|
||||||
* @param absPath
|
|
||||||
*/
|
|
||||||
export function nameOrFilename(modName: string | undefined, absPath: string) {
|
|
||||||
return modName ?? Files.fmtFileName(basename(absPath));
|
|
||||||
}
|
|
||||||
|
|
||||||
//function wrappers for empty ok / err
|
|
||||||
export const ok = _const(Ok.EMPTY);
|
|
||||||
export const err = _const(Err.EMPTY);
|
|
||||||
|
|
||||||
export function partition<T, V>(arr: (T & V)[], condition: (e: T & V) => boolean): [T[], V[]] {
|
|
||||||
const t: T[] = [];
|
|
||||||
const v: V[] = [];
|
|
||||||
for (const el of arr) {
|
|
||||||
if (condition(el)) {
|
|
||||||
t.push(el as T);
|
|
||||||
} else {
|
|
||||||
v.push(el as V);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return [t, v];
|
|
||||||
}
|
|
||||||
@@ -1,54 +0,0 @@
|
|||||||
import { ApplicationCommandOptionType, AutocompleteInteraction } from 'discord.js';
|
|
||||||
import type { SernAutocompleteData, SernOptionsData } from '../../types/module';
|
|
||||||
import assert from 'assert';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Uses an iterative DFS to check if an autocomplete node exists
|
|
||||||
* @param iAutocomplete
|
|
||||||
* @param options
|
|
||||||
*/
|
|
||||||
export default function treeSearch(
|
|
||||||
iAutocomplete: AutocompleteInteraction,
|
|
||||||
options: SernOptionsData[] | undefined,
|
|
||||||
): SernAutocompleteData | undefined {
|
|
||||||
if (options === undefined) return undefined;
|
|
||||||
//clone to prevent mutation of original command module
|
|
||||||
const _options = options.map(a => ({...a}));
|
|
||||||
let subcommands = new Set();
|
|
||||||
while (_options.length > 0) {
|
|
||||||
const cur = _options.pop()!;
|
|
||||||
switch (cur.type) {
|
|
||||||
case ApplicationCommandOptionType.Subcommand:
|
|
||||||
{
|
|
||||||
subcommands.add(cur.name);
|
|
||||||
for (const option of cur.options ?? [])
|
|
||||||
_options.push(option);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case ApplicationCommandOptionType.SubcommandGroup:
|
|
||||||
{
|
|
||||||
for (const command of cur.options ?? [])
|
|
||||||
_options.push(command);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
{
|
|
||||||
if ('autocomplete' in cur && cur.autocomplete) {
|
|
||||||
const choice = iAutocomplete.options.getFocused(true);
|
|
||||||
assert('command' in cur, "No command property found for autocomplete option");
|
|
||||||
if(subcommands.size > 0) {
|
|
||||||
const parent = iAutocomplete.options.getSubcommand();
|
|
||||||
const parentAndOptionMatches = subcommands.has(parent) && cur.name === choice.name;
|
|
||||||
if (parentAndOptionMatches) {
|
|
||||||
return cur;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if(cur.name === choice.name) {
|
|
||||||
return cur;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
74
src/handlers/event-utils.ts
Normal file
74
src/handlers/event-utils.ts
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
import type { Emitter, Logging } from '../core/interfaces';
|
||||||
|
import { SernError } from '../core/structures/enums'
|
||||||
|
import { Ok, wrapAsync} from '../core/structures/result';
|
||||||
|
import type { Module } from '../types/core-modules';
|
||||||
|
import { inspect } from 'node:util'
|
||||||
|
import { resultPayload } from '../core/functions'
|
||||||
|
import merge from 'deepmerge'
|
||||||
|
|
||||||
|
|
||||||
|
interface ExecutePayload {
|
||||||
|
module: Module;
|
||||||
|
args: unknown[];
|
||||||
|
[key: string]: unknown
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function isObject(item: unknown) {
|
||||||
|
return (item && typeof item === 'object' && !Array.isArray(item));
|
||||||
|
}
|
||||||
|
|
||||||
|
//_module is frozen, preventing from mutations
|
||||||
|
export async function callInitPlugins(_module: Module, deps: Dependencies, emit?: boolean) {
|
||||||
|
let module = _module;
|
||||||
|
const emitter = deps['@sern/emitter'];
|
||||||
|
for(const plugin of module.plugins ?? []) {
|
||||||
|
const result = await plugin.execute({ module, absPath: module.meta.absPath, deps });
|
||||||
|
if (!result) throw Error("Plugin did not return anything. " + inspect(plugin, false, Infinity, true));
|
||||||
|
if(!result.ok) {
|
||||||
|
if(emit) {
|
||||||
|
emitter?.emit('module.register',
|
||||||
|
resultPayload('failure', module, result.error ?? SernError.PluginFailure));
|
||||||
|
}
|
||||||
|
throw Error((result.error ?? SernError.PluginFailure) +
|
||||||
|
'on module ' + module.name + " " + module.meta.absPath);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return module
|
||||||
|
}
|
||||||
|
|
||||||
|
export function executeModule(emitter: Emitter, logger: Logging|undefined, { module, args } : ExecutePayload) {
|
||||||
|
|
||||||
|
const moduleCalled = wrapAsync(async () => {
|
||||||
|
return module.execute(...args);
|
||||||
|
})
|
||||||
|
moduleCalled
|
||||||
|
.then((res) => {
|
||||||
|
if(res.ok) {
|
||||||
|
emitter.emit('module.activate', resultPayload('success', module))
|
||||||
|
} else {
|
||||||
|
if(!emitter.emit('error', resultPayload('failure', module, res.error))) {
|
||||||
|
// node crashes here.
|
||||||
|
logger?.error({ 'message': res.error })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(err => {
|
||||||
|
throw err
|
||||||
|
})
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
export async function callPlugins({ args, module }: ExecutePayload) {
|
||||||
|
let state = {};
|
||||||
|
for(const plugin of module.onEvent??[]) {
|
||||||
|
const result = await plugin.execute(...args);
|
||||||
|
if(!result.ok) {
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
if(isObject(result.value)) {
|
||||||
|
state = merge(state, result.value!);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Ok(state);
|
||||||
|
}
|
||||||
74
src/handlers/interaction.ts
Normal file
74
src/handlers/interaction.ts
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
import type { Module, SernAutocompleteData } from '../types/core-modules'
|
||||||
|
import { callPlugins, executeModule } from './event-utils';
|
||||||
|
import { SernError } from '../core/structures/enums'
|
||||||
|
import { createSDT, isAutocomplete, isCommand, isContextCommand, isMessageComponent, isModal, resultPayload } from '../core/functions'
|
||||||
|
import type { UnpackedDependencies } from '../types/utility';
|
||||||
|
import * as Id from '../core/id'
|
||||||
|
import { Context } from '../core/structures/context';
|
||||||
|
import path from 'node:path';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
export function interactionHandler(deps: UnpackedDependencies, defaultPrefix?: string) {
|
||||||
|
//i wish javascript had clojure destructuring
|
||||||
|
const { '@sern/client': client,
|
||||||
|
'@sern/modules': moduleManager,
|
||||||
|
'@sern/logger': log,
|
||||||
|
'@sern/emitter': reporter } = deps
|
||||||
|
|
||||||
|
client.on('interactionCreate', async (event) => {
|
||||||
|
|
||||||
|
//returns array of possible ids
|
||||||
|
const possibleIds = Id.reconstruct(event);
|
||||||
|
|
||||||
|
let modules = possibleIds
|
||||||
|
.map(({ id, params }) => ({ module: moduleManager.get(id)!, params }))
|
||||||
|
.filter(({ module }) => module !== undefined);
|
||||||
|
|
||||||
|
if(modules.length == 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const { module, params } = modules.at(0)!;
|
||||||
|
let payload;
|
||||||
|
// handles autocomplete
|
||||||
|
if(isAutocomplete(event)) {
|
||||||
|
const lookupTable = module.locals['@sern/lookup-table'] as Map<string, SernAutocompleteData>
|
||||||
|
const subCommandGroup = event.options.getSubcommandGroup() ?? "",
|
||||||
|
subCommand = event.options.getSubcommand() ?? "",
|
||||||
|
option = event.options.getFocused(true),
|
||||||
|
fullPath = path.posix.join("<parent>", subCommandGroup, subCommand, option.name)
|
||||||
|
|
||||||
|
const resolvedModule = (lookupTable.get(fullPath)!.command) as Module
|
||||||
|
payload= { module: resolvedModule , //autocomplete is not a true "module" warning cast!
|
||||||
|
args: [event, createSDT(resolvedModule, deps, params)] };
|
||||||
|
// either CommandTypes Slash | ContextMessage | ContextUesr
|
||||||
|
} else if(isCommand(event)) {
|
||||||
|
const sdt = createSDT(module, deps, params)
|
||||||
|
// handle CommandType.CtxUser || CommandType.CtxMsg
|
||||||
|
if(isContextCommand(event)) {
|
||||||
|
payload= { module, args: [event, sdt] };
|
||||||
|
} else {
|
||||||
|
// handle CommandType.Slash || CommandType.Both
|
||||||
|
payload= { module, args: [Context.wrap(event, defaultPrefix), sdt] };
|
||||||
|
}
|
||||||
|
// handles modals or components
|
||||||
|
} else if (isModal(event) || isMessageComponent(event)) {
|
||||||
|
payload= { module, args: [event, createSDT(module, deps, params)] }
|
||||||
|
} else {
|
||||||
|
throw Error("Unknown interaction while handling in interactionCreate event " + event)
|
||||||
|
}
|
||||||
|
const result = await callPlugins(payload)
|
||||||
|
if(!result.ok) {
|
||||||
|
reporter.emit('module.activate', resultPayload('failure', module, result.error ?? SernError.PluginFailure))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if(payload.args.length !== 2) {
|
||||||
|
throw Error ('Invalid payload')
|
||||||
|
}
|
||||||
|
//@ts-ignore assigning final state from plugin
|
||||||
|
payload.args[1].state = result.value
|
||||||
|
|
||||||
|
// note: do not await this. will be blocking if long task (ie waiting for modal input)
|
||||||
|
executeModule(reporter, log, payload);
|
||||||
|
});
|
||||||
|
}
|
||||||
54
src/handlers/message.ts
Normal file
54
src/handlers/message.ts
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
import type { Message } from 'discord.js';
|
||||||
|
import { callPlugins, executeModule } from './event-utils';
|
||||||
|
import { SernError } from '../core/structures/enums'
|
||||||
|
import { createSDT, fmt, resultPayload } from '../core/functions'
|
||||||
|
import type { UnpackedDependencies } from '../types/utility';
|
||||||
|
import type { Module } from '../types/core-modules';
|
||||||
|
import { Context } from '../core/structures/context';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ignores messages from any person / bot except itself
|
||||||
|
* @param prefix
|
||||||
|
*/
|
||||||
|
function isBotOrNoPrefix(msg: Message, prefix: string) {
|
||||||
|
return msg.author.bot || !hasPrefix(prefix, msg.content);
|
||||||
|
}
|
||||||
|
|
||||||
|
function hasPrefix(prefix: string, content: string) {
|
||||||
|
const prefixInContent = content.slice(0, prefix.length);
|
||||||
|
return prefixInContent.localeCompare(prefix, undefined, { sensitivity: 'accent' }) === 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function messageHandler (deps: UnpackedDependencies, defaultPrefix?: string) {
|
||||||
|
const {"@sern/emitter": emitter,
|
||||||
|
'@sern/logger': log,
|
||||||
|
'@sern/modules': mg,
|
||||||
|
'@sern/client': client} = deps
|
||||||
|
|
||||||
|
if (!defaultPrefix) {
|
||||||
|
log?.debug({ message: 'No prefix found. message handler shutting down' });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
client.on('messageCreate', async message => {
|
||||||
|
if(isBotOrNoPrefix(message, defaultPrefix)) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
const [prefix] = fmt(message.content, defaultPrefix);
|
||||||
|
let module = mg.get(`${prefix}_T`) ?? mg.get(`${prefix}_B`) as Module;
|
||||||
|
if(!module) {
|
||||||
|
throw Error('Possibly undefined behavior: could not find a static id to resolve')
|
||||||
|
}
|
||||||
|
const payload = { module, args: [Context.wrap(message, defaultPrefix), createSDT(module, deps, undefined)] }
|
||||||
|
const result = await callPlugins(payload)
|
||||||
|
if (!result.ok) {
|
||||||
|
emitter.emit('module.activate', resultPayload('failure', module, result.error ?? SernError.PluginFailure))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
//@ts-ignore
|
||||||
|
payload.args[1].state = result.value
|
||||||
|
|
||||||
|
executeModule(emitter, log, payload)
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
99
src/handlers/presence.ts
Normal file
99
src/handlers/presence.ts
Normal file
@@ -0,0 +1,99 @@
|
|||||||
|
import { Presence } from "../core/presences";
|
||||||
|
import { Services } from "../core/ioc";
|
||||||
|
import * as Files from "../core/module-loading";
|
||||||
|
type SetPresence = (conf: Presence.Result) => Promise<unknown>
|
||||||
|
|
||||||
|
const parseConfig = async (conf: Promise<Presence.Result>, setPresence: SetPresence) => {
|
||||||
|
const result = await conf;
|
||||||
|
|
||||||
|
if ('repeat' in result) {
|
||||||
|
const { onRepeat, repeat } = result;
|
||||||
|
// Validate configuration
|
||||||
|
if (repeat === undefined) {
|
||||||
|
throw new Error("repeat option is undefined");
|
||||||
|
}
|
||||||
|
if (onRepeat === undefined) {
|
||||||
|
throw new Error("onRepeat callback is undefined, but repeat exists");
|
||||||
|
}
|
||||||
|
// Initial state
|
||||||
|
let currentState = result;
|
||||||
|
const processState = async (state: typeof currentState) => {
|
||||||
|
try {
|
||||||
|
const result = onRepeat(state);
|
||||||
|
// If it's a promise, await it, otherwise use the value directly
|
||||||
|
return result instanceof Promise ? await result : result;
|
||||||
|
} catch (error) {
|
||||||
|
// TODO process error
|
||||||
|
//console.error(error);
|
||||||
|
return state; // Return previous state on error
|
||||||
|
}
|
||||||
|
};
|
||||||
|
// Handle numeric interval
|
||||||
|
if (typeof repeat === 'number') {
|
||||||
|
// Return a promise that never resolves (or resolves on cleanup)
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
// Immediately return initial state
|
||||||
|
processState(currentState);
|
||||||
|
|
||||||
|
// Set up interval
|
||||||
|
let isProcessing = false;
|
||||||
|
const intervalId = setInterval(() => {
|
||||||
|
// Skip if previous operation is still running
|
||||||
|
if (isProcessing) return;
|
||||||
|
isProcessing = true;
|
||||||
|
|
||||||
|
processState(currentState)
|
||||||
|
.then(newState => {
|
||||||
|
currentState = newState;
|
||||||
|
return setPresence(currentState)
|
||||||
|
})
|
||||||
|
.catch(console.error)
|
||||||
|
.finally(() => {
|
||||||
|
isProcessing = false;
|
||||||
|
});
|
||||||
|
}, repeat);
|
||||||
|
|
||||||
|
// Optional: Return cleanup function
|
||||||
|
return () => clearInterval(intervalId);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// Handle event-based repeat
|
||||||
|
else {
|
||||||
|
const handler = async () => {
|
||||||
|
currentState = await onRepeat(currentState);
|
||||||
|
await setPresence(currentState);
|
||||||
|
};
|
||||||
|
let has_registered = false;
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
const [target, eventName] = repeat;
|
||||||
|
|
||||||
|
// Immediately return initial state
|
||||||
|
processState(currentState);
|
||||||
|
|
||||||
|
// Set up event listener
|
||||||
|
if(!has_registered) {
|
||||||
|
target.addListener(eventName, handler);
|
||||||
|
has_registered=true;
|
||||||
|
}
|
||||||
|
// Optional: Return cleanup function
|
||||||
|
return () => target.removeListener(eventName, handler);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// No repeat configuration, just return the result
|
||||||
|
return setPresence(result);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const presenceHandler = async (path: string, setPresence: SetPresence) => {
|
||||||
|
const presence = await
|
||||||
|
Files.importModule<Presence.Config<(keyof Dependencies)[]>>(path)
|
||||||
|
.then(({ module }) => {
|
||||||
|
//fetch services with the order preserved, passing it to the execute fn
|
||||||
|
const fetchedServices = Services(...module.inject ?? []);
|
||||||
|
return async () => module.execute(...fetchedServices);
|
||||||
|
})
|
||||||
|
|
||||||
|
return parseConfig(presence(), setPresence);
|
||||||
|
|
||||||
|
}
|
||||||
44
src/handlers/ready.ts
Normal file
44
src/handlers/ready.ts
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
import * as Files from '../core/module-loading'
|
||||||
|
import { once } from 'node:events';
|
||||||
|
import { createLookupTable, resultPayload } from '../core/functions';
|
||||||
|
import { CommandType } from '../core/structures/enums';
|
||||||
|
import { Module, SernOptionsData } from '../types/core-modules';
|
||||||
|
import type { UnpackedDependencies, Wrapper } from '../types/utility';
|
||||||
|
import { callInitPlugins } from './event-utils';
|
||||||
|
import { SernAutocompleteData } from '..';
|
||||||
|
|
||||||
|
export default async function(dirs: string | string[], deps : UnpackedDependencies) {
|
||||||
|
const { '@sern/client': client,
|
||||||
|
'@sern/logger': log,
|
||||||
|
'@sern/emitter': sEmitter,
|
||||||
|
'@sern/modules': commands } = deps;
|
||||||
|
log?.info({ message: "Waiting on discord client to be ready..." })
|
||||||
|
await once(client, "ready");
|
||||||
|
log?.info({ message: "Client signaled ready, registering modules" });
|
||||||
|
|
||||||
|
// https://observablehq.com/@ehouais/multiple-promises-as-an-async-generator
|
||||||
|
// possibly optimize to concurrently import modules
|
||||||
|
|
||||||
|
const directories = Array.isArray(dirs) ? dirs : [dirs];
|
||||||
|
|
||||||
|
for (const dir of directories) {
|
||||||
|
for await (const path of Files.readRecursive(dir)) {
|
||||||
|
let { module } = await Files.importModule<Module>(path);
|
||||||
|
const validType = module.type >= CommandType.Text && module.type <= CommandType.ChannelSelect;
|
||||||
|
if(!validType) {
|
||||||
|
throw Error(`Found ${module.name} at ${module.meta.absPath}, which has incorrect \`type\``);
|
||||||
|
}
|
||||||
|
const resultModule = await callInitPlugins(module, deps, true);
|
||||||
|
|
||||||
|
if(module.type === CommandType.Both || module.type === CommandType.Slash) {
|
||||||
|
const options = (Reflect.get(module, 'options') ?? []) as SernOptionsData[];
|
||||||
|
const lookupTable = createLookupTable(options)
|
||||||
|
module.locals['@sern/lookup-table'] = lookupTable;
|
||||||
|
}
|
||||||
|
// FREEZE! no more writing!!
|
||||||
|
commands.set(resultModule.meta.id, Object.freeze(resultModule));
|
||||||
|
sEmitter.emit('module.register', resultPayload('success', resultModule));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sEmitter.emit('modulesLoaded');
|
||||||
|
}
|
||||||
21
src/handlers/tasks.ts
Normal file
21
src/handlers/tasks.ts
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
import * as Files from '../core/module-loading'
|
||||||
|
import { UnpackedDependencies, Wrapper } from "../types/utility";
|
||||||
|
import type { ScheduledTask } from "../types/core-modules";
|
||||||
|
import { relative } from "path";
|
||||||
|
import { fileURLToPath } from "url";
|
||||||
|
|
||||||
|
export const registerTasks = async (tasksDirs: string | string[], deps: UnpackedDependencies) => {
|
||||||
|
const taskManager = deps['@sern/scheduler']
|
||||||
|
|
||||||
|
const directories = Array.isArray(tasksDirs) ? tasksDirs : [tasksDirs];
|
||||||
|
|
||||||
|
for (const dir of directories) {
|
||||||
|
for await (const path of Files.readRecursive(dir)) {
|
||||||
|
let { module } = await Files.importModule<ScheduledTask>(path);
|
||||||
|
//module.name is assigned by Files.importModule<>
|
||||||
|
// the id created for the task is unique
|
||||||
|
const uuid = module.name+"/"+relative(dir,fileURLToPath(path))
|
||||||
|
taskManager.schedule(uuid, module, deps)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
62
src/handlers/user-defined-events.ts
Normal file
62
src/handlers/user-defined-events.ts
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
import { EventType, SernError } from '../core/structures/enums';
|
||||||
|
import { callInitPlugins } from './event-utils'
|
||||||
|
import { EventModule } from '../types/core-modules';
|
||||||
|
import * as Files from '../core/module-loading'
|
||||||
|
import type { UnpackedDependencies } from '../types/utility';
|
||||||
|
import type { Emitter } from '../core/interfaces';
|
||||||
|
import { inspect } from 'util'
|
||||||
|
import { resultPayload } from '../core/functions';
|
||||||
|
import type { Wrapper } from '../'
|
||||||
|
|
||||||
|
export default async function(deps: UnpackedDependencies, wrapper: Wrapper) {
|
||||||
|
const eventModules: EventModule[] = [];
|
||||||
|
const eventDirs = Array.isArray(wrapper.events!) ? wrapper.events! : [wrapper.events!];
|
||||||
|
|
||||||
|
for (const dir of eventDirs) {
|
||||||
|
for await (const path of Files.readRecursive(dir)) {
|
||||||
|
let { module } = await Files.importModule<EventModule>(path);
|
||||||
|
await callInitPlugins(module, deps)
|
||||||
|
eventModules.push(module);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const logger = deps['@sern/logger'], report = deps['@sern/emitter'];
|
||||||
|
for (const module of eventModules) {
|
||||||
|
let source: Emitter;
|
||||||
|
|
||||||
|
switch (module.type) {
|
||||||
|
case EventType.Sern:
|
||||||
|
source=deps['@sern/emitter'];
|
||||||
|
break
|
||||||
|
case EventType.Discord:
|
||||||
|
source=deps['@sern/client'];
|
||||||
|
break
|
||||||
|
case EventType.External:
|
||||||
|
source=deps[module.emitter] as Emitter;
|
||||||
|
break
|
||||||
|
default: throw Error(SernError.InvalidModuleType + ' while creating event handler');
|
||||||
|
}
|
||||||
|
if(!source && typeof source !== 'object') {
|
||||||
|
throw Error(`${source} cannot be constructed into an event listener`)
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!('addListener' in source && 'removeListener' in source)) {
|
||||||
|
throw Error('source must implement Emitter')
|
||||||
|
}
|
||||||
|
const execute = async (...args: any[]) => {
|
||||||
|
try {
|
||||||
|
if(args) {
|
||||||
|
if('once' in module) { source.removeListener(String(module.name!), execute); }
|
||||||
|
await Reflect.apply(module.execute, null, args);
|
||||||
|
}
|
||||||
|
} catch(e) {
|
||||||
|
const err = e instanceof Error ? e : Error(inspect(e, { colors: true }));
|
||||||
|
if(!report.emit('error', resultPayload('failure', module, err))) {
|
||||||
|
logger?.error({ message: inspect(err) });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
source.addListener(String(module.name!), execute)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
67
src/index.ts
67
src/index.ts
@@ -1,18 +1,55 @@
|
|||||||
import SernEmitter from './handler/sernEmitter';
|
export * as Sern from './sern';
|
||||||
|
|
||||||
|
export type {
|
||||||
|
Module,
|
||||||
|
CommandModule,
|
||||||
|
EventModule,
|
||||||
|
BothCommand,
|
||||||
|
ContextMenuMsg,
|
||||||
|
ContextMenuUser,
|
||||||
|
SlashCommand,
|
||||||
|
TextCommand,
|
||||||
|
ButtonCommand,
|
||||||
|
StringSelectCommand,
|
||||||
|
MentionableSelectCommand,
|
||||||
|
UserSelectCommand,
|
||||||
|
ChannelSelectCommand,
|
||||||
|
RoleSelectCommand,
|
||||||
|
ModalSubmitCommand,
|
||||||
|
DiscordEventCommand,
|
||||||
|
SernEventCommand,
|
||||||
|
ExternalEventCommand,
|
||||||
|
CommandModuleDefs,
|
||||||
|
EventModuleDefs,
|
||||||
|
SernAutocompleteData,
|
||||||
|
SernOptionsData,
|
||||||
|
SernSubCommandData,
|
||||||
|
SernSubCommandGroupData,
|
||||||
|
SDT,
|
||||||
|
ScheduledTask
|
||||||
|
} from './types/core-modules';
|
||||||
|
|
||||||
|
export type {
|
||||||
|
PluginResult,
|
||||||
|
InitPlugin,
|
||||||
|
ControlPlugin,
|
||||||
|
Plugin,
|
||||||
|
AnyPlugin,
|
||||||
|
} from './types/core-plugin';
|
||||||
|
|
||||||
|
|
||||||
|
export type { Payload, SernEventsMapping, Wrapper } from './types/utility';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
eventModule,
|
|
||||||
commandModule,
|
commandModule,
|
||||||
EventExecutable,
|
eventModule,
|
||||||
CommandExecutable,
|
|
||||||
controller,
|
|
||||||
discordEvent,
|
discordEvent,
|
||||||
} from './handler/sern';
|
scheduledTask
|
||||||
export * as Sern from './handler/sern';
|
} from './core/modules';
|
||||||
export * from './types/handler';
|
|
||||||
export * from './types/module';
|
export * from './core/presences'
|
||||||
export * from './types/plugin';
|
export * from './core/interfaces'
|
||||||
export * from './handler/structures';
|
export * from './core/plugin';
|
||||||
export * from './handler/plugins';
|
export { CommandType, PluginType, PayloadType, EventType } from './core/structures/enums';
|
||||||
export * from './handler/contracts';
|
export { Context } from './core/structures/context';
|
||||||
export { SernEmitter };
|
export { type CoreDependencies, makeDependencies, single, transient, Service, Services } from './core/ioc';
|
||||||
export * from './handler/dependencies';
|
|
||||||
|
|||||||
80
src/sern.ts
Normal file
80
src/sern.ts
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
//side effect: global container
|
||||||
|
import { useContainerRaw } from '@sern/ioc/global';
|
||||||
|
// set asynchronous capturing of errors
|
||||||
|
import events from 'node:events'
|
||||||
|
events.captureRejections = true;
|
||||||
|
|
||||||
|
import callsites from 'callsites';
|
||||||
|
import * as Files from './core/module-loading';
|
||||||
|
import eventsHandler from './handlers/user-defined-events';
|
||||||
|
import ready from './handlers/ready';
|
||||||
|
import { interactionHandler } from './handlers/interaction';
|
||||||
|
import { messageHandler } from './handlers/message'
|
||||||
|
import { presenceHandler } from './handlers/presence';
|
||||||
|
import type { Payload, UnpackedDependencies, Wrapper } from './types/utility';
|
||||||
|
import type { Presence} from './core/presences';
|
||||||
|
import { registerTasks } from './handlers/tasks';
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
* @param maybeWrapper Options to pass into sern.
|
||||||
|
* Function to start the handler up
|
||||||
|
* @example
|
||||||
|
* ```ts title="src/index.ts"
|
||||||
|
* Sern.init({
|
||||||
|
* commands: 'dist/commands',
|
||||||
|
* events: 'dist/events',
|
||||||
|
* })
|
||||||
|
* ```
|
||||||
|
*/
|
||||||
|
|
||||||
|
export function init(maybeWrapper: Wrapper = { commands: "./dist/commands" }) {
|
||||||
|
const startTime = performance.now();
|
||||||
|
const deps = useContainerRaw().deps<UnpackedDependencies>();
|
||||||
|
if (maybeWrapper.events !== undefined) {
|
||||||
|
eventsHandler(deps, maybeWrapper)
|
||||||
|
.then(() => {
|
||||||
|
deps['@sern/logger']?.info({ message: "Events registered" });
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
deps['@sern/logger']?.info({ message: "No events registered" });
|
||||||
|
}
|
||||||
|
|
||||||
|
// autohandle errors that occur in modules.
|
||||||
|
// convenient for rapid iteration
|
||||||
|
if(maybeWrapper.handleModuleErrors) {
|
||||||
|
if(!deps['@sern/logger']) {
|
||||||
|
throw Error('A logger is required to handleModuleErrors.\n A default logger is already supplied!');
|
||||||
|
}
|
||||||
|
deps['@sern/logger']?.info({ 'message': 'handleModuleErrors enabled' })
|
||||||
|
deps['@sern/emitter'].addListener('error', (payload: Payload) => {
|
||||||
|
if(payload.type === 'failure') {
|
||||||
|
deps['@sern/logger']?.error({ message: payload.reason })
|
||||||
|
} else {
|
||||||
|
deps['@sern/logger']?.warning({ message: "error event should only have payloads of 'failure'" });
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
const initCallsite = callsites()[1].getFileName();
|
||||||
|
const presencePath = Files.shouldHandle(initCallsite!, "presence");
|
||||||
|
//Ready event: load all modules and when finished, time should be taken and logged
|
||||||
|
ready(maybeWrapper.commands, deps)
|
||||||
|
.then(() => {
|
||||||
|
const time = ((performance.now() - startTime) / 1000).toFixed(2);
|
||||||
|
deps['@sern/logger']?.info({ message: `sern: registered in ${time} s` });
|
||||||
|
if(presencePath.exists) {
|
||||||
|
const setPresence = async (p: Presence.Result) => {
|
||||||
|
return deps['@sern/client'].user?.setPresence(p);
|
||||||
|
}
|
||||||
|
presenceHandler(presencePath.path, setPresence);
|
||||||
|
}
|
||||||
|
if(maybeWrapper.tasks) {
|
||||||
|
registerTasks(maybeWrapper.tasks, deps);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(err => { throw err });
|
||||||
|
interactionHandler(deps, maybeWrapper.defaultPrefix);
|
||||||
|
messageHandler(deps, maybeWrapper.defaultPrefix)
|
||||||
|
}
|
||||||
461
src/types/core-modules.ts
Normal file
461
src/types/core-modules.ts
Normal file
@@ -0,0 +1,461 @@
|
|||||||
|
import type {
|
||||||
|
APIApplicationCommandBasicOption,
|
||||||
|
APIApplicationCommandOptionBase,
|
||||||
|
ApplicationCommandOptionType,
|
||||||
|
BaseApplicationCommandOptionsData,
|
||||||
|
AutocompleteInteraction,
|
||||||
|
ButtonInteraction,
|
||||||
|
ChannelSelectMenuInteraction,
|
||||||
|
ClientEvents,
|
||||||
|
MentionableSelectMenuInteraction,
|
||||||
|
MessageContextMenuCommandInteraction,
|
||||||
|
ModalSubmitInteraction,
|
||||||
|
RoleSelectMenuInteraction,
|
||||||
|
StringSelectMenuInteraction,
|
||||||
|
UserContextMenuCommandInteraction,
|
||||||
|
UserSelectMenuInteraction,
|
||||||
|
ChatInputCommandInteraction,
|
||||||
|
} from 'discord.js';
|
||||||
|
import type { CommandType, EventType } from '../core/structures/enums';
|
||||||
|
import { Context } from '../core/structures/context'
|
||||||
|
import { ControlPlugin, InitPlugin, Plugin } from './core-plugin';
|
||||||
|
import { Awaitable, SernEventsMapping, UnpackedDependencies, Dictionary } from './utility';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SDT (State, Dependencies, Type) interface represents the core data structure
|
||||||
|
* passed through the plugin pipeline to command modules.
|
||||||
|
*
|
||||||
|
* @interface SDT
|
||||||
|
* @template TState - Type parameter for the state object's structure
|
||||||
|
* @template TDeps - Type parameter for dependencies interface
|
||||||
|
*
|
||||||
|
* @property {Record<string, unknown>} state - Accumulated state data passed between plugins
|
||||||
|
* @property {TDeps} deps - Instance of application dependencies
|
||||||
|
* @property {CommandType} type - Command type identifier
|
||||||
|
* @property {string} [params] - Optional parameters passed to the command
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // Example of a plugin using SDT
|
||||||
|
* const loggingPlugin = CommandControlPlugin((ctx, sdt: SDT) => {
|
||||||
|
* console.log(`User ${ctx.user.id} executed command`);
|
||||||
|
* return controller.next({ 'logging/timestamp': Date.now() });
|
||||||
|
* });
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // Example of state accumulation through multiple plugins
|
||||||
|
* const plugin1 = CommandControlPlugin((ctx, sdt: SDT) => {
|
||||||
|
* return controller.next({ 'plugin1/data': 'value1' });
|
||||||
|
* });
|
||||||
|
*
|
||||||
|
* const plugin2 = CommandControlPlugin((ctx, sdt: SDT) => {
|
||||||
|
* // Access previous state
|
||||||
|
* const prevData = sdt.state['plugin1/data'];
|
||||||
|
* return controller.next({ 'plugin2/data': 'value2' });
|
||||||
|
* });
|
||||||
|
*
|
||||||
|
* @remarks
|
||||||
|
* - State is immutable and accumulated through the plugin chain
|
||||||
|
* - Keys in state should be namespaced to avoid collisions
|
||||||
|
* - Dependencies are injected and available throughout the pipeline
|
||||||
|
* - Type information helps plugins make type-safe decisions
|
||||||
|
*
|
||||||
|
* @see {@link CommandControlPlugin} for plugin implementation
|
||||||
|
* @see {@link CommandType} for available command types
|
||||||
|
* @see {@link Dependencies} for [dependency injection](https://sern.dev/v4/reference/dependencies/) interface
|
||||||
|
*/
|
||||||
|
export type SDT = {
|
||||||
|
/**
|
||||||
|
* Accumulated state passed between plugins in the pipeline.
|
||||||
|
* Each plugin can add to or modify this state using controller.next().
|
||||||
|
*
|
||||||
|
* @type {Record<string, unknown>}
|
||||||
|
* @example
|
||||||
|
* // Good: Namespaced state key
|
||||||
|
* { 'myPlugin/userData': { id: '123', name: 'User' } }
|
||||||
|
*
|
||||||
|
* // Avoid: Non-namespaced keys that might collide
|
||||||
|
* { userData: { id: '123' } }
|
||||||
|
*/
|
||||||
|
state: Record<string, unknown>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Application dependencies available to plugins and command modules.
|
||||||
|
* Typically includes services, configurations, and utilities.
|
||||||
|
*
|
||||||
|
* @type {Dependencies}
|
||||||
|
*/
|
||||||
|
deps: Dependencies;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Identifies the type of command being processed.
|
||||||
|
* Used by plugins to apply type-specific logic.
|
||||||
|
*
|
||||||
|
* @type {CommandType}
|
||||||
|
*/
|
||||||
|
type: CommandType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Optional parameters passed to the command.
|
||||||
|
* May contain additional configuration or runtime data.
|
||||||
|
*
|
||||||
|
* @type {string}
|
||||||
|
* @optional
|
||||||
|
*/
|
||||||
|
params?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A copy of the current module that the plugin is running in.
|
||||||
|
*/
|
||||||
|
module: { name: string;
|
||||||
|
description: string;
|
||||||
|
meta: Dictionary;
|
||||||
|
locals: Dictionary; }
|
||||||
|
};
|
||||||
|
|
||||||
|
export type Processed<T> = T & { name: string; description: string };
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
export interface Module {
|
||||||
|
type: CommandType | EventType;
|
||||||
|
name?: string;
|
||||||
|
onEvent: ControlPlugin[];
|
||||||
|
plugins: InitPlugin[];
|
||||||
|
description?: string;
|
||||||
|
meta: {
|
||||||
|
id: string;
|
||||||
|
absPath: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Custom data storage object for module-specific information.
|
||||||
|
* Plugins and module code can use this to store and retrieve metadata,
|
||||||
|
* configuration, or any other module-specific information.
|
||||||
|
*
|
||||||
|
* @type {Dictionary}
|
||||||
|
* @description A key-value store that allows plugins and module code to persist
|
||||||
|
* data at the module level. This is especially useful for InitPlugins that need
|
||||||
|
* to attach metadata or configuration to modules.
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // In a plugin
|
||||||
|
* module.locals.registrationDate = Date.now();
|
||||||
|
* module.locals.version = "1.0.0";
|
||||||
|
* module.locals.permissions = ["ADMIN", "MODERATE"];
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // In module execution
|
||||||
|
* console.log(`Command registered on: ${new Date(module.locals.registrationDate)}`);
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // Storing localization data
|
||||||
|
* module.locals.translations = {
|
||||||
|
* en: "Hello",
|
||||||
|
* es: "Hola",
|
||||||
|
* fr: "Bonjour"
|
||||||
|
* };
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // Storing command metadata
|
||||||
|
* module.locals.metadata = {
|
||||||
|
* category: "admin",
|
||||||
|
* cooldown: 5000,
|
||||||
|
* requiresPermissions: true
|
||||||
|
* };
|
||||||
|
*
|
||||||
|
* @remarks
|
||||||
|
* - The locals object is initialized as an empty object ({}) by default
|
||||||
|
* - Keys should be namespaced to avoid collisions between plugins
|
||||||
|
* - Values can be of any type
|
||||||
|
* - Data persists for the lifetime of the module
|
||||||
|
* - Commonly used by InitPlugins during module initialization
|
||||||
|
*
|
||||||
|
* @best-practices
|
||||||
|
* 1. Namespace your keys to avoid conflicts:
|
||||||
|
* ```typescript
|
||||||
|
* module.locals['myPlugin:data'] = value;
|
||||||
|
* ```
|
||||||
|
*
|
||||||
|
* 2. Document the data structure you're storing:
|
||||||
|
* ```typescript
|
||||||
|
* interface MyPluginData {
|
||||||
|
* version: string;
|
||||||
|
* timestamp: number;
|
||||||
|
* }
|
||||||
|
* module.locals['myPlugin:data'] = {
|
||||||
|
* version: '1.0.0',
|
||||||
|
* timestamp: Date.now()
|
||||||
|
* } as MyPluginData;
|
||||||
|
* ```
|
||||||
|
*
|
||||||
|
* 3. Use type-safe accessors when possible:
|
||||||
|
* ```typescript
|
||||||
|
* const getPluginData = (module: Module): MyPluginData =>
|
||||||
|
* module.locals['myPlugin:data'];
|
||||||
|
* ```
|
||||||
|
*/
|
||||||
|
locals: Dictionary;
|
||||||
|
execute(...args: any[]): Awaitable<any>;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
export interface SernEventCommand<T extends keyof SernEventsMapping = keyof SernEventsMapping>
|
||||||
|
extends Module {
|
||||||
|
name?: T;
|
||||||
|
type: EventType.Sern;
|
||||||
|
execute(...args: SernEventsMapping[T]): Awaitable<unknown>;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
export interface ExternalEventCommand extends Module {
|
||||||
|
name?: string;
|
||||||
|
emitter: keyof Dependencies;
|
||||||
|
type: EventType.External;
|
||||||
|
execute(...args: unknown[]): Awaitable<unknown>;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
export interface ContextMenuUser extends Module {
|
||||||
|
type: CommandType.CtxUser;
|
||||||
|
execute: (ctx: UserContextMenuCommandInteraction, tbd: SDT) => Awaitable<unknown>;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
export interface ContextMenuMsg extends Module {
|
||||||
|
type: CommandType.CtxMsg;
|
||||||
|
execute: (ctx: MessageContextMenuCommandInteraction, tbd: SDT) => Awaitable<unknown>;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
export interface ButtonCommand extends Module {
|
||||||
|
type: CommandType.Button;
|
||||||
|
execute: (ctx: ButtonInteraction, tbd: SDT) => Awaitable<unknown>;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
export interface StringSelectCommand extends Module {
|
||||||
|
type: CommandType.StringSelect;
|
||||||
|
execute: (ctx: StringSelectMenuInteraction, tbd: SDT) => Awaitable<unknown>;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
export interface ChannelSelectCommand extends Module {
|
||||||
|
type: CommandType.ChannelSelect;
|
||||||
|
execute: (ctx: ChannelSelectMenuInteraction, tbd: SDT) => Awaitable<unknown>;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
export interface RoleSelectCommand extends Module {
|
||||||
|
type: CommandType.RoleSelect;
|
||||||
|
execute: (ctx: RoleSelectMenuInteraction, tbd: SDT) => Awaitable<unknown>;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
export interface MentionableSelectCommand extends Module {
|
||||||
|
type: CommandType.MentionableSelect;
|
||||||
|
execute: (ctx: MentionableSelectMenuInteraction, tbd: SDT) => Awaitable<unknown>;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
export interface UserSelectCommand extends Module {
|
||||||
|
type: CommandType.UserSelect;
|
||||||
|
execute: (ctx: UserSelectMenuInteraction, tbd: SDT) => Awaitable<unknown>;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
export interface ModalSubmitCommand extends Module {
|
||||||
|
type: CommandType.Modal;
|
||||||
|
execute: (ctx: ModalSubmitInteraction, tbd: SDT) => Awaitable<unknown>;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
export interface AutocompleteCommand {
|
||||||
|
onEvent?: ControlPlugin[];
|
||||||
|
execute: (ctx: AutocompleteInteraction, tbd: SDT) => Awaitable<unknown>;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
export interface DiscordEventCommand<T extends keyof ClientEvents = keyof ClientEvents>
|
||||||
|
extends Module {
|
||||||
|
name?: T;
|
||||||
|
type: EventType.Discord;
|
||||||
|
execute(...args: ClientEvents[T]): Awaitable<unknown>;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
* @see @link {commandModule} to create a text command
|
||||||
|
*/
|
||||||
|
export interface TextCommand extends Module {
|
||||||
|
type: CommandType.Text;
|
||||||
|
execute: (ctx: Context & { get options(): string[] }, tbd: SDT) => Awaitable<unknown>;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
* @see @link {commandModule} to create a slash command
|
||||||
|
*/
|
||||||
|
export interface SlashCommand extends Module {
|
||||||
|
type: CommandType.Slash;
|
||||||
|
description: string;
|
||||||
|
options?: SernOptionsData[];
|
||||||
|
execute: (ctx: Context & { get options(): ChatInputCommandInteraction['options']}, tbd: SDT) => Awaitable<unknown>;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
* @see @link {commandModule} to create a both command
|
||||||
|
*/
|
||||||
|
export interface BothCommand extends Module {
|
||||||
|
type: CommandType.Both;
|
||||||
|
description: string;
|
||||||
|
options?: SernOptionsData[];
|
||||||
|
execute: (ctx: Context, tbd: SDT) => Awaitable<unknown>;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
export type EventModule = DiscordEventCommand | SernEventCommand | ExternalEventCommand;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
export type CommandModule =
|
||||||
|
| TextCommand
|
||||||
|
| SlashCommand
|
||||||
|
| BothCommand
|
||||||
|
| ContextMenuUser
|
||||||
|
| ContextMenuMsg
|
||||||
|
| ButtonCommand
|
||||||
|
| StringSelectCommand
|
||||||
|
| MentionableSelectCommand
|
||||||
|
| UserSelectCommand
|
||||||
|
| ChannelSelectCommand
|
||||||
|
| RoleSelectCommand
|
||||||
|
| ModalSubmitCommand;
|
||||||
|
|
||||||
|
//https://stackoverflow.com/questions/64092736/alternative-to-switch-statement-for-typescript-discriminated-union
|
||||||
|
// Explicit Module Definitions for mapping
|
||||||
|
export interface CommandModuleDefs {
|
||||||
|
[CommandType.Text]: TextCommand;
|
||||||
|
[CommandType.Slash]: SlashCommand;
|
||||||
|
[CommandType.Both]: BothCommand;
|
||||||
|
[CommandType.CtxMsg]: ContextMenuMsg;
|
||||||
|
[CommandType.CtxUser]: ContextMenuUser;
|
||||||
|
[CommandType.Button]: ButtonCommand;
|
||||||
|
[CommandType.StringSelect]: StringSelectCommand;
|
||||||
|
[CommandType.RoleSelect]: RoleSelectCommand;
|
||||||
|
[CommandType.ChannelSelect]: ChannelSelectCommand;
|
||||||
|
[CommandType.MentionableSelect]: MentionableSelectCommand;
|
||||||
|
[CommandType.UserSelect]: UserSelectCommand;
|
||||||
|
[CommandType.Modal]: ModalSubmitCommand;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface EventModuleDefs<T extends keyof ClientEvents = keyof ClientEvents> {
|
||||||
|
[EventType.Sern]: SernEventCommand;
|
||||||
|
[EventType.Discord]: DiscordEventCommand<T>;
|
||||||
|
[EventType.External]: ExternalEventCommand;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SernAutocompleteData
|
||||||
|
extends Omit<BaseApplicationCommandOptionsData, 'autocomplete'> {
|
||||||
|
autocomplete: true;
|
||||||
|
type:
|
||||||
|
| ApplicationCommandOptionType.String
|
||||||
|
| ApplicationCommandOptionType.Number
|
||||||
|
| ApplicationCommandOptionType.Integer;
|
||||||
|
command: AutocompleteCommand;
|
||||||
|
}
|
||||||
|
|
||||||
|
type CommandModuleNoPlugins = {
|
||||||
|
[T in CommandType]: Omit<CommandModuleDefs[T], 'plugins' | 'onEvent' | 'meta' | 'locals'>;
|
||||||
|
};
|
||||||
|
type EventModulesNoPlugins<K extends keyof ClientEvents = keyof ClientEvents> = {
|
||||||
|
[T in EventType]: Omit<EventModuleDefs<K>[T], 'plugins' | 'onEvent' | 'meta' | 'locals'> ;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type InputEvent<K extends keyof ClientEvents = keyof ClientEvents> = {
|
||||||
|
[T in EventType]: EventModulesNoPlugins<K>[T] & {
|
||||||
|
once?: boolean;
|
||||||
|
plugins?: InitPlugin[]
|
||||||
|
};
|
||||||
|
}[EventType];
|
||||||
|
|
||||||
|
export type InputCommand = {
|
||||||
|
[T in CommandType]: CommandModuleNoPlugins[T] & {
|
||||||
|
plugins?: Plugin[];
|
||||||
|
};
|
||||||
|
}[CommandType];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see @link {https://sern.dev/v4/reference/autocomplete/}
|
||||||
|
* Type that replaces autocomplete with {@link SernAutocompleteData}
|
||||||
|
*/
|
||||||
|
export type SernOptionsData =
|
||||||
|
| SernSubCommandData
|
||||||
|
| SernSubCommandGroupData
|
||||||
|
| APIApplicationCommandBasicOption
|
||||||
|
| SernAutocompleteData;
|
||||||
|
|
||||||
|
export interface SernSubCommandData
|
||||||
|
extends APIApplicationCommandOptionBase<ApplicationCommandOptionType.Subcommand> {
|
||||||
|
type: ApplicationCommandOptionType.Subcommand;
|
||||||
|
options?: SernOptionsData[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SernSubCommandGroupData extends BaseApplicationCommandOptionsData {
|
||||||
|
type: ApplicationCommandOptionType.SubcommandGroup;
|
||||||
|
options?: SernSubCommandData[];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 4.0.0
|
||||||
|
*/
|
||||||
|
export interface ScheduledTaskContext {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* the uuid of the current task being run
|
||||||
|
*/
|
||||||
|
id: string;
|
||||||
|
/**
|
||||||
|
* the last time this task was executed. If this is the first time, it is null.
|
||||||
|
*/
|
||||||
|
lastTimeExecution: Date | null;
|
||||||
|
/**
|
||||||
|
* The next time this task will be executed.
|
||||||
|
*/
|
||||||
|
nextTimeExecution: Date | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
//name subject to change
|
||||||
|
interface TaskAttrs {
|
||||||
|
/**
|
||||||
|
* An object of dependencies configured in `makeDependencies`
|
||||||
|
*/
|
||||||
|
deps: UnpackedDependencies
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @since 4.0.0
|
||||||
|
*/
|
||||||
|
export interface ScheduledTask {
|
||||||
|
name?: string;
|
||||||
|
trigger: string | Date;
|
||||||
|
timezone?: string;
|
||||||
|
execute(tasks: ScheduledTaskContext, sdt: TaskAttrs): Awaitable<void>
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
72
src/types/core-plugin.ts
Normal file
72
src/types/core-plugin.ts
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
/*
|
||||||
|
* Plugins can be inserted on all commands and are emitted
|
||||||
|
*
|
||||||
|
* 1. On ready event, where all commands are loaded.
|
||||||
|
* 2. On corresponding observable (when command triggers)
|
||||||
|
*
|
||||||
|
* The goal of plugins is to organize commands and
|
||||||
|
* provide extensions to repetitive patterns
|
||||||
|
* examples include refreshing modules,
|
||||||
|
* categorizing commands, cool-downs, permissions, etc.
|
||||||
|
* Plugins are reminiscent of middleware in express.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import type {
|
||||||
|
Module,
|
||||||
|
Processed,
|
||||||
|
SDT,
|
||||||
|
} from './core-modules';
|
||||||
|
import type { Awaitable } from './utility';
|
||||||
|
import type { CommandType, PluginType } from '../core/structures/enums'
|
||||||
|
import type { Context } from '../core/structures/context'
|
||||||
|
import type {
|
||||||
|
ButtonInteraction,
|
||||||
|
ChannelSelectMenuInteraction,
|
||||||
|
ChatInputCommandInteraction,
|
||||||
|
MentionableSelectMenuInteraction,
|
||||||
|
MessageContextMenuCommandInteraction,
|
||||||
|
ModalSubmitInteraction,
|
||||||
|
RoleSelectMenuInteraction,
|
||||||
|
StringSelectMenuInteraction,
|
||||||
|
UserContextMenuCommandInteraction,
|
||||||
|
UserSelectMenuInteraction,
|
||||||
|
} from 'discord.js';
|
||||||
|
import { Result } from '../core/structures/result';
|
||||||
|
|
||||||
|
export type PluginResult = Awaitable<Result<Record<string,unknown>|undefined, string|undefined>>;
|
||||||
|
export interface InitArgs<T extends Processed<Module> = Processed<Module>> {
|
||||||
|
module: T;
|
||||||
|
absPath: string;
|
||||||
|
deps: Dependencies
|
||||||
|
}
|
||||||
|
export interface Plugin<Args extends any[] = any[]> {
|
||||||
|
type: PluginType;
|
||||||
|
execute: (...args: Args) => PluginResult;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface InitPlugin<Args extends any[] = any[]> extends Plugin<Args> {
|
||||||
|
type: PluginType.Init;
|
||||||
|
execute: (...args: Args) => PluginResult;
|
||||||
|
}
|
||||||
|
export interface ControlPlugin<Args extends any[] = any[]> extends Plugin<Args> {
|
||||||
|
type: PluginType.Control;
|
||||||
|
}
|
||||||
|
|
||||||
|
export type AnyPlugin = ControlPlugin | InitPlugin<[InitArgs<Processed<Module>>]>;
|
||||||
|
|
||||||
|
export type CommandArgs<I extends CommandType = CommandType> = CommandArgsMatrix[I]
|
||||||
|
|
||||||
|
interface CommandArgsMatrix {
|
||||||
|
[CommandType.Text]: [Context & { get options(): string[]}, SDT];
|
||||||
|
[CommandType.Slash]: [Context & { get options(): ChatInputCommandInteraction['options']}, SDT];
|
||||||
|
[CommandType.Both]: [Context, SDT];
|
||||||
|
[CommandType.CtxMsg]: [MessageContextMenuCommandInteraction, SDT];
|
||||||
|
[CommandType.CtxUser]: [UserContextMenuCommandInteraction, SDT];
|
||||||
|
[CommandType.Button]: [ButtonInteraction, SDT];
|
||||||
|
[CommandType.StringSelect]: [StringSelectMenuInteraction, SDT];
|
||||||
|
[CommandType.RoleSelect]: [RoleSelectMenuInteraction, SDT];
|
||||||
|
[CommandType.ChannelSelect]: [ChannelSelectMenuInteraction, SDT];
|
||||||
|
[CommandType.MentionableSelect]: [MentionableSelectMenuInteraction, SDT];
|
||||||
|
[CommandType.UserSelect]: [UserSelectMenuInteraction, SDT];
|
||||||
|
[CommandType.Modal]: [ModalSubmitInteraction, SDT];
|
||||||
|
}
|
||||||
27
src/types/dependencies.d.ts
vendored
Normal file
27
src/types/dependencies.d.ts
vendored
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
// This file serves an the interface for developers to augment the Dependencies interface
|
||||||
|
// Developers will have to create a new file dependencies.d.ts in the root directory, augmenting
|
||||||
|
// this type
|
||||||
|
|
||||||
|
/* eslint-disable @typescript-eslint/consistent-type-imports */
|
||||||
|
|
||||||
|
import { CoreDependencies } from '../core/ioc';
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
/**
|
||||||
|
* discord.js client.
|
||||||
|
* '@sern/client': Client
|
||||||
|
* sern emitter listens to events that happen throughout
|
||||||
|
* the handler. some include module.register, module.activate.
|
||||||
|
* '@sern/emitter': Contracts.Emitter;
|
||||||
|
* An error handler which is the final step before
|
||||||
|
* the sern process actually crashes.
|
||||||
|
'@sern/errors': Contracts.ErrorHandling;
|
||||||
|
* Optional logger. Performs ... logging
|
||||||
|
* '@sern/logger'?: Contracts.Logging;
|
||||||
|
* Readonly module store. sern stores these
|
||||||
|
* by module.meta.id -> Module
|
||||||
|
* '@sern/modules': Map<string, Module>;
|
||||||
|
*/
|
||||||
|
interface Dependencies extends CoreDependencies {}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -1,71 +0,0 @@
|
|||||||
import type { CommandInteractionOptionResolver } from 'discord.js';
|
|
||||||
import type { PayloadType } from '../handler/structures/enums';
|
|
||||||
import type { InteractionReplyOptions, MessageReplyOptions } from 'discord.js';
|
|
||||||
import type { EventEmitter } from 'events';
|
|
||||||
import type { CommandModule, EventModule, AnyModule } from './module';
|
|
||||||
import type { UnpackFunction } from 'iti';
|
|
||||||
import type { ErrorHandling, Logging, ModuleManager } from '../handler/contracts';
|
|
||||||
import type { ModuleStore } from '../handler/structures/moduleStore';
|
|
||||||
import type SernEmitter from '../handler/sernEmitter';
|
|
||||||
import type { Container } from 'iti';
|
|
||||||
// Thanks to @kelsny
|
|
||||||
export type ParseType<T> = {
|
|
||||||
[K in keyof T]: T[K] extends unknown ? [k: K, args: T[K]] : never;
|
|
||||||
}[keyof T];
|
|
||||||
|
|
||||||
export type Args = ParseType<{ text: string[]; slash: SlashOptions }>;
|
|
||||||
|
|
||||||
export type SlashOptions = Omit<CommandInteractionOptionResolver, 'getMessage' | 'getFocused'>;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* After modules are transformed, name and description are given default values if none
|
|
||||||
* are provided to Module. This type represents that transformation
|
|
||||||
*/
|
|
||||||
export type AnyDefinedModule = Processed<CommandModule | EventModule>;
|
|
||||||
export type Payload =
|
|
||||||
| { type: PayloadType.Success; module: AnyModule }
|
|
||||||
| { type: PayloadType.Failure; module?: AnyModule; reason: string | Error }
|
|
||||||
| { type: PayloadType.Warning; reason: string };
|
|
||||||
export type SernEventsMapping = {
|
|
||||||
'module.register': [Payload];
|
|
||||||
'module.activate': [Payload];
|
|
||||||
error: [Payload];
|
|
||||||
warning: [Payload];
|
|
||||||
};
|
|
||||||
export type LogPayload<T = unknown> = { message: T };
|
|
||||||
export type Singleton<T> = () => T;
|
|
||||||
export type Transient<T> = () => () => T;
|
|
||||||
|
|
||||||
export interface Dependencies {
|
|
||||||
'@sern/client': Singleton<EventEmitter>;
|
|
||||||
'@sern/logger'?: Singleton<Logging>;
|
|
||||||
'@sern/emitter': Singleton<SernEmitter>;
|
|
||||||
'@sern/store': Singleton<ModuleStore>;
|
|
||||||
'@sern/modules': Singleton<ModuleManager>;
|
|
||||||
'@sern/errors': Singleton<ErrorHandling>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export type ReplyOptions =
|
|
||||||
| string
|
|
||||||
| Omit<InteractionReplyOptions, 'fetchReply'>
|
|
||||||
| MessageReplyOptions;
|
|
||||||
//prettier-ignore
|
|
||||||
export type MapDeps<Deps extends Dependencies, T extends readonly unknown[]> = T extends [
|
|
||||||
infer First extends keyof Deps,
|
|
||||||
...infer Rest extends readonly unknown[],
|
|
||||||
]
|
|
||||||
? [
|
|
||||||
UnpackFunction<Deps[First]>,
|
|
||||||
...(MapDeps<Deps, Rest> extends [never] ? [] : MapDeps<Deps, Rest>),
|
|
||||||
]
|
|
||||||
: [never];
|
|
||||||
//Basically, '@sern/client' | '@sern/store' | '@sern/modules' | '@sern/error' | '@sern/emitter' will be provided defaults, and you can exclude the rest
|
|
||||||
export type OptionalDependencies = '@sern/logger';
|
|
||||||
export type Processed<T> = T & { name: string; description: string };
|
|
||||||
export type Deprecated<Message extends string> = [never, Message];
|
|
||||||
export interface DependencyConfiguration<T extends Dependencies> {
|
|
||||||
exclude?: Set<OptionalDependencies>;
|
|
||||||
build: (root: Container<Omit<Dependencies, '@sern/client'>, {}>) => Container<T, {}>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export type ImportPayload<T> = { module: T; absPath: string };
|
|
||||||
@@ -1,228 +0,0 @@
|
|||||||
import type {
|
|
||||||
ApplicationCommandAttachmentOption,
|
|
||||||
ApplicationCommandChannelOptionData,
|
|
||||||
ApplicationCommandChoicesData,
|
|
||||||
ApplicationCommandNonOptionsData,
|
|
||||||
ApplicationCommandNumericOptionData,
|
|
||||||
ApplicationCommandOptionData,
|
|
||||||
ApplicationCommandOptionType,
|
|
||||||
ApplicationCommandSubCommandData,
|
|
||||||
ApplicationCommandSubGroupData,
|
|
||||||
AutocompleteInteraction,
|
|
||||||
Awaitable,
|
|
||||||
BaseApplicationCommandOptionsData,
|
|
||||||
ButtonInteraction,
|
|
||||||
MessageContextMenuCommandInteraction,
|
|
||||||
ModalSubmitInteraction,
|
|
||||||
UserContextMenuCommandInteraction,
|
|
||||||
ChannelSelectMenuInteraction,
|
|
||||||
MentionableSelectMenuInteraction,
|
|
||||||
RoleSelectMenuInteraction,
|
|
||||||
StringSelectMenuInteraction,
|
|
||||||
UserSelectMenuInteraction,
|
|
||||||
} from 'discord.js';
|
|
||||||
import { CommandType } from '../handler/structures/enums';
|
|
||||||
import type { Args, SlashOptions } from './handler';
|
|
||||||
import type Context from '../handler/structures/context';
|
|
||||||
import type { InitPlugin, ControlPlugin } from './plugin';
|
|
||||||
import { EventType } from '../handler/structures/enums';
|
|
||||||
import type { AnyCommandPlugin, AnyEventPlugin } from './plugin';
|
|
||||||
import type { SernEventsMapping } from './handler';
|
|
||||||
import type { ClientEvents } from 'discord.js';
|
|
||||||
|
|
||||||
export interface Module {
|
|
||||||
type: CommandType | EventType;
|
|
||||||
name?: string;
|
|
||||||
onEvent: ControlPlugin[];
|
|
||||||
plugins: InitPlugin[];
|
|
||||||
description?: string;
|
|
||||||
execute: (...args: any[]) => Awaitable<any>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface TextCommand extends Module {
|
|
||||||
type: CommandType.Text;
|
|
||||||
alias?: string[];
|
|
||||||
execute: (ctx: Context, args: ['text', string[]]) => Awaitable<unknown>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface SlashCommand extends Module {
|
|
||||||
type: CommandType.Slash;
|
|
||||||
description: string;
|
|
||||||
options?: SernOptionsData[];
|
|
||||||
execute: (ctx: Context, args: ['slash', SlashOptions]) => Awaitable<unknown>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface BothCommand extends Module {
|
|
||||||
type: CommandType.Both;
|
|
||||||
alias?: string[];
|
|
||||||
description: string;
|
|
||||||
options?: SernOptionsData[];
|
|
||||||
execute: (ctx: Context, args: Args) => Awaitable<unknown>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ContextMenuUser extends Module {
|
|
||||||
type: CommandType.CtxUser;
|
|
||||||
execute: (ctx: UserContextMenuCommandInteraction) => Awaitable<unknown>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ContextMenuMsg extends Module {
|
|
||||||
type: CommandType.CtxMsg;
|
|
||||||
execute: (ctx: MessageContextMenuCommandInteraction) => Awaitable<unknown>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ButtonCommand extends Module {
|
|
||||||
type: CommandType.Button;
|
|
||||||
execute: (ctx: ButtonInteraction) => Awaitable<unknown>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface StringSelectCommand extends Module {
|
|
||||||
type: CommandType.StringSelect;
|
|
||||||
execute: (ctx: StringSelectMenuInteraction) => Awaitable<unknown>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ChannelSelectCommand extends Module {
|
|
||||||
type: CommandType.ChannelSelect;
|
|
||||||
execute: (ctx: ChannelSelectMenuInteraction) => Awaitable<unknown>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface RoleSelectCommand extends Module {
|
|
||||||
type: CommandType.RoleSelect;
|
|
||||||
execute: (ctx: RoleSelectMenuInteraction) => Awaitable<unknown>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface MentionableSelectCommand extends Module {
|
|
||||||
type: CommandType.MentionableSelect;
|
|
||||||
execute: (ctx: MentionableSelectMenuInteraction) => Awaitable<unknown>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface UserSelectCommand extends Module {
|
|
||||||
type: CommandType.UserSelect;
|
|
||||||
execute: (ctx: UserSelectMenuInteraction) => Awaitable<unknown>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ModalSubmitCommand extends Module {
|
|
||||||
type: CommandType.Modal;
|
|
||||||
execute: (ctx: ModalSubmitInteraction) => Awaitable<unknown>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface AutocompleteCommand
|
|
||||||
extends Omit<Module, 'name' | 'type' | 'plugins' | 'description'> {
|
|
||||||
onEvent: ControlPlugin[];
|
|
||||||
execute: (ctx: AutocompleteInteraction) => Awaitable<unknown>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface SernEventCommand<T extends keyof SernEventsMapping = keyof SernEventsMapping>
|
|
||||||
extends Module {
|
|
||||||
name?: T;
|
|
||||||
type: EventType.Sern;
|
|
||||||
execute(...args: SernEventsMapping[T]): Awaitable<unknown>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface DiscordEventCommand<T extends keyof ClientEvents = keyof ClientEvents>
|
|
||||||
extends Module {
|
|
||||||
name?: T;
|
|
||||||
type: EventType.Discord;
|
|
||||||
execute(...args: ClientEvents[T]): Awaitable<unknown>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ExternalEventCommand extends Module {
|
|
||||||
name?: string;
|
|
||||||
emitter: string;
|
|
||||||
type: EventType.External;
|
|
||||||
execute(...args: unknown[]): Awaitable<unknown>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export type EventModule = DiscordEventCommand | SernEventCommand | ExternalEventCommand;
|
|
||||||
export type CommandModule =
|
|
||||||
| TextCommand
|
|
||||||
| SlashCommand
|
|
||||||
| BothCommand
|
|
||||||
| ContextMenuUser
|
|
||||||
| ContextMenuMsg
|
|
||||||
| ButtonCommand
|
|
||||||
| StringSelectCommand
|
|
||||||
| MentionableSelectCommand
|
|
||||||
| UserSelectCommand
|
|
||||||
| ChannelSelectCommand
|
|
||||||
| RoleSelectCommand
|
|
||||||
| ModalSubmitCommand;
|
|
||||||
|
|
||||||
export type AnyModule = CommandModule | EventModule;
|
|
||||||
|
|
||||||
//https://stackoverflow.com/questions/64092736/alternative-to-switch-statement-for-typescript-discriminated-union
|
|
||||||
// Explicit Module Definitions for mapping
|
|
||||||
export type CommandModuleDefs = {
|
|
||||||
[CommandType.Text]: TextCommand;
|
|
||||||
[CommandType.Slash]: SlashCommand;
|
|
||||||
[CommandType.Both]: BothCommand;
|
|
||||||
[CommandType.CtxMsg]: ContextMenuMsg;
|
|
||||||
[CommandType.CtxUser]: ContextMenuUser;
|
|
||||||
[CommandType.Button]: ButtonCommand;
|
|
||||||
[CommandType.StringSelect]: StringSelectCommand;
|
|
||||||
[CommandType.RoleSelect]: RoleSelectCommand;
|
|
||||||
[CommandType.ChannelSelect]: ChannelSelectCommand;
|
|
||||||
[CommandType.MentionableSelect]: MentionableSelectCommand;
|
|
||||||
[CommandType.UserSelect]: UserSelectCommand;
|
|
||||||
[CommandType.Modal]: ModalSubmitCommand;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type EventModuleDefs = {
|
|
||||||
[EventType.Sern]: SernEventCommand;
|
|
||||||
[EventType.Discord]: DiscordEventCommand;
|
|
||||||
[EventType.External]: ExternalEventCommand;
|
|
||||||
};
|
|
||||||
|
|
||||||
export interface SernAutocompleteData
|
|
||||||
extends Omit<BaseApplicationCommandOptionsData, 'autocomplete'> {
|
|
||||||
autocomplete: true;
|
|
||||||
type:
|
|
||||||
| ApplicationCommandOptionType.String
|
|
||||||
| ApplicationCommandOptionType.Number
|
|
||||||
| ApplicationCommandOptionType.Integer;
|
|
||||||
command: AutocompleteCommand;
|
|
||||||
}
|
|
||||||
|
|
||||||
export type CommandModuleNoPlugins = {
|
|
||||||
[T in CommandType]: Omit<CommandModuleDefs[T], 'plugins' | 'onEvent'>;
|
|
||||||
};
|
|
||||||
export type EventModulesNoPlugins = {
|
|
||||||
[T in EventType]: Omit<EventModuleDefs[T], 'plugins' | 'onEvent'>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type InputEvent = {
|
|
||||||
[T in EventType]: EventModulesNoPlugins[T] & { plugins?: AnyEventPlugin[] };
|
|
||||||
}[EventType];
|
|
||||||
|
|
||||||
export type InputCommand = {
|
|
||||||
[T in CommandType]: CommandModuleNoPlugins[T] & { plugins?: AnyCommandPlugin[] };
|
|
||||||
}[CommandType];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Type that replaces autocomplete with {@link SernAutocompleteData}
|
|
||||||
*/
|
|
||||||
export type BaseOptions =
|
|
||||||
| ApplicationCommandChoicesData
|
|
||||||
| ApplicationCommandNonOptionsData
|
|
||||||
| ApplicationCommandChannelOptionData
|
|
||||||
| ApplicationCommandNumericOptionData
|
|
||||||
| ApplicationCommandAttachmentOption
|
|
||||||
| SernAutocompleteData;
|
|
||||||
|
|
||||||
export interface SernSubCommandData extends BaseApplicationCommandOptionsData {
|
|
||||||
type: ApplicationCommandOptionType.Subcommand;
|
|
||||||
required?: never;
|
|
||||||
options?: BaseOptions[];
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface SernSubCommandGroupData extends BaseApplicationCommandOptionsData {
|
|
||||||
type: ApplicationCommandOptionType.SubcommandGroup;
|
|
||||||
required?: never;
|
|
||||||
options?: SernSubCommandData[];
|
|
||||||
}
|
|
||||||
|
|
||||||
export type SernOptionsData<U extends ApplicationCommandOptionData = ApplicationCommandOptionData> =
|
|
||||||
U extends ApplicationCommandSubCommandData
|
|
||||||
? SernSubCommandData
|
|
||||||
: U extends ApplicationCommandSubGroupData
|
|
||||||
? SernSubCommandGroupData
|
|
||||||
: BaseOptions;
|
|
||||||
@@ -1,74 +0,0 @@
|
|||||||
/*
|
|
||||||
* Plugins can be inserted on all commands and are emitted
|
|
||||||
*
|
|
||||||
* 1. On ready event, where all commands are loaded.
|
|
||||||
* 2. On corresponding observable (when command triggers)
|
|
||||||
*
|
|
||||||
* The goal of plugins is to organize commands and
|
|
||||||
* provide extensions to repetitive patterns
|
|
||||||
* examples include refreshing modules,
|
|
||||||
* categorizing commands, cool-downs, permissions, etc.
|
|
||||||
* Plugins are reminiscent of middleware in express.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import type { Awaitable } from 'discord.js';
|
|
||||||
import type { Err, Ok, Result } from 'ts-results-es';
|
|
||||||
import type { PluginType } from '../handler/structures/enums';
|
|
||||||
import type { CommandModule, EventModule } from './module';
|
|
||||||
import type { CommandArgs, InitArgs } from '../handler/plugins';
|
|
||||||
import type { Deprecated, Processed } from './handler';
|
|
||||||
import type { CommandType } from '../handler/structures/enums';
|
|
||||||
export type PluginResult = Awaitable<VoidResult>;
|
|
||||||
export type VoidResult = Result<void, void>;
|
|
||||||
|
|
||||||
export interface Controller {
|
|
||||||
next: () => Ok<void>;
|
|
||||||
stop: () => Err<void>;
|
|
||||||
}
|
|
||||||
export interface Plugin<Args extends any[] = any[]> {
|
|
||||||
type: PluginType;
|
|
||||||
execute: (...args: Args) => PluginResult;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface InitPlugin<Args extends any[] = any[]> {
|
|
||||||
type: PluginType.Init;
|
|
||||||
execute: (...args: Args) => PluginResult;
|
|
||||||
}
|
|
||||||
export interface ControlPlugin<Args extends any[] = any[]> {
|
|
||||||
type: PluginType.Control;
|
|
||||||
execute: (...args: Args) => PluginResult;
|
|
||||||
}
|
|
||||||
|
|
||||||
export type AnyCommandPlugin = ControlPlugin | InitPlugin<[InitArgs<Processed<CommandModule>>]>;
|
|
||||||
export type AnyEventPlugin = ControlPlugin | InitPlugin<[InitArgs<Processed<EventModule>>]>;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @deprecated
|
|
||||||
* Use the newer helper functions and import { controller } from '@sern/handler'
|
|
||||||
*/
|
|
||||||
export interface CommandPlugin<T extends CommandType = CommandType> {
|
|
||||||
name?: string;
|
|
||||||
description?: string;
|
|
||||||
type: PluginType.Command;
|
|
||||||
execute: (
|
|
||||||
m: InitArgs<Processed<CommandModule>>,
|
|
||||||
controller?: Deprecated<'Please import controller instead'>,
|
|
||||||
) => PluginResult;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @deprecated
|
|
||||||
* Use the newer helper functions
|
|
||||||
*/
|
|
||||||
export interface EventPlugin<T extends CommandType> {
|
|
||||||
name?: string;
|
|
||||||
description?: string;
|
|
||||||
type: PluginType.Event;
|
|
||||||
execute: (args: CommandArgs<T, PluginType.Event>, controller?: Controller) => PluginResult;
|
|
||||||
}
|
|
||||||
export type DiscordEmitterPlugin = Deprecated<'Please view alternatives: '>;
|
|
||||||
export type ExternalEmitterPlugin = Deprecated<'Please view alternatives: '>;
|
|
||||||
export type SernEmitterPlugin = Deprecated<'Please view alternatives: '>;
|
|
||||||
export type AutocompletePlugin = Deprecated<'Please view alternatives: '>;
|
|
||||||
export type SernEventPlugin = Deprecated<'Please view alternatives: '>;
|
|
||||||
export type ExternalEventPlugin = Deprecated<'Please view alternatives: '>;
|
|
||||||
export type DiscordEventPlugin = Deprecated<'Please view alternatives: '>;
|
|
||||||
90
src/types/utility.ts
Normal file
90
src/types/utility.ts
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
import type { InteractionReplyOptions, MessageReplyOptions } from 'discord.js';
|
||||||
|
import type { Module } from './core-modules';
|
||||||
|
|
||||||
|
export type Awaitable<T> = PromiseLike<T> | T;
|
||||||
|
export type Dictionary = Record<string, unknown>
|
||||||
|
|
||||||
|
export type AnyFunction = (...args: any[]) => unknown;
|
||||||
|
|
||||||
|
export interface SernEventsMapping {
|
||||||
|
'module.register': [Payload];
|
||||||
|
'module.activate': [Payload];
|
||||||
|
error: [{ type: 'failure'; module?: Module; reason: string | Error }];
|
||||||
|
warning: [Payload];
|
||||||
|
modulesLoaded: [never?];
|
||||||
|
}
|
||||||
|
|
||||||
|
export type Payload =
|
||||||
|
| { type: 'success'; module: Module }
|
||||||
|
| { type: 'failure'; module?: Module; reason: string | Error }
|
||||||
|
| { type: 'warning'; module: undefined; reason: string };
|
||||||
|
|
||||||
|
export type UnpackFunction<T> = T extends (...args: any) => infer U ? U : T
|
||||||
|
export type UnpackedDependencies = {
|
||||||
|
[K in keyof Dependencies]: UnpackFunction<Dependencies[K]>
|
||||||
|
}
|
||||||
|
export type ReplyOptions = string | Omit<InteractionReplyOptions, 'fetchReply'> | MessageReplyOptions;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @interface Wrapper
|
||||||
|
* @description Configuration interface for the sern framework. This interface defines
|
||||||
|
* the structure for configuring essential framework features including command handling,
|
||||||
|
* event management, and task scheduling.
|
||||||
|
*/
|
||||||
|
export interface Wrapper {
|
||||||
|
/**
|
||||||
|
* @property {string|string[]} commands
|
||||||
|
* @description Specifies the directory path where command modules are located.
|
||||||
|
* This is a required property that tells sern where to find and load command files.
|
||||||
|
* The path should be relative to the project root. If given an array, each directory is loaded in order
|
||||||
|
* they were declared. Order of modules in each directory is not guaranteed
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* commands: ["./dist/commands"]
|
||||||
|
*/
|
||||||
|
commands: string | string[];
|
||||||
|
/**
|
||||||
|
* @property {boolean} [handleModuleErrors]
|
||||||
|
* @description Optional flag to enable automatic error handling for modules.
|
||||||
|
* When enabled, sern will automatically catch and handle errors that occur
|
||||||
|
* during module execution, preventing crashes and providing error logging.
|
||||||
|
*
|
||||||
|
* @default false
|
||||||
|
*/
|
||||||
|
handleModuleErrors?: boolean;
|
||||||
|
/**
|
||||||
|
* @property {string} [defaultPrefix]
|
||||||
|
* @description Optional prefix for text commands. This prefix will be used
|
||||||
|
* to identify text commands in messages. If not specified, text commands {@link CommandType.Text}
|
||||||
|
* will be disabled.
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* defaultPrefix: "?"
|
||||||
|
*/
|
||||||
|
defaultPrefix?: string;
|
||||||
|
/**
|
||||||
|
* @property {string|string[]} [events]
|
||||||
|
* @description Optional directory path where event modules are located.
|
||||||
|
* If provided, Sern will automatically register and handle events from
|
||||||
|
* modules in this directory. The path should be relative to the project root.
|
||||||
|
* If given an array, each directory is loaded in order they were declared.
|
||||||
|
* Order of modules in each directory is not guaranteed.
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* events: ["./dist/events"]
|
||||||
|
*/
|
||||||
|
events?: string | string[];
|
||||||
|
/**
|
||||||
|
* @property {string|string[]} [tasks]
|
||||||
|
* @description Optional directory path where scheduled task modules are located.
|
||||||
|
* If provided, Sern will automatically register and handle scheduled tasks
|
||||||
|
* from modules in this directory. The path should be relative to the project root.
|
||||||
|
* If given an array, each directory is loaded in order they were declared.
|
||||||
|
* Order of modules in each directory is not guaranteed.
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* tasks: ["./dist/tasks"]
|
||||||
|
*/
|
||||||
|
tasks?: string | string[];
|
||||||
|
}
|
||||||
84
test/autocomp.bench.ts
Normal file
84
test/autocomp.bench.ts
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
import { describe } from 'node:test'
|
||||||
|
import { bench } from 'vitest'
|
||||||
|
import { SernAutocompleteData, SernOptionsData } from '../src'
|
||||||
|
import { createRandomChoice } from './setup/util'
|
||||||
|
import { ApplicationCommandOptionType, AutocompleteFocusedOption, AutocompleteInteraction } from 'discord.js'
|
||||||
|
import { createLookupTable } from '../src/core/functions'
|
||||||
|
import assert from 'node:assert'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Uses an iterative DFS to check if an autocomplete node exists on the option tree
|
||||||
|
* This is the old internal method that sern used to resolve autocomplete
|
||||||
|
* @param iAutocomplete
|
||||||
|
* @param options
|
||||||
|
*/
|
||||||
|
function treeSearch(
|
||||||
|
choice: AutocompleteFocusedOption,
|
||||||
|
parent: string|undefined,
|
||||||
|
options: SernOptionsData[] | undefined,
|
||||||
|
): SernAutocompleteData & { parent?: string } | undefined {
|
||||||
|
if (options === undefined) return undefined;
|
||||||
|
//clone to prevent mutation of original command module
|
||||||
|
const _options = options.map(a => ({ ...a }));
|
||||||
|
const subcommands = new Set();
|
||||||
|
while (_options.length > 0) {
|
||||||
|
const cur = _options.pop()!;
|
||||||
|
switch (cur.type) {
|
||||||
|
case ApplicationCommandOptionType.Subcommand: {
|
||||||
|
subcommands.add(cur.name);
|
||||||
|
for (const option of cur.options ?? []) _options.push(option);
|
||||||
|
} break;
|
||||||
|
case ApplicationCommandOptionType.SubcommandGroup: {
|
||||||
|
for (const command of cur.options ?? []) _options.push(command);
|
||||||
|
} break;
|
||||||
|
default: {
|
||||||
|
if ('autocomplete' in cur && cur.autocomplete) {
|
||||||
|
assert( 'command' in cur, 'No `command` property found for option ' + cur.name);
|
||||||
|
if (subcommands.size > 0) {
|
||||||
|
const parentAndOptionMatches =
|
||||||
|
subcommands.has(parent) && cur.name === choice.name;
|
||||||
|
if (parentAndOptionMatches) {
|
||||||
|
return { ...cur, parent };
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (cur.name === choice.name) {
|
||||||
|
return { ...cur, parent: undefined };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const options: SernOptionsData[] = [
|
||||||
|
createRandomChoice(),
|
||||||
|
createRandomChoice(),
|
||||||
|
createRandomChoice(),
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.String,
|
||||||
|
name: 'autocomplete',
|
||||||
|
description: 'here',
|
||||||
|
autocomplete: true,
|
||||||
|
command: { onEvent: [], execute: () => {} },
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
const table = createLookupTable(options)
|
||||||
|
|
||||||
|
|
||||||
|
describe('autocomplete lookup', () => {
|
||||||
|
|
||||||
|
bench('lookup table', () => {
|
||||||
|
table.get('<parent>/autocomplete')
|
||||||
|
}, { time: 500 })
|
||||||
|
|
||||||
|
|
||||||
|
bench('naive treeSearch', () => {
|
||||||
|
treeSearch({ focused: true,
|
||||||
|
name: 'autocomplete',
|
||||||
|
value: 'autocomplete',
|
||||||
|
type: ApplicationCommandOptionType.String }, undefined, options)
|
||||||
|
}, { time: 500 })
|
||||||
|
})
|
||||||
85
test/core/context.test.ts
Normal file
85
test/core/context.test.ts
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
import { describe, vi, it, expect } from'vitest'
|
||||||
|
import { Context } from '../../src';
|
||||||
|
import { faker } from '@faker-js/faker'
|
||||||
|
describe('Context', () => {
|
||||||
|
// Mocked message and interaction objects for testing
|
||||||
|
const mockMessage = {
|
||||||
|
id: 'messageId',
|
||||||
|
channel: 'channelId',
|
||||||
|
channelId: 'channelId',
|
||||||
|
interaction: {
|
||||||
|
id: faker.string.uuid()
|
||||||
|
},
|
||||||
|
author: { id: 'userId' },
|
||||||
|
createdTimestamp: 1234567890,
|
||||||
|
guild: 'guildId',
|
||||||
|
guildId: 'guildId',
|
||||||
|
member: { id: 'memberId' },
|
||||||
|
client: { id: 'clientId' },
|
||||||
|
inGuild: vi.fn().mockReturnValue(true),
|
||||||
|
reply: vi.fn(),
|
||||||
|
};
|
||||||
|
|
||||||
|
const mockInteraction = {
|
||||||
|
id: 'interactionId',
|
||||||
|
user: { id: 'userId' },
|
||||||
|
channel: 'channelId',
|
||||||
|
channelId: 'channelId',
|
||||||
|
createdTimestamp: 1234567890,
|
||||||
|
guild: 'guildId',
|
||||||
|
guildId: 'guildId',
|
||||||
|
fetchReply: vi.fn().mockResolvedValue({}),
|
||||||
|
member: { id: 'memberId' },
|
||||||
|
client: { id: 'clientId' },
|
||||||
|
isChatInputCommand: vi.fn().mockResolvedValue(true),
|
||||||
|
inGuild: vi.fn().mockReturnValue(true),
|
||||||
|
reply: vi.fn().mockResolvedValue({}),
|
||||||
|
};
|
||||||
|
|
||||||
|
it('should create a context from a message', () => {
|
||||||
|
//@ts-ignore
|
||||||
|
const context = Context.wrap(mockMessage);
|
||||||
|
expect(context).toBeDefined();
|
||||||
|
expect(context.id).toBe('messageId');
|
||||||
|
});
|
||||||
|
it('should throw error if accessing interaction as message', () => {
|
||||||
|
//@ts-ignore
|
||||||
|
const context = Context.wrap(mockMessage);
|
||||||
|
expect(context).toBeDefined();
|
||||||
|
expect(() => context.interaction)
|
||||||
|
.toThrowError('You cannot use message when an interaction fired or vice versa');
|
||||||
|
|
||||||
|
})
|
||||||
|
it('should throw error if accessing message as interaction', () => {
|
||||||
|
//@ts-ignore
|
||||||
|
const context = Context.wrap(mockInteraction);
|
||||||
|
expect(context).toBeDefined();
|
||||||
|
expect(() => context.message)
|
||||||
|
.toThrowError('You cannot use message when an interaction fired or vice versa');
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
it('should create a context from an interaction', () => {
|
||||||
|
//@ts-ignore
|
||||||
|
const context = Context.wrap(mockInteraction);
|
||||||
|
expect(context).toBeDefined();
|
||||||
|
expect(context.id).toBe('interactionId');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reply to a context with a message', async () => {
|
||||||
|
//@ts-ignore
|
||||||
|
const context = Context.wrap(mockMessage);
|
||||||
|
const replyOptions = { content: 'Hello, world!' };
|
||||||
|
await context.reply(replyOptions);
|
||||||
|
expect(mockMessage.reply).toHaveBeenCalledWith(replyOptions);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reply to a context with an interaction', async () => {
|
||||||
|
//@ts-ignore
|
||||||
|
const context = Context.wrap(mockInteraction);
|
||||||
|
const replyOptions = { content: 'Hello, world!' };
|
||||||
|
await context.reply(replyOptions);
|
||||||
|
expect(mockInteraction.reply).toHaveBeenCalledWith(replyOptions);
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
11
test/core/contracts.test.ts
Normal file
11
test/core/contracts.test.ts
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
import { assertType, describe, it } from 'vitest';
|
||||||
|
|
||||||
|
import * as __Services from '../../src/core/structures/default-services';
|
||||||
|
import * as Contracts from '../../src/core/interfaces';
|
||||||
|
|
||||||
|
describe('default contracts', () => {
|
||||||
|
it('should satisfy contracts', () => {
|
||||||
|
assertType<Contracts.Logging>(new __Services.DefaultLogging());
|
||||||
|
assertType<Contracts.ErrorHandling>(new __Services.DefaultErrorHandling());
|
||||||
|
});
|
||||||
|
});
|
||||||
27
test/core/create-plugin.test.ts
Normal file
27
test/core/create-plugin.test.ts
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
import { describe, it, expect } from 'vitest';
|
||||||
|
import {
|
||||||
|
CommandControlPlugin,
|
||||||
|
CommandInitPlugin,
|
||||||
|
EventInitPlugin,
|
||||||
|
} from '../../src';
|
||||||
|
import { PluginType, controller } from '../../src';
|
||||||
|
|
||||||
|
describe('create-plugins', () => {
|
||||||
|
it('should make proper control plugins', () => {
|
||||||
|
const pl2 = CommandControlPlugin(() => controller.next());
|
||||||
|
expect(pl2).to.have.all.keys(['type', 'execute']);
|
||||||
|
expect(pl2.type).toBe(PluginType.Control);
|
||||||
|
expect(pl2.execute).an('function');
|
||||||
|
});
|
||||||
|
it('should make proper init plugins', () => {
|
||||||
|
const pl = EventInitPlugin(() => controller.next());
|
||||||
|
expect(pl).to.have.all.keys(['type', 'execute']);
|
||||||
|
expect(pl.type).toBe(PluginType.Init);
|
||||||
|
expect(pl.execute).an('function');
|
||||||
|
|
||||||
|
const pl2 = CommandInitPlugin(() => controller.next());
|
||||||
|
expect(pl2).to.have.all.keys(['type', 'execute']);
|
||||||
|
expect(pl2.type).toBe(PluginType.Init);
|
||||||
|
expect(pl2.execute).an('function');
|
||||||
|
});
|
||||||
|
});
|
||||||
294
test/core/functions.test.ts
Normal file
294
test/core/functions.test.ts
Normal file
@@ -0,0 +1,294 @@
|
|||||||
|
//@ts-nocheck
|
||||||
|
import { afterEach, describe, expect, it, vi } from 'vitest';
|
||||||
|
import { PluginType, SernOptionsData, controller } from '../../src/index';
|
||||||
|
import { createLookupTable, partitionPlugins, treeSearch } from '../../src/core/functions';
|
||||||
|
import { faker } from '@faker-js/faker';
|
||||||
|
import { ApplicationCommandOptionType, AutocompleteInteraction } from 'discord.js';
|
||||||
|
import { createRandomChoice, createRandomPlugins } from '../setup/util';
|
||||||
|
|
||||||
|
describe('functions', () => {
|
||||||
|
afterEach(() => {
|
||||||
|
vi.clearAllMocks();
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
it('should partition plugins correctly', () => {
|
||||||
|
const plugins = createRandomPlugins(100);
|
||||||
|
const [onEvent, init] = partitionPlugins(plugins);
|
||||||
|
for (const el of onEvent) expect(el.type).to.equal(PluginType.Control);
|
||||||
|
|
||||||
|
for (const el of init) expect(el.type).to.equal(PluginType.Init);
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('autocomplete', ( ) => {
|
||||||
|
|
||||||
|
it('should tree search options tree depth 1', () => {
|
||||||
|
const options: SernOptionsData[] = [
|
||||||
|
createRandomChoice(),
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.String,
|
||||||
|
name: 'autocomplete',
|
||||||
|
description: 'here',
|
||||||
|
autocomplete: true,
|
||||||
|
command: { onEvent: [], execute: vi.fn() },
|
||||||
|
},
|
||||||
|
];
|
||||||
|
const table = createLookupTable(options)
|
||||||
|
const result = table.get('<parent>/autocomplete')
|
||||||
|
expect(result == undefined).to.be.false;
|
||||||
|
expect(result.name).to.be.eq('autocomplete');
|
||||||
|
expect(result.command).to.be.not.undefined;
|
||||||
|
}),
|
||||||
|
it('should tree search depth 2', () => {
|
||||||
|
const subcommandName = faker.string.alpha();
|
||||||
|
const options: SernOptionsData[] = [
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.Subcommand,
|
||||||
|
name: subcommandName,
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
options: [
|
||||||
|
createRandomChoice(),
|
||||||
|
createRandomChoice(),
|
||||||
|
createRandomChoice(),
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.String,
|
||||||
|
name: 'nested',
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
autocomplete: true,
|
||||||
|
command: {
|
||||||
|
onEvent: [],
|
||||||
|
execute: () => {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
];
|
||||||
|
const table = createLookupTable(options)
|
||||||
|
const result = table.get(`<parent>/${subcommandName}/nested`)
|
||||||
|
expect(result == undefined).to.be.false;
|
||||||
|
expect(result.name).to.be.eq('nested');
|
||||||
|
expect(result.command).to.be.not.undefined;
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should tree search depth n > 2', () => {
|
||||||
|
const subgroupName = faker.string.alpha()
|
||||||
|
const subcommandName = faker.string.alpha();
|
||||||
|
const options: SernOptionsData[] = [
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.SubcommandGroup,
|
||||||
|
name: subgroupName,
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.Subcommand,
|
||||||
|
name: subcommandName,
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
options: [
|
||||||
|
createRandomChoice(),
|
||||||
|
createRandomChoice(),
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.String,
|
||||||
|
name: 'nested',
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
autocomplete: true,
|
||||||
|
command: {
|
||||||
|
onEvent: [],
|
||||||
|
execute: () => {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
createRandomChoice(),
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
];
|
||||||
|
const table = createLookupTable(options)
|
||||||
|
const result = table.get(`<parent>/${subgroupName}/${subcommandName}/nested`)
|
||||||
|
expect(result == undefined).to.be.false;
|
||||||
|
expect(result.name).to.be.eq('nested');
|
||||||
|
expect(result.command).to.be.not.undefined;
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should correctly resolve suboption of the same name given two subcommands ', () => {
|
||||||
|
const subcommandName = faker.string.alpha();
|
||||||
|
const groupname = faker.string.alpha()
|
||||||
|
const options: SernOptionsData[] = [
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.SubcommandGroup,
|
||||||
|
name: groupname,
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.Subcommand,
|
||||||
|
name: subcommandName,
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
options: [
|
||||||
|
createRandomChoice(),
|
||||||
|
createRandomChoice(),
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.String,
|
||||||
|
name: 'nested',
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
autocomplete: true,
|
||||||
|
command: {
|
||||||
|
onEvent: [],
|
||||||
|
execute: () => {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.Subcommand,
|
||||||
|
name: subcommandName + 'a',
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
options: [
|
||||||
|
createRandomChoice(),
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.String,
|
||||||
|
name: 'nested',
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
autocomplete: true,
|
||||||
|
command: {
|
||||||
|
onEvent: [],
|
||||||
|
execute: () => {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
];
|
||||||
|
const table = createLookupTable(options)
|
||||||
|
const result = table.get(`<parent>/${groupname}/${subcommandName}/nested`);
|
||||||
|
expect(result).toBeTruthy();
|
||||||
|
expect(result.name).to.be.eq('nested');
|
||||||
|
expect(result.command).to.be.not.undefined;
|
||||||
|
});
|
||||||
|
it('two subcommands with an option of the same name', () => {
|
||||||
|
const groupName = faker.string.alpha()
|
||||||
|
const subcommandName = faker.string.alpha();
|
||||||
|
const options: SernOptionsData[] = [
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.SubcommandGroup,
|
||||||
|
name: groupName,
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.Subcommand,
|
||||||
|
name: subcommandName,
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
options: [
|
||||||
|
createRandomChoice(),
|
||||||
|
createRandomChoice(),
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.String,
|
||||||
|
name: 'nested',
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
autocomplete: true,
|
||||||
|
command: {
|
||||||
|
onEvent: [],
|
||||||
|
execute: () => {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.Subcommand,
|
||||||
|
name: subcommandName + 'anothera',
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
options: [
|
||||||
|
createRandomChoice(),
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.String,
|
||||||
|
name: 'nested',
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
autocomplete: true,
|
||||||
|
command: {
|
||||||
|
onEvent: [],
|
||||||
|
execute: () => {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const table = createLookupTable(options)
|
||||||
|
const result = table.get(`<parent>/${groupName}/${subcommandName}/nested`);
|
||||||
|
expect(result).toBeTruthy();
|
||||||
|
expect(result.name).to.be.eq('nested');
|
||||||
|
expect(result.command).to.be.not.undefined;
|
||||||
|
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
it('simulates autocomplete typing and resolution', () => {
|
||||||
|
const subcommandGroupName = faker.string.alpha()
|
||||||
|
const subcommandName = faker.string.alpha();
|
||||||
|
const optionName = faker.word.noun();
|
||||||
|
const options: SernOptionsData[] = [
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.SubcommandGroup,
|
||||||
|
name: subcommandGroupName,
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.Subcommand,
|
||||||
|
name: subcommandName,
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
options: [
|
||||||
|
createRandomChoice(),
|
||||||
|
createRandomChoice(),
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.String,
|
||||||
|
name: optionName,
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
autocomplete: true,
|
||||||
|
command: {
|
||||||
|
onEvent: [],
|
||||||
|
execute: vi.fn(),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.Subcommand,
|
||||||
|
name: subcommandName + 'a',
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
options: [
|
||||||
|
createRandomChoice(),
|
||||||
|
{
|
||||||
|
type: ApplicationCommandOptionType.String,
|
||||||
|
name: optionName,
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
autocomplete: true,
|
||||||
|
command: {
|
||||||
|
onEvent: [],
|
||||||
|
execute: vi.fn(),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
];
|
||||||
|
let accumulator = '';
|
||||||
|
let result: unknown;
|
||||||
|
const table = createLookupTable(options)
|
||||||
|
for (const char of optionName) {
|
||||||
|
accumulator += char;
|
||||||
|
|
||||||
|
const focusedValue = {
|
||||||
|
name: accumulator,
|
||||||
|
value: faker.string.alpha(),
|
||||||
|
focused: true,
|
||||||
|
};
|
||||||
|
result = table.get(`<parent>/${subcommandGroupName}/${subcommandName}/${focusedValue.name}` );
|
||||||
|
}
|
||||||
|
expect(result).toBeTruthy();
|
||||||
|
});
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
});
|
||||||
94
test/core/id.test.ts
Normal file
94
test/core/id.test.ts
Normal file
@@ -0,0 +1,94 @@
|
|||||||
|
//@ts-nocheck
|
||||||
|
import { expect, test, vi } from 'vitest'
|
||||||
|
import { CommandType } from '../../src/core/structures/enums';
|
||||||
|
|
||||||
|
import * as Id from '../../src/core/id'
|
||||||
|
import { ButtonInteraction, ModalSubmitInteraction } from 'discord.js';
|
||||||
|
|
||||||
|
test('id -> Text', () => {
|
||||||
|
expect(Id.create("ping", CommandType.Text)).toBe("ping_T")
|
||||||
|
})
|
||||||
|
|
||||||
|
test('id -> Both', () => {
|
||||||
|
expect(Id.create("ping", CommandType.Both)).toBe("ping_B")
|
||||||
|
})
|
||||||
|
|
||||||
|
test('id -> CtxMsg', () => {
|
||||||
|
expect(Id.create("ping", CommandType.CtxMsg)).toBe("ping_A3")
|
||||||
|
})
|
||||||
|
test('id -> CtxUsr', () => {
|
||||||
|
expect(Id.create("ping", CommandType.CtxUser)).toBe("ping_A2")
|
||||||
|
})
|
||||||
|
test('id -> Modal', () => {
|
||||||
|
expect(Id.create("my-modal", CommandType.Modal)).toBe("my-modal_M");
|
||||||
|
})
|
||||||
|
|
||||||
|
test('id -> Button', () => {
|
||||||
|
expect(Id.create("my-button", CommandType.Button)).toBe("my-button_C2");
|
||||||
|
})
|
||||||
|
|
||||||
|
test('id -> Slash', () => {
|
||||||
|
expect(Id.create("myslash", CommandType.Slash)).toBe("myslash_A1");
|
||||||
|
})
|
||||||
|
|
||||||
|
test('id -> StringSelect', () => {
|
||||||
|
expect(Id.create("mystringselect", CommandType.StringSelect)).toBe("mystringselect_C3");
|
||||||
|
})
|
||||||
|
|
||||||
|
test('id -> UserSelect', () => {
|
||||||
|
expect(Id.create("myuserselect", CommandType.UserSelect)).toBe("myuserselect_C5");
|
||||||
|
})
|
||||||
|
|
||||||
|
test('id -> RoleSelect', () => {
|
||||||
|
expect(Id.create("myroleselect", CommandType.RoleSelect)).toBe("myroleselect_C6");
|
||||||
|
})
|
||||||
|
|
||||||
|
test('id -> MentionSelect', () => {
|
||||||
|
expect(Id.create("mymentionselect", CommandType.MentionableSelect)).toBe("mymentionselect_C7");
|
||||||
|
})
|
||||||
|
|
||||||
|
test('id -> ChannelSelect', () => {
|
||||||
|
const modal = Id.create("mychannelselect", CommandType.ChannelSelect)
|
||||||
|
expect(modal).toBe("mychannelselect_C8");
|
||||||
|
})
|
||||||
|
|
||||||
|
test('id reconstruct button', () => {
|
||||||
|
const idload = Id.reconstruct(new ButtonInteraction("btn"))
|
||||||
|
expect(idload[0].id).toBe("btn_C2")
|
||||||
|
})
|
||||||
|
|
||||||
|
test('id reconstruct button with params', () => {
|
||||||
|
const idload = Id.reconstruct(new ButtonInteraction("btn/asdf"))
|
||||||
|
expect(idload[0].id).toBe("btn_C2")
|
||||||
|
expect(idload[0].params).toBe("asdf")
|
||||||
|
})
|
||||||
|
test('id reconstruct modal with params', () => {
|
||||||
|
const idload = Id.reconstruct(new ModalSubmitInteraction("btn/asdf"))
|
||||||
|
expect(idload[0].id).toBe("btn_M")
|
||||||
|
expect(idload[0].params).toBe("asdf")
|
||||||
|
})
|
||||||
|
test('id reconstruct modal', () => {
|
||||||
|
const idload = Id.reconstruct(new ModalSubmitInteraction("btn"))
|
||||||
|
expect(idload[0].id).toBe("btn_M")
|
||||||
|
expect(idload[0].params).toBe(undefined)
|
||||||
|
})
|
||||||
|
test('id reconstruct button with empty params', () => {
|
||||||
|
const idload = Id.reconstruct(new ButtonInteraction("btn/"))
|
||||||
|
expect(idload[0].id).toBe("btn_C2")
|
||||||
|
expect(idload[0].params).toBe("")
|
||||||
|
})
|
||||||
|
test('id reconstruct with multiple slashes', () => {
|
||||||
|
const idload = Id.reconstruct(new ButtonInteraction("btn//"))
|
||||||
|
expect(idload[0].id).toBe("btn_C2")
|
||||||
|
expect(idload[0].params).toBe("/")
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
test('id reconstruct button', () => {
|
||||||
|
const idload = Id.reconstruct(new ButtonInteraction("btn"))
|
||||||
|
expect(idload[0].id).toBe("btn_C2")
|
||||||
|
expect(idload[0].params).toBe(undefined)
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
64
test/core/module-loading.test.ts
Normal file
64
test/core/module-loading.test.ts
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
import { describe, it, expect } from 'vitest'
|
||||||
|
import path from 'node:path'
|
||||||
|
import * as Files from '../../src/core/module-loading'
|
||||||
|
import { Module } from '../../src/types/core-modules'
|
||||||
|
import { AssertionError } from 'node:assert'
|
||||||
|
//TODO: mock fs?
|
||||||
|
describe('module-loading', () => {
|
||||||
|
it('should get the filename of the commandmodule (linux, esm)', () => {
|
||||||
|
const fname = "///home/pooba/Projects/sern/halibu/dist/commands/ping.js"
|
||||||
|
const callsiteinfo = Files.parseCallsite(fname)
|
||||||
|
expect(callsiteinfo.name).toBe("ping")
|
||||||
|
})
|
||||||
|
it('should get filename of commandmodule (linux, cjs)', () => {
|
||||||
|
const fname = "file:///home/pooba/Projects/sern/halibu/dist/commands/ping.js"
|
||||||
|
const callsiteinfo = Files.parseCallsite(fname)
|
||||||
|
expect(callsiteinfo.name).toBe("ping")
|
||||||
|
|
||||||
|
})
|
||||||
|
it('should get the filename of the commandmodule (windows, cjs)', () => {
|
||||||
|
//this test case is impossible on linux.
|
||||||
|
if(process.platform == 'win32') {
|
||||||
|
const fname = "C:\\pooba\\Projects\\sern\\halibu\\dist\\commands\\ping.js"
|
||||||
|
const callsiteinfo = Files.parseCallsite(fname)
|
||||||
|
expect(callsiteinfo.name).toEqual("ping");
|
||||||
|
}
|
||||||
|
})
|
||||||
|
it('should get filename of commandmodule (windows, esm)', () => {
|
||||||
|
//this test case is impossible on linux.
|
||||||
|
if(process.platform == 'win32') {
|
||||||
|
const fname = "file:///C:\\pooba\\Projects\\sern\\halibu\\dist\\commands\\ping.js"
|
||||||
|
const callsiteinfo = Files.parseCallsite(fname)
|
||||||
|
expect(callsiteinfo.name).toEqual("ping");
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
it('should import a commandModule properly', async () => {
|
||||||
|
const { module } = await Files.importModule<Module>(path.resolve("test", 'mockules', "module.ts"));
|
||||||
|
expect(module.name).toBe('module')
|
||||||
|
})
|
||||||
|
it('should throw when failed commandModule import', async () => {
|
||||||
|
try {
|
||||||
|
await Files.importModule(path.resolve('test', 'mockules', 'failed.ts'))
|
||||||
|
} catch(e) {
|
||||||
|
expect(e instanceof AssertionError)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
it('should throw when failed commandModule import', async () => {
|
||||||
|
try {
|
||||||
|
await Files.importModule(path.resolve('test', 'mockules', 'failed.ts'))
|
||||||
|
} catch(e) {
|
||||||
|
expect(e instanceof AssertionError)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
it('reads all modules in mockules', async () => {
|
||||||
|
const ps = [] as string[]
|
||||||
|
for await (const fpath of Files.readRecursive(path.resolve('test', 'mockules'))) {
|
||||||
|
ps.push(fpath)
|
||||||
|
}
|
||||||
|
expect(ps.length === 4)
|
||||||
|
})
|
||||||
|
|
||||||
|
})
|
||||||
92
test/core/presence.test.ts
Normal file
92
test/core/presence.test.ts
Normal file
@@ -0,0 +1,92 @@
|
|||||||
|
import { beforeEach, describe, expect, it, vi } from 'vitest';
|
||||||
|
import { Presence } from '../../src';
|
||||||
|
import * as Files from '../../src/core/module-loading'
|
||||||
|
import { presenceHandler } from '../../src/handlers/presence'
|
||||||
|
|
||||||
|
// Example test suite for the module function
|
||||||
|
describe('module function', () => {
|
||||||
|
it('should return a valid configuration', () => {
|
||||||
|
const config = Presence.module({
|
||||||
|
inject: ['dependency1', 'dependency2'],
|
||||||
|
execute: vi.fn(),
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(config).toBeDefined();
|
||||||
|
expect(config.inject).toEqual(['dependency1', 'dependency2']);
|
||||||
|
expect(typeof config.execute).toBe('function');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
describe('of function', () => {
|
||||||
|
it('should return a valid presence configuration without repeat and onRepeat', () => {
|
||||||
|
const presenceConfig = Presence.of({
|
||||||
|
status: 'online',
|
||||||
|
afk: false,
|
||||||
|
activities: [{ name: 'Test Activity' }],
|
||||||
|
shardId: [1, 2, 3],
|
||||||
|
}).once();
|
||||||
|
|
||||||
|
expect(presenceConfig).toBeDefined();
|
||||||
|
//@ts-ignore Maybe fix?
|
||||||
|
expect(presenceConfig.repeat).toBeUndefined();
|
||||||
|
//@ts-ignore Maybe fix?
|
||||||
|
expect(presenceConfig.onRepeat).toBeUndefined();
|
||||||
|
expect(presenceConfig).toMatchObject({
|
||||||
|
status: 'online',
|
||||||
|
afk: false,
|
||||||
|
activities: [{ name: 'Test Activity' }],
|
||||||
|
shardId: [1, 2, 3],
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return a valid presence configuration with repeat and onRepeat', () => {
|
||||||
|
const onRepeatCallback = vi.fn();
|
||||||
|
const presenceConfig = Presence.of({
|
||||||
|
status: 'idle',
|
||||||
|
activities: [{ name: 'Another Test Activity' }],
|
||||||
|
}).repeated(onRepeatCallback, 5000);
|
||||||
|
|
||||||
|
expect(presenceConfig).toBeDefined();
|
||||||
|
expect(presenceConfig.repeat).toBe(5000);
|
||||||
|
expect(presenceConfig.onRepeat).toBe(onRepeatCallback);
|
||||||
|
expect(presenceConfig).toMatchObject({
|
||||||
|
status: 'idle',
|
||||||
|
activities: [{ name: 'Another Test Activity' }],
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
describe('Presence module execution', () => {
|
||||||
|
const mockExecuteResult = Presence.of({
|
||||||
|
status: 'online',
|
||||||
|
}).once();
|
||||||
|
|
||||||
|
const mockModule = Presence.module({
|
||||||
|
inject: [ '@sern/client'],
|
||||||
|
execute: vi.fn().mockReturnValue(mockExecuteResult)
|
||||||
|
})
|
||||||
|
beforeEach(() => {
|
||||||
|
vi.clearAllMocks();
|
||||||
|
// Mock Files.importModule
|
||||||
|
vi.spyOn(Files, 'importModule').mockResolvedValue({
|
||||||
|
module: mockModule
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
});
|
||||||
|
it('should set presence once.', async () => {
|
||||||
|
const setPresenceMock = vi.fn();
|
||||||
|
const mockPath = '/path/to/presence/config';
|
||||||
|
|
||||||
|
await presenceHandler(mockPath, setPresenceMock);
|
||||||
|
|
||||||
|
expect(Files.importModule).toHaveBeenCalledWith(mockPath);
|
||||||
|
expect(setPresenceMock).toHaveBeenCalledOnce();
|
||||||
|
})
|
||||||
|
|
||||||
|
})
|
||||||
65
test/handlers.test.ts
Normal file
65
test/handlers.test.ts
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
//@ts-nocheck
|
||||||
|
import { beforeEach, describe, expect, it, test } from 'vitest';
|
||||||
|
import { callInitPlugins } from '../src/handlers/event-utils';
|
||||||
|
|
||||||
|
import { Client } from 'discord.js'
|
||||||
|
import { faker } from '@faker-js/faker';
|
||||||
|
import { EventEmitter } from 'events';
|
||||||
|
import { CommandControlPlugin, CommandType, controller } from '../src';
|
||||||
|
import { createRandomModule, createRandomInitPlugin } from './setup/util';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
function mockDeps() {
|
||||||
|
return {
|
||||||
|
'@sern/client': new Client(),
|
||||||
|
'@sern/emitter': new EventEmitter()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
describe('calling init plugins', async () => {
|
||||||
|
let deps;
|
||||||
|
beforeEach(() => {
|
||||||
|
deps = mockDeps()
|
||||||
|
});
|
||||||
|
|
||||||
|
test ('call init plugins', async () => {
|
||||||
|
const plugins = createRandomInitPlugin('go', { name: "abc" })
|
||||||
|
const mod = createRandomModule([plugins])
|
||||||
|
const s = await callInitPlugins(mod, deps, false)
|
||||||
|
expect("abc").equal(s.name)
|
||||||
|
})
|
||||||
|
test('init plugins replace array', async () => {
|
||||||
|
const plugins = createRandomInitPlugin('go', { opts: [] })
|
||||||
|
const plugins2 = createRandomInitPlugin('go', { opts: ['a'] })
|
||||||
|
const mod = createRandomModule([plugins, plugins2])
|
||||||
|
const s = await callInitPlugins(mod, deps, false)
|
||||||
|
expect(['a']).deep.equal(s.opts)
|
||||||
|
})
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
test('form sdt', async () => {
|
||||||
|
|
||||||
|
const expectedObject = {
|
||||||
|
"plugin/abc": faker.person.jobArea(),
|
||||||
|
"plugin2/abc": faker.git.branch(),
|
||||||
|
"plugin3/cheese": faker.person.jobArea()
|
||||||
|
}
|
||||||
|
|
||||||
|
const plugin = CommandControlPlugin<CommandType.Slash>((ctx,sdt) => {
|
||||||
|
return controller.next({ "plugin/abc": expectedObject['plugin/abc'] });
|
||||||
|
});
|
||||||
|
const plugin2 = CommandControlPlugin<CommandType.Slash>((ctx,sdt) => {
|
||||||
|
return controller.next({ "plugin2/abc": expectedObject['plugin2/abc'] });
|
||||||
|
});
|
||||||
|
const plugin3 = CommandControlPlugin<CommandType.Slash>((ctx,sdt) => {
|
||||||
|
return controller.next({ "plugin3/cheese": expectedObject['plugin3/cheese'] });
|
||||||
|
});
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
0
test/mockules/!ignd.ts
Normal file
0
test/mockules/!ignd.ts
Normal file
0
test/mockules/!ignored/ignored.ts
Normal file
0
test/mockules/!ignored/ignored.ts
Normal file
0
test/mockules/failed.ts
Normal file
0
test/mockules/failed.ts
Normal file
6
test/mockules/module.ts
Normal file
6
test/mockules/module.ts
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
import { CommandType, commandModule } from '../../src/'
|
||||||
|
export default commandModule({
|
||||||
|
type: CommandType.Both,
|
||||||
|
description: "",
|
||||||
|
execute: (Ctx, args) => {}
|
||||||
|
})
|
||||||
6
test/mockules/ug/pass.ts
Normal file
6
test/mockules/ug/pass.ts
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
import { CommandType, commandModule } from '../../../src/'
|
||||||
|
export default commandModule({
|
||||||
|
type: CommandType.Both,
|
||||||
|
description: "",
|
||||||
|
execute: (Ctx, args) => {}
|
||||||
|
})
|
||||||
54
test/setup/setup-tests.ts
Normal file
54
test/setup/setup-tests.ts
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
import { vi } from 'vitest'
|
||||||
|
import { makeDependencies } from '../../src';
|
||||||
|
import { Client } from 'discord.js';
|
||||||
|
|
||||||
|
vi.mock('discord.js', async (importOriginal) => {
|
||||||
|
const mod = await importOriginal()
|
||||||
|
const ModalSubmitInteraction = class {
|
||||||
|
customId;
|
||||||
|
type = 5;
|
||||||
|
isModalSubmit = vi.fn();
|
||||||
|
constructor(customId) {
|
||||||
|
this.customId = customId;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const ButtonInteraction = class {
|
||||||
|
customId;
|
||||||
|
type = 3;
|
||||||
|
componentType = 2;
|
||||||
|
isButton = vi.fn();
|
||||||
|
constructor(customId) {
|
||||||
|
this.customId = customId;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const AutocompleteInteraction = class {
|
||||||
|
type = 4;
|
||||||
|
option: string;
|
||||||
|
constructor(s: string) {
|
||||||
|
this.option = s;
|
||||||
|
}
|
||||||
|
options = {
|
||||||
|
getFocused: vi.fn(),
|
||||||
|
getSubcommand: vi.fn(),
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
return {
|
||||||
|
Client : vi.fn(),
|
||||||
|
Collection: mod.Collection,
|
||||||
|
ComponentType: mod.ComponentType,
|
||||||
|
InteractionType: mod.InteractionType,
|
||||||
|
ApplicationCommandOptionType: mod.ApplicationCommandOptionType,
|
||||||
|
ApplicationCommandType: mod.ApplicationCommandType,
|
||||||
|
ModalSubmitInteraction,
|
||||||
|
ButtonInteraction,
|
||||||
|
AutocompleteInteraction,
|
||||||
|
ChatInputCommandInteraction: vi.fn()
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
await makeDependencies(({ add }) => {
|
||||||
|
add('@sern/client', { })
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
48
test/setup/util.ts
Normal file
48
test/setup/util.ts
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
import { faker } from "@faker-js/faker"
|
||||||
|
import { CommandInitPlugin, CommandType, Module, controller } from "../../src"
|
||||||
|
import { Processed } from "../../src/types/core-modules"
|
||||||
|
import { vi } from 'vitest'
|
||||||
|
|
||||||
|
export function createRandomInitPlugin (s: 'go', mut?: Partial<Module>) {
|
||||||
|
return CommandInitPlugin(({ module }) => {
|
||||||
|
if(mut) {
|
||||||
|
Object.entries(mut).forEach(([k, v]) => {
|
||||||
|
module[k] = v
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return s == 'go'
|
||||||
|
? controller.next()
|
||||||
|
: controller.stop()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function createRandomModule(plugins: any[]): Processed<Module> {
|
||||||
|
return {
|
||||||
|
type: CommandType.Both,
|
||||||
|
meta: { id:"", absPath: "" },
|
||||||
|
description: faker.string.alpha(),
|
||||||
|
plugins,
|
||||||
|
name: "cheese",
|
||||||
|
onEvent: [],
|
||||||
|
locals: {},
|
||||||
|
execute: vi.fn(),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export function createRandomChoice() {
|
||||||
|
return {
|
||||||
|
type: faker.number.int({ min: 1, max: 11 }),
|
||||||
|
name: faker.word.noun(),
|
||||||
|
description: faker.word.adjective(),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export function createRandomPlugins(len: number) {
|
||||||
|
const random = () => Math.floor(Math.random() * 2) + 1; // 1 or 2, plugin enum
|
||||||
|
return Array.from({ length: len }, () => ({
|
||||||
|
type: random(),
|
||||||
|
execute: () => (random() === 1 ? controller.next() : controller.stop()),
|
||||||
|
}));
|
||||||
|
}
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
{
|
|
||||||
"compilerOptions": {
|
|
||||||
"rootDir": "src",
|
|
||||||
"strict": true,
|
|
||||||
"esModuleInterop": true,
|
|
||||||
"noImplicitAny": true,
|
|
||||||
"experimentalDecorators": true,
|
|
||||||
"strictNullChecks": true,
|
|
||||||
"moduleResolution": "node",
|
|
||||||
"skipLibCheck": true,
|
|
||||||
"declaration": true,
|
|
||||||
"preserveSymlinks": true,
|
|
||||||
"allowSyntheticDefaultImports": true,
|
|
||||||
"forceConsistentCasingInFileNames": true
|
|
||||||
},
|
|
||||||
"exclude": ["node_modules", "dist"],
|
|
||||||
"include": ["src"]
|
|
||||||
}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "./tsconfig-base.json",
|
|
||||||
"compilerOptions": {
|
|
||||||
"module": "commonjs",
|
|
||||||
"outDir": "dist/cjs",
|
|
||||||
"target": "esnext"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "./tsconfig-base.json",
|
|
||||||
"compilerOptions": {
|
|
||||||
"module": "esnext",
|
|
||||||
"outDir": "dist/esm",
|
|
||||||
"target": "esnext"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,3 +1,21 @@
|
|||||||
{
|
{
|
||||||
"extends": "./tsconfig-esm.json"
|
"compilerOptions": {
|
||||||
|
"rootDir": "src",
|
||||||
|
"strict": true,
|
||||||
|
"esModuleInterop": true,
|
||||||
|
"strictNullChecks": true,
|
||||||
|
"moduleResolution": "node16",
|
||||||
|
"skipLibCheck": true,
|
||||||
|
"declaration": true,
|
||||||
|
"preserveSymlinks": true,
|
||||||
|
"allowSyntheticDefaultImports": true,
|
||||||
|
"forceConsistentCasingInFileNames": true,
|
||||||
|
"isolatedModules": true,
|
||||||
|
"outDir": "dist",
|
||||||
|
"module": "node16",
|
||||||
|
"target": "esnext",
|
||||||
|
"sourceMap": true
|
||||||
|
},
|
||||||
|
"exclude": ["node_modules", "dist"],
|
||||||
|
"include": ["./src", "./src/**/*.d.ts"]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,48 +0,0 @@
|
|||||||
import { defineConfig } from 'tsup';
|
|
||||||
import { writeFile } from 'fs/promises';
|
|
||||||
import ifdefPlugin from 'esbuild-ifdef';
|
|
||||||
const shared = {
|
|
||||||
entry: ['src/index.ts'],
|
|
||||||
external: ['discord.js'],
|
|
||||||
platform: 'node',
|
|
||||||
clean: true,
|
|
||||||
sourcemap: false,
|
|
||||||
};
|
|
||||||
export default defineConfig([
|
|
||||||
{
|
|
||||||
format: 'esm',
|
|
||||||
target: 'node16',
|
|
||||||
tsconfig: './tsconfig-esm.json',
|
|
||||||
outDir: './dist/esm',
|
|
||||||
treeshake: true,
|
|
||||||
esbuildPlugins: [ifdefPlugin({ variables: { MODE: 'esm' }, verbose: true })],
|
|
||||||
outExtension() {
|
|
||||||
return {
|
|
||||||
js: '.mjs',
|
|
||||||
};
|
|
||||||
},
|
|
||||||
async onSuccess() {
|
|
||||||
console.log('writing json esm');
|
|
||||||
await writeFile('./dist/esm/package.json', JSON.stringify({ type: 'module' }));
|
|
||||||
},
|
|
||||||
...shared,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
format: 'cjs',
|
|
||||||
esbuildPlugins: [ifdefPlugin({ variables: { MODE: 'cjs' }, verbose: true })],
|
|
||||||
splitting: false,
|
|
||||||
target: 'node16',
|
|
||||||
tsconfig: './tsconfig-cjs.json',
|
|
||||||
outDir: './dist/cjs',
|
|
||||||
outExtension() {
|
|
||||||
return {
|
|
||||||
js: '.cjs',
|
|
||||||
};
|
|
||||||
},
|
|
||||||
async onSuccess() {
|
|
||||||
console.log('writing json commonjs');
|
|
||||||
await writeFile('./dist/cjs/package.json', JSON.stringify({ type: 'commonjs' }));
|
|
||||||
},
|
|
||||||
...shared,
|
|
||||||
},
|
|
||||||
]);
|
|
||||||
8
vitest.config.ts
Normal file
8
vitest.config.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
// vitest.config.ts or vitest.config.js
|
||||||
|
import { defineConfig } from 'vitest/config'
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
test: {
|
||||||
|
setupFiles: ['./test/setup/setup-tests.ts'],
|
||||||
|
},
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user