REF: mass send script

This commit is contained in:
overtorment 2023-04-25 14:27:12 +01:00
parent 55f7c4755c
commit 8153e72747

View File

@ -3,13 +3,16 @@ const fs = require("fs");
const text = fs.readFileSync("all_tokens_unique.csv", { encoding: "utf8" });
const lines = text.split("\n");
console.log('# got', lines.length, 'tokens');
console.log("INSERT INTO send_queue_2 VALUES ");
for (const line of lines.slice(50000, 60000)) {
let fisrt = true;
for (const line of lines.slice(0, 1000000)) {
const [token, os] = line.split("\t");
const sql = `(null, '{"type":5,"token":"${token}","os":"${os}","text":"If you are using Lightning, please read our blog post. The service is sunsetting. Balances should be moved to another service"}', null), `;
const sql = (fisrt ? '' : ', ') + `(null, '{"type":5,"token":"${token}","os":"${os}","text":"If you are using Lightning, please read our blog post. The service is sunsetting. Balances should be moved to another service"}', null)`;
console.log(sql);
fisrt = false;
}
console.log(";");