lisekilis
lisekilis
Explore posts from servers
CDCloudflare Developers
Created by lisekilis on 3/25/2025 in #workers-help
how to define the existance of secrets in wrangler.jsonc?
No description
15 replies
CDCloudflare Developers
Created by lisekilis on 3/25/2025 in #workers-help
how to define the existance of secrets in wrangler.jsonc?
No description
15 replies
CDCloudflare Developers
Created by lisekilis on 3/25/2025 in #workers-help
how to define the existance of secrets in wrangler.jsonc?
No description
15 replies
CDCloudflare Developers
Created by lisekilis on 3/25/2025 in #workers-help
how to define the existance of secrets in wrangler.jsonc?
worker-configuration.d.ts:
interface Env {
SETTINGS: KVNamespace;
PHOTOS: R2Bucket;

DISCORD_APP_ID: string;
DISCORD_PUBLIC_KEY: string;
DISCORD_BOT_TOKEN: string;
API_TOKEN: string;
}
interface Env {
SETTINGS: KVNamespace;
PHOTOS: R2Bucket;

DISCORD_APP_ID: string;
DISCORD_PUBLIC_KEY: string;
DISCORD_BOT_TOKEN: string;
API_TOKEN: string;
}
somewhere in the code: console.log(env.DISCORD_APP_ID);
15 replies
CDCloudflare Developers
Created by lisekilis on 3/25/2025 in #workers-help
how to define the existance of secrets in wrangler.jsonc?
well then I'm doing it correctly and yet the secrets turn up empty when i try to use them or log them to check if they work
15 replies
CDCloudflare Developers
Created by lisekilis on 3/25/2025 in #workers-help
how to define the existance of secrets in wrangler.jsonc?
i did try to manually type them in worker-configuration.d.ts, stopped ts from screaming @ me but they don't work
15 replies
CDCloudflare Developers
Created by lisekilis on 3/25/2025 in #workers-help
how to define the existance of secrets in wrangler.jsonc?
i am using ts
15 replies
CDCloudflare Developers
Created by lisekilis on 3/25/2025 in #workers-help
how to define the existance of secrets in wrangler.jsonc?
oh and calling them by using env.SECRET_NAME didn't work for me
15 replies
CDCloudflare Developers
Created by lisekilis on 3/17/2025 in #workers-help
Worker secrets How do they work?
turns out that didn't work
4 replies
CDCloudflare Developers
Created by lisekilis on 3/17/2025 in #workers-help
Worker secrets How do they work?
or is there a better way of api token management? i have tried using kv before but decided against it
4 replies
DIAdiscord.js - Imagine an app
Created by lisekilis on 3/16/2025 in #djs-questions
idiot can't figure out how a (ts) bot project should look like
hopefully not at all
33 replies
DIAdiscord.js - Imagine an app
Created by lisekilis on 3/16/2025 in #djs-questions
idiot can't figure out how a (ts) bot project should look like
import process from 'node:process';
import type { ChatInputCommandInteraction } from 'discord.js';
import { SlashCommandBuilder } from 'discord.js';
import type { Command } from './index.js';

export default {
data: new SlashCommandBuilder()
.setName('setmodrole')
.setDescription('Sets the role that is allowed to approve, deny and manage the images')
.addRoleOption((option) =>
option.setName('role').setDescription('The role to set as image moderator').setRequired(true),
)
.toJSON(),
async execute(interaction: ChatInputCommandInteraction) {
if (!interaction.memberPermissions?.has('Administrator')) {
await interaction.reply({
content: 'You do not have the required permissions to use this command',
ephemeral: true,
});
return;
}

const role = interaction.options.getRole('role');
if (!role) {
await interaction.reply({ content: 'The role provided is invalid', ephemeral: true });
return;
}

await fetch(`https://fry.api.lisekils.dev/settings/${interaction.guildId}`, {
method: 'PATCH',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${process.env.API_TOKEN}`,
},
body: JSON.stringify({
modRoleId: role.id,
}),
});
await interaction.reply({
content: `The role ${role.name} has been set as the image moderator role`,
ephemeral: true,
});
},
} satisfies Command;
import process from 'node:process';
import type { ChatInputCommandInteraction } from 'discord.js';
import { SlashCommandBuilder } from 'discord.js';
import type { Command } from './index.js';

export default {
data: new SlashCommandBuilder()
.setName('setmodrole')
.setDescription('Sets the role that is allowed to approve, deny and manage the images')
.addRoleOption((option) =>
option.setName('role').setDescription('The role to set as image moderator').setRequired(true),
)
.toJSON(),
async execute(interaction: ChatInputCommandInteraction) {
if (!interaction.memberPermissions?.has('Administrator')) {
await interaction.reply({
content: 'You do not have the required permissions to use this command',
ephemeral: true,
});
return;
}

const role = interaction.options.getRole('role');
if (!role) {
await interaction.reply({ content: 'The role provided is invalid', ephemeral: true });
return;
}

await fetch(`https://fry.api.lisekils.dev/settings/${interaction.guildId}`, {
method: 'PATCH',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${process.env.API_TOKEN}`,
},
body: JSON.stringify({
modRoleId: role.id,
}),
});
await interaction.reply({
content: `The role ${role.name} has been set as the image moderator role`,
ephemeral: true,
});
},
} satisfies Command;
33 replies
DIAdiscord.js - Imagine an app
Created by lisekilis on 3/16/2025 in #djs-questions
idiot can't figure out how a (ts) bot project should look like
how wrong is this
33 replies
DIAdiscord.js - Imagine an app
Created by lisekilis on 3/16/2025 in #djs-questions
idiot can't figure out how a (ts) bot project should look like
alright
33 replies
DIAdiscord.js - Imagine an app
Created by lisekilis on 3/16/2025 in #djs-questions
idiot can't figure out how a (ts) bot project should look like
how bad of an idea is storage of the bot settings in cloudflare kv storage
33 replies
DIAdiscord.js - Imagine an app
Created by lisekilis on 3/16/2025 in #djs-questions
idiot can't figure out how a (ts) bot project should look like
got 1 kinda relevant question
33 replies
DIAdiscord.js - Imagine an app
Created by lisekilis on 3/16/2025 in #djs-questions
idiot can't figure out how a (ts) bot project should look like
it is very wrong
33 replies
DIAdiscord.js - Imagine an app
Created by lisekilis on 3/16/2025 in #djs-questions
idiot can't figure out how a (ts) bot project should look like
this is the one thing i have from before i scrapped everything
import process from 'node:process';
import type { Role, CommandInteraction } from 'discord.js';
import { SlashCommandBuilder } from 'discord.js';

export const data = new SlashCommandBuilder()
.setName('setmodrole')
.setDescription('Set the role that is allowed to approve, deny, or delete pillow images')
.addRoleOption((option) => option.setName('role').setDescription('The role to set as moderator').setRequired(true));

export async function execute(interaction: CommandInteraction) {
if (!interaction.memberPermissions?.has('Administrator')) {
await interaction.reply({ content: 'You do not have permission to set the moderator role.', ephemeral: true });
return;
}

const role = interaction.options.get('role')?.role as Role;
if (!role) {
await interaction.reply({ content: 'Role not found.', ephemeral: true });
return;
}

await fetch(`pillow.api.lisekilis.dev/mod/${interaction.guildId}`, {
method: 'POST',
headers: {
Authorization: `Bearer ${process.env.PILLOW_API_KEY}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
roleId: role.id,
}),
});

await interaction.reply({ content: `Moderator role has been set to **${role.name}**.`, ephemeral: true });
}
import process from 'node:process';
import type { Role, CommandInteraction } from 'discord.js';
import { SlashCommandBuilder } from 'discord.js';

export const data = new SlashCommandBuilder()
.setName('setmodrole')
.setDescription('Set the role that is allowed to approve, deny, or delete pillow images')
.addRoleOption((option) => option.setName('role').setDescription('The role to set as moderator').setRequired(true));

export async function execute(interaction: CommandInteraction) {
if (!interaction.memberPermissions?.has('Administrator')) {
await interaction.reply({ content: 'You do not have permission to set the moderator role.', ephemeral: true });
return;
}

const role = interaction.options.get('role')?.role as Role;
if (!role) {
await interaction.reply({ content: 'Role not found.', ephemeral: true });
return;
}

await fetch(`pillow.api.lisekilis.dev/mod/${interaction.guildId}`, {
method: 'POST',
headers: {
Authorization: `Bearer ${process.env.PILLOW_API_KEY}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
roleId: role.id,
}),
});

await interaction.reply({ content: `Moderator role has been set to **${role.name}**.`, ephemeral: true });
}
33 replies
DIAdiscord.js - Imagine an app
Created by lisekilis on 3/16/2025 in #djs-questions
idiot can't figure out how a (ts) bot project should look like
i'll attempt to do that and get back to you if i encounter any issues or succeed
33 replies