summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-05-04 01:02:57 +0200
committerGitHub <noreply@github.com>2019-05-04 01:02:57 +0200
commit8025a41a1ff2ae1cd7c36a2baac36d3e2badb75d (patch)
tree4fa6bfae502d1aaf5dc93cd0cfd3a679128ddc54
parent5f9f610a23c8fac1133250a95de567e68cad183c (diff)
Add `tootctl cache clear` (#10689)v2.8.1
-rw-r--r--lib/cli.rb4
-rw-r--r--lib/mastodon/cache_cli.rb19
2 files changed, 23 insertions, 0 deletions
diff --git a/lib/cli.rb b/lib/cli.rb
index b56c6e76f5a..5780e3e8734 100644
--- a/lib/cli.rb
+++ b/lib/cli.rb
@@ -9,6 +9,7 @@ require_relative 'mastodon/search_cli'
require_relative 'mastodon/settings_cli'
require_relative 'mastodon/statuses_cli'
require_relative 'mastodon/domains_cli'
+require_relative 'mastodon/cache_cli'
require_relative 'mastodon/version'
module Mastodon
@@ -41,6 +42,9 @@ module Mastodon
desc 'domains SUBCOMMAND ...ARGS', 'Manage account domains'
subcommand 'domains', Mastodon::DomainsCLI
+ desc 'cache SUBCOMMAND ...ARGS', 'Manage cache'
+ subcommand 'cache', Mastodon::CacheCLI
+
option :dry_run, type: :boolean
desc 'self-destruct', 'Erase the server from the federation'
long_desc <<~LONG_DESC
diff --git a/lib/mastodon/cache_cli.rb b/lib/mastodon/cache_cli.rb
new file mode 100644
index 00000000000..e9b6667b3b6
--- /dev/null
+++ b/lib/mastodon/cache_cli.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+require_relative '../../config/boot'
+require_relative '../../config/environment'
+require_relative 'cli_helper'
+
+module Mastodon
+ class CacheCLI < Thor
+ def self.exit_on_failure?
+ true
+ end
+
+ desc 'clear', 'Clear out the cache storage'
+ def clear
+ Rails.cache.clear
+ say('OK', :green)
+ end
+ end
+end