Bez popisu

Pitu c242bf7757 Included bcrypt on package.json před 7 roky
controllers b3cdc406d2 Removed blank lines před 7 roky
database 13b2242bdf New database structure with users support před 7 roky
pages b1b5515eec Sections now highlight when active před 7 roky
public 3f4b879144 List and thumb view on uploads před 7 roky
routes 1b2af2282f Pagination is gucci před 7 roky
.DS_Store 3f4b879144 List and thumb view on uploads před 7 roky
.eslintrc.json 376cf10663 First version před 7 roky
.gitignore b81cf72ac4 Changed from ip whitelist to token based auth před 7 roky
README.md 6da6517b0e Reuploaded header image for the 3rd time před 7 roky
config.sample.js 3f4b879144 List and thumb view on uploads před 7 roky
lolisafe.js da47babc05 Added auth route před 7 roky
package.json c242bf7757 Included bcrypt on package.json před 7 roky

README.md

loli-safe

loli-safe

Pomf-like file uploading service, but way better.


  1. Clone
  2. Rename config.sample.js to config.js
  3. Modify port, basedomain and privacy options if desired
  4. run npm install to install all dependencies
  5. run pm2 start lolisafe.js or node lolisafe.js to start the service

Token

This service supports running both as public and private. The only difference is that one needs a token to upload and the other one doesn't. If you want it to be public so anyone can upload files either from the website or API, just set the option private: false in the config.js file.

In case you want to run it privately, you should set private: true and 2 tokens will be generated when you first run the service. This tokens are a client and admin token respectively.

The client token should be sent with every upload request to the service to validate an upload, making it so that only people with access to said token can upload files to the service. The admin token is used to access the admin dashboard. This one is generated regardless of how the service is running (public or private) because it grants you access to the dashboard where you can see all uploaded files, create albums to sort out stuff and change your access tokens.

When you first run the service both tokens will be displayed on the console so you can copy and save them. Keep in mind that the tokens are nothing more than random generated strings so you can always change them for something easy to remember, acting more like a password than a token. But since the token is sent to the server with each request either to upload files or access the admin dashboard, I suggest keeping them random.


Using loli-safe

Once the service starts you can start hitting the upload endpoint at /api/upload with any file. If you're using the frontend to do so then you are pretty much set, but if using the API to upload make sure the form name is set to files[] and the form type to multipart/form-data. If the service is running in private mode, dont forget to send a header of type auth: YOUR-CLIENT-TOKEN to validate the request.

A sample of the returning json from the endpoint can be seen below:

{
	"name": "EW7C.png",
	"size": "71400",
	"url": "https://i.kanacchi.moe/EW7C.png"
}

To make it easier and better than any other service, you can download our Chrome extension that will let you configure your hostname and tokens, so that you can simply right click -> send to loli-safe to any image/audio/video file on the web.

Because of how nodejs apps work, if you want it attached to a domain name you will need to make a reverse proxy for it. Here is a tutorial on how to do this with nginx. Keep in mind that this is only a requirement if you want to access your loli-safe service by using a domain name (ex: https://i.kanacchi.moe), otherwise you can use the service just fine by accessing it from your server's IP.

If you choose to use a domain name and thus nginx, you should add the following directive into your location block with the limit you want to set on uploaded file's size: client_max_body_size 512M;