All Projects → xmppjs → Hubot Xmpp

xmppjs / Hubot Xmpp

XMPP adapter for Hubot

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Hubot Xmpp

st2chatops
Packaging environment for building StackStorm chatops native packages
Stars: ✭ 26 (-85.95%)
Mutual labels:  hubot, xmpp
Tigase Server
Highly optimized, extremely modular and very flexible XMPP/Jabber server
Stars: ✭ 170 (-8.11%)
Mutual labels:  xmpp
Moodle Downloader 2
A Moodle downloader that downloads course content fast from Moodle (eg. lecture pdfs)
Stars: ✭ 118 (-36.22%)
Mutual labels:  xmpp
Generator Hubot
Hubot generator for Yeoman
Stars: ✭ 150 (-18.92%)
Mutual labels:  hubot
Blabber.im
blabber.im basiert auf Conversations und ist ein Open Source XMPP/Jabber Messenger für Android 4.1+
Stars: ✭ 124 (-32.97%)
Mutual labels:  xmpp
Aenigma
The | state-of-the-art | secure-by-default | one-touch-deployed | XMPP server for everyone.
Stars: ✭ 160 (-13.51%)
Mutual labels:  xmpp
Hubot Test Helper
Helper for testing hubot script
Stars: ✭ 116 (-37.3%)
Mutual labels:  hubot
Pull Review
✅ Assign pull request reviewers intelligently.
Stars: ✭ 179 (-3.24%)
Mutual labels:  hubot
Mnm
The legitimate email replacement — n-identity, decentralized, store-and-forward, open protocol, open source. (Server)
Stars: ✭ 162 (-12.43%)
Mutual labels:  xmpp
Adium
Official mirror of hg.adium.im
Stars: ✭ 146 (-21.08%)
Mutual labels:  xmpp
Xabber Android
Open-source XMPP client for Android
Stars: ✭ 1,773 (+858.38%)
Mutual labels:  xmpp
Colloquy
Colloquy is an advanced IRC, SILC & ICB client for macOS and iOS!
Stars: ✭ 131 (-29.19%)
Mutual labels:  xmpp
Xmpp.js
XMPP for JavaScript
Stars: ✭ 2,006 (+984.32%)
Mutual labels:  xmpp
Concierge
Modular chat bot. (Karma + Sassy + Hubot) * (Discord + Facebook + Messenger + Slack + Skype + Telegram + Hipchat + ...) = Concierge
Stars: ✭ 121 (-34.59%)
Mutual labels:  hubot
Hubot Matteruser
Hubot adapter for Mattermost using Web API and Websockets
Stars: ✭ 175 (-5.41%)
Mutual labels:  hubot
Cwwechat
swift仿写WeChat
Stars: ✭ 117 (-36.76%)
Mutual labels:  xmpp
Hubot Grafana
📈🤖 Query Grafana dashboards
Stars: ✭ 141 (-23.78%)
Mutual labels:  hubot
Hubot Telegram
Hubot adapter for Telegram
Stars: ✭ 152 (-17.84%)
Mutual labels:  hubot
Tsung
Tsung is a high-performance benchmark framework for various protocols including HTTP, XMPP, LDAP, etc.
Stars: ✭ 2,185 (+1081.08%)
Mutual labels:  xmpp
Spade
Smart Python Agent Development Environment
Stars: ✭ 176 (-4.86%)
Mutual labels:  xmpp

Hubot XMPP

Connects Hubot to your XMPP network

Build Status

Setup

Install dependencies with npm

npm install

Configuration

There are a few configuration values you can use when getting hubot-xmpp running. The XMPP adapter requires only 3 (5 if you need specify server and port) environment variables to be set to able to use it.

  • HUBOT_XMPP_USERNAME
  • HUBOT_XMPP_PASSWORD
  • HUBOT_XMPP_ROOMS

Optional:

  • HUBOT_XMPP_HOST The host name you want to connect to if its different than what is in the username jid.
  • HUBOT_XMPP_PORT The port to connect to on the jabber server.
  • HUBOT_XMPP_LEGACYSSL Set to 1 to enable legacy SSL port. This requires the host to be defined.
  • HUBOT_XMPP_PREFERRED_SASL_MECHANISM Used to change the encoding used for SASL.
  • HUBOT_XMPP_DISALLOW_TLS Prevent upgrading the connection to a secure one via TLS.
  • HUBOT_XMPP_PM_ADD_PREFIX Make commands work in PMs to hubot without robot name/alias.
  • HUBOT_XMPP_KEEPALIVE_INTERVAL Keep-alive interval in ms.
  • HUBOT_XMPP_RECONNECT_TRY the number of reconnect retry in case of disconnection, default is 5.
  • HUBOT_XMPP_RECONNECT_WAIT the time in ms to wait before reconnecting, default is 5000.

HUBOT_XMPP_ROOMS can be a comma separated list of rooms to join. If your rooms require passwords you should use the jid:password syntax. Room passwords cannot contain ,. Room names must be the full jid of the room for example [email protected].

HUBOT_XMPP_PM_ADD_PREFIX works by prefixing the private message with hubot name, so a side effect is that the bot ignores commands of type /^command/i.

Installation

Create a standalone hubot with xmpp adapter:

mkdir -p ./my-bot
cd ./my-bot
npx -p yo -p generator-hubot -c 'yo hubot --adapter=xmpp'

See also https://hubot.github.com/docs/ .

Group chat vs private JID

The jabber protocol does not broadcast real user JID in groupchat presence stanzas unless the server/chat room is configured to do so.

If you need to send private chat in response to a groupchat message, use hubot's send method with the groupchat jid and envelope.user.type = 'direct'. hubot-xmpp will then automatically resolve the JID to a private chat JID, and private message the sender.

If you need to get the private chat JID, you can use msg.envelope.user.privateChatJid where msg is the parameter of hubot's route callback.

Example:

robot.respond(/talk to me$/i, msg => {
  // Simply reply
  msg.reply(`Hello ${msg.envelope.user.name}. Your private JID is ${msg.envelope.user.privateChatJID}`);
});

robot.respond(/talk to me in private$/i, msg => {
  msg.envelope.user.type = 'direct';
  msg.send(`Hey ${msg.envelope.user.name}! You told me in room ${msg.envelope.user.room} to talk to you.`);
});
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].