ТелГалерея
is a Cloudflare Workers service for image hosting.
It uses Telegraph's file API and provides a simple Reverse Proxy for it.
To use ТелГалерея
, deploy it to Cloudflare Workers using the provided deployment button.
Then use Custom Domains
to bind your own domain name.
By Set Enviroment Variables in config, you can enable the NSFW Detector. See @img-worker/nsfw for more details.
- Method: POST
- Content-Type: multipart/form-data
- Parameters:
file
(single file) - The image file to upload.
The response is in protobuf3 format and has the following structure:
message UploadResponse {
string status = 1;
string message = 2;
ImageResponse data = 3;
}
message ImageResponse {
string origin_img = 1;
string img = 2;
}
status
(string): The status of the upload operation. Possible values are "success" or "error".message
(string): A message providing information about the upload operation.data
(ImageResponse): An optional field containing the uploaded image URLs.
{
"status": "success",
"message": "Upload success!",
"data": {
"origin_img": "https://telegra.ph/file/a5418e5f4313b65fba5b8.png",
"img": "https://xx.114514.org/image/YTU0MThlNWY0MzEzYjY1ZmJhNWI4LnBuZw=="
}
}
- Method: GET
- Query Parameters:
url
(string) - The image URL to check.
The response is in protobuf3 format and has the following structure:
message NSFWCheckResponse {
string status = 1;
string message = 2;
string url = 3;
string sensitive = 4;
bool nsfw = 4;
NSFWScore score = 5;
}
message NSFWScore {
double drawing = 1;
double hentai = 2;
double neutral = 3;
double sexy = 4;
double porn = 5;
}
status
(string): The status of the check operation. Possible values are "success" or "error".message
(string): A message providing information about the check operation.nsfw
(bool): Whether the image is NSFW. When the value istrue
, the image is NSFW.
{
"status": "success",
"message": "NSFW content: Sexy",
"url": "https://telegra.ph/file/1145141919810.png",
"sensitive": "null",
"nsfw": true,
"score": {
"drawing": 0.00007909037958597764,
"hentai": 0.0010020226472988725,
"neutral": 0.21883316338062286,
"sexy": 0.003355648135766387,
"porn": 0.7767300605773926
}
}
This project is licensed under the BSD 3-Clause - see the LICENSE file for details.