forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add confirmation when redirecting logged-out requests to permalink (m…
…astodon#27792) Co-authored-by: Claire <claire.github-309c@sitedethib.com>
- Loading branch information
1 parent
7a1f087
commit b19ae52
Showing
9 changed files
with
165 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# frozen_string_literal: true | ||
|
||
class Redirect::AccountsController < ApplicationController | ||
private | ||
|
||
def set_resource | ||
@resource = Account.find(params[:id]) | ||
not_found if @resource.local? | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# frozen_string_literal: true | ||
|
||
class Redirect::BaseController < ApplicationController | ||
vary_by 'Accept-Language' | ||
|
||
before_action :set_resource | ||
before_action :set_app_body_class | ||
|
||
def show | ||
@redirect_path = ActivityPub::TagManager.instance.url_for(@resource) | ||
|
||
render 'redirects/show', layout: 'application' | ||
end | ||
|
||
private | ||
|
||
def set_app_body_class | ||
@body_classes = 'app-body' | ||
end | ||
|
||
def set_resource | ||
raise NotImplementedError | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# frozen_string_literal: true | ||
|
||
class Redirect::StatusesController < Redirect::BaseController | ||
private | ||
|
||
def set_resource | ||
@resource = Status.find(params[:id]) | ||
not_found if @resource.local? || !@resource.distributable? | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.redirect | ||
.redirect__logo | ||
= link_to render_logo, root_path | ||
|
||
.redirect__message | ||
%h1= t('redirects.title', instance: site_hostname) | ||
%p= t('redirects.prompt') | ||
%p= link_to @redirect_path, @redirect_path, rel: 'noreferrer noopener' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters