Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pleroma
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alex Gleason
pleroma
Commits
6b77a883
Commit
6b77a883
authored
5 years ago
by
Maksim
Committed by
rinpatch
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[#1097] added redirect: /pleroma/admin -> /pleroma/admin/
parent
46e8b680
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/pleroma/web/fallback_redirect_controller.ex
+77
-0
77 additions, 0 deletions
lib/pleroma/web/fallback_redirect_controller.ex
lib/pleroma/web/router.ex
+0
-65
0 additions, 65 deletions
lib/pleroma/web/router.ex
test/web/fallback_test.exs
+4
-0
4 additions, 0 deletions
test/web/fallback_test.exs
with
81 additions
and
65 deletions
lib/pleroma/web/fallback_redirect_controller.ex
0 → 100644
+
77
−
0
View file @
6b77a883
# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Fallback
.
RedirectController
do
use
Pleroma
.
Web
,
:controller
require
Logger
alias
Pleroma
.
User
alias
Pleroma
.
Web
.
Metadata
def
api_not_implemented
(
conn
,
_params
)
do
conn
|>
put_status
(
404
)
|>
json
(%{
error:
"Not implemented"
})
end
def
redirector
(
conn
,
_params
,
code
\\
200
)
# redirect to admin section
# /pleroma/admin -> /pleroma/admin/
#
def
redirector
(
conn
,
%{
"path"
=>
[
"pleroma"
,
"admin"
]}
=
_
,
_code
)
do
redirect
(
conn
,
to:
"/pleroma/admin/"
)
end
def
redirector
(
conn
,
_params
,
code
)
do
conn
|>
put_resp_content_type
(
"text/html"
)
|>
send_file
(
code
,
index_file_path
())
end
def
redirector_with_meta
(
conn
,
%{
"maybe_nickname_or_id"
=>
maybe_nickname_or_id
}
=
params
)
do
with
%
User
{}
=
user
<-
User
.
get_cached_by_nickname_or_id
(
maybe_nickname_or_id
)
do
redirector_with_meta
(
conn
,
%{
user:
user
})
else
nil
->
redirector
(
conn
,
params
)
end
end
def
redirector_with_meta
(
conn
,
params
)
do
{
:ok
,
index_content
}
=
File
.
read
(
index_file_path
())
tags
=
try
do
Metadata
.
build_tags
(
params
)
rescue
e
->
Logger
.
error
(
"Metadata rendering for
#{
conn
.
request_path
}
failed.
\n
"
<>
Exception
.
format
(
:error
,
e
,
__STACKTRACE__
)
)
""
end
response
=
String
.
replace
(
index_content
,
"<!--server-generated-meta-->"
,
tags
)
conn
|>
put_resp_content_type
(
"text/html"
)
|>
send_resp
(
200
,
response
)
end
def
index_file_path
do
Pleroma
.
Plugs
.
InstanceStatic
.
file_path
(
"index.html"
)
end
def
registration_page
(
conn
,
params
)
do
redirector
(
conn
,
params
)
end
def
empty
(
conn
,
_params
)
do
conn
|>
put_status
(
204
)
|>
text
(
""
)
end
end
This diff is collapsed.
Click to expand it.
lib/pleroma/web/router.ex
+
0
−
65
View file @
6b77a883
...
...
@@ -729,68 +729,3 @@ defmodule Pleroma.Web.Router do
options
(
"/*path"
,
RedirectController
,
:empty
)
end
end
defmodule
Fallback
.
RedirectController
do
use
Pleroma
.
Web
,
:controller
require
Logger
alias
Pleroma
.
User
alias
Pleroma
.
Web
.
Metadata
def
api_not_implemented
(
conn
,
_params
)
do
conn
|>
put_status
(
404
)
|>
json
(%{
error:
"Not implemented"
})
end
def
redirector
(
conn
,
_params
,
code
\\
200
)
do
conn
|>
put_resp_content_type
(
"text/html"
)
|>
send_file
(
code
,
index_file_path
())
end
def
redirector_with_meta
(
conn
,
%{
"maybe_nickname_or_id"
=>
maybe_nickname_or_id
}
=
params
)
do
with
%
User
{}
=
user
<-
User
.
get_cached_by_nickname_or_id
(
maybe_nickname_or_id
)
do
redirector_with_meta
(
conn
,
%{
user:
user
})
else
nil
->
redirector
(
conn
,
params
)
end
end
def
redirector_with_meta
(
conn
,
params
)
do
{
:ok
,
index_content
}
=
File
.
read
(
index_file_path
())
tags
=
try
do
Metadata
.
build_tags
(
params
)
rescue
e
->
Logger
.
error
(
"Metadata rendering for
#{
conn
.
request_path
}
failed.
\n
"
<>
Exception
.
format
(
:error
,
e
,
__STACKTRACE__
)
)
""
end
response
=
String
.
replace
(
index_content
,
"<!--server-generated-meta-->"
,
tags
)
conn
|>
put_resp_content_type
(
"text/html"
)
|>
send_resp
(
200
,
response
)
end
def
index_file_path
do
Pleroma
.
Plugs
.
InstanceStatic
.
file_path
(
"index.html"
)
end
def
registration_page
(
conn
,
params
)
do
redirector
(
conn
,
params
)
end
def
empty
(
conn
,
_params
)
do
conn
|>
put_status
(
204
)
|>
text
(
""
)
end
end
This diff is collapsed.
Click to expand it.
test/web/fallback_test.exs
+
4
−
0
View file @
6b77a883
...
...
@@ -30,6 +30,10 @@ test "GET /api*path", %{conn: conn} do
|>
json_response
(
404
)
==
%{
"error"
=>
"Not implemented"
}
end
test
"GET /pleroma/admin -> /pleroma/admin/"
,
%{
conn:
conn
}
do
assert
redirected_to
(
get
(
conn
,
"/pleroma/admin"
))
=~
"/pleroma/admin/"
end
test
"GET /*path"
,
%{
conn:
conn
}
do
assert
conn
|>
get
(
"/foo"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment