web/elements: fix copy on insecure origins (#4917)
* web/elements: fix copy on insecure origins Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fallback to messages for other clipboard uses Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
parent
9219abf84b
commit
61bf73d2f9
|
@ -2,6 +2,7 @@ import "@goauthentik/admin/providers/RelatedApplicationButton";
|
|||
import "@goauthentik/admin/providers/saml/SAMLProviderForm";
|
||||
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
|
||||
import { EVENT_REFRESH } from "@goauthentik/common/constants";
|
||||
import { MessageLevel } from "@goauthentik/common/messages";
|
||||
import { AKElement } from "@goauthentik/elements/Base";
|
||||
import "@goauthentik/elements/CodeMirror";
|
||||
import "@goauthentik/elements/Tabs";
|
||||
|
@ -9,6 +10,7 @@ import "@goauthentik/elements/buttons/ActionButton";
|
|||
import "@goauthentik/elements/buttons/ModalButton";
|
||||
import "@goauthentik/elements/buttons/SpinnerButton";
|
||||
import "@goauthentik/elements/events/ObjectChangelog";
|
||||
import { showMessage } from "@goauthentik/elements/messages/MessageContainer";
|
||||
|
||||
import { t } from "@lingui/macro";
|
||||
|
||||
|
@ -101,6 +103,14 @@ export class SAMLProviderViewPage extends AKElement {
|
|||
<ak-action-button
|
||||
class="pf-m-secondary"
|
||||
.apiRequest=${() => {
|
||||
if (!navigator.clipboard) {
|
||||
return Promise.resolve(
|
||||
showMessage({
|
||||
level: MessageLevel.info,
|
||||
message: this.provider?.urlDownloadMetadata || "",
|
||||
}),
|
||||
);
|
||||
}
|
||||
return navigator.clipboard.writeText(
|
||||
this.provider?.urlDownloadMetadata || "",
|
||||
);
|
||||
|
@ -371,6 +381,15 @@ export class SAMLProviderViewPage extends AKElement {
|
|||
<ak-action-button
|
||||
class="pf-m-secondary"
|
||||
.apiRequest=${() => {
|
||||
if (!navigator.clipboard) {
|
||||
return Promise.resolve(
|
||||
showMessage({
|
||||
level: MessageLevel.info,
|
||||
message:
|
||||
this.provider?.urlDownloadMetadata || "",
|
||||
}),
|
||||
);
|
||||
}
|
||||
return navigator.clipboard.writeText(
|
||||
this.provider?.urlDownloadMetadata || "",
|
||||
);
|
||||
|
|
|
@ -62,6 +62,23 @@ export class TokenCopyButton extends ActionButton {
|
|||
return;
|
||||
}
|
||||
this.setLoading();
|
||||
// If we're on an insecure origin (non-https and not localhost), we might
|
||||
// not be able to write to the clipboard, and instead show a message
|
||||
if (!navigator.clipboard) {
|
||||
this.callAction()
|
||||
.then((v) => {
|
||||
this.setDone(SUCCESS_CLASS);
|
||||
showMessage({
|
||||
level: MessageLevel.info,
|
||||
message: v as string,
|
||||
});
|
||||
})
|
||||
.catch((err: Error) => {
|
||||
this.setDone(ERROR_CLASS);
|
||||
throw err;
|
||||
});
|
||||
return;
|
||||
}
|
||||
// Because safari is stupid, it only allows navigator.clipboard.write directly
|
||||
// in the @click handler.
|
||||
// And also chrome is stupid, because it doesn't accept Promises as values for
|
||||
|
|
|
@ -82,6 +82,13 @@ export class AuthenticatorTOTPStage extends BaseStage<
|
|||
@click=${(e: Event) => {
|
||||
e.preventDefault();
|
||||
if (!this.challenge?.configUrl) return;
|
||||
if (!navigator.clipboard) {
|
||||
showMessage({
|
||||
level: MessageLevel.info,
|
||||
message: this.challenge?.configUrl,
|
||||
});
|
||||
return;
|
||||
}
|
||||
navigator.clipboard
|
||||
.writeText(this.challenge?.configUrl)
|
||||
.then(() => {
|
||||
|
|
Reference in New Issue