generated from nhcarrigan/template
Compare commits
5 Commits
867594efbe
...
main
Author | SHA1 | Date | |
---|---|---|---|
68b806ccba
|
|||
6158fb73a6 | |||
ad12241ad0
|
|||
deed8e6436
|
|||
411a647d2d |
38
.gitea/workflows/ci.yml
Normal file
38
.gitea/workflows/ci.yml
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
name: Node.js CI
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint:
|
||||||
|
name: Lint and Test
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout Source Files
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Use Node.js v22
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: 22
|
||||||
|
|
||||||
|
- name: Setup pnpm
|
||||||
|
uses: pnpm/action-setup@v2
|
||||||
|
with:
|
||||||
|
version: 10
|
||||||
|
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: pnpm install
|
||||||
|
|
||||||
|
- name: Lint Source Files
|
||||||
|
run: pnpm run lint
|
||||||
|
|
||||||
|
- name: Verify Build
|
||||||
|
run: pnpm run build
|
||||||
|
|
||||||
|
- name: Run Tests
|
||||||
|
run: pnpm run test
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
node_modules
|
node_modules
|
||||||
|
prod
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
"dev": "tsx watch src/index.ts",
|
"dev": "tsx watch src/index.ts",
|
||||||
"lint": "eslint src --max-warnings 0",
|
"lint": "eslint src --max-warnings 0",
|
||||||
"start": "op run --env-file=prod.env --no-masking -- node prod/index.js",
|
"start": "op run --env-file=prod.env --no-masking -- node prod/index.js",
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"test": "echo \"Error: no test specified\" && exit 0"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "Naomi Carrigan",
|
"author": "Naomi Carrigan",
|
||||||
|
@ -1,62 +0,0 @@
|
|||||||
/**
|
|
||||||
* @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();
|
|
@ -1,72 +0,0 @@
|
|||||||
/**
|
|
||||||
* @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"));
|
|
||||||
}
|
|
||||||
};
|
|
@ -1,20 +0,0 @@
|
|||||||
/**
|
|
||||||
* @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;
|
|
||||||
};
|
|
@ -1,7 +0,0 @@
|
|||||||
/**
|
|
||||||
* @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 ?? "");
|
|
13
src/index.ts
13
src/index.ts
@ -6,12 +6,13 @@
|
|||||||
|
|
||||||
import { AtpAgent } from "@atproto/api";
|
import { AtpAgent } from "@atproto/api";
|
||||||
import pkg from "@slack/bolt";
|
import pkg from "@slack/bolt";
|
||||||
import { Client, Events } from "discord.js";
|
import { Client, Events, MessageFlags } from "discord.js";
|
||||||
import { scheduleJob } from "node-schedule";
|
import { scheduleJob } from "node-schedule";
|
||||||
import { serve } from "./server/serve.js";
|
import { serve } from "./server/serve.js";
|
||||||
import { getMommy } from "./utils/getMommy.js";
|
import { getMommy } from "./utils/getMommy.js";
|
||||||
import { logger } from "./utils/logger.js";
|
import { logger } from "./utils/logger.js";
|
||||||
|
|
||||||
|
// eslint-disable-next-line @typescript-eslint/naming-convention -- Classes.
|
||||||
const { App, FileInstallationStore } = pkg;
|
const { App, FileInstallationStore } = pkg;
|
||||||
|
|
||||||
const discord = new Client({ intents: [ ] });
|
const discord = new Client({ intents: [ ] });
|
||||||
@ -25,7 +26,7 @@ discord.on(Events.InteractionCreate, async(interaction) => {
|
|||||||
if (!interaction.isChatInputCommand()) {
|
if (!interaction.isChatInputCommand()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
await interaction.deferReply();
|
await interaction.deferReply({ flags: MessageFlags.Ephemeral });
|
||||||
const name = interaction.options.getString("name");
|
const name = interaction.options.getString("name");
|
||||||
const response = await getMommy(name ?? undefined);
|
const response = await getMommy(name ?? undefined);
|
||||||
await interaction.editReply(response);
|
await interaction.editReply(response);
|
||||||
@ -38,19 +39,19 @@ const slack = new App({
|
|||||||
installerOptions: {
|
installerOptions: {
|
||||||
directInstall: true,
|
directInstall: true,
|
||||||
},
|
},
|
||||||
scopes: [ "commands", "chat:write" ],
|
scopes: [ "commands" ],
|
||||||
signingSecret: process.env.SLACK_SIGNING_SECRET ?? "",
|
signingSecret: process.env.SLACK_SIGNING_SECRET ?? "",
|
||||||
stateSecret: process.env.SLACK_STATE_SECRET ?? "",
|
stateSecret: process.env.SLACK_STATE_SECRET ?? "",
|
||||||
});
|
});
|
||||||
|
|
||||||
slack.command("/mommy", async({ ack, body, say }) => {
|
slack.command("/mommy", async({ ack, body, respond }) => {
|
||||||
await ack();
|
await ack();
|
||||||
const trimmed = body.text.trim();
|
const trimmed = body.text.trim();
|
||||||
const name = trimmed.length > 0
|
const name = trimmed.length > 0
|
||||||
? trimmed
|
? trimmed
|
||||||
: undefined;
|
: undefined;
|
||||||
const response = await getMommy(name);
|
const response = await getMommy(name);
|
||||||
await say(response);
|
await respond(response);
|
||||||
});
|
});
|
||||||
|
|
||||||
const bsky = new AtpAgent({
|
const bsky = new AtpAgent({
|
||||||
@ -73,7 +74,7 @@ scheduleJob("0 9 * * *", async() => {
|
|||||||
await bsky.post({
|
await bsky.post({
|
||||||
text: response,
|
text: response,
|
||||||
});
|
});
|
||||||
await logger.log("info", "Posted to bsky.social!");
|
await logger.log("info", "Posted to bsky!");
|
||||||
});
|
});
|
||||||
|
|
||||||
serve();
|
serve();
|
||||||
|
@ -9,40 +9,52 @@ import { logger } from "../utils/logger.js";
|
|||||||
|
|
||||||
const html = `<!DOCTYPE html>
|
const html = `<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
|
||||||
<title>Mommy Bot</title>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<title>Mommy Bot</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta charset="utf-8" />
|
||||||
<meta name="description" content="Mommy loves you~!" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<script src="https://cdn.nhcarrigan.com/headers/index.js" async defer></script>
|
<meta name="description" content="Mommy loves you~!" />
|
||||||
</head>
|
<script src="https://cdn.nhcarrigan.com/headers/index.js" async defer></script>
|
||||||
<body>
|
</head>
|
||||||
<main>
|
|
||||||
|
<body>
|
||||||
|
<main>
|
||||||
<h1>Mommy Bot</h1>
|
<h1>Mommy Bot</h1>
|
||||||
|
<img src="https://cdn.nhcarrigan.com/new-avatars/mommy-full.png" width="250" alt="Mommy" />
|
||||||
<section>
|
<section>
|
||||||
<p>Mommy loves you~!</p>
|
<p>Mommy loves you~!</p>
|
||||||
<a href="https://mommy-slack.nhcarrigan.com/slack/install"><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>
|
<a href="https://mommy-slack.nhcarrigan.com/slack/install" style="display: inline-block; background-color: #ffffff; color: black; padding: 10px 20px; text-decoration: none; border-radius: 4px; margin: 5px;">
|
||||||
|
<i class="fab fa-slack"></i> Add to Slack
|
||||||
|
</a>
|
||||||
|
<a href="https://discord.com/oauth2/authorize?client_id=1347642447643017289" class="social-button discord-button" style="display: inline-block; background-color: #5865F2; color: white; padding: 10px 20px; text-decoration: none; border-radius: 4px; margin: 5px;">
|
||||||
|
<i class="fab fa-discord"></i> Add to Discord
|
||||||
|
</a>
|
||||||
|
<a href="https://bsky.app/profile/mommy.naomi.party" class="social-button bluesky-button" style="display: inline-block; background-color: #0085FF; color: white; padding: 10px 20px; text-decoration: none; border-radius: 4px; margin: 5px;">
|
||||||
|
<i class="fab fa-bluesky"></i> Follow on Bluesky
|
||||||
|
</a>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h2>Links</h2>
|
<h2>Links</h2>
|
||||||
<p>
|
<p>
|
||||||
<a href="https://git.nhcarrigan.com/nhcarrigan/mommy-bot">
|
<a href="https://git.nhcarrigan.com/nhcarrigan/mommy-bot">
|
||||||
<i class="fa-solid fa-code"></i> Source Code
|
<i class="fa-solid fa-code"></i> Source Code
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<a href="https://docs.nhcarrigan.com/">
|
<a href="https://docs.nhcarrigan.com/">
|
||||||
<i class="fa-solid fa-book"></i> Documentation
|
<i class="fa-solid fa-book"></i> Documentation
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<a href="https://chat.nhcarrigan.com">
|
<a href="https://chat.nhcarrigan.com">
|
||||||
<i class="fa-solid fa-circle-info"></i> Support
|
<i class="fa-solid fa-circle-info"></i> Support
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>`;
|
</html>`;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user