-
-
Save brunohq/7d39d2afebe2175a66093b5e816a6b6e to your computer and use it in GitHub Desktop.
Deletes slack public/private channel messages.
This file contains hidden or 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
var https = require('https'); | |
// CONFIGURATION ####################################################################################################### | |
var token = 'SLACK TOKEN'; | |
var channel = 'CHANNEL ID'; | |
var privateChannel = false; | |
var delay = 300; // delay between delete operations in millisecond | |
// GLOBALS ############################################################################################################# | |
var channelApi = privateChannel ? 'groups' : 'channels'; | |
var baseApiUrl = 'https://slack.com/api/'; | |
var historyApiUrl = baseApiUrl + channelApi + '.history?token=' + token + '&count=1000&channel=' + channel; | |
var deleteApiUrl = baseApiUrl + 'chat.delete?token=' + token + '&channel=' + channel + '&ts=' | |
var messages = []; | |
// --------------------------------------------------------------------------------------------------------------------- | |
function deleteMessage() { | |
if (messages.length == 0) { | |
return; | |
} | |
var ts = messages.shift(); | |
https.get(deleteApiUrl + ts, function (res) { | |
var body = ''; | |
res.on('data', function (chunk) { | |
body += chunk; | |
}); | |
res.on('end', function(){ | |
var response = JSON.parse(body); | |
if (response.ok === true) { | |
console.log(ts + ' deleted!'); | |
} else if (response.ok === false) { | |
messages.push(ts); | |
} | |
setTimeout(deleteMessage, delay); | |
}); | |
}).on('error', function (e) { | |
console.log("Got an error: ", e); | |
}); | |
} | |
// --------------------------------------------------------------------------------------------------------------------- | |
https.get(historyApiUrl, function(res) { | |
var body = ''; | |
res.on('data', function (chunk) { | |
body += chunk; | |
}); | |
res.on('end', function () { | |
var response = JSON.parse(body); | |
for (var i = 0; i < response.messages.length; i++) { | |
messages.push(response.messages[i].ts); | |
} | |
deleteMessage(); | |
}); | |
}).on('error', function (e) { | |
console.log("Got an error: ", e); | |
}); |
Author
brunohq
commented
Aug 28, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment