2017-10-27 01:08:41 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2017-05-17 03:07:01 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "mozilla/dom/WebAuthenticationBinding.h"
|
|
|
|
#include "mozilla/dom/AuthenticatorAttestationResponse.h"
|
|
|
|
|
2020-11-23 19:21:38 +03:00
|
|
|
#include "mozilla/HoldDropJSObjects.h"
|
|
|
|
|
2022-05-09 23:41:18 +03:00
|
|
|
namespace mozilla::dom {
|
2017-05-17 03:07:01 +03:00
|
|
|
|
2017-07-26 20:03:17 +03:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(AuthenticatorAttestationResponse)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(
|
|
|
|
AuthenticatorAttestationResponse, AuthenticatorResponse)
|
|
|
|
tmp->mAttestationObjectCachedObj = nullptr;
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN_INHERITED(AuthenticatorAttestationResponse,
|
|
|
|
AuthenticatorResponse)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_PRESERVED_WRAPPER
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_JS_MEMBER_CALLBACK(mAttestationObjectCachedObj)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(
|
|
|
|
AuthenticatorAttestationResponse, AuthenticatorResponse)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
2017-05-17 03:07:01 +03:00
|
|
|
NS_IMPL_ADDREF_INHERITED(AuthenticatorAttestationResponse,
|
|
|
|
AuthenticatorResponse)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(AuthenticatorAttestationResponse,
|
|
|
|
AuthenticatorResponse)
|
|
|
|
|
2017-08-30 02:02:48 +03:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(AuthenticatorAttestationResponse)
|
2017-05-17 03:07:01 +03:00
|
|
|
NS_INTERFACE_MAP_END_INHERITING(AuthenticatorResponse)
|
|
|
|
|
|
|
|
AuthenticatorAttestationResponse::AuthenticatorAttestationResponse(
|
|
|
|
nsPIDOMWindowInner* aParent)
|
2017-07-26 20:03:17 +03:00
|
|
|
: AuthenticatorResponse(aParent), mAttestationObjectCachedObj(nullptr) {
|
|
|
|
mozilla::HoldJSObjects(this);
|
|
|
|
}
|
2017-05-17 03:07:01 +03:00
|
|
|
|
|
|
|
AuthenticatorAttestationResponse::~AuthenticatorAttestationResponse() {
|
2017-07-26 20:03:17 +03:00
|
|
|
mozilla::DropJSObjects(this);
|
|
|
|
}
|
2017-05-17 03:07:01 +03:00
|
|
|
|
|
|
|
JSObject* AuthenticatorAttestationResponse::WrapObject(
|
|
|
|
JSContext* aCx, JS::Handle<JSObject*> aGivenProto) {
|
2018-06-26 00:20:54 +03:00
|
|
|
return AuthenticatorAttestationResponse_Binding::Wrap(aCx, this, aGivenProto);
|
2017-05-17 03:07:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void AuthenticatorAttestationResponse::GetAttestationObject(
|
2017-07-26 20:03:17 +03:00
|
|
|
JSContext* aCx, JS::MutableHandle<JSObject*> aRetVal) {
|
|
|
|
if (!mAttestationObjectCachedObj) {
|
2017-09-20 17:32:07 +03:00
|
|
|
mAttestationObjectCachedObj = mAttestationObject.ToArrayBuffer(aCx);
|
2017-07-26 20:03:17 +03:00
|
|
|
}
|
|
|
|
aRetVal.set(mAttestationObjectCachedObj);
|
2017-05-17 03:07:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult AuthenticatorAttestationResponse::SetAttestationObject(
|
|
|
|
CryptoBuffer& aBuffer) {
|
|
|
|
if (NS_WARN_IF(!mAttestationObject.Assign(aBuffer))) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2022-05-09 23:41:18 +03:00
|
|
|
} // namespace mozilla::dom
|