mirror of
https://github.com/LeviSnoot/MediaFixer.git
synced 2024-12-02 18:00:02 +01:00
TikTok support
This commit is contained in:
parent
c7e9f1ba5b
commit
bb33055946
3 changed files with 114 additions and 97 deletions
|
@ -46,11 +46,12 @@ Example:
|
|||
|
||||
"port": "4000",
|
||||
|
||||
You can change which service to use for parsing Twitter and Instagram links. By default fxtwitter and ddinstagram are used, but you can change this to any of your choosing.
|
||||
You can change which service to use for parsing links, simply edit the corresponding values with a service that offers the functionality.
|
||||
|
||||
Example:
|
||||
|
||||
"tweetParser": "https://twittpr.com/",
|
||||
"instaParser": "https://ddinstagram.com/"
|
||||
"instaParser": "https://ddinstagram.com/",
|
||||
"tiktokParser": "https://www.vxtiktok.com/"
|
||||
|
||||
It's important the full base url is in the string, like the example above, otherwise you may run into issues.
|
||||
|
|
78
index.js
78
index.js
|
@ -1,4 +1,7 @@
|
|||
const { Client, GatewayIntentBits } = require('discord.js');
|
||||
const {
|
||||
Client,
|
||||
GatewayIntentBits
|
||||
} = require('discord.js');
|
||||
const {
|
||||
token,
|
||||
port,
|
||||
|
@ -15,78 +18,95 @@ const client = new Client({
|
|||
GatewayIntentBits.MessageContent,
|
||||
],
|
||||
});
|
||||
|
||||
http.createServer((req, res) => {
|
||||
res.writeHead(200, { 'Content-type': 'text/plain' });
|
||||
res.writeHead(200, {
|
||||
'Content-type': 'text/plain'
|
||||
});
|
||||
res.write('Hey');
|
||||
res.end();
|
||||
}).listen(port);
|
||||
|
||||
// When the client is ready, run this code (only once)
|
||||
client.once('ready', () => {
|
||||
console.log('Ready!');
|
||||
});
|
||||
|
||||
// Response
|
||||
client.on('messageCreate', async message => {
|
||||
if (message.content.startsWith('https://twitter.com/')) {
|
||||
if(message.content.startsWith('https://twitter.com/')) {
|
||||
const tweetURL = message.content.substring(20, message.content.length);
|
||||
message.suppressEmbeds(true);
|
||||
|
||||
const newmsg = tweetParser + tweetURL;
|
||||
message.reply({ content: newmsg, allowedMentions: { repliedUser: false } });
|
||||
message.reply({
|
||||
content: newmsg,
|
||||
allowedMentions: {
|
||||
repliedUser: false
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
client.on('messageCreate', async message => {
|
||||
if (message.content.startsWith('https://mobile.twitter.com/')) {
|
||||
if(message.content.startsWith('https://mobile.twitter.com/')) {
|
||||
const mobiletweetURL = message.content.substring(27, message.content.length);
|
||||
message.suppressEmbeds(true);
|
||||
|
||||
const newmsg = tweetParser + mobiletweetURL;
|
||||
message.reply({ content: newmsg, allowedMentions: { repliedUser: false } });
|
||||
message.reply({
|
||||
content: newmsg,
|
||||
allowedMentions: {
|
||||
repliedUser: false
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
client.on('messageCreate', async message => {
|
||||
if (message.content.startsWith('https://instagram.com/')) {
|
||||
if(message.content.startsWith('https://instagram.com/')) {
|
||||
const instaURL = message.content.substring(22, message.content.length);
|
||||
message.suppressEmbeds(true);
|
||||
|
||||
const newmsg = instaParser + instaURL;
|
||||
message.reply({ content: newmsg, allowedMentions: { repliedUser: false } });
|
||||
message.reply({
|
||||
content: newmsg,
|
||||
allowedMentions: {
|
||||
repliedUser: false
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
client.on('messageCreate', async message => {
|
||||
if (message.content.startsWith('https://www.instagram.com/')) {
|
||||
if(message.content.startsWith('https://www.instagram.com/')) {
|
||||
const instaURL2 = message.content.substring(26, message.content.length);
|
||||
message.suppressEmbeds(true);
|
||||
|
||||
const newmsg = instaParser + instaURL2;
|
||||
message.reply({ content: newmsg, allowedMentions: { repliedUser: false } });
|
||||
message.reply({
|
||||
content: newmsg,
|
||||
allowedMentions: {
|
||||
repliedUser: false
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
client.on('messageCreate', async message => {
|
||||
if (message.content.startsWith('https://tiktok.com/')) {
|
||||
if(message.content.startsWith('https://tiktok.com/')) {
|
||||
const tiktokURL = message.content.substring(19, message.content.length);
|
||||
message.suppressEmbeds(true);
|
||||
|
||||
const newmsg = tiktokParser + tiktokURL;
|
||||
message.reply({ content: newmsg, allowedMentions: { repliedUser: false } });
|
||||
message.reply({
|
||||
content: newmsg,
|
||||
allowedMentions: {
|
||||
repliedUser: false
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
client.on('messageCreate', async message => {
|
||||
if (message.content.startsWith('https://www.tiktok.com/')) {
|
||||
if(message.content.startsWith('https://www.tiktok.com/')) {
|
||||
const tiktokURL2 = message.content.substring(23, message.content.length);
|
||||
message.suppressEmbeds(true);
|
||||
|
||||
const newmsg = tiktokParser + tiktokURL2;
|
||||
message.reply({ content: newmsg, allowedMentions: { repliedUser: false } });
|
||||
message.reply({
|
||||
content: newmsg,
|
||||
allowedMentions: {
|
||||
repliedUser: false
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
// Login to Discord with your client's token
|
||||
client.login(token);
|
|
@ -10,11 +10,7 @@
|
|||
"type": "git",
|
||||
"url": "git+https://github.com/LeviSnoot/MediaFixer.git"
|
||||
},
|
||||
"keywords": [
|
||||
"discord",
|
||||
"twitter",
|
||||
"embeds"
|
||||
],
|
||||
"keywords": ["discord", "twitter", "embeds"],
|
||||
"author": "Yber0 & LeviSnoot",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
|
|
Loading…
Reference in a new issue