mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
285 lines
9.1 KiB
TypeScript
285 lines
9.1 KiB
TypeScript
import React, { useContext, useState } from "react";
|
|
import { useQuery } from "react-query";
|
|
|
|
import { AppContext } from "context/app";
|
|
import { NotificationContext } from "context/notification";
|
|
import { ITeamConfig } from "interfaces/team";
|
|
import { getErrorReason } from "interfaces/errors";
|
|
|
|
import { LEARN_MORE_ABOUT_BASE_LINK } from "utilities/constants";
|
|
|
|
import diskEncryptionAPI from "services/entities/disk_encryption";
|
|
import teamsAPI, { ILoadTeamResponse } from "services/entities/teams";
|
|
import configAPI from "services/entities/config";
|
|
|
|
import Button from "components/buttons/Button";
|
|
import CustomLink from "components/CustomLink";
|
|
import Checkbox from "components/forms/fields/Checkbox";
|
|
import PremiumFeatureMessage from "components/PremiumFeatureMessage";
|
|
import Spinner from "components/Spinner";
|
|
import SectionHeader from "components/SectionHeader";
|
|
import PageDescription from "components/PageDescription";
|
|
import TooltipWrapper from "components/TooltipWrapper";
|
|
import GitOpsModeTooltipWrapper from "components/GitOpsModeTooltipWrapper";
|
|
import RevealButton from "components/buttons/RevealButton";
|
|
|
|
import DiskEncryptionTable from "./components/DiskEncryptionTable";
|
|
import { IOSSettingsCommonProps } from "../../OSSettingsNavItems";
|
|
|
|
const baseClass = "disk-encryption";
|
|
|
|
export type IDiskEncryptionProps = IOSSettingsCommonProps;
|
|
|
|
const DiskEncryption = ({
|
|
currentTeamId,
|
|
onMutation,
|
|
router,
|
|
}: IDiskEncryptionProps) => {
|
|
const { isPremiumTier, config, setConfig } = useContext(AppContext);
|
|
const { renderFlash } = useContext(NotificationContext);
|
|
|
|
const defaultShowDiskEncryption = currentTeamId
|
|
? false
|
|
: config?.mdm.enable_disk_encryption ?? false;
|
|
|
|
const defaultRequireBitLockerPIN = currentTeamId
|
|
? false
|
|
: config?.mdm.windows_require_bitlocker_pin ?? false;
|
|
|
|
const [isLoadingTeam, setIsLoadingTeam] = useState(true);
|
|
|
|
const [showAggregate, setShowAggregate] = useState(defaultShowDiskEncryption);
|
|
const [diskEncryptionEnabled, setDiskEncryptionEnabled] = useState(
|
|
defaultShowDiskEncryption
|
|
);
|
|
const [requireBitLockerPIN, setRequireBitLockerPIN] = useState(
|
|
defaultRequireBitLockerPIN
|
|
);
|
|
const [showAdvancedOptions, setShowAdvancedOptions] = useState(false);
|
|
|
|
// because we pull the default state for no teams from the config,
|
|
// we need to update the config when the user toggles the checkbox
|
|
const getUpdatedAppConfig = async () => {
|
|
try {
|
|
const updatedConfig = await configAPI.loadAll();
|
|
setConfig(updatedConfig);
|
|
} catch {
|
|
renderFlash(
|
|
"error",
|
|
"Could not retrieve updated app config. Please try again."
|
|
);
|
|
}
|
|
};
|
|
|
|
const onToggleDiskEncryption = (value: boolean) => {
|
|
setDiskEncryptionEnabled(value);
|
|
};
|
|
|
|
const onToggleRequireBitLockerPIN = (value: boolean) => {
|
|
setRequireBitLockerPIN(value);
|
|
};
|
|
|
|
useQuery<ILoadTeamResponse, Error, ITeamConfig>(
|
|
["team", currentTeamId],
|
|
() => teamsAPI.load(currentTeamId),
|
|
{
|
|
refetchOnWindowFocus: false,
|
|
retry: false,
|
|
enabled: currentTeamId !== 0,
|
|
select: (res) => res.team,
|
|
onSuccess: (res) => {
|
|
const enableDiskEncryption = res.mdm?.enable_disk_encryption ?? false;
|
|
setDiskEncryptionEnabled(enableDiskEncryption);
|
|
const pinRequired = res.mdm?.windows_require_bitlocker_pin ?? false;
|
|
setRequireBitLockerPIN(pinRequired);
|
|
setShowAggregate(enableDiskEncryption);
|
|
setIsLoadingTeam(false);
|
|
},
|
|
}
|
|
);
|
|
|
|
const onUpdateDiskEncryption = async () => {
|
|
try {
|
|
await diskEncryptionAPI.updateDiskEncryption(
|
|
diskEncryptionEnabled,
|
|
requireBitLockerPIN,
|
|
currentTeamId
|
|
);
|
|
renderFlash(
|
|
"success",
|
|
"Successfully updated disk encryption enforcement!"
|
|
);
|
|
onMutation();
|
|
setShowAggregate(diskEncryptionEnabled);
|
|
if (currentTeamId === 0) {
|
|
getUpdatedAppConfig();
|
|
}
|
|
} catch (e) {
|
|
if (getErrorReason(e).includes("Missing required private key")) {
|
|
const link =
|
|
"https://fleetdm.com/learn-more-about/fleet-server-private-key";
|
|
renderFlash(
|
|
"error",
|
|
<>
|
|
Could't enable disk encryption. Missing required private key.
|
|
Learn how to configure the private key here:{" "}
|
|
<a href={link}>{link}</a>
|
|
</>
|
|
);
|
|
} else {
|
|
const errorMsg =
|
|
getErrorReason(e) ??
|
|
"Could not update the disk encryption enforcement. Please try again.";
|
|
renderFlash("error", errorMsg);
|
|
}
|
|
}
|
|
};
|
|
|
|
if (currentTeamId === 0 && isLoadingTeam) {
|
|
setIsLoadingTeam(false);
|
|
}
|
|
|
|
const getTipContent = (platform: "windows" | "macOS" | "linux") => {
|
|
if (platform === "linux") {
|
|
return (
|
|
<>
|
|
For Ubuntu and Fedora Linux.
|
|
<br />
|
|
Currently, full disk encryption must be turned on{" "}
|
|
<b>
|
|
during OS
|
|
<br />
|
|
setup
|
|
</b>
|
|
. If disk encryption is off, the end user must re-install
|
|
<br />
|
|
their operating system.
|
|
</>
|
|
);
|
|
}
|
|
const [AppleOrWindows, DEMethod] =
|
|
platform === "windows"
|
|
? ["Windows", "BitLocker"]
|
|
: ["Apple", "FileVault"];
|
|
return (
|
|
<>
|
|
{AppleOrWindows} MDM must be turned on in <b>Settings</b> >{" "}
|
|
<b>Integrations</b> > <b>Mobile Device Management (MDM)</b> to
|
|
enforce disk encryption via {DEMethod}.
|
|
</>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<div className={baseClass}>
|
|
<SectionHeader title="Disk encryption" alignLeftHeaderVertically />
|
|
<PageDescription
|
|
variant="right-panel"
|
|
content={
|
|
<>
|
|
Disk encryption is available on{" "}
|
|
<TooltipWrapper tipContent={getTipContent("macOS")}>
|
|
macOS
|
|
</TooltipWrapper>
|
|
,{" "}
|
|
<TooltipWrapper tipContent={getTipContent("windows")}>
|
|
Windows
|
|
</TooltipWrapper>
|
|
, and{" "}
|
|
<TooltipWrapper tipContent={getTipContent("linux")}>
|
|
Linux
|
|
</TooltipWrapper>{" "}
|
|
hosts.
|
|
</>
|
|
}
|
|
/>
|
|
{!isPremiumTier ? (
|
|
<PremiumFeatureMessage
|
|
className={`${baseClass}__premium-feature-message`}
|
|
/>
|
|
) : (
|
|
<>
|
|
{isLoadingTeam ? (
|
|
<Spinner />
|
|
) : (
|
|
<div className="form disk-encryption-content">
|
|
{showAggregate && (
|
|
<DiskEncryptionTable
|
|
currentTeamId={currentTeamId}
|
|
router={router}
|
|
/>
|
|
)}
|
|
<Checkbox
|
|
disabled={config?.gitops.gitops_mode_enabled}
|
|
onChange={onToggleDiskEncryption}
|
|
value={diskEncryptionEnabled}
|
|
className={`${baseClass}__checkbox`}
|
|
>
|
|
Turn on disk encryption
|
|
</Checkbox>
|
|
<p>
|
|
If turned on, hosts' disk encryption keys will be stored in
|
|
Fleet.{" "}
|
|
<CustomLink
|
|
text="Learn more"
|
|
url={`${LEARN_MORE_ABOUT_BASE_LINK}/mdm-disk-encryption`}
|
|
newTab
|
|
/>
|
|
</p>
|
|
<RevealButton
|
|
className={`${baseClass}__accordion-title`}
|
|
isShowing={showAdvancedOptions}
|
|
showText="Advanced options"
|
|
hideText="Advanced options"
|
|
caretPosition="after"
|
|
onClick={() => setShowAdvancedOptions(!showAdvancedOptions)}
|
|
/>
|
|
{showAdvancedOptions && (
|
|
<Checkbox
|
|
disabled={config?.gitops.gitops_mode_enabled}
|
|
onChange={onToggleRequireBitLockerPIN}
|
|
value={requireBitLockerPIN}
|
|
className={`${baseClass}__checkbox`}
|
|
>
|
|
<TooltipWrapper
|
|
tipContent={
|
|
<div>
|
|
<p>
|
|
If enabled, end users on Windows hosts will be
|
|
required to set a BitLocker PIN.
|
|
</p>
|
|
<br />
|
|
<p>
|
|
When the PIN is set, it’s required to unlock
|
|
Windows hosts during startup.
|
|
</p>
|
|
</div>
|
|
}
|
|
>
|
|
Require BitLocker PIN
|
|
</TooltipWrapper>
|
|
</Checkbox>
|
|
)}
|
|
<div className="button-wrap">
|
|
<GitOpsModeTooltipWrapper
|
|
tipOffset={-12}
|
|
renderChildren={(d) => (
|
|
<Button
|
|
disabled={d}
|
|
className={`${baseClass}__save-button`}
|
|
onClick={onUpdateDiskEncryption}
|
|
>
|
|
Save
|
|
</Button>
|
|
)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default DiskEncryption;
|