Không có mô tả

Pitu cd123b4c11 Forced resolve, updated config.sample.js 7 năm trước cách đây
controllers cd123b4c11 Forced resolve, updated config.sample.js 7 năm trước cách đây
database bae03cdc25 File delete, album delete and album rename. Sugoooi! 7 năm trước cách đây
pages 02e44ce48d Fixed frontpage chrome extension link 7 năm trước cách đây
public e9b3ecbd05 Fixed public upload. Whoopsies 7 năm trước cách đây
routes 1b2af2282f Pagination is gucci 7 năm trước cách đây
.eslintrc.json 376cf10663 First version 7 năm trước cách đây
.gitignore b81cf72ac4 Changed from ip whitelist to token based auth 7 năm trước cách đây
README.md 6da6517b0e Reuploaded header image for the 3rd time 7 năm trước cách đây
config.sample.js cd123b4c11 Forced resolve, updated config.sample.js 7 năm trước cách đây
lolisafe.js 83aaef0f82 Changed request system and post data 7 năm trước cách đây
package.json 83aaef0f82 Changed request system and post data 7 năm trước cách đây

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;