-
Notifications
You must be signed in to change notification settings - Fork 784
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe58624
commit ce71971
Showing
1 changed file
with
90 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
const config = require("../config"); | ||
const { izumi, mode, toAudio, webp2mp4, addExif, AddMp3Meta, getBuffer } = require("../lib/"); | ||
const fs = require("fs"); | ||
|
||
izumi( | ||
{ | ||
pattern: "sticker$", | ||
fromMe: mode, | ||
desc: "Converts Photo/video/text to sticker", | ||
type: "converter", | ||
}, | ||
async (message, match, client) => { | ||
if ( | ||
!( | ||
message.reply_message.video || | ||
message.reply_message.image || | ||
message.reply_message.text | ||
) | ||
) | ||
return await message.reply("Reply to photo/video/text"); | ||
|
||
let buff = await message.quoted.download("buffer"); | ||
await message.sendMessage( | ||
message.jid, | ||
buff, | ||
{ packname: config.PACKNAME, author: config.AUTHOR }, | ||
"sticker" | ||
); | ||
} | ||
); | ||
|
||
izumi({ | ||
pattern: "take ?(.*)", | ||
fromMe: mode, | ||
desc: "Change audio title, album/sticker author, packname", | ||
type: "converter", | ||
}, async (message, match) => { | ||
if (!message.reply_message || !(message.reply_message.video || message.reply_message.audio || message.reply_message.sticker)) { | ||
return await message.reply("*_Reply to sticker/audio/voice/video!_*"); | ||
} | ||
|
||
if (message.reply_message.audio || message.reply_message.video) { | ||
let media = await toAudio(await message.quoted.download("buffer")); | ||
|
||
let matchParts = match ? match.match(/[^,;]+/g) : []; | ||
let configParts = config.AUDIO_DATA.match(/[^,;]+/g); | ||
|
||
let url = matchParts[2] ? matchParts[2] : (configParts[2] ? configParts[2] : ''); | ||
let cover = await getBuffer(url); | ||
|
||
let title = matchParts[0] ? matchParts[0] : (configParts[0] ? configParts[0] : config.AUDIO_DATA); | ||
let artist = matchParts[1] ? matchParts[1] : (configParts[1] ? configParts[1] : config.AUDIO_DATA); | ||
artist = [artist]; // Ensure artist is an array | ||
|
||
const res = await AddMp3Meta(media, cover, { | ||
title: title, | ||
artist: artist | ||
}); | ||
|
||
return await message.client.sendMessage(message.jid, { | ||
audio: res, | ||
mimetype: "audio/mpeg" | ||
}, { | ||
quoted: message.data | ||
}); | ||
} else if (message.reply_message.sticker) { | ||
let q = await message.reply_message.download("buffer"); | ||
let exif; | ||
if (match !== "") { | ||
const splitMatch = match.split(/[,;]/); | ||
exif = { | ||
author: splitMatch[1] ? splitMatch[1] : "", | ||
packname: splitMatch[0] ? splitMatch[0] : "", | ||
categories: config.STICKER_PACKNAME.split(";")[2] || "", | ||
android: "https://github.com/mask-sir/", | ||
ios: "https://github.com/mask-sir/" | ||
}; | ||
} else { | ||
exif = { | ||
author: config.STICKER_PACKNAME.split(/[,;]/)[1] || "", | ||
packname: config.STICKER_PACKNAME.split(/[,;]/)[0] || "", | ||
categories: config.STICKER_PACKNAME.split(";")[2] || "", | ||
android: "https://github.com/mask-sir/", | ||
ios: "https://github.com/mask-sir/" | ||
}; | ||
} | ||
let stickerBuffer = await addExif(q, exif); | ||
return await message.client.sendMessage(message.jid, { sticker: fs.readFileSync(stickerBuffer) }, { quoted: message.data }); | ||
} | ||
}); |