Merge branch 'develop' into feature/258-fix-tests
This commit is contained in:
commit
74cdd04d27
17 changed files with 9001 additions and 4933 deletions
|
@ -7,7 +7,7 @@ steps:
|
||||||
- name: deploy
|
- name: deploy
|
||||||
image: appleboy/drone-ssh
|
image: appleboy/drone-ssh
|
||||||
settings:
|
settings:
|
||||||
host: 192.168.68.120
|
host: 192.168.1.115
|
||||||
username: vylpes
|
username: vylpes
|
||||||
password:
|
password:
|
||||||
from_secret: ssh_password
|
from_secret: ssh_password
|
||||||
|
@ -28,7 +28,7 @@ steps:
|
||||||
- name: stage
|
- name: stage
|
||||||
image: appleboy/drone-ssh
|
image: appleboy/drone-ssh
|
||||||
settings:
|
settings:
|
||||||
host: 192.168.68.120
|
host: 192.168.1.115
|
||||||
username: vylpes
|
username: vylpes
|
||||||
password:
|
password:
|
||||||
from_secret: ssh_password
|
from_secret: ssh_password
|
||||||
|
|
67
.forgejo/workflows/production.yml
Normal file
67
.forgejo/workflows/production.yml
Normal file
|
@ -0,0 +1,67 @@
|
||||||
|
name: Deploy To Production
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
environment: prod
|
||||||
|
|
||||||
|
runs-on: node
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Use Node.js
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: 18.x
|
||||||
|
- run: npm ci
|
||||||
|
- run: npm run build
|
||||||
|
- run: npm test
|
||||||
|
|
||||||
|
- name: "Copy files over to location"
|
||||||
|
run: cp -r . ${{ secrets.PROD_REPO_PATH }}
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
environment: prod
|
||||||
|
needs: build
|
||||||
|
runs-on: node
|
||||||
|
steps:
|
||||||
|
- uses: https://github.com/appleboy/ssh-action@v1.0.0
|
||||||
|
env:
|
||||||
|
DB_NAME: ${{ secrets.PROD_DB_NAME }}
|
||||||
|
DB_AUTH_USER: ${{ secrets.PROD_DB_AUTH_USER }}
|
||||||
|
DB_AUTH_PASS: ${{ secrets.PROD_DB_AUTH_PASS }}
|
||||||
|
DB_HOST: ${{ secrets.PROD_DB_HOST }}
|
||||||
|
DB_PORT: ${{ secrets.PROD_DB_PORT }}
|
||||||
|
DB_ROOT_HOST: ${{ secrets.PROD_DB_ROOT_HOST }}
|
||||||
|
DB_SYNC: ${{ secrets.PROD_DB_SYNC }}
|
||||||
|
DB_LOGGING: ${{ secrets.PROD_DB_LOGGING }}
|
||||||
|
DB_DATA_LOCATION: ${{ secrets.PROD_DB_DATA_LOCATION }}
|
||||||
|
SERVER_PATH: ${{ secrets.PROD_SSH_SERVER_PATH }}
|
||||||
|
BOT_TOKEN: ${{ secrets.PROD_BOT_TOKEN }}
|
||||||
|
BOT_VER: ${{ vars.PROD_BOT_VER }}
|
||||||
|
BOT_AUTHOR: ${{ vars.PROD_BOT_AUTHOR }}
|
||||||
|
BOT_OWNERID: ${{ vars.PROD_BOT_OWNERID }}
|
||||||
|
BOT_CLIENTID: ${{ vars.PROD_BOT_CLIENTID }}
|
||||||
|
ABOUT_FUNDING: ${{ vars.PROD_ABOUT_FUNDING }}
|
||||||
|
ABOUT_REPO: ${{ vars.PROD_ABOUT_REPO }}
|
||||||
|
CACHE_INTERVAL: ${{ vars.PROD_CACHE_INTERVAL }}
|
||||||
|
with:
|
||||||
|
host: ${{ secrets.PROD_SSH_HOST }}
|
||||||
|
username: ${{ secrets.PROD_SSH_USER }}
|
||||||
|
key: ${{ secrets.PROD_SSH_KEY }}
|
||||||
|
port: ${{ secrets.PROD_SSH_PORT }}
|
||||||
|
envs: DB_NAME,DB_AUTH_USER,DB_AUTH_PASS,DB_HOST,DB_PORT,DB_ROOT_HOST,DB_SYNC,DB_LOGGING,DB_DATA_LOCATION,BOT_TOKEN,BOT_VER,BOT_AUTHOR,BOT_OWNERID,BOT_CLIENTID,ABOUT_FUNDING,ABOUT_REPO,CACHE_INTERVAL
|
||||||
|
script: |
|
||||||
|
source .sshrc \
|
||||||
|
&& cd /home/vylpes/apps/vylbot/vylbot_prod \
|
||||||
|
&& docker compose down \
|
||||||
|
&& (pm2 stop vylbot_prod || true) \
|
||||||
|
&& (pm2 delete vylbot_prod || true) \
|
||||||
|
&& docker compose up -d \
|
||||||
|
&& sleep 10 \
|
||||||
|
&& npm run db:up \
|
||||||
|
&& pm2 start --name vylbot_prod dist/vylbot.js
|
67
.forgejo/workflows/stage.yml
Normal file
67
.forgejo/workflows/stage.yml
Normal file
|
@ -0,0 +1,67 @@
|
||||||
|
name: Deploy To Stage
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- develop
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
environment: prod
|
||||||
|
|
||||||
|
runs-on: node
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Use Node.js
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: 18.x
|
||||||
|
- run: npm ci
|
||||||
|
- run: npm run build
|
||||||
|
- run: npm test
|
||||||
|
|
||||||
|
- name: "Copy files over to location"
|
||||||
|
run: cp -r . ${{ secrets.STAGE_REPO_PATH }}
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
environment: prod
|
||||||
|
needs: build
|
||||||
|
runs-on: node
|
||||||
|
steps:
|
||||||
|
- uses: https://github.com/appleboy/ssh-action@v1.0.0
|
||||||
|
env:
|
||||||
|
DB_NAME: ${{ secrets.STAGE_DB_NAME }}
|
||||||
|
DB_AUTH_USER: ${{ secrets.STAGE_DB_AUTH_USER }}
|
||||||
|
DB_AUTH_PASS: ${{ secrets.STAGE_DB_AUTH_PASS }}
|
||||||
|
DB_HOST: ${{ secrets.STAGE_DB_HOST }}
|
||||||
|
DB_PORT: ${{ secrets.STAGE_DB_PORT }}
|
||||||
|
DB_ROOT_HOST: ${{ secrets.STAGE_DB_ROOT_HOST }}
|
||||||
|
DB_SYNC: ${{ secrets.STAGE_DB_SYNC }}
|
||||||
|
DB_LOGGING: ${{ secrets.STAGE_DB_LOGGING }}
|
||||||
|
DB_DATA_LOCATION: ${{ secrets.STAGE_DB_DATA_LOCATION }}
|
||||||
|
SERVER_PATH: ${{ secrets.STAGE_SSH_SERVER_PATH }}
|
||||||
|
BOT_TOKEN: ${{ secrets.STAGE_BOT_TOKEN }}
|
||||||
|
BOT_VER: ${{ vars.STAGE_BOT_VER }}
|
||||||
|
BOT_AUTHOR: ${{ vars.STAGE_BOT_AUTHOR }}
|
||||||
|
BOT_OWNERID: ${{ vars.STAGE_BOT_OWNERID }}
|
||||||
|
BOT_CLIENTID: ${{ vars.STAGE_BOT_CLIENTID }}
|
||||||
|
ABOUT_FUNDING: ${{ vars.STAGE_ABOUT_FUNDING }}
|
||||||
|
ABOUT_REPO: ${{ vars.STAGE_ABOUT_REPO }}
|
||||||
|
CACHE_INTERVAL: ${{ vars.STAGE_CACHE_INTERVAL }}
|
||||||
|
with:
|
||||||
|
host: ${{ secrets.STAGE_SSH_HOST }}
|
||||||
|
username: ${{ secrets.STAGE_SSH_USER }}
|
||||||
|
key: ${{ secrets.STAGE_SSH_KEY }}
|
||||||
|
port: ${{ secrets.STAGE_SSH_PORT }}
|
||||||
|
envs: DB_NAME,DB_AUTH_USER,DB_AUTH_PASS,DB_HOST,DB_PORT,DB_ROOT_HOST,DB_SYNC,DB_LOGGING,DB_DATA_LOCATION,BOT_TOKEN,BOT_VER,BOT_AUTHOR,BOT_OWNERID,BOT_CLIENTID,ABOUT_FUNDING,ABOUT_REPO,CACHE_INTERVAL
|
||||||
|
script: |
|
||||||
|
source .sshrc \
|
||||||
|
&& cd /home/vylpes/apps/vylbot/vylbot_stage \
|
||||||
|
&& docker compose down \
|
||||||
|
&& (pm2 stop vylbot_stage || true) \
|
||||||
|
&& (pm2 delete vylbot_stage || true) \
|
||||||
|
&& docker compose up -d \
|
||||||
|
&& sleep 10 \
|
||||||
|
&& npm run db:up \
|
||||||
|
&& pm2 start --name vylbot_stage dist/vylbot.js
|
24
.forgejo/workflows/test.yml
Normal file
24
.forgejo/workflows/test.yml
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
name: Test
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- feature/*
|
||||||
|
- hotfix/*
|
||||||
|
- renovate/*
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
environment: stage
|
||||||
|
|
||||||
|
runs-on: node
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Use Node.js
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: 18.x
|
||||||
|
- run: npm ci
|
||||||
|
- run: npm run build
|
||||||
|
- run: npm test
|
26
.prod.env
26
.prod.env
|
@ -1,26 +0,0 @@
|
||||||
# Security Warning! Do not commit this file to any VCS!
|
|
||||||
# This is a local file to speed up development process,
|
|
||||||
# so you don't have to change your environment variables.
|
|
||||||
#
|
|
||||||
# This is not applied to `.env.template`!
|
|
||||||
# Template files must be committed to the VCS, but must not contain
|
|
||||||
# any secret values.
|
|
||||||
|
|
||||||
BOT_TOKEN=
|
|
||||||
BOT_VER=3.3.0
|
|
||||||
BOT_AUTHOR=Vylpes
|
|
||||||
BOT_OWNERID=147392775707426816
|
|
||||||
BOT_CLIENTID=680083120896081954
|
|
||||||
|
|
||||||
ABOUT_FUNDING=https://ko-fi.com/vylpes
|
|
||||||
ABOUT_REPO=https://gitea.vylpes.xyz/RabbitLabs/vylbot-app
|
|
||||||
|
|
||||||
CACHE_INTERVAL=1800000 # 30 minutes
|
|
||||||
|
|
||||||
DB_HOST=127.0.0.1
|
|
||||||
DB_PORT=3121
|
|
||||||
DB_NAME=vylbot
|
|
||||||
DB_AUTH_USER=prod
|
|
||||||
DB_AUTH_PASS=prod
|
|
||||||
DB_SYNC=false
|
|
||||||
DB_LOGGING=false
|
|
26
.stage.env
26
.stage.env
|
@ -1,26 +0,0 @@
|
||||||
# Security Warning! Do not commit this file to any VCS!
|
|
||||||
# This is a local file to speed up development process,
|
|
||||||
# so you don't have to change your environment variables.
|
|
||||||
#
|
|
||||||
# This is not applied to `.env.template`!
|
|
||||||
# Template files must be committed to the VCS, but must not contain
|
|
||||||
# any secret values.
|
|
||||||
|
|
||||||
BOT_TOKEN=
|
|
||||||
BOT_VER=3.3.0
|
|
||||||
BOT_AUTHOR=Vylpes
|
|
||||||
BOT_OWNERID=147392775707426816
|
|
||||||
BOT_CLIENTID=1016767908740857949
|
|
||||||
|
|
||||||
ABOUT_FUNDING=https://ko-fi.com/vylpes
|
|
||||||
ABOUT_REPO=https://gitea.vylpes.xyz/RabbitLabs/vylbot-app
|
|
||||||
|
|
||||||
CACHE_INTERVAL=1800000 # 30 minutes
|
|
||||||
|
|
||||||
DB_HOST=127.0.0.1
|
|
||||||
DB_PORT=3111
|
|
||||||
DB_NAME=vylbot
|
|
||||||
DB_AUTH_USER=stage
|
|
||||||
DB_AUTH_PASS=stage
|
|
||||||
DB_SYNC=false
|
|
||||||
DB_LOGGING=false
|
|
|
@ -1,31 +0,0 @@
|
||||||
version: "3.9"
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
prod_database_data:
|
|
||||||
|
|
||||||
services:
|
|
||||||
# discord:
|
|
||||||
# build: .
|
|
||||||
|
|
||||||
database:
|
|
||||||
image: mysql/mysql-server
|
|
||||||
command: --default-authentication-plugin=mysql_native_password
|
|
||||||
restart: always
|
|
||||||
environment:
|
|
||||||
- MYSQL_DATABASE=vylbot
|
|
||||||
- MYSQL_USER=prod
|
|
||||||
- MYSQL_PASSWORD=prod
|
|
||||||
- MYSQL_ROOT_PASSWORD=root
|
|
||||||
- MYSQL_ROOT_HOST=0.0.0.0
|
|
||||||
ports:
|
|
||||||
- "3121:3306"
|
|
||||||
volumes:
|
|
||||||
- prod_database_data:/var/lib/mysql
|
|
||||||
|
|
||||||
phpmyadmin:
|
|
||||||
image: phpmyadmin
|
|
||||||
restart: always
|
|
||||||
ports:
|
|
||||||
- "3122:80"
|
|
||||||
environment:
|
|
||||||
- PMA_ARBITRARY=1
|
|
|
@ -1,31 +0,0 @@
|
||||||
version: "3.9"
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
stage_database_data:
|
|
||||||
|
|
||||||
services:
|
|
||||||
# discord:
|
|
||||||
# build: .
|
|
||||||
|
|
||||||
database:
|
|
||||||
image: mysql/mysql-server
|
|
||||||
command: --default-authentication-plugin=mysql_native_password
|
|
||||||
restart: always
|
|
||||||
environment:
|
|
||||||
- MYSQL_DATABASE=vylbot
|
|
||||||
- MYSQL_USER=stage
|
|
||||||
- MYSQL_PASSWORD=stage
|
|
||||||
- MYSQL_ROOT_PASSWORD=root
|
|
||||||
- MYSQL_ROOT_HOST=0.0.0.0
|
|
||||||
ports:
|
|
||||||
- "3111:3306"
|
|
||||||
volumes:
|
|
||||||
- stage_database_data:/var/lib/mysql
|
|
||||||
|
|
||||||
phpmyadmin:
|
|
||||||
image: phpmyadmin
|
|
||||||
restart: always
|
|
||||||
ports:
|
|
||||||
- "3112:80"
|
|
||||||
environment:
|
|
||||||
- PMA_ARBITRARY=1
|
|
|
@ -1,31 +1,17 @@
|
||||||
version: "3.9"
|
version: "3.9"
|
||||||
|
|
||||||
volumes:
|
|
||||||
dev_database_data:
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
# discord:
|
|
||||||
# build: .
|
|
||||||
|
|
||||||
database:
|
database:
|
||||||
image: mysql/mysql-server
|
image: mysql/mysql-server
|
||||||
command: --default-authentication-plugin=mysql_native_password
|
command: --default-authentication-plugin=mysql_native_password
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
- MYSQL_DATABASE=vylbot
|
- MYSQL_DATABASE=$DB_NAME
|
||||||
- MYSQL_USER=dev
|
- MYSQL_USER=$DB_AUTH_USER
|
||||||
- MYSQL_PASSWORD=dev
|
- MYSQL_PASSWORD=$DB_AUTH_PASS
|
||||||
- MYSQL_ROOT_PASSWORD=root
|
- MYSQL_ROOT_PASSWORD=$DB_AUTH_PASS
|
||||||
- MYSQL_ROOT_HOST=0.0.0.0
|
- MYSQL_ROOT_HOST=$DB_ROOT_HOST
|
||||||
ports:
|
ports:
|
||||||
- "3101:3306"
|
- "$DB_PORT:3306"
|
||||||
volumes:
|
volumes:
|
||||||
- dev_database_data:/var/lib/mysql
|
- $DB_DATA_LOCATION:/var/lib/mysql
|
||||||
|
|
||||||
phpmyadmin:
|
|
||||||
image: phpmyadmin
|
|
||||||
restart: always
|
|
||||||
ports:
|
|
||||||
- "3102:80"
|
|
||||||
environment:
|
|
||||||
- PMA_ARBITRARY=1
|
|
8815
package-lock.json
generated
Normal file
8815
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "vylbot-app",
|
"name": "vylbot-app",
|
||||||
"version": "3.2.1",
|
"version": "3.2.2",
|
||||||
"description": "A discord bot made for Vylpes' Den",
|
"description": "A discord bot made for Vylpes' Den",
|
||||||
"main": "./dist/vylbot",
|
"main": "./dist/vylbot",
|
||||||
"typings": "./dist",
|
"typings": "./dist",
|
||||||
|
@ -37,7 +37,7 @@
|
||||||
"jest-mock-extended": "^3.0.0",
|
"jest-mock-extended": "^3.0.0",
|
||||||
"minimatch": "9.0.3",
|
"minimatch": "9.0.3",
|
||||||
"mysql": "^2.18.1",
|
"mysql": "^2.18.1",
|
||||||
"random-bunny": "^2.0.5",
|
"random-bunny": "^2.1.6",
|
||||||
"ts-jest": "^29.0.0",
|
"ts-jest": "^29.0.0",
|
||||||
"typeorm": "0.3.20"
|
"typeorm": "0.3.20"
|
||||||
},
|
},
|
||||||
|
|
|
@ -15,6 +15,8 @@ export default class Bunny extends Command {
|
||||||
public override async execute(interaction: CommandInteraction) {
|
public override async execute(interaction: CommandInteraction) {
|
||||||
if (!interaction.isChatInputCommand()) return;
|
if (!interaction.isChatInputCommand()) return;
|
||||||
|
|
||||||
|
await interaction.deferReply();
|
||||||
|
|
||||||
const subreddits = [
|
const subreddits = [
|
||||||
'rabbits',
|
'rabbits',
|
||||||
'bunnieswithhats',
|
'bunnieswithhats',
|
||||||
|
@ -37,9 +39,9 @@ export default class Bunny extends Command {
|
||||||
.setURL(`https://reddit.com${result.Result!.Permalink}`)
|
.setURL(`https://reddit.com${result.Result!.Permalink}`)
|
||||||
.setFooter({ text: `r/${selectedSubreddit} · ${result.Result!.Ups} upvotes`});
|
.setFooter({ text: `r/${selectedSubreddit} · ${result.Result!.Ups} upvotes`});
|
||||||
|
|
||||||
await interaction.reply({ embeds: [ embed ]});
|
await interaction.editReply({ embeds: [ embed ]});
|
||||||
} else {
|
} else {
|
||||||
await interaction.reply("There was an error running this command.");
|
await interaction.editReply("There was an error running this command.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -7,7 +7,7 @@ export default class Unmute extends Command {
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
|
|
||||||
super.CommandBuilder = new SlashCommandBuilder()
|
this.CommandBuilder = new SlashCommandBuilder()
|
||||||
.setName("unmute")
|
.setName("unmute")
|
||||||
.setDescription("(DEPRECATED) Unmute a member in the server with an optional reason")
|
.setDescription("(DEPRECATED) Unmute a member in the server with an optional reason")
|
||||||
.setDefaultMemberPermissions(PermissionsBitField.Flags.ModerateMembers)
|
.setDefaultMemberPermissions(PermissionsBitField.Flags.ModerateMembers)
|
||||||
|
|
|
@ -3,7 +3,9 @@ import NicknameChanged from "./GuildMemberUpdate/NicknameChanged";
|
||||||
import CacheHelper from "../../helpers/CacheHelper";
|
import CacheHelper from "../../helpers/CacheHelper";
|
||||||
|
|
||||||
export default async function GuildMemberUpdate(oldMember: GuildMember, newMember: GuildMember) {
|
export default async function GuildMemberUpdate(oldMember: GuildMember, newMember: GuildMember) {
|
||||||
await CacheHelper.UpdateServerCache(newMember.guild);
|
const updatedFromCache = await CacheHelper.UpdateServerCache(newMember.guild);
|
||||||
|
|
||||||
|
if (updatedFromCache) return;
|
||||||
|
|
||||||
if (oldMember.nickname !== newMember.nickname) { // Nickname change
|
if (oldMember.nickname !== newMember.nickname) { // Nickname change
|
||||||
await NicknameChanged(oldMember, newMember);
|
await NicknameChanged(oldMember, newMember);
|
||||||
|
|
|
@ -2,10 +2,10 @@ import { Guild } from "discord.js";
|
||||||
import Server from "../database/entities/Server";
|
import Server from "../database/entities/Server";
|
||||||
|
|
||||||
export default class CacheHelper {
|
export default class CacheHelper {
|
||||||
public static async UpdateServerCache(guild: Guild) {
|
public static async UpdateServerCache(guild: Guild): Promise<boolean> {
|
||||||
const cacheInterval = process.env.CACHE_INTERVAL;
|
const cacheInterval = process.env.CACHE_INTERVAL;
|
||||||
|
|
||||||
if (!cacheInterval) return;
|
if (!cacheInterval) return false;
|
||||||
|
|
||||||
let server = await Server.FetchOneById(Server, guild.id);
|
let server = await Server.FetchOneById(Server, guild.id);
|
||||||
|
|
||||||
|
@ -14,9 +14,15 @@ export default class CacheHelper {
|
||||||
await server.Save(Server, server);
|
await server.Save(Server, server);
|
||||||
|
|
||||||
await CacheHelper.UpdateCache(guild);
|
await CacheHelper.UpdateCache(guild);
|
||||||
} else if (server.LastCached.getTime() + Number(cacheInterval) < Date.now()) {
|
|
||||||
|
return true;
|
||||||
|
} else if (server.LastCached.getTime() + Number(cacheInterval) > Date.now()) {
|
||||||
await CacheHelper.UpdateCache(guild);
|
await CacheHelper.UpdateCache(guild);
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static async UpdateCache(guild: Guild) {
|
private static async UpdateCache(guild: Guild) {
|
||||||
|
|
Loading…
Reference in a new issue