generated from nhcarrigan/template
922dee415a
### Explanation Makes my life so much easier. ### Issue _No response_ ### Attestations - [x] I have read and agree to the [Code of Conduct](https://docs.nhcarrigan.com/community/coc/) - [x] I have read and agree to the [Community Guidelines](https://docs.nhcarrigan.com/community/guide/). - [x] My contribution complies with the [Contributor Covenant](https://docs.nhcarrigan.com/dev/covenant/). ### Dependencies - [x] I have pinned the dependencies to a specific patch version. ### Style - [x] I have run the linter and resolved any errors. - [x] My pull request uses an appropriate title, matching the conventional commit standards. - [x] My scope of feat/fix/chore/etc. correctly matches the nature of changes in my pull request. ### Tests - [ ] My contribution adds new code, and I have added tests to cover it. - [ ] My contribution modifies existing code, and I have updated the tests to reflect these changes. - [ ] All new and existing tests pass locally with my changes. - [ ] Code coverage remains at or above the configured threshold. ### Documentation _No response_ ### Versioning Minor - My pull request introduces a new non-breaking feature. Reviewed-on: #8 Co-authored-by: Naomi Carrigan <commits@nhcarrigan.com> Co-committed-by: Naomi Carrigan <commits@nhcarrigan.com>
77 lines
2.3 KiB
TypeScript
77 lines
2.3 KiB
TypeScript
/**
|
|
* @copyright nhcarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
|
|
import { AtpAgent } from "@atproto/api";
|
|
|
|
/**
|
|
* Forwards an announcement to our Bluesky account.
|
|
* @param content - The main body of the announcement.
|
|
* @returns A message indicating the success or failure of the operation.
|
|
*/
|
|
// eslint-disable-next-line max-lines-per-function, max-statements -- This is a big function.
|
|
export const announceOnBluesky = async(
|
|
content: Array<string>,
|
|
): Promise<string> => {
|
|
if (process.env.BSKY_APP_PASSWORD === undefined) {
|
|
return "Bluesky credentials are not set.";
|
|
}
|
|
const [ firstPost, ...restOfPosts ] = content;
|
|
const failedReplies: Array<string> = [];
|
|
if (firstPost === undefined) {
|
|
return "No posts to send to Bluesky.";
|
|
}
|
|
const agent = new AtpAgent({
|
|
service: "https://bsky.social",
|
|
});
|
|
await agent.login({
|
|
identifier: "nhcarrigan.com",
|
|
password: process.env.BSKY_APP_PASSWORD,
|
|
});
|
|
const blueskyRequest = await agent.post({
|
|
text: firstPost,
|
|
}).catch((error: unknown) => {
|
|
return error instanceof Error
|
|
? error.message
|
|
: String(error);
|
|
});
|
|
if (typeof blueskyRequest === "string") {
|
|
return `Failed to send initial post to Bluesky. ${blueskyRequest}`;
|
|
}
|
|
const rootUri = blueskyRequest.uri;
|
|
const rootCid = blueskyRequest.cid;
|
|
let parentUri = rootUri;
|
|
let parentCid = rootCid;
|
|
for (const post of restOfPosts) {
|
|
// eslint-disable-next-line no-await-in-loop -- We need to do this sequentially.
|
|
const blueskyResponse = await agent.post({
|
|
reply: {
|
|
parent: {
|
|
cid: parentCid,
|
|
uri: parentUri,
|
|
},
|
|
root: {
|
|
cid: rootCid,
|
|
uri: rootUri,
|
|
},
|
|
},
|
|
text: post,
|
|
}).catch((error: unknown) => {
|
|
return error instanceof Error
|
|
? error.message
|
|
: String(error);
|
|
});
|
|
if (typeof blueskyResponse === "string") {
|
|
failedReplies.push(post);
|
|
continue;
|
|
}
|
|
parentUri = blueskyResponse.uri;
|
|
parentCid = blueskyResponse.cid;
|
|
}
|
|
return `Successfully sent initial post to Bluesky. ${failedReplies.length > 0
|
|
? `Failed to send ${failedReplies.length.toString()} replies: ${failedReplies.join(", ")}`
|
|
: `All ${(content.length - 1).toString()} replies were sent successfully.`}`;
|
|
};
|