-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathtest.txt
132 lines (113 loc) · 3.5 KB
/
test.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
heroku git:remote -a wa-bot-pvx
heroku buildpacks:set heroku/nodejs
heroku buildpacks:add https://github.com/pathwaysmedical/heroku-buildpack-tesseract
taskkill /F /IM node.exe
testing
# ------------------------------- DROP TABLE ------------------------------- #
begin;
set transaction read write;
DROP table count;
COMMIT;
SELECT * FROM countmember WHERE memberjid='[email protected]' and groupjid='[email protected]';
SELECT *,count(*) FROM countmember GROUP BY memberjid, groupjid, count HAVING count(*) > 1;
begin;
set transaction read write;
ALTER TABLE countmember ADD COLUMN day text;
COMMIT;
//delete row
begin;
set transaction read write;
delete from countmember WHERE groupjid='[email protected]';
COMMIT;
begin;
set transaction read write;
UPDATE countmember SET day='11-2021';
COMMIT;
begin;
set transaction read write;
UPDATE donation SET amount=100 WHERE name='Kumar';
COMMIT;
# ------------------------------------- - ------------------------------------ #
mek = {
key: {
remoteJid: '[email protected]',
fromMe: false,
id: 'B98FBDD5A762D4B6577EE3EA9F4DD733'
},
message: { conversation: '!score' },
messageTimestamp: '1632654425',
participant: '[email protected]',
ephemeralOutOfSync: false
}
}
/* ------------------------------- CASE: ATTP ------------------------------ */
case "attpp":
if (!isGroup) {
reply("❌ ERROR: Group command only!");
return;
}
let text = "Shubham";
let uri = encodeURI(text);
let ttinullimage = await axios.get(
"https://api.xteam.xyz/attp?file&text=" + uri,
{ responseType: "arraybuffer" }
);
await conn.sendMessage(
from,
Buffer.from(ttinullimage.data),
MessageType.sticker,
{ mimetype: Mimetype.webp }
);
break;
/* ------------------------------- CASE: ATTP ------------------------------ */
case "attp":
if (!isGroup) {
reply("❌ ERROR: Group command only!");
return;
}
let text = "Yes";
let uri = encodeURI(text);
let dataAttp = await axios.get(
"https://api.xteam.xyz/attp?file&text=" + uri,
{ responseType: "stream" }
);
console.log("getting data");
data = dataAttp.data;
let randomNameAttp = getRandom(".gif");
const path = `./${randomNameAttp}`;
const writer = fs.createWriteStream(path);
data.pipe(writer);
console.log("got");
await new Promise((resolve, reject) => {
writer.on("finish", () => resolve);
writer.on("error", () => reject);
});
console.log("sending");
reply("done");
// await conn.sendMessage(
// from,
// `./${randomNameAttp}`,
// MessageType.sticker
// );
// const webpWithMetadata = await WSF.setMetadata(
// packName,
// authorName,
// randomNameAttp
// );
// await conn.sendMessage(from, webpWithMetadata, MessageType.sticker);
// await ffmpeg(`./${randomNameAttp}`)
// .input(randomNameAttp)
// .on("error", function (err) {
// fs.unlinkSync(media);
// //unlinkSync remove the given file
// console.log(`Error : ${err}`);
// reply("_❌ ERROR: Failed to convert image into sticker!_");
// })
// .on("end", function () {
// buildSticker(media, ran);
// })
// .addOutputOptions(outputOptions)
// .toFormat("webp")
// .save(randomNameAttp);
break;