Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yonicd/slackcalls
generic package to call slack api from R
https://github.com/yonicd/slackcalls
r slack
Last synced: 11 days ago
JSON representation
generic package to call slack api from R
- Host: GitHub
- URL: https://github.com/yonicd/slackcalls
- Owner: yonicd
- License: other
- Created: 2020-01-23T23:35:00.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-10T23:49:39.000Z (almost 2 years ago)
- Last Synced: 2025-01-03T10:51:30.375Z (23 days ago)
- Topics: r, slack
- Language: R
- Homepage: https://yonicd.github.io/slackcalls/
- Size: 211 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 10
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - yonicd/slackcalls - generic package to call slack api from R (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
[![Covrpage Summary](https://img.shields.io/badge/covrpage-Last_Build_2023_02_27-brightgreen.svg)](http://tinyurl.com/ux5kpl9)
[![R-CMD-check](https://github.com/yonicd/slackcalls/actions/workflows/r-cmd-check.yml/badge.svg)](https://github.com/yonicd/slackcalls/actions/workflows/r-cmd-check.yml)
[![Codecov test coverage](https://codecov.io/gh/yonicd/slackcalls/branch/master/graph/badge.svg)](https://codecov.io/gh/yonicd/slackcalls?branch=master)# slackcalls
`slackcalls` is a part of `slackverse`
```{r,echo = FALSE, eval = TRUE}
pkgs <- sprintf('slack%s',c('calls','teams','posts','blocks','threads','reprex'))badges <- sprintf('%s
[![](https://github.com/yonicd/%s/actions/workflows/r-cmd-check.yml/badge.svg)](https://github.com/yonicd/%s)',pkgs,pkgs,pkgs)names(badges) <- pkgs
```
||||
|:-:|:-:|:-:|
||`r badges[pkgs[1]]`||
|`r badges[pkgs[5]]`|`r badges[pkgs[2]]`|`r badges[pkgs[3]]`|
|||`r badges[pkgs[4]]`|
|||`r badges[pkgs[6]]`|`slackcalls` is the backend of `slackverse` it interacts with Slack API methods
- [Posting](#posting-to-slack)
- [Querying](#querying-slack)
- [Storage](#storage)## Posting to Slack
### Files
Using `files_slack` interact with
- [files.upload](https://api.slack.com/methods/files.upload)
- [files.delete](https://api.slack.com/methods/files.delete)
- [files.info](https://api.slack.com/methods/files.info)
- [files.list](https://api.slack.com/methods/files.list)### Chats
Using `chat_slack` interact with
- [chat.postMessage](https://api.slack.com/methods/chat.postMessage)
- [chat.delete](https://api.slack.com/methods/chat.delete)
- [chat.update](https://api.slack.com/methods/chat.update)## Querying Slack
Using `post_slack` you can query the API to get information such as the following lists. The functions paginate by default.
### Team
- [team.info](https://api.slack.com/methods/team.info)
### Users- [users.list](https://api.slack.com/methods/users.list)
- [users.info](https://api.slack.com/methods/users.info)### Conversations
- [conversations.history](https://api.slack.com/methods/conversations.history)
- [conversations.list](https://api.slack.com/methods/conversations.list)
- [conversations.info](https://api.slack.com/methods/conversations.info)
- [conversations.members](https://api.slack.com/methods/conversations.members)
- [conversations.replies](https://api.slack.com/methods/conversations.replies)
## Storage`slackcalls` also saves internally posts that you make during a session in order to use the information for posting to a thread or deleting posts. This mechanism is used in all the slackverse packages.
### Stacks
- `file_stack`: vector of file IDs that have been sent
- `post_stack`: list of posts that have been sent, contains information of ID, ts and where relevant thread_ts.The stacks are updated every time a new post/file is sent or deleted.
### Last Element
using `file_last` and `post_last` you can fetch the head of each stack.