The simple self-hosted ShareX server
Go to file
Sylvie e026dfdd64
dummy for [docker build]
2023-12-22 15:00:37 -07:00
.github fix/ci: remove armv7 because it takes years [docker build] 2023-11-02 12:13:20 -06:00
backend feat: use william.js for discord validation 2023-12-22 10:41:22 +08:00
common feat: discord webhook support + custom id func 2023-12-22 08:06:17 +08:00
docs docs: fix: follow redirect 2023-12-05 13:22:30 -07:00
frontend feat: add port to MySQL config 2023-12-03 16:57:30 -07:00
src Merge branch 'master' into dev/0.15.0 2023-11-26 12:14:41 -07:00
views fix: use `hashtag` instead of `number` 2023-12-03 16:57:59 -07:00
views.old refactor: renamed views/ and views2/ 2023-09-30 00:10:03 -06:00
.dockerignore Rename and change content 2023-10-27 23:41:16 +02:00
.gitignore chore: add .wrangler/ to .gitignore 2023-12-04 15:45:04 -07:00
Dockerfile build/docker: use pnpm instead of npm 2023-10-27 16:29:34 -06:00
LICENSE chore: update license year 2023-09-29 23:08:11 -06:00
compose.yaml chore: update `Dockerfile` and `compose.yaml` [skip ci:ts] 2023-10-14 09:19:57 -06:00
docker-dev-container.sh feat: added helper dev container build script 2023-11-02 01:00:02 -06:00
flameshot-v1.1.sh refactor: rename old flameshot script 2023-12-04 15:51:36 -07:00
flameshot-v2.sh feat: migrate `check_tool` 2023-12-04 16:02:17 -07:00
package.json feat: use william.js for discord validation 2023-12-22 10:41:22 +08:00
pnpm-lock.yaml build: update pnpm-lock.yaml (remove package-lock.json) 2023-12-22 15:00:19 -07:00
sample_config.sxcu Updated sample and README to match ShareX v14 formatting 2022-07-13 16:53:08 -06:00
tailwind.config.js refactor: renamed views/ and views2/ 2023-09-30 00:10:03 -06:00
tailwind.css feat: make util style 2023-10-14 14:40:17 -06:00

.github/README.md

ass

GitHub package.json version GitHub license GitHub last commit GitHub Repo stars Discord badge

ass is a self-hosted ShareX upload server written in TypeScript.

Features

Out of date

For users

  • Upload images, gifs, videos, audio, & files
  • Token-based authentication
  • Download & delete resources
  • GPS data automatically removed
  • Fully customizable Discord embeds
  • Built-in web viewer with video & audio player
  • Dashboard to manage your files
  • Embed images, gifs, & videos directly in Discord
  • Personal upload log using customizable Discord Webhooks
  • macOS/Linux support with alternative clients such as Flameshot (script for ass) & MagicCap
  • Multiple URL styles
    • Mixed-case alphanumeric
    • Gfycat
    • Timestamp
    • Original
    • ZWS

For hosts & developers

  • Multi-user support
  • Run locally or via Docker
  • API for developers to write custom interfaces
  • Multiple file storage methods
    • Local file system
    • S3
  • Multiple data storage methods
    • JSON
    • MySQL
    • PostgreSQL

Access types

Type What is it?
Mixed-case alphanumeric The "safe" mode. URL's are browser safe as the character set is just letters & numbers.
Gfycat Gfycat-style ID's (for example: https://example.com/unsung-discrete-grub). Thanks to Gfycat for the wordlists
Timestamp The quick but dirty mode. URL is a timestamp of when the file was uploaded, in milliseconds. This is the most unique mode, but also potentially the longest (Gfycat could be longer, easily). Keep in mind this is vulnerable to iteration attacks
Original The "basic" mode. URL matches the same filename as when the file was uploaded. This may be prone to conflicts with files of the same name.
ZWS "Zero-width spaces": when pasted elsewhere, the URL appears to be just your domain name. Some browsers or sites may not recognize these URLs (Discord sadly no longer supports these as of April 2023)

Installation

ass supports two installation methods: Docker & local.

Docker

Expand for Docker/Docker Compose installation steps

Docker Compose is the recommended way to install ass. These steps assume you already Docker & Docker Compose v2 installed.

Install using docker-compose

  1. This repo comes with a pre-made Compose file.
  2. Clone the repo using git clone https://github.com/tycrek/ass.git && cd ass/
  3. Run docker compose up
    • You can append -d to run in the background.
  4. When the logs indicate, visit your installation in your browser to begin the setup.

Local

Expand for local installation steps
  1. You should have Node.js 20 & npm 10 or later installed.
  2. Clone this repo using git clone https://github.com/tycrek/ass.git && cd ass/
  3. Run pnpm i or npm i
  4. Run npm run build
  5. Run npm start
  6. When the logs indicate, visit your installation in your browser to begin the setup.

the readme from this point is out of date

Using HTTPS

For HTTPS support, you must configure a reverse proxy. I recommend Caddy but any reverse proxy works fine (such as Apache or Nginx). A sample config for Caddy is provided below:

ass.example.com {
    reverse_proxy localhost:40115
}

Cloudflare users

In your Cloudflare DNS dashboard, set your domain/subdomain to DNS Only if you experience issues with Proxied. This may not be necessary for all users.

Configure ShareX

  1. Add a new Custom Uploader in ShareX by going to Destinations > Custom uploader settings...
  2. Under Uploaders, click New & name it whatever you like.
  3. Set Destination type to Image, Text, & File
  4. Request tab:
    • Method: POST
    • URL: https://your.domain.name.here/
    • Body: Form data (multipart/form-data)
    • File from name: file (literally put "file" in the field)
    • Headers:
      • Name: Authorization
      • Value: (the value provided by npm start on first run)
  5. Response tab:
    • URL: {json:.resource}
    • Thumbnail: {json:.thumbnail}
    • Deletion URL: {json:.delete}
    • Error message: {response}
    • MagicCap users: do not include the . in the above & replace {} with $ (i.e. $json:resource$)
  6. The file sample_config.sxcu can also be modified & imported to suit your needs

Header overrides

If you need to override a specific part of the config to be different from the global config, you may do so via "X" HTTP headers:

Header Purpose
X-Ass-Domain Override the domain returned for the clipboard (useful for multi-domain hosts)
X-Ass-Access Override the generator used for the resource URL. Must be one of: original, zws, gfycat, random, or timestamp (see above)
X-Ass-Gfycat Override the length of Gfycat ID's. Defaults to 2
X-Ass-Timeoffset Override the timestamp offset. Defaults to UTC+0. Available options are whatever Luxon accepts (for example: America/Edmonton or UTC-7)

Webhooks

You may use Discord webhooks as an easy way to keep track of your uploads. The first step is to create a new Webhook. You only need to follow the first section, Making a Webhook. Once you are done that, click Copy Webhook URL. Finally, add these headers to your custom uploader:

Header Purpose
X-Ass-Webhook-Url The Webhook URL you copied
X-Ass-Webhook-Username (Optional) the "username" of the Webhook; can be set to whatever you want
X-Ass-Webhook-Avatar (Optional) URL to an image to use as the Webhook avatar. Use the full URL including https://

Webhooks will show the filename, mimetype, size, upload timestamp, thumbail, & a link to delete the file. To disable webhooks, simply remove the headers from your config.

Custom index

By default, ass directs the index route / to this README. Follow these steps to use a custom index:

  1. Create a file in the share/ directory called index.html or index.js.
    • ass will treat index.html as an HTML file and will send it to the client.
    • ass will treat index.js as a Node.js file that exports a function representing Express middleware. ass will pass all handling of the index to this function. The function should take three arguments: (req, res, next). Some code samples for common use cases are provided below.
    • If both index.html and index.js are present, the index.html file will be served first.
  2. Add whatever you want to the file.
  3. Restart ass. The startup info logs should mention which file is being used as the index.

Custom index code samples

Redirect to a custom frontend registration page

module.exports = (req, res, next) => res.redirect('/register');

Custom 404 page

To use a custom 404 page, create a file in the share/ directory called 404.html. Restart ass, and any requests to missing resources will return HTTP 404 with the contents of this file.

If there's interest, I may allow making this a function, similar to the custom index.

Flameshot users (Linux)

Use flameshot-v2.sh or sample_screenshotter.sh.

Contributing

Please follow the Contributing Guidelines when submiting Issues or Pull Requests.

Credits

  • Thanks to hlsl#1359 for the logo
  • Gfycat for their wordlists
  • Aven, for helping kickstart the project