51 lines
1.5 KiB
Ruby
51 lines
1.5 KiB
Ruby
class Internal::ToolsController < Internal::ApplicationController
|
|
layout "internal"
|
|
|
|
def index; end
|
|
|
|
def bust_cache
|
|
flash[:success] = if params[:dead_link]
|
|
handle_dead_path
|
|
"#{params[:dead_link]} was successfully busted"
|
|
elsif params[:bust_user]
|
|
handle_user_cache
|
|
"User ##{params[:bust_user]} was successfully busted"
|
|
elsif params[:bust_article]
|
|
handle_article_cache
|
|
"Article ##{params[:bust_article]} was successfully busted"
|
|
end
|
|
redirect_to "/internal/tools"
|
|
rescue StandardError => e
|
|
flash[:danger] = e.message
|
|
redirect_to "/internal/tools"
|
|
end
|
|
|
|
private
|
|
|
|
def handle_dead_path
|
|
bust_link(params[:dead_link])
|
|
end
|
|
|
|
def handle_user_cache
|
|
user = User.find(params[:bust_user].to_i)
|
|
user.touch(:profile_updated_at, :last_followed_at, :last_comment_at)
|
|
bust_link(user.path)
|
|
end
|
|
|
|
def handle_article_cache
|
|
article = Article.find(params[:bust_article].to_i)
|
|
article.touch(:last_commented_at)
|
|
CacheBuster.bust_article(article)
|
|
end
|
|
|
|
def bust_link(link)
|
|
if link.starts_with?("https://#{ApplicationConfig['APP_DOMAIN']}")
|
|
link.sub!("https://#{ApplicationConfig['APP_DOMAIN']}",
|
|
"")
|
|
end
|
|
CacheBuster.bust(link)
|
|
CacheBuster.bust("#{link}/")
|
|
CacheBuster.bust("#{link}?i=i")
|
|
CacheBuster.bust("#{link}/?i=i")
|
|
end
|
|
end
|