mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 21:01:08 +00:00
0e29fccc0a
This stack adds a couple of parameters to the Lightweight FedCM prototype: token: This allows a created credential to have some data associated. This can then be stored and retrieved by the RP effectiveType: This allows a RP and IDP to agree on an arbitrary string that makes a credential from the IDP work on the RP. The IDP tags onto the credential and RP puts on the request the same string to let it appear in the browser dialog, as an alternative to the IDP origin or query URL. Differential Revision: https://phabricator.services.mozilla.com/D218638
121 lines
3.6 KiB
Plaintext
121 lines
3.6 KiB
Plaintext
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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/.
|
|
*
|
|
* The origin of this IDL file is
|
|
* https://fedidcg.github.io/FedCM
|
|
*/
|
|
|
|
|
|
[Exposed=Window, SecureContext,
|
|
Pref="dom.security.credentialmanagement.identity.enabled"]
|
|
interface IdentityCredential : Credential {
|
|
readonly attribute USVString? token;
|
|
[Throws, Pref="dom.security.credentialmanagement.identity.lightweight.enabled"]
|
|
readonly attribute UTF8String origin;
|
|
[Throws, Pref="dom.security.credentialmanagement.identity.lightweight.enabled"]
|
|
constructor(IdentityCredentialInit init);
|
|
};
|
|
|
|
dictionary IdentityCredentialRequestOptions {
|
|
sequence<IdentityProviderConfig> providers;
|
|
};
|
|
|
|
enum IdentityLoginTargetType { "redirect", "popup" };
|
|
|
|
[GenerateConversionToJS]
|
|
dictionary IdentityProviderConfig {
|
|
UTF8String configURL;
|
|
UTF8String clientId;
|
|
UTF8String nonce;
|
|
[Pref="dom.security.credentialmanagement.identity.lightweight.enabled"]
|
|
UTF8String origin;
|
|
[Pref="dom.security.credentialmanagement.identity.lightweight.enabled"]
|
|
UTF8String loginURL;
|
|
[Pref="dom.security.credentialmanagement.identity.lightweight.enabled"]
|
|
IdentityLoginTargetType loginTarget;
|
|
[Pref="dom.security.credentialmanagement.identity.lightweight.enabled"]
|
|
UTF8String effectiveQueryURL;
|
|
[Pref="dom.security.credentialmanagement.identity.lightweight.enabled"]
|
|
UTF8String effectiveType;
|
|
};
|
|
|
|
// Lightweight only
|
|
|
|
dictionary IdentityCredentialUserData {
|
|
required UTF8String name;
|
|
required UTF8String iconURL;
|
|
unsigned long long expiresAfter;
|
|
};
|
|
|
|
dictionary IdentityCredentialInit {
|
|
required DOMString id;
|
|
UTF8String token;
|
|
sequence<UTF8String> effectiveOrigins;
|
|
UTF8String effectiveQueryURL;
|
|
UTF8String effectiveType;
|
|
IdentityCredentialUserData uiHint;
|
|
};
|
|
|
|
// Heavyweight only
|
|
|
|
// https://fedidcg.github.io/FedCM/#dictdef-identityproviderwellknown
|
|
[GenerateInit]
|
|
dictionary IdentityProviderWellKnown {
|
|
required sequence<UTF8String> provider_urls;
|
|
};
|
|
|
|
// https://fedidcg.github.io/FedCM/#dictdef-identityprovidericon
|
|
dictionary IdentityProviderIcon {
|
|
required UTF8String url;
|
|
unsigned long size;
|
|
};
|
|
|
|
// https://fedidcg.github.io/FedCM/#dictdef-identityproviderbranding
|
|
dictionary IdentityProviderBranding {
|
|
USVString background_color;
|
|
USVString color;
|
|
sequence<IdentityProviderIcon> icons;
|
|
USVString name;
|
|
};
|
|
|
|
// https://fedidcg.github.io/FedCM/#dictdef-identityproviderapiconfig
|
|
[GenerateInit, GenerateConversionToJS]
|
|
dictionary IdentityProviderAPIConfig {
|
|
required UTF8String accounts_endpoint;
|
|
required UTF8String client_metadata_endpoint;
|
|
required UTF8String id_assertion_endpoint;
|
|
IdentityProviderBranding branding;
|
|
};
|
|
|
|
|
|
// https://fedidcg.github.io/FedCM/#dictdef-identityprovideraccount
|
|
dictionary IdentityProviderAccount {
|
|
required USVString id;
|
|
required USVString name;
|
|
required USVString email;
|
|
USVString given_name;
|
|
USVString picture;
|
|
sequence<USVString> approved_clients;
|
|
};
|
|
|
|
// https://fedidcg.github.io/FedCM/#dictdef-identityprovideraccountlist
|
|
[GenerateInit, GenerateConversionToJS]
|
|
dictionary IdentityProviderAccountList {
|
|
sequence<IdentityProviderAccount> accounts;
|
|
};
|
|
|
|
// https://fedidcg.github.io/FedCM/#dictdef-identityproviderclientmetadata
|
|
[GenerateInit, GenerateConversionToJS]
|
|
dictionary IdentityProviderClientMetadata {
|
|
USVString privacy_policy_url;
|
|
USVString terms_of_service_url;
|
|
};
|
|
|
|
// https://fedidcg.github.io/FedCM/#dictdef-identityprovidertoken
|
|
[GenerateInit]
|
|
dictionary IdentityProviderToken {
|
|
required USVString token;
|
|
};
|