Merge branch 'feature/unauthorized-page' of Cadoles/daddy into develop
This commit is contained in:
commit
7d0831ee57
|
@ -13,6 +13,7 @@ import { Modal } from './Modal';
|
||||||
import { createClient } from '../util/apollo';
|
import { createClient } from '../util/apollo';
|
||||||
import { ApolloProvider } from '@apollo/client';
|
import { ApolloProvider } from '@apollo/client';
|
||||||
import { LogoutPage } from './LogoutPage';
|
import { LogoutPage } from './LogoutPage';
|
||||||
|
import { UnauthorizedPage } from './UnauthorizedPage/UnauthorizedPage';
|
||||||
|
|
||||||
export interface AppProps {
|
export interface AppProps {
|
||||||
|
|
||||||
|
@ -41,6 +42,7 @@ export const App: FunctionComponent<AppProps> = () => {
|
||||||
<BrowserRouter>
|
<BrowserRouter>
|
||||||
<Switch>
|
<Switch>
|
||||||
<Route path="/" exact component={HomePage} />
|
<Route path="/" exact component={HomePage} />
|
||||||
|
<Route path="/unauthorized" exact component={UnauthorizedPage} />
|
||||||
<PrivateRoute path="/profile" exact component={ProfilePage} />
|
<PrivateRoute path="/profile" exact component={ProfilePage} />
|
||||||
<PrivateRoute path="/workgroups/:id" exact component={WorkgroupPage} />
|
<PrivateRoute path="/workgroups/:id" exact component={WorkgroupPage} />
|
||||||
<PrivateRoute path="/decisions/:id" exact component={DecisionSupportFilePage} />
|
<PrivateRoute path="/decisions/:id" exact component={DecisionSupportFilePage} />
|
||||||
|
|
|
@ -0,0 +1,37 @@
|
||||||
|
import React, { FunctionComponent } from 'react';
|
||||||
|
import { Config } from '../../config';
|
||||||
|
import { Page } from '../Page';
|
||||||
|
|
||||||
|
export interface UnauthorizedPageProps {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
export const UnauthorizedPage:FunctionComponent<UnauthorizedPageProps> = () => {
|
||||||
|
return (
|
||||||
|
<Page title="Non autorisé">
|
||||||
|
<div className="container is-fluid">
|
||||||
|
<section className="section">
|
||||||
|
<div className="columns">
|
||||||
|
<div className="column is-6 is-offset-3">
|
||||||
|
<div className="message is-danger">
|
||||||
|
<div className="message-header">
|
||||||
|
<p><i className="fa fa-ban"></i> Non autorisé</p>
|
||||||
|
</div>
|
||||||
|
<div className="message-body">
|
||||||
|
<p>Vous n'êtes pas autorisé à accéder à cette page.</p>
|
||||||
|
<br />
|
||||||
|
<p>Votre compte est peut être désactivé, votre adresse courriel ne fait peut être
|
||||||
|
pas partie des domaines autorisés ou vous n'avez peut être pas les droits nécessaires pour effectuer cette opération.</p>
|
||||||
|
<div className="has-text-centered mt-5">
|
||||||
|
<a href={Config.logoutURL} className="is-warning button"><i className="fa fa-sign-out-alt"></i> Forcer la déconnexion</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</Page>
|
||||||
|
);
|
||||||
|
}
|
|
@ -1,7 +1,6 @@
|
||||||
package route
|
package route
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"forge.cadoles.com/Cadoles/daddy/internal/auth"
|
"forge.cadoles.com/Cadoles/daddy/internal/auth"
|
||||||
|
@ -80,11 +79,8 @@ func handleLoginCallback(w http.ResponseWriter, r *http.Request) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if !authorized {
|
if !authorized {
|
||||||
message := fmt.Sprintf(
|
redirectURL := conf.HTTP.FrontendURL + "/unauthorized"
|
||||||
"You are not authorized to access this application. Disconnect by navigating to %s.",
|
http.Redirect(w, r, redirectURL, http.StatusTemporaryRedirect)
|
||||||
"http://"+r.Host+"/logout",
|
|
||||||
)
|
|
||||||
http.Error(w, message, http.StatusForbidden)
|
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
|
@ -72,10 +72,17 @@ func Mount(r *chi.Mux, config *config.Config) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
// List of paths handled directly by the client
|
// List of paths handled directly by the client
|
||||||
r.Get("/workgroups/*", serveClientIndex)
|
clientRoutes := []string{
|
||||||
r.Get("/profile", serveClientIndex)
|
"/workgroups/*",
|
||||||
r.Get("/dashboard", serveClientIndex)
|
"/profile",
|
||||||
r.Get("/decisions/*", serveClientIndex)
|
"/dashboard",
|
||||||
|
"/decisions/*",
|
||||||
|
"/unauthorized",
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, cr := range clientRoutes {
|
||||||
|
r.Get(cr, serveClientIndex)
|
||||||
|
}
|
||||||
|
|
||||||
// Serve static files
|
// Serve static files
|
||||||
notFoundHandler := r.NotFoundHandler()
|
notFoundHandler := r.NotFoundHandler()
|
||||||
|
|
Loading…
Reference in New Issue