lib/dogids/cache/production.rb in dogids-cli-0.0.18 vs lib/dogids/cache/production.rb in dogids-cli-0.0.19
- old
+ new
@@ -3,14 +3,17 @@
module Dogids
class Cli < Thor
no_commands do
def cache_production(vm_name = nil)
+ ssh_address = get_config_url("web")
+ return if ssh_address == false
+
case vm_name
when "category"
print_heading("Checking the category reviews cache")
- Net::SSH.start("web2.dogids.codelation.net", "dogids") do |ssh|
+ Net::SSH.start("#{ssh_address}", "dogids") do |ssh|
ssh.exec!(count_category_cache_files_production_command) do |_channel, _stream, data|
print_command("Current category reviews: " + data)
end
if yes?("-----> Continue with clearing the cache? [no]")
print_heading("Clearing the production category cache")
@@ -20,13 +23,39 @@
end
when "clear"
print_heading("Let's start clearing the entire production cache")
cache_production("category")
cache_production("qa")
+ cache_dev("javascript")
+ cache_dev("css")
+ when "css"
+ print_heading("Checking the CSS cache")
+ Net::SSH.start("#{ssh_address}", "dogids") do |ssh|
+ ssh.exec!(count_css_cache_files_production_command) do |_channel, _stream, data|
+ print_command("Current CSS cache files: " + data)
+ end
+ if yes?("-----> Continue with clearing the CSS cache? [no]")
+ print_heading("Clearing the development CSS cache")
+ ssh.exec!(clear_css_cache_production_command) do |_channel, _stream, data|
+ end
+ end
+ end
+ when "javascript"
+ print_heading("Checking the Javascript cache")
+ Net::SSH.start("#{ssh_address}", "dogids") do |ssh|
+ ssh.exec!(count_javascript_cache_files_production_command) do |_channel, _stream, data|
+ print_command("Current Javascript cache files: " + data)
+ end
+ if yes?("-----> Continue with clearing the Javascript cache? [no]")
+ print_heading("Clearing the development Javascript cache")
+ ssh.exec!(clear_javascript_cache_production_command) do |_channel, _stream, data|
+ end
+ end
+ end
when "qa"
print_heading("Checking the product Q&A cache")
- Net::SSH.start("web2.dogids.codelation.net", "dogids") do |ssh|
+ Net::SSH.start("#{ssh_address}", "dogids") do |ssh|
ssh.exec!(count_qa_cache_files_production_command) do |_channel, _stream, data|
print_command("Current category reviews: " + data)
end
if yes?("-----> Continue with clearing this cache? [no]")
print_heading("Clearing the production QA cache")
@@ -53,10 +82,24 @@
commands << "cd /home/dogids/apps/dogids.com/ls_file_cache"
commands << "find . -iname 'turnto*' | wc -l"
commands.join("&& ")
end
+ def count_javascript_cache_files_production_command
+ commands = []
+ commands << "cd /home/dogids/apps/dogids.com/temp/resource_cache"
+ commands << "find . -iname '*.javascript.gz' | wc -l"
+ commands.join("&& ")
+ end
+
+ def count_css_cache_files_production_command
+ commands = []
+ commands << "cd /home/dogids/apps/dogids.com/temp/resource_cache"
+ commands << "find . -iname '*.css.gz' | wc -l"
+ commands.join("&& ")
+ end
+
def clear_category_cache_production_command
commands = []
commands << "cd /home/dogids/apps/dogids.com/ls_file_cache"
commands << "sudo find . -type f -iname 'category*' -delete"
commands.join("&&")
@@ -64,9 +107,23 @@
def clear_qa_cache_production_command
commands = []
commands << "cd /home/dogids/apps/dogids.com/ls_file_cache"
commands << "sudo find . -type f -iname 'turnto*' -delete"
+ commands.join("&&")
+ end
+
+ def clear_css_cache_production_command
+ commands = []
+ commands << "cd /home/dogids/apps/dogids.com/temp/resource_cache"
+ commands << "sudo find . -type f -iname '*.css.gz' -delete"
+ commands.join("&&")
+ end
+
+ def clear_javascript_cache_production_command
+ commands = []
+ commands << "cd /home/dogids/apps/dogids.com/temp/resource_cache"
+ commands << "sudo find . -type f -iname '*.javascript.gz' -delete"
commands.join("&&")
end
end
end
end