Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dashboard
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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
red-giant
dashboard
Merge requests
!43
Move back cookie fetch to SignInForm. Role fetched and saved into a Context. Small refactorings.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Move back cookie fetch to SignInForm. Role fetched and saved into a Context. Small refactorings.
feature/role
into
dev
Overview
0
Commits
14
Pipelines
1
Changes
10
Merged
Defendi Alberto
requested to merge
feature/role
into
dev
3 years ago
Overview
0
Commits
14
Pipelines
1
Changes
10
Expand
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
33ed85e5
14 commits,
3 years ago
10 files
+
122
−
179
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
src/api/PrivateRoute/PrivateRoute.tsx
+
16
−
12
Options
import
React
,
{
useState
,
useEffect
}
from
'
react
'
;
import
React
,
{
useState
,
useEffect
,
useContext
}
from
'
react
'
;
import
axios
from
'
axios
'
;
import
{
Route
,
Redirect
,
RouteProps
}
from
'
react-router-dom
'
;
import
{
NonAuthRoutes
}
from
'
api/routes
'
;
import
{
AuthContext
}
from
'
components/AuthUser/AuthContext
'
;
import
{
Roles
}
from
'
api/userRoles
'
;
/**
* A wrapper for <Route> that redirects to the login screen if you're not yet authenticated.
* Every non-public route must be wrapped with this component.
* */
type
Props
=
{
@@ -20,27 +23,28 @@ export const PrivateRoute = ({
requiredRoles
,
}:
Props
):
JSX
.
Element
=>
{
const
[
auth
,
setAuth
]
=
useState
<
boolean
>
(
false
);
const
[
loading
,
setLoading
]
=
useState
<
boolean
>
(
false
);
const
{
role
}
=
useContext
(
AuthContext
);
useEffect
(()
=>
{
const
fetch
=
async
():
Promise
<
unknown
>
=>
{
const
result
=
await
axios
(
'
/api/web/login/is_authenticated
'
);
setAuth
(
result
.
data
.
is_authenticated
);
setLoading
(
true
);
return
null
;
};
fetch
();
},
[]);
const
currentRole
=
String
(
sessionStorage
.
getItem
(
'
ROLE
'
));
const
userHasRequiredRole
=
requiredRoles
.
includes
(
currentRole
);
/*
Check if user is logged in.
Avoiding this condition would call is\_authenticated every time
this component state is triggered, falling in unnecessary calls to the
server.
*/
if
(
role
!==
Roles
.
visitor
)
fetch
();
},
[
auth
]);
const
userHasRequiredRole
=
requiredRoles
.
includes
(
role
);
const
message
=
userHasRequiredRole
?
'
Please log in to view this page
'
:
'
Your role is not allowed
'
;
return
!
loading
?
(
<
p
>
loading
</
p
>
)
:
(
return
(
<
Route
exact
=
{
false
}
path
=
{
path
}
@@ -51,7 +55,7 @@ export const PrivateRoute = ({
<
Redirect
to
=
{
{
pathname
:
userHasRequiredRole
?
NonAuthRoutes
.
signIn
?
`
${
NonAuthRoutes
.
auth
}${
NonAuthRoutes
.
signIn
}
`
:
NonAuthRoutes
.
unauthorized
,
state
:
{
message
,
Loading