blob: de2610815bcf58d7c976c38c2e9d7f45f3633c8a [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "modules/credentialmanager/PasswordCredential.h"
#include "bindings/core/v8/ExceptionState.h"
#include "core/dom/ExecutionContext.h"
#include "core/html/forms/FormData.h"
#include "core/html/forms/HTMLFormElement.h"
#include "core/html/forms/ListedElement.h"
#include "core/html_names.h"
#include "modules/credentialmanager/PasswordCredentialData.h"
namespace blink {
namespace {
constexpr char kPasswordCredentialType[] = "password";
}
// https://w3c.github.io/webappsec-credential-management/#construct-passwordcredential-data
PasswordCredential* PasswordCredential::Create(
const PasswordCredentialData& data,
ExceptionState& exception_state) {
if (data.id().IsEmpty())
exception_state.ThrowTypeError("'id' must not be empty.");
if (data.password().IsEmpty())
exception_state.ThrowTypeError("'password' must not be empty.");
KURL icon_url = ParseStringAsURLOrThrow(data.iconURL(), exception_state);
if (exception_state.HadException())
return nullptr;
return new PasswordCredential(data.id(), data.password(), data.name(),
icon_url);
}
// https://w3c.github.im/webappsec-credential-management/#construct-passwordcredential-form
PasswordCredential* PasswordCredential::Create(
HTMLFormElement* form,
ExceptionState& exception_state) {
// Extract data from the form, then use the extracted |form_data| object's
// value to populate |data|.
FormData* form_data = FormData::Create(form);
PasswordCredentialData data;
for (ListedElement* submittable_element : form->ListedElements()) {
// The "form data set" contains an entry for a |submittable_element| only if
// it has a non-empty `name` attribute.
// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#constructing-the-form-data-set
DCHECK(!submittable_element->GetName().IsEmpty());
FileOrUSVString value;
form_data->get(submittable_element->GetName(), value);
if (!value.IsUSVString())
continue;
Vector<String> autofill_tokens;
ToHTMLElement(submittable_element)
->FastGetAttribute(HTMLNames::autocompleteAttr)
.GetString()
.DeprecatedLower()
.Split(' ', autofill_tokens);
for (const auto& token : autofill_tokens) {
if (token == "current-password" || token == "new-password") {
data.setPassword(value.GetAsUSVString());
} else if (token == "photo") {
data.setIconURL(value.GetAsUSVString());
} else if (token == "name" || token == "nickname") {
data.setName(value.GetAsUSVString());
} else if (token == "username") {
data.setId(value.GetAsUSVString());
}
}
}
// Create a PasswordCredential using the data gathered above.
return PasswordCredential::Create(data, exception_state);
}
PasswordCredential* PasswordCredential::Create(const String& id,
const String& password,
const String& name,
const KURL& icon_url) {
return new PasswordCredential(id, password, name, icon_url);
}
PasswordCredential::PasswordCredential(const String& id,
const String& password,
const String& name,
const KURL& icon_url)
: Credential(id, kPasswordCredentialType),
password_(password),
name_(name),
icon_url_(icon_url) {
DCHECK(!password.IsEmpty());
}
bool PasswordCredential::IsPasswordCredential() const {
return true;
}
} // namespace blink