mirror of
https://github.com/bradganley/bsky-user-activity-bot.git
synced 2024-12-23 18:57:15 +00:00
archive post by posting text with quote
This commit is contained in:
parent
cbb076fa1c
commit
f6c3a7eef2
14
src/index.ts
14
src/index.ts
@ -41,12 +41,23 @@ let handlers = {
|
||||
// @ts-ignore
|
||||
[ActionTakenByUserValidator.make(<string>Bun.env.USER_DID)],
|
||||
[
|
||||
CreateSkeetAction.make("Aaron posted:", undefined, (handler: HandlerAgent, commit: JetstreamEventCommit): JetstreamSubject =>{
|
||||
CreateSkeetAction.make(
|
||||
(handler: HandlerAgent, commit: JetstreamEventCommit): string => {
|
||||
// @ts-ignore
|
||||
let text = "\"" + commit.commit.record?.text + "\"";
|
||||
if(text.length > 300){
|
||||
text = text.substring(1, 301)
|
||||
}
|
||||
return text;
|
||||
},
|
||||
undefined,
|
||||
(handler: HandlerAgent, commit: JetstreamEventCommit): JetstreamSubject => {
|
||||
return {
|
||||
cid: MessageHandler.getCidFromMessage(handler, commit),
|
||||
uri: MessageHandler.getUriFromMessage(handler, commit)
|
||||
}
|
||||
}),
|
||||
|
||||
LogInputTextAction.make("Post")
|
||||
],
|
||||
testAgent
|
||||
@ -104,7 +115,6 @@ let handlers = {
|
||||
}
|
||||
|
||||
|
||||
|
||||
async function initialize() {
|
||||
await testAgent.authenticate()
|
||||
jetstreamSubscription = new JetstreamSubscription(
|
||||
|
Loading…
Reference in New Issue
Block a user