1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-20 17:51:35 +02:00
server/cdn
2021-10-10 12:35:46 +02:00
..
jest remove console.info from jest output 2021-08-18 18:46:34 +02:00
src 🐛 fix tsc compiler 2021-10-10 12:35:46 +02:00
tests added unittests for filestorage [cdn] 2021-08-29 18:34:20 +02:00
.env.example cdn 2021-08-12 20:16:45 +02:00
.gitignore added unittest setup + ping route test 2021-08-18 13:57:23 +02:00
.swcrc 🐛 fix swc config 2021-10-07 18:21:17 +02:00
CONTRIBUTE.md added a common error to CONTRIBUTE.md 2021-08-18 16:52:51 +02:00
Dockerfile cdn 2021-08-12 20:16:45 +02:00
package-lock.json 🎨 clean up dependencies 2021-10-10 11:03:04 +02:00
package.json 🎨 clean up dependencies 2021-10-10 11:03:04 +02:00
README.md cdn 2021-08-12 20:16:45 +02:00
tsconfig.json 🐛 fix build 2021-10-09 01:44:44 +02:00

Fosscord-CDN

CDN for Fosscord

Run localy:

npm i
node dist/

Endpoints:

POST /attachments/<filename>

Content-Type: form-data

attachment: File (binary-data)
Returns:
{
    "success": boolean,             // true
    "message": string,              // "attachment uploaded"
    "id": snowflake,                // "794183329158135808"
    "filename": string              // "lakdoiauej.png"
}

GET /attachments/<id>/<filename>

requests image from database with given <id> and <filename>
Returns:
Content-Type: image/<imageType(png,img,gif)>
Image

DELETE /attachments/<id>/<filename>

deletes database entry
Returns:
Content-Type: application/json

{
    "success": true,
    "message": "attachment deleted"
}

(endpoints for crawler):

POST /external

requests crawling of `og:`metadata and the download of the `og:image` property
--------
Content-Type: application/json

body:
{"url": URL}                  // "https://discord.com"
Returns:
Content-Type: application/json

{
    "id": string,             // "aHR0cHM6Ly9kaXNjb3JkLmNvbQ=="
    "ogTitle": string,        // "Discord | Your Place to Talk and Hang Out"
    "ogDescription": string,  // "Discord is the easiest way to talk over voice, video, and text. Talk, chat, hang out, and stay close with your friends and communities."
    "cachedImage": string,    // "/external/aHR0cHM6Ly9kaXNjb3JkLmNvbQ==/discord.png"
    "ogUrl": string,          // "https://discord.com/"
    "ogType": string          // "website"
}

GET /external/<id>/<filename>

  • requests cached crawled image
url-params:
    :id                       // aHR0cHM6Ly9kaXNjb3JkLmNvbQ==
    :filename                 // discord.png
/external/aHR0cHM6Ly9kaXNjb3JkLmNvbQ==/discord.png
Returns:
Content-Type: image/<imageType(png,img,gif)>
Image