Coder Social home page Coder Social logo

iconicbot / iconic-narada Goto Github PK

View Code? Open in Web Editor NEW
14.0 4.0 4.0 347 KB

Open Source Webhook Boilerplate for Social Media/Messaging Platforms(Facebook, Facebook Messenger, Twitter, Twitter Direct, Youtube)

Home Page: https://iconic.wtf/projects/iconic-narada/

License: MIT License

JavaScript 100.00%
webhooks boilerplate developer-tools facebook facebook-messenger twitter twitter-direct-messaging chatbot chatbots-framework youtube

iconic-narada's Introduction

Iconic Narada | Social Media/Messaging Webhooks Boilerplate

npm version node version build status License join slack channel

Iconic Narada, developer friendly boilerplate to help you connect Social Media/Messaging platforms via Webhooks.

Supported Platforms:

  • Facebook
  • Facebook Messenger
  • Twitter
  • Twitter Direct
  • Youtube

Why Iconic-Narada?:

  • Developer friendly
  • Raw social media request/response objects
  • Code from the future (ECMAScript 6 compatible)
  • Database of your choice
  • Server of your choice (Not specific to AWS lambda)
  • Not only for messaging platforms, supports social media too
  • Multiple platforms/channels in 1 boilerplate
  • Better error handling
  • Very low learning curve

overall-structure

Installation

Choose one of the following options:

  • Install with npm: npm install iconic-narada
  • To install Iconic Narada from source, first clone the repository and then run: npm install.

Edit config

In app root directory, rename .sample-env to .env. You can set app wide environment constants here and access them in your code with dotenv module and process.env.

In each example bot directory, you will find config.json. You can set bot specific constants here and access them by importing this file into your bot code. You may also instead retrieve this information from database for additional security.

Enable/Disable a Platform

Each platform has it's own router, controller, parser, elements and connector. The main router in routes.js hands over new received event to the router of specific platform.

data-and-logic-flow

To enable a new platform, import the platform from platforms folder and create a new route for that platform in the main router(routes.js). E.g.: The below code will create a route like - https://your.domain/webhook/facebook

import facebookRouter from './platforms/facebook/router';

app.use('/facebook', facebookRouter);

Run

To start the app without babel, run node app.js.

To start the app with babel, run node start.js

Basic Usage

The business logic of bot is handled in bots. Each platform can have it's own configuration which may also be retrieved from database or environment file.

Once a platform is enabled by adding it to routes, the platform specific Controller in platforms/<platform>/controller.js parses every new event and hands over the parsed event to bots/<platform>/index.js. You can either process the parsed event here or create multiple bots for that platform and redirect the parsed event to respective bot.

Bots can use Elements from platforms/<platform>/elements.js to create JSON objects to form a reply or action and, use Connector from platforms/<platform>/connector.js to send the reply or action to platform APIs.

Here are some examples of typical usage:

Facebook Elements and Connector

Importing elements and connector

import FacebookConnector from '../../../platforms/facebook/connector';
import * as FacebookElements from '../../../platforms/facebook/elements';

Creating a message

Create a plain text message.

const message = new FacebookElements.Text(`Hello there!`);

For more detailed samples of Facebook Elements, check out this doc.

Sending a message

Set the Recipient ID.

Event object contains basic information like senderId, recipientId, etc based on the type of event received.

const recipientId = event.senderId;

Set a message.

const message = new FacebookElements.Text(`Hello there!`);

Set the array of replies to be sent.

Reply element method requires a recipient ID and a message. It also accepts a string in place of message object.

const replies = [
    new FacebookElements.Reply(recipientId, message),
    new FacebookElements.Reply(recipientId, 'What\'s up?'),
];

Send each reply in sequence.

const facebookConnector = new FacebookConnectorACCESS_TOKEN);

for (const reply of replies) {
    await facebookConnector.sendMessage(botConfig.PAGE_ID, reply)
        .catch(err => logger.error(err));
}

Sending an action.

You can also send an action with/without/before/after a Reply element.

const replies = [
    new FacebookElements.MarkSeen(recipientId),
    new FacebookElements.TypingOn(recipientId),
    new FacebookElements.TypingOff(recipientId),
];

Getting user profile.

You can get user profile with getUserProfile method.

const facebookConnector = new FacebookConnector(ACCESS_TOKEN);

const userProfile = await facebookConnector.getUserProfile(recipientId)
    .catch(err => logger.debug(err));

Twitter Elements and Connector

Importing elements and connector

import TwitterConnector from '../../../platforms/twitter/connector';
import * as TwitterElements from '../../../platforms/twitter/elements';

Creating a message

Create a plain text message.

const message = new TwitterElements.Text(`Hi there!`);

For more detailed samples of Twitter Elements, check out this doc.

Sending a message.

Set the Recipient ID.

Event object contains basic information like senderId, recipientId, etc based on the type of event received.

const recipientId = event.senderId;

Set a message.

const message = new TwitterElements.Text(`Hello there!`);

Create an array of replies to be sent.

Reply element method requires a recipient ID and a message. It also accepts a string in place of message object.

const replies = [
    new TwitterElements.Reply(recipientId, message),
    new TwitterElements.Reply(recipientId, 'What\'s up?'),
];

Send each reply in sequence.

const twitterConnector = new TwitterConnectorOAUTH);

for (const reply of replies) {
    await twitterConnector.sendMessage(reply)
      .catch(err => logger.error(err));
}

Youtube Connector

Importing connector

import YoutubeConnector from '../../../platforms/youtube/connector';

Generating Access token

Follow the instruction here.

Fetch list of comments

You can fetch the list of comments for a specific video using the commentsList method.

const youtubeConnector = new YoutubeConnector(ACCESS_TOKEN);

youtubeConnector.commentsList(videoId).then((data) => {
  //Process the data
});

Add a new comment

You can add a new comment for a video using the commentInsert method.

youtubeConnector.commentInsert(videoId, comment).catch(err => logger.error(err));

Add a reply to a comment

You can add a reply to an existing comment using the commentReply method.

youtubeConnector.commentReply(commentId, comment).catch(err => logger.error(err));

Delete a comment

You can remove a comment using the commentDelete method.

 youtubeConnector.commentDelete(commentId).catch(err => logger.error(err));

Contributing

Contributions are generally appreciated. But we are exclusively looking for contributers to help us extend our support to Slack, Telegram, Instagram, WhatsApp, Skype, Youtube, Viber, Amazon Alexa, Line, Kik & make it a all-in-one open source webhooks boilerplate.

See the Contributors' guide for more information.

Authors

License

The source code of Iconic Narada boilerplate is licensed under MIT.

iconic-narada's People

Contributors

arularmstrong avatar sandeshbsuvarna avatar shrirambhat avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.