5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 15:49:36 +00:00
matterbridge/README.md

170 lines
5.1 KiB
Markdown
Raw Normal View History

2015-10-23 20:34:37 +00:00
# matterbridge
2016-11-22 23:13:59 +00:00
![matterbridge.gif](https://s15.postimg.org/qpjhp6y3f/matterbridge.gif)
2017-02-20 12:48:45 +00:00
Simple bridge between Mattermost, IRC, XMPP, Gitter, Slack, Discord, Telegram, Rocket.Chat, Hipchat(via xmpp) and Matrix with REST API.
# Table of Contents
* [Features](#features)
* [Requirements](#requirements)
* [Installing](#installing)
* [Binaries](#binaries)
* [Building](#building)
* [Configuration](#configuration)
* [Examples](#examples)
* [Running](#running)
* [Docker](#docker)
* [Changelog](#changelog)
* [FAQ](#faq)
* [Thanks](#thanks)
# Features
2017-02-19 23:49:27 +00:00
* Relays public channel messages between multiple mattermost, IRC, XMPP, Gitter, Slack, Discord, Telegram, Rocket.Chat, Hipchat (via xmpp) and Matrix. Pick and mix.
2017-02-20 12:48:45 +00:00
* Matterbridge can also work with private groups on your mattermost/slack.
2016-09-18 19:04:28 +00:00
* Allow for bridging the same bridges, which means you can eg bridge between multiple mattermosts.
* The bridge is now a gateway which has support multiple in and out bridges. (and supports multiple gateways).
2017-02-20 12:48:45 +00:00
* REST API to read/post messages to bridges (WIP).
2016-11-22 23:13:59 +00:00
2017-02-20 12:48:45 +00:00
# Requirements
2016-09-04 18:41:03 +00:00
Accounts to one of the supported bridges
2017-02-20 12:48:45 +00:00
* [Mattermost](https://github.com/mattermost/platform/) 3.5.x - 3.6.x
* [IRC](http://www.mirc.com/servers.html)
* [XMPP](https://jabber.org)
* [Gitter](https://gitter.im)
* [Slack](https://slack.com)
* [Discord](https://discordapp.com)
* [Telegram](https://telegram.org)
* [Hipchat](https://www.hipchat.com)
* [Rocket.chat](https://rocket.chat)
* [Matrix](https://matrix.org)
# Installing
## Binaries
2016-09-04 18:41:03 +00:00
Binaries can be found [here] (https://github.com/42wim/matterbridge/releases/)
2017-02-20 12:48:45 +00:00
* Latest release [v0.9.3](https://github.com/42wim/matterircd/releases/tag/v0.9.3)
2015-10-23 21:02:14 +00:00
2017-02-20 12:48:45 +00:00
## Building
2016-04-25 19:40:26 +00:00
Go 1.6+ is required. Make sure you have [Go](https://golang.org/doc/install) properly installed, including setting up your [GOPATH] (https://golang.org/doc/code.html#GOPATH)
2015-10-23 20:34:37 +00:00
```
cd $GOPATH
2015-10-30 08:57:23 +00:00
go get github.com/42wim/matterbridge
2015-10-23 20:34:37 +00:00
```
You should now have matterbridge binary in the bin directory:
```
$ ls bin/
matterbridge
```
2017-02-20 12:48:45 +00:00
# Configuration
* [matterbridge.toml.sample](https://github.com/42wim/matterbridge/blob/master/matterbridge.toml.sample) for documentation and an example.
* [matterbridge.toml.simple](https://github.com/42wim/matterbridge/blob/master/matterbridge.toml.simple) for a simple example.
## Examples
### Bridge mattermost (off-topic) - irc (#testing)
```
[irc]
[irc.freenode]
Server="irc.freenode.net:6667"
Nick="yourbotname"
[mattermost]
[mattermost.work]
useAPI=true
Server="yourmattermostserver.tld"
Team="yourteam"
Login="yourlogin"
Password="yourpass"
PrefixMessagesWithNick=true
[[gateway]]
name="mygateway"
enable=true
[[gateway.inout]]
account="irc.freenode"
channel="#testing"
[[gateway.inout]]
account="mattermost.work"
channel="off-topic"
```
### Bridge slack (#general) - discord (general)
```
[slack.test]
Token="yourslacktoken"
PrefixMessagesWithNick=true
[discord.test]
Token="yourdiscordtoken"
Server="yourdiscordservername"
[general]
RemoteNickFormat="[{PROTOCOL}/{BRIDGE}] <{NICK}> "
[[gateway]]
name = "mygateway"
enable=true
[[gateway.inout]]
account = "discord.test"
channel="general"
[[gateway.inout]]
account ="slack.test"
channel = "general"
```
# Running
1) Copy the matterbridge.toml.sample to matterbridge.toml in the same directory as the matterbridge binary.
2) Edit matterbridge.toml with the settings for your environment.
3) Now you can run matterbridge. (```./matterbridge```)
2015-12-19 15:55:49 +00:00
```
2016-07-11 21:22:56 +00:00
Usage of ./matterbridge:
-conf string
2016-09-18 19:04:28 +00:00
config file (default "matterbridge.toml")
2016-07-11 21:22:56 +00:00
-debug
enable debug
-version
show version
2015-12-19 15:55:49 +00:00
```
2015-10-23 20:34:37 +00:00
2017-02-20 12:48:45 +00:00
## Docker
Create your matterbridge.toml file locally eg in ```/tmp/matterbridge.toml```
```
docker run -ti -v /tmp/matterbridge.toml:/matterbridge.toml 42wim/matterbridge
```
2015-10-23 20:34:37 +00:00
2017-02-20 12:48:45 +00:00
# Changelog
See [changelog.md](https://github.com/42wim/matterbridge/blob/master/changelog.md)
2015-10-23 20:34:37 +00:00
2017-02-20 12:48:45 +00:00
# FAQ
2015-10-23 20:34:37 +00:00
2017-02-20 12:48:45 +00:00
Please look at [matterbridge.toml.sample](https://github.com/42wim/matterbridge/blob/master/matterbridge.toml.sample) for more information first.
2015-10-23 20:34:37 +00:00
2017-02-20 12:48:45 +00:00
## Mattermost doesn't show the IRC nicks
2016-07-15 19:59:14 +00:00
If you're running the webhooks version, this can be fixed by either:
* enabling "override usernames". See [mattermost documentation](http://docs.mattermost.com/developer/webhooks-incoming.html#enabling-incoming-webhooks)
2016-09-18 19:04:28 +00:00
* setting ```PrefixMessagesWithNick``` to ```true``` in ```mattermost``` section of your matterbridge.toml.
2016-07-15 19:59:14 +00:00
2017-02-20 12:48:45 +00:00
If you're running the API version you'll need to:
2016-09-18 19:04:28 +00:00
* setting ```PrefixMessagesWithNick``` to ```true``` in ```mattermost``` section of your matterbridge.toml.
2016-07-15 19:59:14 +00:00
Also look at the ```RemoteNickFormat``` setting.
2017-02-20 12:48:45 +00:00
# Thanks
Matterbridge wouldn't exist without these libraries:
* discord - https://github.com/bwmarrin/discordgo
* echo - https://github.com/labstack/echo
* gitter - https://github.com/sromku/go-gitter
* irc - https://github.com/thoj/go-ircevent
* mattermost - https://github.com/mattermost/platform
* matrix - https://github.com/matrix-org/gomatrix
* slack - https://github.com/nlopes/slack
* telegram - https://github.com/go-telegram-bot-api/telegram-bot-api
* xmpp - https://github.com/mattn/go-xmpp