mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
cb58849d95
## Addresses #9371 ### Adds a suite of UI logic for premium features in the Sandbox environment For reviewer: please review the work for the below 3 substasks, which are the only remaining subtasks encompassed by this PR that have not yet passed review individually: - #10822 (9) - #10823 (10) - #10824 (11) ## Checklist for submitter - [x] Changes file added for user-visible changes in `changes/` - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com> Co-authored-by: Martin Angers <martin.n.angers@gmail.com>
246 lines
11 KiB
TypeScript
246 lines
11 KiB
TypeScript
import React from "react";
|
|
import {
|
|
browserHistory,
|
|
IndexRedirect,
|
|
IndexRoute,
|
|
Route,
|
|
RouteComponent,
|
|
Router,
|
|
Redirect,
|
|
} from "react-router";
|
|
|
|
import OrgSettingsPage from "pages/admin/OrgSettingsPage";
|
|
import AdminIntegrationsPage from "pages/admin/IntegrationsPage";
|
|
import AdminUserManagementPage from "pages/admin/UserManagementPage";
|
|
import AdminTeamManagementPage from "pages/admin/TeamManagementPage";
|
|
import TeamDetailsWrapper from "pages/admin/TeamManagementPage/TeamDetailsWrapper";
|
|
import App from "components/App";
|
|
import ConfirmInvitePage from "pages/ConfirmInvitePage";
|
|
import ConfirmSSOInvitePage from "pages/ConfirmSSOInvitePage";
|
|
import CoreLayout from "layouts/CoreLayout";
|
|
import DashboardPage from "pages/DashboardPage";
|
|
import DeviceUserPage from "pages/hosts/details/DeviceUserPage";
|
|
import EditPackPage from "pages/packs/EditPackPage";
|
|
import EmailTokenRedirect from "components/EmailTokenRedirect";
|
|
import ForgotPasswordPage from "pages/ForgotPasswordPage";
|
|
import GatedLayout from "layouts/GatedLayout";
|
|
import HostDetailsPage from "pages/hosts/details/HostDetailsPage";
|
|
import LabelPage from "pages/LabelPage";
|
|
import LoginPage, { LoginPreviewPage } from "pages/LoginPage";
|
|
import LogoutPage from "pages/LogoutPage";
|
|
import ManageHostsPage from "pages/hosts/ManageHostsPage";
|
|
import ManageSoftwarePage from "pages/software/ManageSoftwarePage";
|
|
import ManageQueriesPage from "pages/queries/ManageQueriesPage";
|
|
import ManagePacksPage from "pages/packs/ManagePacksPage";
|
|
import ManagePoliciesPage from "pages/policies/ManagePoliciesPage";
|
|
import ManageSchedulePage from "pages/schedule/ManageSchedulePage";
|
|
import PackComposerPage from "pages/packs/PackComposerPage";
|
|
import PolicyPage from "pages/policies/PolicyPage";
|
|
import QueryPage from "pages/queries/QueryPage";
|
|
import RegistrationPage from "pages/RegistrationPage";
|
|
import ResetPasswordPage from "pages/ResetPasswordPage";
|
|
import MDMAppleSSOPage from "pages/MDMAppleSSOPage";
|
|
import SoftwareDetailsPage from "pages/software/SoftwareDetailsPage";
|
|
import ApiOnlyUser from "pages/ApiOnlyUser";
|
|
import Fleet403 from "pages/errors/Fleet403";
|
|
import Fleet404 from "pages/errors/Fleet404";
|
|
import UserSettingsPage from "pages/UserSettingsPage";
|
|
import SettingsWrapper from "pages/admin/SettingsWrapper/SettingsWrapper";
|
|
import ManageControlsPage from "pages/ManageControlsPage/ManageControlsPage";
|
|
import MembersPage from "pages/admin/TeamManagementPage/TeamDetailsWrapper/MembersPage";
|
|
import AgentOptionsPage from "pages/admin/TeamManagementPage/TeamDetailsWrapper/AgentOptionsPage";
|
|
import MacOSUpdates from "pages/ManageControlsPage/MacOSUpdates";
|
|
import MacOSSettings from "pages/ManageControlsPage/MacOSSettings";
|
|
import MacOSSetup from "pages/ManageControlsPage/MacOSSetup/MacOSSetup";
|
|
|
|
import PATHS from "router/paths";
|
|
|
|
import AppProvider, { AppContext } from "context/app";
|
|
import RoutingProvider from "context/routing";
|
|
|
|
import AuthGlobalAdminRoutes from "./components/AuthGlobalAdminRoutes";
|
|
import AuthAnyAdminRoutes from "./components/AuthAnyAdminRoutes";
|
|
import AuthenticatedRoutes from "./components/AuthenticatedRoutes";
|
|
import UnauthenticatedRoutes from "./components/UnauthenticatedRoutes";
|
|
import AuthGlobalAdminMaintainerRoutes from "./components/AuthGlobalAdminMaintainerRoutes";
|
|
import AuthAnyMaintainerAnyAdminRoutes from "./components/AuthAnyMaintainerAnyAdminRoutes";
|
|
import AuthAnyMaintainerAdminObserverPlusRoutes from "./components/AuthAnyMaintainerAdminObserverPlusRoutes";
|
|
import PremiumRoutes from "./components/PremiumRoutes";
|
|
import ExcludeInSandboxRoutes from "./components/ExcludeInSandboxRoutes";
|
|
|
|
const isSandboxMode = { AppContext };
|
|
interface IAppWrapperProps {
|
|
children: JSX.Element;
|
|
}
|
|
|
|
// App.tsx needs the context for user and config
|
|
const AppWrapper = ({ children }: IAppWrapperProps) => (
|
|
<AppProvider>
|
|
<RoutingProvider>
|
|
<App>{children}</App>
|
|
</RoutingProvider>
|
|
</AppProvider>
|
|
);
|
|
|
|
const routes = (
|
|
<Router history={browserHistory}>
|
|
<Route path={PATHS.ROOT} component={AppWrapper}>
|
|
<Route component={UnauthenticatedRoutes as RouteComponent}>
|
|
<Route component={GatedLayout}>
|
|
<Route path="setup" component={RegistrationPage} />
|
|
<Route path="previewlogin" component={LoginPreviewPage} />
|
|
<Route path="login" component={LoginPage} />
|
|
<Route
|
|
path="login/invites/:invite_token"
|
|
component={ConfirmInvitePage}
|
|
/>
|
|
<Route
|
|
path="login/ssoinvites/:invite_token"
|
|
component={ConfirmSSOInvitePage}
|
|
/>
|
|
<Route path="login/forgot" component={ForgotPasswordPage} />
|
|
<Route path="login/reset" component={ResetPasswordPage} />
|
|
<Route path="mdm/sso" component={MDMAppleSSOPage} />
|
|
</Route>
|
|
</Route>
|
|
<Route component={AuthenticatedRoutes as RouteComponent}>
|
|
<Route path="email/change/:token" component={EmailTokenRedirect} />
|
|
<Route path="logout" component={LogoutPage} />
|
|
<Route component={CoreLayout}>
|
|
<IndexRedirect to="/dashboard" />
|
|
<Route path="dashboard" component={DashboardPage}>
|
|
<Route path="linux" component={DashboardPage} />
|
|
<Route path="mac" component={DashboardPage} />
|
|
<Route path="windows" component={DashboardPage} />
|
|
</Route>
|
|
<Route path="settings" component={AuthAnyAdminRoutes}>
|
|
<IndexRedirect
|
|
to={isSandboxMode ? "integrations" : "organization"}
|
|
/>
|
|
<Route component={SettingsWrapper}>
|
|
<Route component={AuthGlobalAdminRoutes}>
|
|
<Route component={ExcludeInSandboxRoutes}>
|
|
<Route path="organization" component={OrgSettingsPage} />
|
|
</Route>
|
|
<Route
|
|
path="organization/:section"
|
|
component={OrgSettingsPage}
|
|
/>
|
|
<Route path="integrations" component={AdminIntegrationsPage} />
|
|
<Route
|
|
path="integrations/:section"
|
|
component={AdminIntegrationsPage}
|
|
/>
|
|
<Route component={ExcludeInSandboxRoutes}>
|
|
<Route path="users" component={AdminUserManagementPage} />
|
|
</Route>
|
|
<Route component={PremiumRoutes}>
|
|
<Route path="teams" component={AdminTeamManagementPage} />
|
|
</Route>
|
|
</Route>
|
|
</Route>
|
|
<Route path="teams" component={TeamDetailsWrapper}>
|
|
<Route path="members" component={MembersPage} />
|
|
<Route path="options" component={AgentOptionsPage} />
|
|
</Route>
|
|
<Redirect from="teams/:team_id" to="teams" />
|
|
<Redirect from="teams/:team_id/members" to="teams" />
|
|
<Redirect from="teams/:team_id/options" to="teams" />
|
|
</Route>
|
|
<Route path="labels">
|
|
<IndexRedirect to="new" />
|
|
<Route path=":label_id" component={LabelPage} />
|
|
<Route path="new" component={LabelPage} />
|
|
</Route>
|
|
<Route path="hosts">
|
|
<IndexRedirect to="manage" />
|
|
<Route path="manage" component={ManageHostsPage} />
|
|
<Route path="manage/labels/:label_id" component={ManageHostsPage} />
|
|
<Route path="manage/:active_label" component={ManageHostsPage} />
|
|
<Route
|
|
path="manage/labels/:label_id/:active_label"
|
|
component={ManageHostsPage}
|
|
/>
|
|
<Route
|
|
path="manage/:active_label/labels/:label_id"
|
|
component={ManageHostsPage}
|
|
/>
|
|
|
|
<IndexRedirect to=":host_id" />
|
|
<Route component={HostDetailsPage}>
|
|
<Route path=":host_id" component={HostDetailsPage}>
|
|
<Route path="software" component={HostDetailsPage} />
|
|
<Route path="schedule" component={HostDetailsPage} />
|
|
<Route path="policies" component={HostDetailsPage} />
|
|
</Route>
|
|
</Route>
|
|
</Route>
|
|
|
|
<Route path="controls" component={AuthAnyMaintainerAnyAdminRoutes}>
|
|
<IndexRedirect to="mac-os-updates" />
|
|
<Route component={ManageControlsPage}>
|
|
<Route path="mac-os-updates" component={MacOSUpdates} />
|
|
<Route path="mac-settings" component={MacOSSettings} />
|
|
<Route path="mac-settings/:section" component={MacOSSettings} />
|
|
<Route path="mac-setup" component={MacOSSetup} />
|
|
<Route path="mac-setup/:section" component={MacOSSetup} />
|
|
</Route>
|
|
</Route>
|
|
|
|
<Route path="software">
|
|
<IndexRedirect to="manage" />
|
|
<Route path="manage" component={ManageSoftwarePage} />
|
|
<Route path=":software_id" component={SoftwareDetailsPage} />
|
|
</Route>
|
|
<Route component={AuthGlobalAdminMaintainerRoutes}>
|
|
<Route path="packs">
|
|
<IndexRedirect to="manage" />
|
|
<Route path="manage" component={ManagePacksPage} />
|
|
<Route path="new" component={PackComposerPage} />
|
|
<Route path=":id">
|
|
<IndexRoute component={EditPackPage} />
|
|
<Route path="edit" component={EditPackPage} />
|
|
</Route>
|
|
</Route>
|
|
</Route>
|
|
<Route component={AuthAnyMaintainerAnyAdminRoutes}>
|
|
<Route path="schedule">
|
|
<IndexRedirect to="manage" />
|
|
<Route path="manage" component={ManageSchedulePage} />
|
|
<Redirect from="manage/teams" to="manage" />
|
|
<Redirect from="manage/teams/:team_id" to="manage" />
|
|
</Route>
|
|
</Route>
|
|
<Route path="queries">
|
|
<IndexRedirect to="manage" />
|
|
<Route path="manage" component={ManageQueriesPage} />
|
|
<Route component={AuthAnyMaintainerAdminObserverPlusRoutes}>
|
|
<Route path="new" component={QueryPage} />
|
|
</Route>
|
|
<Route path=":id" component={QueryPage} />
|
|
</Route>
|
|
<Route path="policies">
|
|
<IndexRedirect to="manage" />
|
|
<Route path="manage" component={ManagePoliciesPage} />
|
|
<Route component={AuthAnyMaintainerAnyAdminRoutes}>
|
|
<Route path="new" component={PolicyPage} />
|
|
</Route>
|
|
<Route path=":id" component={PolicyPage} />
|
|
</Route>
|
|
<Route
|
|
path="profile"
|
|
component={UserSettingsPage as RouteComponent}
|
|
/>
|
|
</Route>
|
|
</Route>
|
|
<Route path="/device/:device_auth_token" component={DeviceUserPage} />
|
|
</Route>
|
|
<Route path="/apionlyuser" component={ApiOnlyUser} />
|
|
<Route path="/404" component={Fleet404} />
|
|
<Route path="/403" component={Fleet403} />
|
|
<Route path="*" component={Fleet404} />
|
|
</Router>
|
|
);
|
|
|
|
export default routes;
|