teamchat breaks the barriers between communities and instant messaging platforms
Project description
teamchat
========
.. image:: docs/source/_static/team_chat.png
`XKCD <https://xkcd.com/1782/>`_
teamchat breaks the barriers between communities and instant messaging platforms.
teamchat replays messages from two different communication systems to each other
in order to allow everyone to talk to each other regardless of their chat platform
preferences.
The project is meant to be a spiritual successor to `slack-irc <https://github.com/ekmartin/slack-irc>`_
which stopped working when `Slack discontinued the IRC gateway <https://news.ycombinator.com/item?id=16539857>`_.
TL;DR
=====
In a nutshell, teamchat leverages `Errbot <http://errbot.io/en/latest/>`_, a python
chatbot framework. It launches two bots, one for each desired backend.
These bots will relay messages they see in their channel to each other over a
localhost webhook implementation that Errbot provides out of the box.
That's it, really.
Supported backends
==================
Errbot supports many different `backends <http://errbot.io/en/latest/features.html#multiple-server-backends>`_
out of the box:
- XMPP (Any standards-compliant XMPP/Jabber server should work - Google Talk/Hangouts included)
- Hipchat
- IRC
- Slack
- Telegram
Many other backends are available through community support such as Discord,
Mattermost and Skype.
Installing teamchat
===================
Anywhere with python >= 3.6 available::
pip install teamchat
Configuring teamchat
====================
teamchat launches two chat bots, one in each of the configured and requested
backends.
It joins the desired channels and then forwards messages from one channel to the
other in both directions.
Each of your communication backend must be configured in a different
`Errbot settings file <http://errbot.io/en/latest/user_guide/setup.html#id1>`_.
You can get started from the Errbot configuration template by running
``teamchat template`` which will generate a template for you at
``~/.teamchat/backends/template.py``.
When running the ``teamchat connect`` command to create the bridge, these
backend file names will be used. For example:
- The backend named ``slack_community`` would be expected at ``~/.teamchat/backends/slack_community.py``
- The backend named ``irc_community`` would be expected at ``~/.teamchat/backends/irc_community.py``.
Your server, credentials, nicknames, tokens and other fine tuning will need to
be set up through those files according to the Errbot backend
`configuration documentation <http://errbot.io/en/latest/features.html#multiple-server-backends>`_.
Please note that your backend settings file needs to contain a few extra lines
meant for teamchat::
import teamchat
# The following configuration is required for teamchat
ROOT = os.path.expanduser("~/.teamchat")
BOT_DATA_DIR = os.path.join(ROOT, "irc")
BOT_LOG_FILE = os.path.join(ROOT, "bot.log")
BOT_EXTRA_PLUGIN_DIR = os.path.join(os.path.dirname(teamchat.__file__), "errbot")
for directory in [ROOT, BOT_DATA_DIR]:
if not os.path.isdir(directory):
os.makedirs(directory, mode=0o700, exist_ok=True)
For examples of backend configuration files, look at the ``contrib`` directory
of the project on `GitHub <https://github.com/dmsimard/teamchat>`_.
Using teamchat
==============
Getting started with teamchat once you have your configuration set up looks like this::
teamchat connect irc_community \ # From IRC
--bridge slack_community \ # To Slack
--channel "#dev" \ # From #dev on the server configured in ~/.teamchat/backends/irc_community.py
--to "#general" # To #general on the server configured in ~/.teamchat/backends/slack_community.py
The order of the arguments as well as the from/to destinations does not matter.
The messages will always be replayed from one backend to the other in both directions.
For example, the following command would yield the exact same results as the one above::
teamchat connect slack_community \ # From Slack
--bridge irc_community \ # To IRC
--channel "#general" \ # From #general on the server configured in ~/.teamchat/backends/slack_community.py
--to "#dev" # To #dev on the server configured in ~/.teamchat/backends/irc_community.py
Known issues
============
- Naming your backend file ``~/.teamchat/backends/irc.py`` does not work because it conflicts with the ``irc`` python module.
Contributors
============
See contributors on GitHub_.
.. _GitHub: https://github.com/dmsimard/teamchat/graphs/contributors
Copyright
=========
Copyright 2018 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
========
.. image:: docs/source/_static/team_chat.png
`XKCD <https://xkcd.com/1782/>`_
teamchat breaks the barriers between communities and instant messaging platforms.
teamchat replays messages from two different communication systems to each other
in order to allow everyone to talk to each other regardless of their chat platform
preferences.
The project is meant to be a spiritual successor to `slack-irc <https://github.com/ekmartin/slack-irc>`_
which stopped working when `Slack discontinued the IRC gateway <https://news.ycombinator.com/item?id=16539857>`_.
TL;DR
=====
In a nutshell, teamchat leverages `Errbot <http://errbot.io/en/latest/>`_, a python
chatbot framework. It launches two bots, one for each desired backend.
These bots will relay messages they see in their channel to each other over a
localhost webhook implementation that Errbot provides out of the box.
That's it, really.
Supported backends
==================
Errbot supports many different `backends <http://errbot.io/en/latest/features.html#multiple-server-backends>`_
out of the box:
- XMPP (Any standards-compliant XMPP/Jabber server should work - Google Talk/Hangouts included)
- Hipchat
- IRC
- Slack
- Telegram
Many other backends are available through community support such as Discord,
Mattermost and Skype.
Installing teamchat
===================
Anywhere with python >= 3.6 available::
pip install teamchat
Configuring teamchat
====================
teamchat launches two chat bots, one in each of the configured and requested
backends.
It joins the desired channels and then forwards messages from one channel to the
other in both directions.
Each of your communication backend must be configured in a different
`Errbot settings file <http://errbot.io/en/latest/user_guide/setup.html#id1>`_.
You can get started from the Errbot configuration template by running
``teamchat template`` which will generate a template for you at
``~/.teamchat/backends/template.py``.
When running the ``teamchat connect`` command to create the bridge, these
backend file names will be used. For example:
- The backend named ``slack_community`` would be expected at ``~/.teamchat/backends/slack_community.py``
- The backend named ``irc_community`` would be expected at ``~/.teamchat/backends/irc_community.py``.
Your server, credentials, nicknames, tokens and other fine tuning will need to
be set up through those files according to the Errbot backend
`configuration documentation <http://errbot.io/en/latest/features.html#multiple-server-backends>`_.
Please note that your backend settings file needs to contain a few extra lines
meant for teamchat::
import teamchat
# The following configuration is required for teamchat
ROOT = os.path.expanduser("~/.teamchat")
BOT_DATA_DIR = os.path.join(ROOT, "irc")
BOT_LOG_FILE = os.path.join(ROOT, "bot.log")
BOT_EXTRA_PLUGIN_DIR = os.path.join(os.path.dirname(teamchat.__file__), "errbot")
for directory in [ROOT, BOT_DATA_DIR]:
if not os.path.isdir(directory):
os.makedirs(directory, mode=0o700, exist_ok=True)
For examples of backend configuration files, look at the ``contrib`` directory
of the project on `GitHub <https://github.com/dmsimard/teamchat>`_.
Using teamchat
==============
Getting started with teamchat once you have your configuration set up looks like this::
teamchat connect irc_community \ # From IRC
--bridge slack_community \ # To Slack
--channel "#dev" \ # From #dev on the server configured in ~/.teamchat/backends/irc_community.py
--to "#general" # To #general on the server configured in ~/.teamchat/backends/slack_community.py
The order of the arguments as well as the from/to destinations does not matter.
The messages will always be replayed from one backend to the other in both directions.
For example, the following command would yield the exact same results as the one above::
teamchat connect slack_community \ # From Slack
--bridge irc_community \ # To IRC
--channel "#general" \ # From #general on the server configured in ~/.teamchat/backends/slack_community.py
--to "#dev" # To #dev on the server configured in ~/.teamchat/backends/irc_community.py
Known issues
============
- Naming your backend file ``~/.teamchat/backends/irc.py`` does not work because it conflicts with the ``irc`` python module.
Contributors
============
See contributors on GitHub_.
.. _GitHub: https://github.com/dmsimard/teamchat/graphs/contributors
Copyright
=========
Copyright 2018 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
teamchat-0.1.0.tar.gz
(55.5 kB
view details)
File details
Details for the file teamchat-0.1.0.tar.gz
.
File metadata
- Download URL: teamchat-0.1.0.tar.gz
- Upload date:
- Size: 55.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.9.1 pkginfo/1.3.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5551e0f7526f9c47998ccde58c6ed2356568d40b090f9ecba773068efe4f5789 |
|
MD5 | 7daec58a02d8265e65a0ccf384774324 |
|
BLAKE2b-256 | 251859abb04a3b093e84c151e94736384459c8b3a21443b1c5e6ace29f355ab6 |