@ -1,6 +1,7 @@
# frozen_string_literal: true
# frozen_string_literal: true
class HomeController < ApplicationController
class HomeController < ApplicationController
before_action :redirect_unauthenticated_to_permalinks!
before_action :authenticate_user!
before_action :authenticate_user!
before_action :set_referrer_policy_header
before_action :set_referrer_policy_header
@ -10,7 +11,7 @@ class HomeController < ApplicationController
private
private
def authenticate_user !
def redirect_unauthenticated_to_permalinks !
return if user_signed_in?
return if user_signed_in?
matches = request . path . match ( / \ A \/ web \/ (statuses|accounts) \/ ([ \ d]+) \ z / )
matches = request . path . match ( / \ A \/ web \/ (statuses|accounts) \/ ([ \ d]+) \ z / )
@ -35,6 +36,7 @@ class HomeController < ApplicationController
end
end
matches = request . path . match ( %r{ \ A/web/timelines/tag/(?<tag>.+) \ z } )
matches = request . path . match ( %r{ \ A/web/timelines/tag/(?<tag>.+) \ z } )
redirect_to ( matches ? tag_path ( CGI . unescape ( matches [ :tag ] ) ) : default_redirect_path )
redirect_to ( matches ? tag_path ( CGI . unescape ( matches [ :tag ] ) ) : default_redirect_path )
end
end