Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@botpress/broadcast

Package Overview
Dependencies
Maintainers
3
Versions
116
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@botpress/broadcast

Broadcast messages to all (or a subset) of your users

  • 10.24.3
  • unpublished
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
3
Weekly downloads
 
Created
Source

@botpress/broadcast

Get started

npm install @botpress/broadcast

The broadcast module should now be available in your bot UI, and the APIs exposed.

Features

Send according to Users timezone

You can decide whether the scheduled time is absolute to the bot's time or to individual users. If no timezone information available for the user, GMT is chosen.

Filtering

You can apply filters to the broadcasts. Filters are small JavaScript functions that will be evaluated before sending the broadcast to a user. The condition is called for every user the broadcast is scheduled to. You can add multiple filter functions and user will be filtered out if at least one of them returns false.

Variables exposed to the filter function:

  • bp botpress instance
  • userId the userId to send the message to
  • platform the platform on which the user is on

The function needs to return a boolean or a Promise of a boolean.

Note: Starting your function with return is optional.

Examples
Send a message only to users on Facebook
"platform === 'facebook'"
Send a message only to subscribed users

Note: Assuming your bot has a subscriptions table that holds userId and platform

// in your bot's index.js

bp.isUserSubscribed = userId => {
  return bp.db.get()
  .then(knex =>
    knex('subscriptions')
    .where({ userId, platform })
    .select('count(*) as count')
    then().get(0).then(({count}) => count > 0)
  )
}
bp.isUserSubscribed(userId)

Roadmap

  • User segmentation

API

GET /api/botpress-broadcast/broadcasts

Returns a list of the scheduled broadcasts.

PUT /api/botpress-broadcast/broadcasts

Schedules a new broadcast.

Body
{
  date: string, // *required*, 'YYYY-MM-DD'
  time: string, // *required*, 'HH:mm'
  timezone: null|int, // null (users timezone), or integer (absolute timezone)
  type: string, // *required*, 'text' or 'javascript'
  content: string // *required*, the text to be sent or the JavaScript code to execute,
  filters: [string] // filtering conditions, JavaScript code
}
Response
"Hello, Human!"

POST /api/botpress-broadcast/broadcasts

Update an existing broadcast. Same as PUT except that id is also necessary. You can't modify a processing broadcast.

DELETE /api/botpress-broadcast/broadcasts/:id

Delete an existing broadcast. You can't delete a processing broadcast.

Community

Pull requests are welcomed! We believe that it takes all of us to create something big and impactful. There's a Slack community where you are welcome to join us, ask any question and even help others.

Get an invite and join us now! 👉https://slack.botpress.io

License

botpress-broadcast is licensed under AGPL-3.0

Keywords

FAQs

Package last updated on 20 Jul 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc