All Projects → atmos → hubot-gtalk

atmos / hubot-gtalk

Licence: MIT license
GTalk adapter for Hubot

Programming Languages

coffeescript
4710 projects

Projects that are alternatives of or similar to hubot-gtalk

Hubot Slack
Slack Developer Kit for Hubot
Stars: ✭ 2,260 (+16042.86%)
Mutual labels:  hubot-adapter
mmb
Set of Dockerfiles and assets related to them for building Docker images with different services
Stars: ✭ 34 (+142.86%)
Mutual labels:  hubot-adapter
hubot-zulip
No description or website provided.
Stars: ✭ 19 (+35.71%)
Mutual labels:  hubot-adapter
hubot-messenger-bot
🔌 A Hubot adapter for Facebook Messenger Platform (Bots) with zero external dependencies.
Stars: ✭ 44 (+214.29%)
Mutual labels:  hubot-adapter
hubot-jabbr
Jabbr adapter for Hubot
Stars: ✭ 20 (+42.86%)
Mutual labels:  hubot-adapter
hubot-yammer
This is the Yammer adapter for hubot that allows you to send a message to him with Yammer and he will happily reply the same way.
Stars: ✭ 32 (+128.57%)
Mutual labels:  hubot-adapter
hubot-google-hangouts-chat
Hubot adapter for Google Chat.
Stars: ✭ 15 (+7.14%)
Mutual labels:  hubot-adapter

A Hubot adapter for Gtalk

Gtalk is the Jabber-based instant messaging service provided by Google.

You should report any issues or submit any pull requests to the GTalk adapter repository.

Getting Started

You will also need to edit the package.json for your hubot and add the hubot-gtalk adapter dependency.

"dependencies": {
  "hubot-gtalk": ">= 0.0.1",
  "hubot": ">= 2.0.0",
  ...
}

Then save the file, and commit the changes to your hubot's git repository.

If deploying to Heroku you will need to edit the Procfile and change the -a campfire option to -a gtalk. Or if you're deploying locally you will need to use -a gtalk when running your hubot.

Configuring the Adapter

The GTalk adapter requires only the following environment variables.

  • HUBOT_GTALK_USERNAME (Should be full email address, e. g. [email protected])
  • HUBOT_GTALK_PASSWORD

And the following are optional.

  • HUBOT_GTALK_WHITELIST_DOMAINS
  • HUBOT_GTALK_WHITELIST_USERS
  • HUBOT_GTALK_REGEXP_TRANSFORMATIONS

GTalk Username

This is the username (email) of the account your hubot will use to connect to GTalk. Make a note of it.

GTalk Password

This is the password of the account your hubot will use to connect to GTalk. Make a note of it.

GTalk Whitelist Domains

This is an optional comma separated list of domain names that hubot will automatically accept contact list requests from. Make a note of them if required.

GTalk Whitelist Users

This is an optional comma separated list of usernames that hubot will automatically accept contact list requests from. Make a note of them if required.

GTalk RegExp Transformations on Messages

Adds ability to transform messages using regexp. Format is: regexp|replacement. Example:

HUBOT_GTALK_REGEXP_TRANSFORMATIONS=".?: ?(.)|\$1"

Configuring the variables on Heroku

% heroku config:add HUBOT_GTALK_USERNAME="..."

% heroku config:add HUBOT_GTALK_PASSWORD="..."

Optional

% heroku config:add HUBOT_GTALK_WHITELIST_DOMAINS="...,..."

% heroku config:add HUBOT_GTALK_WHITELIST_USERS="...,..."

Configuring the variables on UNIX

% export HUBOT_GTALK_USERNAME="..."

% export HUBOT_GTALK_PASSWORD="..."

Optional

% export HUBOT_GTALK_WHITELIST_DOMAINS="...,..."

% export HUBOT_GTALK_WHITELIST_USERS="...,..."

Troubleshooting

StringPrep errors

If you see something like this:

Cannot load StringPrep-0.1.0 bindings. You may need to `npm install node-stringprep'

don’t worry—StringPrep is not required for hubot-gtalk.

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].