Giter VIP home page Giter VIP logo

ass's Introduction

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 Node.js. I initially started this project purely out of spite. ass aims to be as unopinionated as possible, giving users & hosts alike the ability to modify nearly everything.

By default, ass comes with a resource viewing page, which includes metadata about the resource as well as a download button & inline viewers for images, videos, & audio. It does not have a user dashboard or registration system: this is intentional! Developers are free to create their own frontends using the languages & tools they are most comfortable with. Writing & using these frontends is fully documented below, in the wiki, & in the source code.

Notice (Sep 2023)

The current release version 0.14.x is now in maintenence mode. What this means is I'll only be providing updates to catastrophic issues.

However! I'm currently working on a new version, 0.15.0, which is a lot more stable and organized. I have no ETA but please know that I'm continuing to work on it when I can. Version 0.14.x is still functional, just a bit rough around the edges.

Developers 🧡

ass was designed with developers in mind. If you are a developer & want something changed to better suit you, let me know & we'll see what we can do!

Code quality

CodeQL DeepSource
CodeQL badge DeepSource Active Issues DeepSource Resolved Issues

Features

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
  • 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
    • ZWS
    • Mixed-case alphanumeric
    • Gfycat
    • Original
    • Timestamp

For hosts & developers

  • Usage metrics
  • Thumbnail support
  • Mimetype blocking
  • Themeable viewer page
  • Basic multi-user support
  • Configurable global upload size limit (per-user coming soon)
  • Custom pluggable frontends using Git Submodules
  • Run locally or in a Docker container
  • Multiple file storage methods
  • Multiple data storage methods using data engines

Access types

Type What is it?
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)
ZWS sample
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
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.
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

Installation

ass supports two installation methods: Docker (recommended) & local (manual).

Docker

Expand for Docker/Docker Compose installation steps

Docker Compose is the recommended way to install ass. These steps assume you are already family with Docker. If not, you should probably use the local installation method. They also assume that you have a working Docker installation with Docker Compose v2 installed.

Install using docker-compose

  1. Clone the ass repo using git clone https://github.com/tycrek/ass.git && cd ass/
  2. Run the command that corresponds to your OS:
    • Linux: ./install/docker-linux.sh (uses #!/bin/bash)
    • Windows: install\docker-windows.bat (from Command Prompt)
    • These scripts are identical using the equivalent commands in each OS.
  3. Work through the setup process when prompted.

The upload token will be printed at the end of the setup script prompts. This is the token that you'll need to use to upload resources to ass. It may go by too quickly to copy it, so just scroll back up in your terminal after setup or run cat auth.json.

You should now be able to access the ass server at http://localhost:40115/ (ass-docker will bind to host 0.0.0.0 to allow external access). You can configure a reverse proxy (for example, Caddy; also check out [my tutorial]) to make it accessible from the internet with automatic SSL.

What is this script doing?

It creates directories & files required for Docker Compose to properly set up volumes. After that, it simply builds the image & container, then launches the setup process.

How do I run the npm scripts?

Since all 3 primary data files are bound to the container with Volumes, you can run the scripts in two ways: docker compose exec or npm on the host.

# Check the usage metrics
docker compose exec ass npm run metrics

# Run the setup script
docker compose exec ass npm run setup && docker compose restart

# Run npm on the host to run the setup script (also works for metrics)
# (You will have to meet the Node.js & npm requirements on your host for this to work properly)
npm run setup && docker compose restart

How do I update?

Easy! Just pull the changes & run this one-liner:

# Pull the latest version of ass & rebuild the image
git pull && docker compose build --no-cache && docker compose up -d

What else should I be aware of?

Deploying ass with Docker exposes five volumes. These volumes let you edit the config, view the auth or data files, or view the uploads/ folder from your host.

  • uploads/
  • share/
  • config.json
  • auth.json
  • data.json

Local

Expand for local installation steps
  1. You should have Node.js 16 & npm 8 or later installed.
  2. Clone this repo using git clone https://github.com/tycrek/ass.git && cd ass/
  3. Run npm i --save-dev to install the required dependencies (--save-dev is required for compilation)
  4. Run npm run build to compile the TypeScript files
  5. Run npm start to start ass.

The first time you run ass, the setup process will automatically be called & you will be shown your first authorization token; save this as you will need it to configure ShareX.

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)

Fancy embeds

If you primarily share media on Discord, you can add these additional (optional) headers to build embeds:

Header Purpose
X-Ass-OG-Title Large text shown above your media. Required for embeds to appear on desktop.
X-Ass-OG-Description Small text shown below the title but above the media (does not show up on videos)
X-Ass-OG-Author Small text shown above the title
X-Ass-OG-Author-Url URL to open when the Author is clicked
X-Ass-OG-Provider Smaller text shown above the author
X-Ass-OG-Provider-Url URL to open when the Provider is clicked
X-Ass-OG-Color Colour shown on the left side of the embed. Must be one of &random, &vibrant, or a hex colour value (for example: #fe3c29). Random is a randomly generated hex value & Vibrant is sourced from the image itself

Embed placeholders

You can insert certain metadata into your embeds with these placeholders:

Placeholder Result
&size The files size with proper notation rounded to two decimals (example: 7.06 KB)
&filename The original filename of the uploaded file
&timestamp The timestamp of when the file was uploaded (example: Oct 14, 1983, 1:30 PM)

Server-side embed configuration

You may also specify a default embed config on the server. Keep in mind that if users specify the X-Ass-OG-Title header, the server-side config will be ignored. To configure the server-side embed, create a new file in the share/ directory named embed.json. Available options are:

  • title
  • description
  • author
  • authorUrl
  • provider
  • providerUrl
  • color

Their values are equivalent to the headers listed above.

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.

Customizing the viewer

If you want to customize the font or colours of the viewer page, create a file in the share/ directory called theme.json. Available options are:

Option Purpose
font The font family to use; defaults to "Josefin Sans". Fonts with a space should be surrounded by double quotes.
bgPage Background colour for the whole page
bgViewer Background colour for the viewer element
txtPrimary Primary text colour; this should be your main brand colour.
txtSecondary Secondary text colour; this is used for the file details.
linkPrimary Primary link colour
linkHover Colour of the hover effect for links
linkActive Colour of the active effect for links
borderHover Colour of the hover effect for borders; this is used for the underlining links.

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.

File storage

ass supports three methods of file storage: local, S3, or [Skynet].

Local

Local storage is the simplest option, but relies on you having a lot of disk space to store files, which can be costly.

S3

Any existing object storage server that's compatible with [Amazon S3] can be used with ass. I personally host my files using Digital Ocean Spaces, which implements S3.

S3 servers are generally very fast & have very good uptime, though this will depend on the hosting provider & plan you choose.

New user system (v0.14.0)

The user system was overhauled in v0.14.0 to allow more features and flexibility. New fields on users include admin, passhash, unid, and meta (these will be documented more once the system is finalized).

New installs will automatically generate a default user. Check the auth.json file for the token. You will use this for API requests and to authenticate within ShareX.

ass will automatically convert your old auth.json to the new format. Always backup your auth.json and data.json before updating. By default, the original user (named ass) will be marked as an admin.

Adding users

You may add users via the CLI or the API. I'll document the API further in the future.

CLI

npm run cli-adduser <username> <password> [admin] [meta]
Argument Purpose
username string The username of the user.
password string The password of the user.
admin? boolean Whether the user is an admin. Defaults to false.
meta? string Any additional metadata to store on the user, as a JSON string.

Things still not added:

  • Modifying/deleting users via the API

Developer API

ass includes an API (v0.14.0) for frontend developers to easily integrate with. Right now the API is pretty limited but I will expand on it in the future, with frontend developer feedback.

Any endpoints requiring authorization will require an Authorization header with the value being the user's upload token. Admin users are a new feature introduced in v0.14.0. Admin users can access all endpoints, while non-admin users can only access those relevant to them.

Other things to note:

  • All endpoints are prefixed with /api/.
  • All endpoints will return a JSON object unless otherwise specified.
  • Successful endpoints should return a 200 status code. Any errors will use the corresponding 4xx or 5xx status code (such as 401 Unauthorized).
  • ass's API will try to be as compliant with the HTTP spec as possible. For example, using POST/PUT for create/modify, and response codes such as 409 Conflict for duplicate entries. This compliance may not be 100% perfect, but I will try my best.

API endpoints

Endpoint Purpose Admin?
GET /user/ Returns a list of all users Yes
GET /user/:id Returns the user with the given ID Yes
GET /user/self Returns the current user No
GET /user/token/:token Returns the user with the given token No
POST /user/ Creates a new user. Request body must be a JSON object including username and password. You may optionally include admin (boolean) or meta (object). Returns 400 if fails. Yes
POST /user/password/reset/:id Force resets the user's password. Request body must be a JSON object including a password. Yes
DELETE /user/:id Deletes the user with the given ID, as well as all their uploads. Yes
PUT /user/meta/:id Updates the user's metadata. Request body must be a JSON object with keys key and value, with the key/value you want to set in the users metadata. Optionally you may include force: boolean to override existing keys. Yes
DELETE /user/meta/:id Deletes a key/value from a users metadata. Request body must be a JSON object with a key property specifying the key to delete. Yes
PUT /user/username/:id Updates the user's username. Request body must be a JSON object with a username property. Yes
PUT /user/token/:id Regenerates a users upload token Yes

Custom frontends - OUTDATED

Please be aware that this section is outdated (marked as of 2022-04-15). It will be updated when I overhaul the frontend system.

Update 2022-12-24: I plan to overhaul this early in 2023.

ass is intended to provide a strong backend for developers to build their own frontends around. Git Submodules make it easy to create custom frontends. Submodules are their own projects, which means you are free to build the router however you wish, as long as it exports the required items. A custom frontend is really just an Express.js router.

For a detailed walkthrough on developing your first frontend, consult the wiki.

Data Engines

Papito data engines are responsible for managing your data. "Data" has two parts: an identifier & the actual data itself. With ass, the data is a JSON object representing the uploaded resource. The identifier is the unique ID in the URL returned to the user on upload. Update August 2022: I plan to overhaul Papito and how all this works eventually. If this comment is still here in a year, kick message me.

Supported data engines:

Name Description Links
JSON JSON-based data storage. On disk, data is stored in a JSON file. In memory, data is stored in a Map. This is the default engine. GitHub
npm
PostgreSQL Data storage using a PostgreSQL database. node-postgres is used for communicating with the database. GitHub
npm
Mongoose Data storage using a MongoDB database. mongoose is used for communicating with the database. Created by @dylancl GitHub
npm

A Papito data engine implements support for one type of database (or file, such as JSON or YAML). This lets ass server hosts pick their database of choice, because all they'll have to do is enter the connection/authentication details & ass will handle the rest, using the resource ID as the key.

For a detailed walkthrough on developing engines, consult the wiki. Outdated!

npm scripts

ass has a number of pre-made npm scripts for you to use. All of these scripts should be run using npm run <script-name> (except start).

Script Description
start Starts the ass server. This is the default script & is run with npm start.
build Compiles the TypeScript files into JavaScript.
dev Chains the build & compile scripts together.
setup Starts the easy setup process. Should be run after any updates that introduce new config options.
metrics Runs the metrics script. This is a simple script that outputs basic resource statistics.
purge Purges all uploads & data associated with them. This does not delete any users, however.
engine-check Ensures your environment meets the minimum Node & npm version requirements.

Flameshot users (Linux)

Use this script. For the KEY, put your token. Thanks to @ToxicAven for creating this!

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
  • My spiteful ass for motivating me to actually take this project to new heights

ass's People

Contributors

deepsourcebot avatar dependabot[bot] avatar facinorous-420 avatar gauvino avatar metacinnabar avatar nischay876 avatar notashelf avatar snyk-bot avatar toxicaven avatar tycrek avatar vadimalexeev0 avatar yesbad avatar zusier avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

ass's Issues

[BUG] Deleting a file that has the same name as other files deletes all files

Is there an existing Issue for this bug?

  • I have searched the existing issues

Expected behavior

Should only delete the file you are referencing via the resourceID and deleteID

Actual behavior

Deletes every image that has the same name? as the file you delete, but leaves their data object in the data.json so when you view their URL, ass cant find the image but still thinks that image exists

Steps to reproduce

  1. Go to custom uploader settings and do the test upload a few times
  2. Delete ONE of the items you produced by going to the delete url
  3. Try to view another one of the test images you produced in step 1
  4. Youll notice the image is broken due to ASS not being able to find the image file

Logs (optional)

No response

ass version

0.10.0

Deployment

Manual

File storage

Local

Operating system

Linux and Windows

Node version

16.14

Storage method

papito

Reverse proxy

  • I am using a reverse proxy

Reverse proxy software

No response

Cloudflare

  • I am using Cloudflare

[FEATURE] Auto Purge

Description

A feature to purge all uploads automatically after a set amount of time with options such as a day, week, month, year etc.

[FEATURE] Replace Discord.js with discord-webhook-node

Description

Currently, ASS uses discord.js as a library to send webhook requests to Discord. However, this is a big library that's only being used for one small thing, which also doesn't work for some people (me, mainly).

A better alternative would be discord-webhook-node which focuses only on webhook requests, as well as having the same capabilities to create nice looking embeds like Discord.js.

[FEATURE] Some type of gallery view for previously uploaded images

Description

Hey there,
Thanks for all your hard work on this project. I tried a number of them prior to discovering this, but the relative simplicity in terms of usage, while being customizable and feature-rich at the same time is a real win in my book. All I had to do to get it working on my desktop after loading up the server-side was replace my previous flameshot script with the one you included and I was good to go. 👍

That said, one thing that would be great to have is some sort of gallery view that could be password protected that would simply list all previously uploaded images in a thumbnail grid. Nothing fancy (perhaps paginated at most), just functional to allow easier referencing of previous uploads so I don't have to go and bookmark every one of them in the browser, or save the links to text files.

I appreciate your time and consideration,
-MH

[BUG] Files do not properly save

Is there an existing Issue for this bug?

  • I have searched the existing issues

Expected behavior

file should save

Actual behavior

file doesn't save

Steps to reproduce

reeeeeee

Logs (optional)

Literally none

ass version

0.9.0

Deployment

Manual

File storage

Local

Operating system

Windows 10, Ubuntu 20.04

Node version

14

StorageEngine

papito

Reverse proxy

  • I am using a reverse proxy

Reverse proxy software

No response

Cloudflare

  • I am using Cloudflare

[FEATURE] Register System

Description

Hello, can you add a function that allows users to register and download their config and create or regenerate a token?

Thanks,
Maximilian

[FEATURE] Direct download/playback from S3

Description

I don't know if this is possible but to save bandwidth on the host, is there a way a feature could be implemented where uploads go directly to S3 using a one time token or something, then played back directly from s3, this way the internet speed of the Ass host doesn't become a bottleneck.

[BUG] gfycat returns 404

Is there an existing Issue for this bug?

  • I have searched the existing issues

Expected behavior

resource url is generated for example at domain.com/cool-cat

click on resource URL

taken to requested image

Actual behavior

404 not found

Steps to reproduce

Set X-Ass-Access header to gfycat
Sharex returns a weird link that has line breaks
Remove linebreaks and type URL into the browser
Ass returns 404

Logs (optional)

No response

ass version

0.1.1

Deployment

Docker

File storage

Local

Operating system

Windows 10 Pro 19042

Node version

16.13/0

Storage method

Papito

Reverse proxy

  • I am using a reverse proxy

Reverse proxy software

Cloudflared

Cloudflare

  • I am using Cloudflare

[BUG] Ass considers an ID as valid, and crashes when it tries to load the corresponding file since it does not exist

Is there an existing Issue for this bug?

  • I have searched the existing issues

Expected behavior

This unhandled error should be handled to avoid ass crashing and making the instance reboot.

Actual behavior

ass restarts and is therefore down for a few seconds.

Steps to reproduce

I don't exactly know how the bug occured, but this specific URL seems to throw an unhandled error (see logs).

If I try to go to https://domain.tld/whatever, I get the "Not Found" error message, but if I go to https://domain.tld/FjwUGE0WuanH, ass crashes (and restarts) and I get a 502 from my reverse proxy.

My guess is that at some point in November (see logs), an upload failed, and ass considers the ID passed in the URL as valid, and when it tries to upload the file corresponding to this ID, it fails, because the file does not exist (I checked just to make sure and yes, the file f8f0d045205bf5dd7cc9abdaf6ec4b2cfdd66e31 does not exist in the given path.

To begin with, it may be a good idea to handle this error in case the file does not exist (or no longer exists), as it may occur if you mistakenly delete the files in the uploads folder, and may therefore cause some trouble (an instance that restarts in a loop if many requests are made to previously existing IDs).
Then, maybe double check the upload process, in order to remove from the database an upload that did not finish correctly and did not create a file.

Logs (optional)

Dec 30, 2021, 12:19 AM [EXPRESS]  HTTP GET: /FjwUGE0WuanH 
Dec 30, 2021, 12:19 AM [EXPRESS]  Response: 200 
Dec 30, 2021, 12:19 AM [EXPRESS]  HTTP GET: /FjwUGE0WuanH/direct 
events.js:377
      throw er; // Unhandled 'error' event
      ^

Error: ENOENT: no such file or directory, open 'uploads/2021-11/f8f0d045205bf5dd7cc9abdaf6ec4b2cfdd66e31'
Emitted 'error' event on ReadStream instance at:
    at /opt/ass/node_modules/graceful-fs/graceful-fs.js:292:14
    at /opt/ass/node_modules/graceful-fs/graceful-fs.js:343:16
    at FSReqCallback.oncomplete (fs.js:180:23) {
  errno: -2,
  code: 'ENOENT',
  syscall: 'open',
  path: 'uploads/2021-11/f8f0d045205bf5dd7cc9abdaf6ec4b2cfdd66e31'
}

> [email protected] prestart
> npm run engine-check


> [email protected] engine-check
> node dist/checkEngine.js

// Wanted: >=14.7.x <16 (npm >=8.1.x)
2021-12-30T00:19:39.322+00:00 [UTILS]    Node: v14.17.5
2021-12-30T00:19:39.344+00:00 [SUCCESS]  Node & npm version requirements satisfied!

> [email protected] start
> node dist/ass.js

Dec 30, 2021, 12:19 AM [DEBUG]    Plugin enabled: Express

Dec 30, 2021, 12:19 AM [INFO]     * ass v0.9.1 *

Dec 30, 2021, 12:19 AM [INFO]     Users: 1
Dec 30, 2021, 12:19 AM [INFO]     Files: 36
Dec 30, 2021, 12:19 AM [INFO]     Data engine: JSON (file)
Dec 30, 2021, 12:19 AM [INFO]     Frontend: disabled
Dec 30, 2021, 12:19 AM [INFO]     Custom index: disabled

Dec 30, 2021, 12:19 AM [EXPRESS]  Express started: Listening on 0.0.0.0:40115 (click http://127.0.0.1:40115/)
Dec 30, 2021, 12:19 AM [SUCCESS]  Ready for uploads: Storing resources on disk

ass version

0.9.1

Deployment

Docker

File storage

Local

Operating system

Debian 10

Node version

Node v12.22.8

Storage method

Papito

Reverse proxy

  • I am using a reverse proxy

Reverse proxy software

Nginx 1.20.2

Cloudflare

  • I am using Cloudflare

[BUG] Resource identifier doesn't check existing indentifiers

Is there an existing Issue for this bug?

  • I have searched the existing issues

Expected behavior

When generating a unique key for an image a check should be performed to see if any previous images have generated the same key.

Actual behavior

A duplicate key can be generated resulting in the image upload failing.

Steps to reproduce

  1. Screenshot and upload to ass.
  2. Repeat step 1 until logs show Error: Key already exists.

Logs (optional)

Oct 2, 2021, 12:39 AM [ERROR]    Error: Key already exists
Error: Key already exists
    at @tycrek/papito/JsonDataEngine.js:66:13
    at new Promise (<anonymous>)
    at JsonPutFunc (@tycrek/papito/JsonDataEngine.js:63:9)
    at JsonDataEngine.put (@tycrek/papito/DataEngine.js:55:29)
    at /routers/upload.js:70:7
    at Layer.handle [as handle_request] (express/lib/router/layer.js:95:5)
    at next (express/lib/router/route.js:137:13)
    at Route.dispatch (express/lib/router/route.js:112:3)
    at Layer.handle [as handle_request] (express/lib/router/layer.js:95:5)
    at express/lib/router/index.js:281:22
Oct 2, 2021, 12:39 AM [Express] Response: 500

ass version

0.8.6

Deployment

Manual

File storage

Local

Operating system

Ubuntu 20.04.2 LTS

Node version

14.17.1

Reverse proxy

  • I am using a reverse proxy

Reverse proxy software

nginx/1.18.0 (Ubuntu)

Cloudflare

  • I am using Cloudflare

[FEATURE] MagicCap Example

Description

I am having a really tough time getting MagicCap working for Mac. Is there someone who knows how to use it that can send their example?

[BUG] Invalid Node Version! (Waiting on external PR)

Expected Behavior

ass runs

Actual Behavior

ass says invalid node version even though it ran with this node version two days ago

Invalid node version!
- Current: 16.4.1
- Required: >=14.7.0 <16.0.0
Please update to continue!

[BUG] Uploading a file with spaces breaks embeds on Discord when using the originalName preset

Is there an existing Issue for this bug?

  • I have searched the existing issues

Expected behavior

Files uploaded with the originalName preset that contain spaces should have the spaces replaced with anything other than spaces to allow Discord to embed the link. Possible options are %20 , removing spaces entirely or replacing them with a symbol such as - .

Actual behavior

When pasting the link that ShareX copies to your clipboard after upload, the link works up until the first space occurring in it.
An example of this behavior is
example

Steps to reproduce

1 - Use the 'original' option for x-ass-access
2 - Upload a file that has spaces in it's name
3 - Paste the link in Discord

Logs (optional)

No response

ass version

Any version

Deployment

Manual

File storage

Local

Operating system

N/A

Node version

N/A

StorageEngine

N/A

Reverse proxy

  • I am using a reverse proxy

Reverse proxy software

No response

Cloudflare

  • I am using Cloudflare

[BUG] author twice

Is there an existing Issue for this bug?

  • I have searched the existing issues

Expected behavior

if og provider isnt in a header itll put the author as it

Actual behavior

it puts author in og provider if it isnt included in headers

fix: put blank og provider

Steps to reproduce

put something in author and not provider

Logs (optional)

No response

ass version

tycrek's funny Beta version

Deployment

Docker

File storage

S3

Operating system

some version of linux

Node version

one of them

StorageEngine

in tycrek's funny server

Reverse proxy

  • I am using a reverse proxy

Reverse proxy software

tycrek's

Cloudflare

  • I am using Cloudflare

[FEATURE] Timezones

Description

for users. From discord; I know what this means (will update comment eventually with more info)

[BUG] Properly handle `webp` files

Is there an existing Issue for this bug?

  • I have searched the existing issues

Expected behavior

Webp images aren't handled the same way as most images. All the libraries ass use don't allow processing them.

Right now there's some temporary fixes in the code but for long-term support, this should be dealt with properly.

Actual behavior

Without the temporary fixes, uploads fails as things like thumbnail generation fail to handle Webp.

Steps to reproduce

Use 0.9.1 latest release (not master) and try uploading a webp file

Logs (optional)

Irrelevant since I know what to do with these

ass version

0.9.1

Deployment

Docker

File storage

Local

Operating system

Ubunutu/Windows

Node version

14.17

Storage method

Papito

Reverse proxy

  • I am using a reverse proxy

Reverse proxy software

Caddy

Cloudflare

  • I am using Cloudflare

[FEATURE] ass custom themes

Description

So far editing ASS' index is super easy since you just throw a .js file in the share folder with a small route code and call it a day.

Though, there are 2 things I noticed that could be enhanced to follow this same concept:

  1. The viewer's view file. Allow people to easily edit what this looks like by having the ability to let the user redirect to a custom viewer.
  2. The ability to easily customize the color scheme in the tailwind config.

[BUG] log is not a function. Unable to run setup

Expected Behavior

setup runs and I can configure my new ass

Actual Behavior

error, log is not a function

--- /home/ass ‹master* M› » npm run setup

> [email protected] presetup
> npm run engine-check


> [email protected] engine-check
> node checkEngine.js

2021-07-10T01:35:18.688-04:00 [SUCCESS] Node & npm version requirements satisfied!

> [email protected] setup
> node setup.js

/home/ass/setup.js:173
        log('<<< ass setup >>>\n');
        ^

TypeError: log is not a function
    at Object.<anonymous> (/home/ass/setup.js:173:2)
    at Module._compile (node:internal/modules/cjs/loader:1095:14)
    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1124:10)
    at Module.load (node:internal/modules/cjs/loader:975:32)
    at Function.Module._load (node:internal/modules/cjs/loader:816:12)
    at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:79:12)
    at node:internal/main/run_main_module:17:47

Steps to Reproduce the Problem

  1. npm run setup

Specifications

latest ass

debian 10

nodejs 16.4.1 and npm 7.19.1

[FEATURE] Ephemeral mode

Describe the feature

Will delete all (or individual) files after a set amount of time or views (similar to file.io).

This would appear as both global and per-upload options.

Additional details

Don't process bot user-agents

[FEATURE] Add host & header options to disable downloads in the viewer

Description

Some hosts or users may want to hide the Download button in the default viewer. A global config option and a header should be available to disable the button. If a host has disabled the button globally, they are disabled for all users, and cannot be re-enabled by users (this may change in the future).

This will not prevent users from right-click saving the file.

[FEATURE] Convert to ESM module

Description

Problems:

  • Multer is stuck on 2.0.0-rc.2, because rc.3 breaks compatibility due to becoming a module
  • fs-temp, a dep of Multer, has a bug that breaks ass on Node 16. Only fix is to use Multer rc.3. Backporting is not possible as fs-temp 2.0.0 also requires modules
  • I have never done a damn thing with modules before

Solution:

Convert ass to ESM I think??

Image preview not showing in Discord

When linking to an image post in Discord the image is not shown in Discord. I'm able to have Discord display the image if I link the raw image using /direct. Video support does work though, If I link a video post Discord displays the video inline.

Is there a specific header that I need to apply in ShareX to allow the image to be displayed without appending /direct?

[QUESTION] Error from my side?

downloaded installation script from repo,

started it by executing ./install/docker-linux.sh

Got the following error in the process of building container:

npm WARN deprecated [email protected]: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
npm WARN deprecated [email protected]: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
npm WARN deprecated [email protected]: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
npm ERR! code ERR_SOCKET_TIMEOUT
npm ERR! network Socket timeout
npm ERR! network This is a problem related to network connectivity.
npm ERR! network In most cases you are behind a proxy or have bad network settings.
npm ERR! network
npm ERR! network If you are behind a proxy, please make sure that the
npm ERR! network 'proxy' config is set properly.  See: 'npm help config'

npm ERR! A complete log of this run can be found in:
npm ERR!     /root/.npm/_logs/2022-01-26T18_01_51_989Z-debug-0.log

image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.