Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

dwmunster/rocket-adapter

Repository files navigation

Joe Bot - Rocket.Chat Adapter

Connecting joe with the Rocket.Chat chat application. https://github.com/go-joe/joe


This repository contains a module for the Joe Bot library.

THIS SOFTWARE IS STILL IN ALPHA AND THERE ARE NO GUARANTEES REGARDING API STABILITY YET.

Getting Started

This library is packaged using the new Go modules. You can get it via:

go get github.com/dwmunster/rocket-adapter

Example usage

In order to connect your bot to rocket.chat you can simply pass it as module when creating a new bot:

package main

import (
	"os"

	"github.com/dwmunster/rocket-adapter"
	"github.com/go-joe/joe"
)

func main() {
	b := joe.New("example-bot",
		rocket.Adapter(
			os.Getenv("ROCKET_EMAIL"),
			os.Getenv("ROCKET_PASSWORD"),
			os.Getenv("ROCKET_URL"),
			os.Getenv("ROCKET_USER"),
		),
	)
	b.Respond("ping", Pong)

	err := b.Run()
	if err != nil {
		b.Logger.Fatal(err.Error())
	}
}

func Pong(msg joe.Message) error {
	return msg.RespondE("PONG")
}

So far the adapter will emit the following events to the robot brain:

  • joe.ReceiveMessageEvent

Built With

Contributing

The current implementation is rather minimal and there are many more features that could be implemented on the rocket.chat adapter so you are highly encouraged to contribute. If you want to hack on this repository, please read the short CONTRIBUTING.md guide first.

Versioning

We use SemVer for versioning. For the versions available, see the [tags on this repository][tags.

Authors

  • Friedrich Große - Initial work on Slack adapter - fgrosse
  • Drayton Munster - Conversion to Rocket.Chat API - dwmunster

See also the list of contributors who participated in this project.

License

This project is licensed under the BSD-3-Clause License - see the LICENSE file for details.

About

joe-bot Adapter for Rocket.Chat chat server

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages