#ifndef DEVICE_FIDO_MAC_GET_ASSERTION_OPERATION_H_
#define DEVICE_FIDO_MAC_GET_ASSERTION_OPERATION_H_
#include "base/component_export.h"
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "device/fido/authenticator_get_assertion_response.h"
#include "device/fido/ctap_get_assertion_request.h"
#include "device/fido/fido_authenticator.h"
#include "device/fido/mac/credential_store.h"
#include "device/fido/mac/operation.h"
#include "device/fido/mac/touch_id_context.h"
namespace device::fido::mac {
class COMPONENT_EXPORT(DEVICE_FIDO) GetAssertionOperation : public Operation {
public:
using Callback =
base::OnceCallback<void(GetAssertionStatus,
std::vector<AuthenticatorGetAssertionResponse>)>;
GetAssertionOperation(CtapGetAssertionRequest request,
TouchIdCredentialStore* credential_store,
Callback callback);
GetAssertionOperation(const GetAssertionOperation&) = delete;
GetAssertionOperation& operator=(const GetAssertionOperation&) = delete;
~GetAssertionOperation() override;
void Run() override;
private:
void PromptTouchIdDone(bool success);
void GenerateResponses(std::list<Credential> credentials, bool has_uv);
std::optional<AuthenticatorGetAssertionResponse> ResponseForCredential(
const Credential& credential,
bool has_uv);
const std::unique_ptr<TouchIdContext> touch_id_context_ =
TouchIdContext::Create();
const CtapGetAssertionRequest request_;
const raw_ptr<TouchIdCredentialStore> credential_store_;
Callback callback_;
};
}
#endif