https://github.com/codelibs/fess-ds-slack
DataStore Crawler for Slack
https://github.com/codelibs/fess-ds-slack
Last synced: 12 months ago
JSON representation
DataStore Crawler for Slack
- Host: GitHub
- URL: https://github.com/codelibs/fess-ds-slack
- Owner: codelibs
- License: apache-2.0
- Created: 2018-08-17T06:23:49.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-06-22T09:39:29.000Z (about 1 year ago)
- Last Synced: 2025-06-22T10:30:27.443Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 208 KB
- Stars: 4
- Watchers: 9
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Slack Data Store for Fess
[](https://github.com/codelibs/fess-ds-slack/actions/workflows/maven.yml)
==========================
## Overview
Slack Data Store is an extension for Fess Data Store Crawling.
## Download
See [Maven Repository](https://repo1.maven.org/maven2/org/codelibs/fess/fess-ds-slack/).
## Installation
See [Plugin](https://fess.codelibs.org/13.3/admin/plugin-guide.html) of Administration guide.
## Getting Started
### Parameters
Example :
```
token=xoxp-************-************-************-********************************
channels=general,random
file_crawl=false
include_private=false
```
| Key | Value |
| --- | --- |
| token | OAuth Access Token of SlackApp with permissions. |
| channels | Scope of channels to crawl. (comma-separated or `*all`) |
| file_crawl | `true` or `false` (Crawl files or not.) |
| include_private | `true` or `false` (Crawl private channels or not.)|
### Scripts
Example :
```
title=message.user + " #" + message.channel
digest=message.text + "\n" + message.attachments
content=message.text
created=message.timestamp
timestamp=message.timestamp
url=message.permalink
```
| Key | Value |
| --- | --- |
| message.text | Text contents of the Message. |
| message.user | User(display name) of the Message. |
| message.channel | Channel name the Message sent. |
| message.timestamp | Timestamp the Message sent. |
| message.permalink | Permalink of the Message. |
| message.attachments | Fallback of attachments of the Message. |