Skip to content

Commit

Permalink
New Components - sendbird_ai_chabot (#13898)
Browse files Browse the repository at this point in the history
* new components

* pnpm-lock.yaml

* package.json version

* update events
  • Loading branch information
michelle0927 committed Sep 16, 2024
1 parent 7567870 commit 3dc0120
Show file tree
Hide file tree
Showing 6 changed files with 219 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
import sendbird from "../../sendbird_ai_chabot.app.mjs";

export default {
key: "sendbird_ai_chabot-send-bot-message",
name: "Send Bot Message",
description: "Sends a bot message to a group channel. [See the documentation](https://sendbird.com/docs/chat/platform-api/v3/bot/sending-a-bot-message/send-a-bot-message)",
version: "0.0.1",
type: "action",
props: {
sendbird,
botId: {
propDefinition: [
sendbird,
"botId",
],
},
channelUrl: {
propDefinition: [
sendbird,
"channelUrl",
],
},
message: {
type: "string",
label: "Message",
description: "Specifies the content of the message sent by the bot",
},
},
async run({ $ }) {
const response = await this.sendbird.sendBotMessage({
$,
botId: this.botId,
data: {
channel_url: this.channelUrl,
message: this.message,
},
});
if (response?.message?.message_id) {
$.export("$summary", `Successfully sent message with ID: ${response.message.message_id}`);
}
return response;
},
};
7 changes: 5 additions & 2 deletions components/sendbird_ai_chabot/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/sendbird_ai_chabot",
"version": "0.0.1",
"version": "0.1.0",
"description": "Pipedream Sendbird AI chabot Components",
"main": "sendbird_ai_chabot.app.mjs",
"keywords": [
Expand All @@ -11,5 +11,8 @@
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@pipedream/platform": "^3.0.1"
}
}
}
93 changes: 88 additions & 5 deletions components/sendbird_ai_chabot/sendbird_ai_chabot.app.mjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,94 @@
import { axios } from "@pipedream/platform";
const DEFAULT_LIMIT = 20;

export default {
type: "app",
app: "sendbird_ai_chabot",
propDefinitions: {},
propDefinitions: {
botId: {
type: "string",
label: "Bot ID",
description: "The identifier of a bot",
async options({ page }) {
const { bots } = await this.listBots({
params: {
limit: DEFAULT_LIMIT,
offset: page * DEFAULT_LIMIT,
},
});
return bots?.map(({ bot }) => ({
label: bot.bot_nickname,
value: bot.bot_userid,
})) || [];
},
},
channelUrl: {
type: "string",
label: "Channel URL",
description: "Specifies the URL of the channel",
async options({ page }) {
const { channels } = await this.listGroupChannels({
params: {
limit: DEFAULT_LIMIT,
offset: page * DEFAULT_LIMIT,
},
});
return channels?.map(({
name: label, channel_url: value,
}) => ({
label,
value,
})) || [];
},
},
},
methods: {
// this.$auth contains connected account data
authKeys() {
console.log(Object.keys(this.$auth));
_baseUrl() {
return `https://api-${this.$auth.application_id}.sendbird.com/v3`;
},
_headers() {
return {
"Api-Token": `${this.$auth.api_token}`,
};
},
_makeRequest({
$ = this,
path,
...args
}) {
return axios($, {
url: `${this._baseUrl()}${path}`,
headers: this._headers(),
...args,
});
},
updateWebhook(opts = {}) {
return this._makeRequest({
method: "PUT",
path: "/applications/settings/webhook",
...opts,
});
},
listBots(opts = {}) {
return this._makeRequest({
path: "/bots",
...opts,
});
},
listGroupChannels(opts = {}) {
return this._makeRequest({
path: "/group_channels",
...opts,
});
},
sendBotMessage({
botId, ...opts
}) {
return this._makeRequest({
method: "POST",
path: `/bots/${botId}/send`,
...opts,
});
},
},
};
};
14 changes: 14 additions & 0 deletions components/sendbird_ai_chabot/sources/common/events.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
export default [
{
value: "form:submit",
label: "form submitted",
},
{
value: "group_channel:bot_message_send",
label: "bot message sent within group channel",
},
{
value: "group_channel:message_send",
label: "message sent within group channel",
},
];
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
import sendbird from "../../sendbird_ai_chabot.app.mjs";
import events from "../common/events.mjs";

export default {
key: "sendbird_ai_chabot-new-event-received",
name: "New Event Received (Instant)",
description: "Emit new event when a new webhook event is received.",
version: "0.0.1",
type: "source",
dedupe: "unique",
props: {
sendbird,
http: {
type: "$.interface.http",
customResponse: true,
},
events: {
type: "string[]",
label: "Events",
description: "The events to subscribe to",
options: events,
},
},
hooks: {
async activate() {
await this.sendbird.updateWebhook({
data: {
enabled: true,
url: this.http.endpoint,
enabled_events: this.events,
},
});
},
async deactivate() {
await this.sendbird.updateWebhook({
data: {
enabled: false,
url: this.http.endpoint,
enabled_events: [],
},
});
},
},
methods: {
generateMeta(body) {
const ts = Date.now();
return {
id: ts,
summary: `New ${body.category} event`,
ts,
};
},
},
async run(event) {
const { body } = event;
if (!body) {
return;
}
this.http.respond({
status: 200,
});
const meta = this.generateMeta(body);
this.$emit(body, meta);
},
};
5 changes: 4 additions & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3dc0120

Please sign in to comment.