Skip to content

Instantly share code, notes, and snippets.

@lyrixx
Last active May 16, 2019 18:04
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save lyrixx/6f3a8de137c370d8b4b137330093aa3b to your computer and use it in GitHub Desktop.
Save lyrixx/6f3a8de137c370d8b4b137330093aa3b to your computer and use it in GitHub Desktop.
Slack delete all your files (rewrite of https://gist.github.com/jamescmartinez/909401b19c0f779fc9c1)
<?php
<<<CONFIG
packages:
- "kriswallsmith/buzz: ^0.15.0"
- "symfony/console: ^3.2@dev"
CONFIG;
// Find you token on https://api.slack.com/docs/oauth-test-tokens
use Buzz\Message\Response;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Helper\ProgressBar;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Question\ConfirmationQuestion;
(new Application())
->register('delete-files')
->addArgument('token', InputArgument::REQUIRED)
->setCode(function(InputInterface $input, OutputInterface $output) {
$token = $input->getArgument('token');
$validateResponse = function( $response) {
$responseDecoded = json_decode($response->getContent(), true);
if (!$responseDecoded) {
throw new \Exception('Something goes wrong. Unable to decode the response.');
}
if (!$responseDecoded['ok']) {
throw new \Exception('Something goes wrong. Error: '.$responseDecoded['error']);
}
return $responseDecoded;
};
$client = new Buzz\Browser();
// get user id
$response = $client->get('https://slack.com/api/auth.test?'.http_build_query([
'token' => $token,
]));
$responseDecoded = $validateResponse($response);
$userId = $responseDecoded['user_id'];
// get "all" files
$response = $client->get('https://slack.com/api/files.list?'.http_build_query([
'token' => $token,
'count' => 1000,
'user' => $userId,
]));
$responseDecoded = $validateResponse($response);
$total = $responseDecoded['paging']['total'];
// Validate
$q = new ConfirmationQuestion(sprintf('You are going to delete %d files, are you sure? [Y/n]', $total));
if (!$this->getHelper('question')->ask($input, $output, $q)) {
$output->writeln('Abort the mission');
return;
}
// delete
$bar = new ProgressBar($output, $total);
foreach ($responseDecoded['files'] as $file) {
$response = $client->get('https://slack.com/api/files.delete?'.http_build_query([
'token' => $token,
'file' => $file['id'],
]));
$validateResponse($response);
$bar->advance();
}
$output->writeln('Done');
})
->getApplication()
->setDefaultCommand('delete-files', true)
->run()
;
@IlanVivanco
Copy link

I've followed this thread about slack deletion to this PHP one, which isn't bad since you hooked it up via command line, but why PHP. PHP is gonna be a dead language soon. Why do people still like and use PHP, biggest headaches ever come from PHP.

I saw this kind of comments since PHP 4.

Thanks @lyrixx!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment