api | ||
debian | ||
json-c@c75ebe8973 | ||
libwebsockets@f1c56bc233 | ||
request | ||
.dir-locals.el | ||
.gitattributes | ||
.gitignore | ||
.gitmodules | ||
.travis.yml | ||
LICENSE | ||
Makefile | ||
README.org | ||
slack-api.c | ||
slack-api.h | ||
slack-buffer.c | ||
slack-buffer.h | ||
slack-channel.c | ||
slack-channel.h | ||
slack-command.c | ||
slack-command.h | ||
slack-completion.c | ||
slack-completion.h | ||
slack-config.c | ||
slack-config.h | ||
slack-emoji.c | ||
slack-emoji.h | ||
slack-emoji.inc | ||
slack-emoji.pl | ||
slack-emoji.py | ||
slack-input.c | ||
slack-input.h | ||
slack-message.c | ||
slack-message.h | ||
slack-oauth.c | ||
slack-oauth.h | ||
slack-request.c | ||
slack-request.h | ||
slack-teaminfo.c | ||
slack-teaminfo.h | ||
slack-user.c | ||
slack-user.h | ||
slack-workspace.c | ||
slack-workspace.h | ||
slack.c | ||
slack.h | ||
weechat-plugin.h |
weechat-slack
file:https://api.travis-ci.org/bqv/weechat-slack.svg?branch=master file:https://coveralls.io/repos/github/bqv/weechat-slack/badge.svg?branch=master
Status: | Under Development |
Location: | http://github.com/bqv/weechat-slack |
Version: | 0.1.0 |
Disclaimer: | Slack's API is a thing of horror |
Description
A weechat plugin in C to extend the chat client to support Slack workspaces via the RTM and Web APIs.
Installing
See http://github.com/bqv/weechat-extras for the suite this is part of and a repository/package for your distribution.
Dependencies
- libwebsockets (static, submodule)
- json-c (static, submodule)
- weechat (>= v1.7)
Building
git clone git://github.com/bqv/weechat-slack.git
cd weechat-slack
make
make install
Do NOT run make install as root, it installs the plugin to your local weechat plugins directory
Development
I use emacs for development of this, although I am also a fan of vim.
My debug build process involves static analysis with clang and cppcheck,
and dynamic analysis with address-sanitizer and leak-sanitizer.
My debug evaluation process involves gdb/mi run with the arguments
-ex "handle SIGPIPE nostop noprint pass" --args weechat -a 2>asan.log
since part of weechat and it's default plugins use SIGPIPE as control.
I have no real requests for style of pull requests besides a wish that you keep vaguely to the style I have adopted for this project.
Happy coding!
Tasks
DONE [A] Implement basic functionality (milestone v0.1)
TODO [A] Implement essential api endpoints and events (milestone v0.2)
Implement handling api messagemessage.me_message
(see #5)Implement sending requestchat.meMessage
(see #5)- Implement handling api message
message.thread_broadcast
Implement handling api messagemessage.bot_message
(see #2)- Implement handling api message
message.message_changed
- Implement handling api message
message.message_deleted
- Implement handling api message
message.message_replied
- Implement sending websocket
typing
message
TODO [B] Implement completion engine (milestone v0.3)
TODO [B] Implement websocket ping and pong (milestone v0.4)
- Add ping timer and pong handler (see #9)
TODO [C] Implement remaining api endpoints and events (milestone v0.5)
-
Support all channel types
Channels- Groups
- MPIMs
- IMs
- Complete api endpoint set
- Complete api event set
TODO [C] Implement full weechat functionality (milestone v0.6)
- Hook buffer closes
- Relay compatibility
-
Config Options
- Emoji translation options (see #11)
TODO [#D] Close all issues (milestone v1.0)
Contributing
Your contributions are always welcome! Please submit a pull request or create an issue to add a new or missing feature.
Appropriating
As there is no C library for Slack at the time of writing, this project implements the APIs from scratch, and as such one could butcher this repository to create a minimal Slack C library. Up to you.
License
weechat-slack is licensed under the Mozilla Public License Version 2.0 available here and in LICENSE.