feat(WebEmbed) Sponsored by NezukoBot

Thanks https://github.com/cookiegmvn
This commit is contained in:
March 7th 2022-09-15 20:00:25 +07:00
parent 37ca4593d3
commit f4d6513806

View File

@ -1,6 +1,6 @@
'use strict'; 'use strict';
const axios = require('axios'); const axios = require('axios');
const baseURL = 'https://sagiri-v3dot3.herokuapp.com/embed?'; const baseURL = 'https://webembed.nezukobot.vn/embed?';
const hiddenCharter = const hiddenCharter =
'||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||'; '||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||';
const { RangeError } = require('../errors'); const { RangeError } = require('../errors');
@ -8,9 +8,12 @@ const Util = require('../util/Util');
/** /**
* Send Embedlink to Discord * Send Embedlink to Discord
* Need to change WebEmbed API server (because heroku is no longer free) * Sponsored by NezukoBot (thanks github/CookieGMVN)
*/ */
class WebEmbed { class WebEmbed {
/**
* @param {WebEmbed} [data={}] Raw data
*/
constructor(data = {}) { constructor(data = {}) {
/** /**
* A `Partial` object is a representation of any existing object. * A `Partial` object is a representation of any existing object.
@ -53,14 +56,14 @@ class WebEmbed {
/** /**
* Using Custom WebEmbed server ? * Using Custom WebEmbed server ?
* @type {?string} https://sagiri-v3dot3.herokuapp.com/embed? * @type {?string} https://webembed.nezukobot.vn/embed?
* @see https://github.com/aiko-chan-ai/WebEmbed * @see https://github.com/aiko-chan-ai/WebEmbed
*/ */
this.baseURL = data.baseURL ?? baseURL; this.baseURL = data.baseURL ?? baseURL;
/** /**
* Shorten API * Shorten API
* @type {?string} https://sagiri-v3dot3.herokuapp.com/short?url= * @type {?string} https://webembed.nezukobot.vn/short?url=
* @see https://github.com/aiko-chan-ai/WebEmbed * @see https://github.com/aiko-chan-ai/WebEmbed
*/ */
this.shortenAPI = data.shortenAPI; this.shortenAPI = data.shortenAPI;
@ -381,12 +384,7 @@ class WebEmbed {
// Credit: https://www.npmjs.com/package/node-url-shortener + google :)) // Credit: https://www.npmjs.com/package/node-url-shortener + google :))
const getShorten = async (url, embed) => { const getShorten = async (url, embed) => {
const APIurl = [ const APIurl = ['https://tinyurl.com/api-create.php?url=', 'https://webembed.nezukobot.vn/short?url='];
'https://tinyurl.com/api-create.php?url=',
// 'https://sagiri-fansub.tk/api/v1/short?url=', // My api, pls don't ddos :(
'https://sagiri-v3dot3.herokuapp.com/short?url=', // My api, pls don't ddos :(
// 'https://lazuee.ga/api/v1/shorten?url=',
];
const shorten = `${ const shorten = `${
embed.shortenAPI && typeof embed.shortenAPI == 'string' embed.shortenAPI && typeof embed.shortenAPI == 'string'
? embed.shortenAPI ? embed.shortenAPI