Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nektro/andesite
💾 Easily manage access to your open directory through OAuth2
https://github.com/nektro/andesite
andesite astheno indieweb oauth2 open-directory
Last synced: 9 days ago
JSON representation
💾 Easily manage access to your open directory through OAuth2
- Host: GitHub
- URL: https://github.com/nektro/andesite
- Owner: nektro
- License: apache-2.0
- Created: 2018-12-18T04:50:46.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-13T22:33:12.000Z (over 1 year ago)
- Last Synced: 2024-10-15T02:35:00.542Z (22 days ago)
- Topics: andesite, astheno, indieweb, oauth2, open-directory
- Language: Go
- Homepage:
- Size: 509 KB
- Stars: 77
- Watchers: 5
- Forks: 11
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Andesite
![loc](https://sloc.xyz/github/nektro/andesite)
[![license](https://img.shields.io/github/license/nektro/andesite.svg)](https://github.com/nektro/andesite/blob/master/LICENSE)
[![discord](https://img.shields.io/discord/551971034593755159.svg?logo=discord)](https://discord.gg/P6Y4zQC)
[![paypal](https://img.shields.io/badge/donate-paypal-009cdf?logo=paypal)](https://paypal.me/nektro)
[![circleci](https://circleci.com/gh/nektro/andesite.svg?style=svg)](https://circleci.com/gh/nektro/andesite)
[![release](https://img.shields.io/github/v/release/nektro/andesite)](https://github.com/nektro/andesite/releases/latest)
[![goreportcard](https://goreportcard.com/badge/github.com/nektro/andesite)](https://goreportcard.com/report/github.com/nektro/andesite)
[![codefactor](https://www.codefactor.io/repository/github/nektro/andesite/badge)](https://www.codefactor.io/repository/github/nektro/andesite)
[![downloads](https://img.shields.io/github/downloads/nektro/andesite/total.svg)](https://github.com/nektro/andesite/releases)
[![issuehunt](https://img.shields.io/badge/issuehunt-andesite-38d39f)](https://issuehunt.io/r/nektro/andesite)
[![docker_pulls](https://img.shields.io/docker/pulls/nektro/andesite)](https://hub.docker.com/r/nektro/andesite)
[![docker_stars](https://img.shields.io/docker/stars/nektro/andesite)](https://hub.docker.com/r/nektro/andesite)Share folders in an Open Directory without making your entire server public. Manages users with OAuth2.
## Getting Started
These instructions will help you get the project up and running. To obtain the binary you will use to run the app, follow the [Development](#development) or [Deployment](#deployment) sections for futher direction. Below, are general directions for all builds.### Options
Use these to configure your Andesite instance. All are optional. "Name" refers to the name of the CLI flag that may be used. "Config Name" refers to the key name inside of your `config.json`. More on that later.| Name | Config Name | Type | Default | Description |
|------|-------------|------|---------|-------------|
| `--root` | `"root"` | `string` | none. | Path of root directory for `/files/`. |
| `--public` | `"public"` | `string` | none. | Path of root directory for `/public/`. |
| `--port` | `"port"` | `int` | `8000` | Port for web server to bind to. |
| `--base` | `"base"` | `string` | `/` | HTTP path of app root. |
| `--config` | n/a. | `string` | `~/.config/andesite/config.json` | The path to the `config.json` file used for app configuration. |
| `--enable-search` | `"search_on"` | `string[]` | none. | Names of roots to scan and add to the file database. |
| `--disable-search` | `"search_off"` | `string[]` | none. | Names of roots to remove from the file database. |
| | `"roots_public"` | `string[][]` | none. | Enabled roots that don't lie on `/public/` by adding entries `[url_path,fs_path]`. |
| | `"roots_private"` | `string[][]` | none. | Enabled roots that don't lie on `/filess/` by adding entries `[url_path,fs_path]`. |
| `--verbose` | `"verbose"` | `boolean` | `false` | Set to true to enable verbose logging. |
| `--fsdb-verbose` | `"verbose_fsdb"` | `boolean` | `false` | Set to true to enable verbose fsdb logging. |
| `--disable-hash` | | `string[]` | none. | Any of `md5`, `sha1`, `sha256`, `sha512`, `sha3`, `blake2b`. |
| `--hash-concurrency` | | `int` | cpu count | Number of hashes to run concurrently. |
| `--custom-root-public` | | `string[]` | none | Similar to `"roots_public"`, passed in the form `name=path`. |
| `--custom-root-private` | | `string[]` | none | Similar to `"roots_private"`, passed in the form `name=path`. |
| `--disable-global-search` | `bool` | `false` | When true, `/search` requires being an admin to use. |> Note: for `--enable-search` and `--disable-search`, sending values to these flags will trigger a background scan of the root directory you point it at (whether that be `public`, `files`, etc). As such, unless content is changed or updated, it is not necessary to pass these flags across multiple runs of the app.
### Creating Credentials
In order to create a "closed directory" with Andesite, you will need to create an app on your Identity Provider(s) of choice. See the [nektro/go.oauth2](https://github.com/nektro/go.oauth2#readme) docs for more detailed info on this process on where to go and what data you'll need.Here you can also fill out a picture and description that will be displayed during the authorization of users on your chosen Identity Provider. When prompted for the "Redirect URI" during the app setup process, the URL to use will be `http://andesite/callback`, replacing `andesite` with any origins you wish Andesite to be usable from, such as `example.com` or `localhost:800`.
Once you have finished the app creation process you should now have a Client ID and Client Secret. These are passed into Andesite through flags as well.
The Identity Provider IDs used below can be found in the table in the [nektro/go.oauth2](https://github.com/nektro/go.oauth2#creating-credentials) documentation under the "Short Code" column.
| Name | Type | Default | Description |
|------|------|---------|-------------|
| `--oauth2-client` | `string[]` | none. | `idp_id|id|secret` |## Deployment
Pre-compiled binaries can be obtained from https://github.com/nektro/andesite/releases/latest.Or from Docker `docker run nektro/andesite`
## Development
### Prerequisites
- A directory you wish to proxy through Andesite
- The Go Language 1.12+ (https://golang.org/dl/)
- GCC on your PATH (for the https://github.com/mattn/go-sqlite3 installation)### Installing
Run
```
$ go get -v -u github.com/nektro/andesite
```
and then make your way to `$GOPATH/src/github.com/nektro/andesite/`.Once there, run:
```
$ go build
$ ./andesite
```## Extras
### Discord Guild/Role Access Grant
Due to a limitation in the Discord API, in order to determine if a user has a role on a specific server, you must use a bot. To get started, go to https://discordapp.com/developers/applications/ and add a Bot user to your app and copy down the Bot Token. Now, to be able to give file/folder access to entire roles, we are going to be using more flags:| Name | Config Name | Type | Default | Description |
|------|-------------|------|---------|-------------|
| `--discord-guild-id` | `"clients[for.discord].extra_1"` | `string` | none. | [Guild Snowflake](https://discordapp.com/developers/docs/resources/guild). |
| `--discord-bot-token` | `"clients[for.discord].extra_2"` | `string` | none. | [Bot Token](https://discordapp.com/developers/docs/reference#authentication). |Enabling these values will add a section to `http://andesite/admin` that you can input the role snowflakes and the path you are granting.
### Themes
Andesite supports making custom themes for the splash page and the various HTML templates throughout the program. Those are:
- `index.html` - [Default Source](./www/index.html)
- The main page shown to all users at the root of the server.
- `response.hbs` - [Default Source](./www/response.hbs)
- A generic page used to show errors and message to the user.
- `listing.hbs` - [Default Source](./www/listing.hbs)
- The main directory listing page.
- `admin.hbs` - [Default Source](./www/admin.hbs)
- The admin dashboard that allows editing the access of users.
- `style.css` - [Default Source](./www/style.css)
- Empty CSS file you can use to easily make style-only themes.
- `users.hbs` - [Default Source](./www/users.hbs)
- The admin dashboard that allows viewing of the list of users.
- `admin_roots.hbs` - [Default Source](./www/admin_roots.hbs)
- The admin dashboard that allows viewing of all the data paths.All or none of the files may be replaced when using a theme. To enable use of a theme, suppose the value passed to `--theme` was `example`. Doing this will tell Andesite to serve files from `.andesite/themes/example/`.
## Built With
- http://github.com/aymerick/raymond
- http://github.com/fsnotify/fsnotify
- http://github.com/nektro/go-util
- http://github.com/nektro/go.etc
- http://github.com/nektro/go.oauth2
- http://github.com/mitchellh/go-homedir
- http://github.com/rakyll/statik
- http://github.com/spf13/pflag
- http://github.com/valyala/fastjson## Contributing
[![issues](https://img.shields.io/github/issues/nektro/andesite.svg)](https://github.com/nektro/andesite/issues)We listen to issues all the time right here on GitHub. Labels are extensively to show the progress through the fixing process. Question issues are okay but make sure to close the issue when it has been answered! Off-topic and '+1' comments will be deleted. Please use post/comment reactions for this purpose.
## Contact
- [email protected]
- https://twitter.com/nektro## License
Apache 2.0