@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
59 lines • 2.76 kB
JavaScript
import { Observable } from "rxjs";
import { LocalTracer } from "@ledgerhq/logs";
import { LOG_TYPE, sharedLogicTaskWrapper } from "./core";
import { withTransport } from "../transports/core";
import { toggleOnboardingEarlyCheckCmd, ToggleTypeP2, } from "../commands/toggleOnboardingEarlyCheck";
import { StatusCodes, TransportStatusError } from "@ledgerhq/errors";
function internalToggleOnboardingEarlyCheckTask({ deviceId, toggleType, }) {
const tracer = new LocalTracer(LOG_TYPE, {
function: "toggleOnboardingEarlyCheckTask",
toggleType,
});
tracer.trace("Starting toggleOnboardingEarlyCheckTask");
const p2 = toggleType === "enter" ? ToggleTypeP2.EnterChecking : ToggleTypeP2.ExitChecking;
return new Observable(subscriber => {
withTransport(deviceId)(({ transportRef }) => toggleOnboardingEarlyCheckCmd({
transport: transportRef.current,
p2,
})).subscribe({
next: _ => subscriber.next({ type: "success" }),
error: (error) => {
if (error instanceof TransportStatusError) {
tracer.trace("A TransportStatusError error occurred", { error });
if (error.statusCode === StatusCodes.SECURITY_STATUS_NOT_SATISFIED) {
subscriber.next({
type: "taskError",
error: "DeviceInInvalidState",
});
return;
}
else if (error.statusCode === StatusCodes.INCORRECT_LENGTH) {
subscriber.next({
type: "taskError",
error: "InternalError",
});
return;
}
}
tracer.trace("An unknown error occurred", { error });
subscriber.next({ type: "taskError", error: "Unknown" });
},
complete: () => subscriber.complete(),
});
});
}
/**
* During the onboarding, makes the device enter or exit the early security check steps
*
* This task only puts (or moves out) the device to the state/step of the early security check.
* It does not starts any "security checks".
*
* If the device is not in the WELCOME or WELCOME_STEP2 onboarding state, this task will emit
* a "DeviceInInvalidState" event.
*
* @param deviceId The id of the targeted device
* @param toggleType either "enter" or "exit"
* @returns An observable that emits a success, error or shared-task event
*/
export const toggleOnboardingEarlyCheckTask = sharedLogicTaskWrapper(internalToggleOnboardingEarlyCheckTask);
//# sourceMappingURL=toggleOnboardingEarlyCheck.js.map