Skip to content

Commit d4f055f

Browse files
30 - remove rosary and music commands (#32)
1 parent db3c55d commit d4f055f

13 files changed

+40
-233
lines changed

Makefile

+16-33
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,31 @@
11
# build
2-
.PHONY: build/full build/lite
2+
.PHONY: build
33

4-
## build/full: builds Saint Anonymous with music player
5-
build/full:
6-
@docker build --tag cadav001/saint-anonymous:full --platform linux/amd64 --file ./deployments/full/Dockerfile .
7-
8-
## build/lite: builds Saint Anonymous without music player
9-
build/lite:
10-
@docker build --tag cadav001/saint-anonymous:lite --platform linux/amd64 --file ./deployments/lite/Dockerfile .
4+
## build: builds Saint Anonymous
5+
build:
6+
@docker build --tag cadav001/saint-anonymous:latest --platform linux/amd64 --file ./deployments/Dockerfile .
117

128
# deploy
13-
.PHONY: deploy/full deploy/lite
14-
15-
## deploy/full: deploys Discord commands to server including music player's
16-
deploy/full:
17-
@VERSION=FULL npm run setup
9+
.PHONY: deploy
1810

19-
## deploy/lite: deploys Discord commands to server
20-
deploy/lite:
11+
## deploy: deploys Discord commands to server
12+
deploy:
2113
@npm run setup
2214

2315
# start
24-
.PHONY: start/full start/lite
16+
.PHONY: start
2517

26-
## start/full: starts up Saint Anonymous docker image with music player
27-
start/full:
28-
@docker-compose --file docker-compose.full.yml build
29-
@docker-compose --file docker-compose.full.yml up --detach
30-
31-
## start/lite: starts up Saint Anonymous docker image with music player
32-
start/lite:
33-
@docker-compose --file docker-compose.lite.yml build
34-
@docker-compose --file docker-compose.lite.yml up --detach
18+
## start: starts up Saint Anonymous docker image
19+
start:
20+
@docker compose --file docker-compose.yml build
21+
@docker compose --file docker-compose.yml up --detach
3522

3623
# stop
37-
.PHONY: stop/full stop/lite
38-
39-
## stop/full: Stops Saint Anonymous full setup
40-
stop/full:
41-
@docker-compose --file docker-compose.full.yml down --volumes
24+
.PHONY: stop
4225

43-
## stop/lite: Stops Saint Anonymous lite setup
44-
stop/lite:
45-
@docker-compose --file docker-compose.lite.yml down --volumes
26+
## stop: Stops Saint Anonymous
27+
stop:
28+
@docker compose --file docker-compose.yml down --volumes
4629

4730
.PHONY: config
4831
config:

README.md

+1-9
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,6 @@ See this repo's Wiki - [Chapter 0](https://github.com/JoshuaTheEngineer/joshua-c
3333

3434
<img width="450" alt="image" src="https://user-images.githubusercontent.com/13317525/168947090-5a8f635c-cde5-4983-986c-efbeef7795aa.png">
3535

36-
2. Slash command `/sing {youtube url}` in the channel. It will start playing the YouTube video in the first channel it finds with #music in its name. Only works if it has one. To stop it playing, run `/hush`
37-
38-
<img width="458" alt="image" src="https://user-images.githubusercontent.com/13317525/168946833-378a2e32-f486-43ea-af09-debb88db4810.png">
39-
40-
3. Slash command `/praise {enter praise}` in the channel. It will enter the praise with a GIF.
36+
2. Slash command `/praise {enter praise}` in the channel. It will enter the praise with a GIF.
4137

4238
<img width="403" alt="image" src="https://user-images.githubusercontent.com/13317525/168947395-91975fc0-ca0b-4818-a2aa-aa5cda84217f.png">
43-
44-
4. Slash command `/rosary` in the channel and it will assign all members roles in praying the Rosary in a Voice Channel with name 'rosary'. You have the option to choose who can do the opening/closing prayer and reading the mysteries.
45-
46-
<img width="563" alt="image" src="https://user-images.githubusercontent.com/13317525/162878465-feb38fdc-cfd7-4177-adc9-88213d5d64cc.png">

commands/active/about-me.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
const { SlashCommandBuilder } = require('@discordjs/builders');
2-
const message = 'Hello, I am Saint Anonymous.\n\nMy calling is to share your prayers anonymously. I am ordained by Joshua Cadavez, the almighty but humble tech master.\n\nRevere him with 10 decades of the Rosary.';
2+
const message = 'Hello, I am Saint Anonymous.\n\nMy calling is to share your prayers and praises anonymously. Joshua Cadavez is my creator. If you have any suggestions to how may I best serve you, reach out to the Core team.';
33

44
module.exports = {
55
data: new SlashCommandBuilder()
66
.setName('about-me')
77
.setDescription('About the Saint Anonymous bot'),
8-
async execute(interaction) {
9-
await interaction.reply({content: message, ephemeral: true});
10-
}
8+
async execute(interaction) {
9+
await interaction.reply({ content: message, ephemeral: true });
10+
}
1111
}

commands/active/tutorial.js

+4-6
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@ const { SlashCommandBuilder } = require('@discordjs/builders');
22

33
const tutorials = [
44
'**DM** Saint Anonymous your prayer. It will share it to the #prayers channel.\n\n',
5-
'Slash command `/praise {your praise}`. It will share it to the #prayers channel.\n\n',
6-
'Slash command `/rosary`. It will assign Rosary roles via people in the Rosary voice channel.\n\n',
7-
'Slash command `/sing {YouTube URL}`. It will start playing it in the #music channel. To stop it, slash command `/hush`.'
5+
'Slash command `/praise {your praise}`. It will share it to the #prayers channel.\n\n'
86
]
97

108
const message = `To use Saint Anonymous, it'll do the following for you anonymously...\n\n${tutorials.join('')}`;
@@ -13,7 +11,7 @@ module.exports = {
1311
data: new SlashCommandBuilder()
1412
.setName('tutorial')
1513
.setDescription('How to use Saint Anonymous'),
16-
async execute(interaction) {
17-
await interaction.reply({content: message, ephemeral: true});
18-
}
14+
async execute(interaction) {
15+
await interaction.reply({ content: message, ephemeral: true });
16+
}
1917
}
File renamed without changes.

commands/music/hush.js

-17
This file was deleted.

commands/music/sing.js

-78
This file was deleted.

deploy-commands.js

-9
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,6 @@ for (const file of commandFiles) {
1111
commands.push(command.data.toJSON());
1212
}
1313

14-
// Adds music commands if full version is loaded
15-
if(process.env.VERSION == 'FULL') {
16-
commandFiles = fs.readdirSync('./commands/music').filter(file => file.endsWith('.js'));
17-
for (const file of commandFiles) {
18-
const command = require(`./commands/music/${file}`);
19-
commands.push(command.data.toJSON());
20-
}
21-
}
22-
2314
const rest = new REST({ version: '9' }).setToken(token);
2415

2516
rest.put(Routes.applicationGuildCommands(clientId, guildId), { body: commands })
File renamed without changes.

deployments/full/Dockerfile

-34
This file was deleted.

docker-compose.full.yml

-9
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
version: "3.9"
22
services:
33
discord-bot:
4-
image: cadav001/saint-anonymous:lite
4+
image: cadav001/saint-anonymous:latest
55
container_name: saint-anonymous
66
restart: "on-failure"
77
ports:
88
- "8000:8000"
9-
command: ["npm", "run", "dev"]
9+
command: ["npm", "run", "dev"]

index.js

+13-32
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ const { MessageEmbed } = require('discord.js')
55

66
const { token } = require('./config.json');
77

8-
const client = new Client({
8+
const client = new Client({
99
intents: [
10-
Intents.FLAGS.GUILDS,
10+
Intents.FLAGS.GUILDS,
1111
Intents.FLAGS.DIRECT_MESSAGES,
1212
Intents.FLAGS.GUILD_VOICE_STATES
1313
],
1414
partials: [
15-
'CHANNEL', // Required to receive DMs
16-
]
15+
'CHANNEL', // Required to receive DMs
16+
]
1717
});
1818

1919
let guild;
@@ -40,55 +40,36 @@ for (const file of commandFiles) {
4040
client.commands.set(command.data.name, command);
4141
}
4242

43-
// Adds music commands if full version is loaded
44-
if(process.env.VERSION == 'FULL') {
45-
console.log("Loading Music Commands...")
46-
commandFiles = fs.readdirSync('./commands/music').filter(file => file.endsWith('.js'));
47-
for (const file of commandFiles) {
48-
const command = require(`./commands/music/${file}`);
49-
client.commands.set(command.data.name, command);
50-
}
51-
}
52-
5343
client.login(token);
5444

55-
// Reminds to share prayers on Sunday, 3 pm EST
56-
const reminder = new cron('0 19 * * 0', async function() {
45+
// Reminds to share prayers on every other Sunday, 3 pm EST
46+
const reminder = new cron('0 19 * * 0/2', async function () {
5747
let targetGuild = await client.guilds.fetch(guild['guildId']);
5848
if (targetGuild) {
5949
let banterChannel = await targetGuild.channels.fetch()
6050
.then(channels => {
61-
const targetChannel = channels.find(channel =>
62-
{
63-
return channel.name.toLowerCase().includes("banter") && channel.type == 'GUILD_TEXT';
64-
})
51+
const targetChannel = channels.find(channel => {
52+
return channel.name.toLowerCase().includes("banter") && channel.type == 'GUILD_TEXT';
53+
})
6554
return targetChannel;
6655
})
6756

6857
const reminderEmbed = new MessageEmbed()
6958
.setTitle('Hello There!')
70-
.setDescription('Share your prayer requests or praises to me for rosary tomorrow. \n\nOr play your music in the #music channel (keep it Christian 🧐) \n\nGod bless ya!')
59+
.setDescription('Share your prayer requests or praises to me.')
7160
.setColor('#add8e6')
7261
.setImage('https://media.giphy.com/media/yNF0XKi2ZLuow/giphy.gif')
7362
.addFields(
7463
{
75-
name: "Share your Prayer Request Anonymously",
64+
name: "Share your Prayer Request Anonymously",
7665
value: "**DM** it to me. I'll share it to the #prayers channel"
7766
},
7867
{
79-
name: "Share your Praises Anonymously",
68+
name: "Share your Praises Anonymously",
8069
value: "In the banter channel. type `/praise {your praise}`"
81-
},
82-
{
83-
name: "Assign Rosary roles",
84-
value: "Have all members in the Rosary voice channel. In the banter channel. type `/rosary`"
85-
},
86-
{
87-
name: "Play your YouTube Music Anonymously",
88-
value: "In the banter channel, type `/sing {youtube url}`.\nI'll play it on the #music voice channel.\nTo stop it, run `/hush`"
8970
}
9071
);
91-
await banterChannel.send({ embeds: [reminderEmbed]})
72+
await banterChannel.send({ embeds: [reminderEmbed] })
9273
}
9374
})
9475

0 commit comments

Comments
 (0)