generated from nhcarrigan/template
feat: initial prototype
This commit is contained in:
parent
b29ae8970c
commit
970a31895d
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
node_modules
|
6
.vscode/settings.json
vendored
Normal file
6
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"editor.codeActionsOnSave": {
|
||||||
|
"source.fixAll.eslint": "explicit"
|
||||||
|
},
|
||||||
|
"eslint.validate": ["typescript"]
|
||||||
|
}
|
5
eslint.config.js
Normal file
5
eslint.config.js
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import NaomisConfig from "@nhcarrigan/eslint-config";
|
||||||
|
|
||||||
|
export default [
|
||||||
|
...NaomisConfig,
|
||||||
|
];
|
35
package.json
Normal file
35
package.json
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{
|
||||||
|
"name": "mommy-bot",
|
||||||
|
"version": "0.0.0",
|
||||||
|
"description": "",
|
||||||
|
"type": "module",
|
||||||
|
"main": "prod/index.js",
|
||||||
|
"scripts": {
|
||||||
|
"build": "tsc",
|
||||||
|
"dev": "tsx watch src/index.ts",
|
||||||
|
"lint": "eslint src --max-warnings 0",
|
||||||
|
"start": "op run --env-file=prod.env --no-masking -- node prod/index.js",
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"keywords": [],
|
||||||
|
"author": "Naomi Carrigan",
|
||||||
|
"license": "See license in LICENSE.md",
|
||||||
|
"devDependencies": {
|
||||||
|
"@nhcarrigan/eslint-config": "5.2.0",
|
||||||
|
"@nhcarrigan/typescript-config": "4.0.0",
|
||||||
|
"@types/node": "22.13.9",
|
||||||
|
"@types/node-schedule": "2.1.7",
|
||||||
|
"eslint": "9.21.0",
|
||||||
|
"typescript": "5.8.2"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@atproto/api": "0.14.8",
|
||||||
|
"@nhcarrigan/logger": "1.0.0",
|
||||||
|
"@slack/bolt": "4.2.1",
|
||||||
|
"@slack/oauth": "3.0.2",
|
||||||
|
"discord.js": "14.18.0",
|
||||||
|
"fastify": "5.2.1",
|
||||||
|
"no-profanity": "1.5.1",
|
||||||
|
"node-schedule": "2.1.1"
|
||||||
|
}
|
||||||
|
}
|
5482
pnpm-lock.yaml
generated
Normal file
5482
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load Diff
7
prod.env
Normal file
7
prod.env
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
DISCORD_TOKEN="op://Environment Variables - Naomi/Mommy/discord_token"
|
||||||
|
LOG_TOKEN="op://Environment Variables - Naomi/Alert Server/api_auth"
|
||||||
|
SLACK_CLIENT_SECRET="op://Environment Variables - Naomi/Mommy/slack_client_secret"
|
||||||
|
SLACK_SIGNING_SECRET="op://Environment Variables - Naomi/Mommy/slack_signing_secret"
|
||||||
|
SLACK_CLIENT_ID="op://Environment Variables - Naomi/Mommy/slack_client_id"
|
||||||
|
BSKY_PASSWORD="op://Environment Variables - Naomi/Mommy/bsky_pass"
|
||||||
|
SLACK_STATE_SECRET="op://Environment Variables - Naomi/Mommy/slack_state_secret"
|
62
prod/index.js
Normal file
62
prod/index.js
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
/**
|
||||||
|
* @copyright nhcarrigan
|
||||||
|
* @license Naomi's Public License
|
||||||
|
* @author Naomi Carrigan
|
||||||
|
*/
|
||||||
|
import { AtpAgent } from "@atproto/api";
|
||||||
|
import pkg from "@slack/bolt";
|
||||||
|
import { Client, Events } from "discord.js";
|
||||||
|
import { scheduleJob } from "node-schedule";
|
||||||
|
import { serve } from "./server/serve.js";
|
||||||
|
import { getMommy } from "./utils/getMommy.js";
|
||||||
|
import { logger } from "./utils/logger.js";
|
||||||
|
const { App, FileInstallationStore } = pkg;
|
||||||
|
const discord = new Client({ intents: [] });
|
||||||
|
discord.on(Events.ClientReady, () => {
|
||||||
|
void logger.log("info", "Connected to Discord!");
|
||||||
|
});
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-misused-promises -- This is intentional.
|
||||||
|
discord.on(Events.InteractionCreate, async (interaction) => {
|
||||||
|
if (!interaction.isChatInputCommand()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
await interaction.deferReply();
|
||||||
|
const name = interaction.options.getString("name");
|
||||||
|
const response = await getMommy(name ?? undefined);
|
||||||
|
await interaction.editReply(response);
|
||||||
|
});
|
||||||
|
const slack = new App({
|
||||||
|
clientId: process.env.SLACK_CLIENT_ID ?? "",
|
||||||
|
clientSecret: process.env.SLACK_CLIENT_SECRET ?? "",
|
||||||
|
installationStore: new FileInstallationStore(),
|
||||||
|
installerOptions: {
|
||||||
|
directInstall: true,
|
||||||
|
},
|
||||||
|
scopes: ["commands", "chat:write"],
|
||||||
|
signingSecret: process.env.SLACK_SIGNING_SECRET ?? "",
|
||||||
|
stateSecret: process.env.SLACK_STATE_SECRET ?? "",
|
||||||
|
});
|
||||||
|
slack.command("/mommy", async ({ ack, body, respond }) => {
|
||||||
|
await ack();
|
||||||
|
const response = await getMommy(body.text);
|
||||||
|
await respond(response);
|
||||||
|
});
|
||||||
|
const bsky = new AtpAgent({
|
||||||
|
service: "https://bsky.social",
|
||||||
|
});
|
||||||
|
await discord.login(process.env.DISCORD_TOKEN);
|
||||||
|
await slack.start(8010);
|
||||||
|
await logger.log("info", "Connected to Slack!");
|
||||||
|
await bsky.login({
|
||||||
|
identifier: "mommy.naomi.party",
|
||||||
|
password: process.env.BSKY_PASSWORD ?? "",
|
||||||
|
});
|
||||||
|
await logger.log("info", "Connected to bsky.social!");
|
||||||
|
scheduleJob("0 9 * * *", async () => {
|
||||||
|
const response = await getMommy();
|
||||||
|
await bsky.post({
|
||||||
|
text: response,
|
||||||
|
});
|
||||||
|
await logger.log("info", "Posted to bsky.social!");
|
||||||
|
});
|
||||||
|
serve();
|
72
prod/server/serve.js
Normal file
72
prod/server/serve.js
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
/**
|
||||||
|
* @copyright nhcarrigan
|
||||||
|
* @license Naomi's Public License
|
||||||
|
* @author Naomi Carrigan
|
||||||
|
*/
|
||||||
|
import fastify from "fastify";
|
||||||
|
import { logger } from "../utils/logger.js";
|
||||||
|
const html = `<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Mommy Bot</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<meta name="description" content="Mommy loves you~!" />
|
||||||
|
<script src="https://cdn.nhcarrigan.com/headers/index.js" async defer></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main>
|
||||||
|
<h1>Mommy Bot</h1>
|
||||||
|
<section>
|
||||||
|
<p>Mommy loves you~!</p>
|
||||||
|
<a href="https://slack.com/oauth/v2/authorize?client_id=8569765106322.8554301974567&scope=chat:write,commands&user_scope="><img alt="Add to Slack" height="40" width="139" src="https://platform.slack-edge.com/img/add_to_slack.png" srcSet="https://platform.slack-edge.com/img/add_to_slack.png 1x, https://platform.slack-edge.com/img/add_to_slack@2x.png 2x" /></a>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<h2>Links</h2>
|
||||||
|
<p>
|
||||||
|
<a href="https://git.nhcarrigan.com/nhcarrigan/mommy-bot">
|
||||||
|
<i class="fa-solid fa-code"></i> Source Code
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<a href="https://docs.nhcarrigan.com/">
|
||||||
|
<i class="fa-solid fa-book"></i> Documentation
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<a href="https://chat.nhcarrigan.com">
|
||||||
|
<i class="fa-solid fa-circle-info"></i> Support
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
|
</html>`;
|
||||||
|
/**
|
||||||
|
* Starts up a web server for health monitoring.
|
||||||
|
*/
|
||||||
|
export const serve = () => {
|
||||||
|
try {
|
||||||
|
const server = fastify({
|
||||||
|
logger: false,
|
||||||
|
});
|
||||||
|
server.get("/", (_request, response) => {
|
||||||
|
response.header("Content-Type", "text/html");
|
||||||
|
response.send(html);
|
||||||
|
});
|
||||||
|
server.listen({ port: 8009 }, (error) => {
|
||||||
|
if (error) {
|
||||||
|
void logger.error("instantiate server", error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
void logger.log("debug", "Server listening on port 8009.");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
catch (error) {
|
||||||
|
if (error instanceof Error) {
|
||||||
|
void logger.error("instantiate server", error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
void logger.error("instantiate server", new Error("Unknown error"));
|
||||||
|
}
|
||||||
|
};
|
20
prod/utils/getMommy.js
Normal file
20
prod/utils/getMommy.js
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
/**
|
||||||
|
* @copyright nhcarrigan
|
||||||
|
* @license Naomi's Public License
|
||||||
|
* @author Naomi Carrigan
|
||||||
|
*/
|
||||||
|
import { isProfane } from "no-profanity";
|
||||||
|
/**
|
||||||
|
* Fetches a mommy quote from the API.
|
||||||
|
* @param name - The user's name, if provided.
|
||||||
|
* @returns The mommy quote.
|
||||||
|
*/
|
||||||
|
export const getMommy = async (name = "dear") => {
|
||||||
|
const finalName = isProfane(name)
|
||||||
|
? "dear"
|
||||||
|
: name;
|
||||||
|
const url = `https://mommy.nhcarrigan.com/api?name=${finalName}`;
|
||||||
|
const request = await fetch(url);
|
||||||
|
const response = await request.text();
|
||||||
|
return response;
|
||||||
|
};
|
7
prod/utils/logger.js
Normal file
7
prod/utils/logger.js
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
/**
|
||||||
|
* @copyright nhcarrigan
|
||||||
|
* @license Naomi's Public License
|
||||||
|
* @author Naomi Carrigan
|
||||||
|
*/
|
||||||
|
import { Logger } from "@nhcarrigan/logger";
|
||||||
|
export const logger = new Logger("Mommy", process.env.LOG_TOKEN ?? "");
|
75
src/index.ts
Normal file
75
src/index.ts
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
/**
|
||||||
|
* @copyright nhcarrigan
|
||||||
|
* @license Naomi's Public License
|
||||||
|
* @author Naomi Carrigan
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { AtpAgent } from "@atproto/api";
|
||||||
|
import pkg from "@slack/bolt";
|
||||||
|
import { Client, Events } from "discord.js";
|
||||||
|
import { scheduleJob } from "node-schedule";
|
||||||
|
import { serve } from "./server/serve.js";
|
||||||
|
import { getMommy } from "./utils/getMommy.js";
|
||||||
|
import { logger } from "./utils/logger.js";
|
||||||
|
|
||||||
|
const { App, FileInstallationStore } = pkg;
|
||||||
|
|
||||||
|
const discord = new Client({ intents: [ ] });
|
||||||
|
|
||||||
|
discord.on(Events.ClientReady, () => {
|
||||||
|
void logger.log("info", "Connected to Discord!");
|
||||||
|
});
|
||||||
|
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-misused-promises -- This is intentional.
|
||||||
|
discord.on(Events.InteractionCreate, async(interaction) => {
|
||||||
|
if (!interaction.isChatInputCommand()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
await interaction.deferReply();
|
||||||
|
const name = interaction.options.getString("name");
|
||||||
|
const response = await getMommy(name ?? undefined);
|
||||||
|
await interaction.editReply(response);
|
||||||
|
});
|
||||||
|
|
||||||
|
const slack = new App({
|
||||||
|
clientId: process.env.SLACK_CLIENT_ID ?? "",
|
||||||
|
clientSecret: process.env.SLACK_CLIENT_SECRET ?? "",
|
||||||
|
installationStore: new FileInstallationStore(),
|
||||||
|
installerOptions: {
|
||||||
|
directInstall: true,
|
||||||
|
},
|
||||||
|
scopes: [ "commands", "chat:write" ],
|
||||||
|
signingSecret: process.env.SLACK_SIGNING_SECRET ?? "",
|
||||||
|
stateSecret: process.env.SLACK_STATE_SECRET ?? "",
|
||||||
|
});
|
||||||
|
|
||||||
|
slack.command("/mommy", async({ ack, body, respond }) => {
|
||||||
|
await ack();
|
||||||
|
const response = await getMommy(body.text);
|
||||||
|
await respond(response);
|
||||||
|
});
|
||||||
|
|
||||||
|
const bsky = new AtpAgent({
|
||||||
|
service: "https://bsky.social",
|
||||||
|
});
|
||||||
|
|
||||||
|
await discord.login(process.env.DISCORD_TOKEN);
|
||||||
|
|
||||||
|
await slack.start(8010);
|
||||||
|
await logger.log("info", "Connected to Slack!");
|
||||||
|
|
||||||
|
await bsky.login({
|
||||||
|
identifier: "mommy.naomi.party",
|
||||||
|
password: process.env.BSKY_PASSWORD ?? "",
|
||||||
|
});
|
||||||
|
await logger.log("info", "Connected to bsky.social!");
|
||||||
|
|
||||||
|
scheduleJob("0 9 * * *", async() => {
|
||||||
|
const response = await getMommy();
|
||||||
|
await bsky.post({
|
||||||
|
text: response,
|
||||||
|
});
|
||||||
|
await logger.log("info", "Posted to bsky.social!");
|
||||||
|
});
|
||||||
|
|
||||||
|
serve();
|
76
src/server/serve.ts
Normal file
76
src/server/serve.ts
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
/**
|
||||||
|
* @copyright nhcarrigan
|
||||||
|
* @license Naomi's Public License
|
||||||
|
* @author Naomi Carrigan
|
||||||
|
*/
|
||||||
|
|
||||||
|
import fastify from "fastify";
|
||||||
|
import { logger } from "../utils/logger.js";
|
||||||
|
|
||||||
|
const html = `<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Mommy Bot</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<meta name="description" content="Mommy loves you~!" />
|
||||||
|
<script src="https://cdn.nhcarrigan.com/headers/index.js" async defer></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main>
|
||||||
|
<h1>Mommy Bot</h1>
|
||||||
|
<section>
|
||||||
|
<p>Mommy loves you~!</p>
|
||||||
|
<a href="https://slack.com/oauth/v2/authorize?client_id=8569765106322.8554301974567&scope=chat:write,commands&user_scope="><img alt="Add to Slack" height="40" width="139" src="https://platform.slack-edge.com/img/add_to_slack.png" srcSet="https://platform.slack-edge.com/img/add_to_slack.png 1x, https://platform.slack-edge.com/img/add_to_slack@2x.png 2x" /></a>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<h2>Links</h2>
|
||||||
|
<p>
|
||||||
|
<a href="https://git.nhcarrigan.com/nhcarrigan/mommy-bot">
|
||||||
|
<i class="fa-solid fa-code"></i> Source Code
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<a href="https://docs.nhcarrigan.com/">
|
||||||
|
<i class="fa-solid fa-book"></i> Documentation
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<a href="https://chat.nhcarrigan.com">
|
||||||
|
<i class="fa-solid fa-circle-info"></i> Support
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
|
</html>`;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Starts up a web server for health monitoring.
|
||||||
|
*/
|
||||||
|
export const serve = (): void => {
|
||||||
|
try {
|
||||||
|
const server = fastify({
|
||||||
|
logger: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
server.get("/", (_request, response) => {
|
||||||
|
response.header("Content-Type", "text/html");
|
||||||
|
response.send(html);
|
||||||
|
});
|
||||||
|
|
||||||
|
server.listen({ port: 8009 }, (error) => {
|
||||||
|
if (error) {
|
||||||
|
void logger.error("instantiate server", error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
void logger.log("debug", "Server listening on port 8009.");
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
if (error instanceof Error) {
|
||||||
|
void logger.error("instantiate server", error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
void logger.error("instantiate server", new Error("Unknown error"));
|
||||||
|
}
|
||||||
|
};
|
22
src/utils/getMommy.ts
Normal file
22
src/utils/getMommy.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
/**
|
||||||
|
* @copyright nhcarrigan
|
||||||
|
* @license Naomi's Public License
|
||||||
|
* @author Naomi Carrigan
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { isProfane } from "no-profanity";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetches a mommy quote from the API.
|
||||||
|
* @param name - The user's name, if provided.
|
||||||
|
* @returns The mommy quote.
|
||||||
|
*/
|
||||||
|
export const getMommy = async(name = "dear"): Promise<string> => {
|
||||||
|
const finalName = isProfane(name)
|
||||||
|
? "dear"
|
||||||
|
: name;
|
||||||
|
const url = `https://mommy.nhcarrigan.com/api?name=${finalName}`;
|
||||||
|
const request = await fetch(url);
|
||||||
|
const response = await request.text();
|
||||||
|
return response;
|
||||||
|
};
|
12
src/utils/logger.ts
Normal file
12
src/utils/logger.ts
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
/**
|
||||||
|
* @copyright nhcarrigan
|
||||||
|
* @license Naomi's Public License
|
||||||
|
* @author Naomi Carrigan
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { Logger } from "@nhcarrigan/logger";
|
||||||
|
|
||||||
|
export const logger = new Logger(
|
||||||
|
"Mommy",
|
||||||
|
process.env.LOG_TOKEN ?? "",
|
||||||
|
);
|
7
tsconfig.json
Normal file
7
tsconfig.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"extends": "@nhcarrigan/typescript-config",
|
||||||
|
"compilerOptions": {
|
||||||
|
"rootDir": "./src",
|
||||||
|
"outDir": "./prod",
|
||||||
|
},
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user