From d6a48b9f6d4ce1e75c4e085d5621735f09e44c77 Mon Sep 17 00:00:00 2001 From: Vincent Date: Wed, 25 Mar 2020 14:16:45 +1100 Subject: [PATCH] Password paste --- _locales/en/messages.json | 4 ++++ password_preload.js | 2 +- preload.js | 2 +- .../session/SessionPasswordModal.tsx | 19 ++++++++++++++++++ .../session/SessionPasswordPrompt.tsx | 20 +++++++++++++++++-- 5 files changed, 43 insertions(+), 4 deletions(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 8f10bd4e4..21c0b9157 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -2296,6 +2296,10 @@ "confirmPassword": { "message": "Confirm password" }, + "pasteLongPasswordToastTitle": { + "message": "The clipboard content exceeds the maximum password length of $max_pwd_len$ characters.", + "description": "Shown when user pastes a password which is longer than MAX_PASSWORD_LEN" + }, "showSeedPasswordRequest": { "message": "Please enter your password", "description": "Request for user to enter password to show seed." diff --git a/password_preload.js b/password_preload.js index 1144878ea..a90393ecb 100644 --- a/password_preload.js +++ b/password_preload.js @@ -34,7 +34,7 @@ window.Signal.Logs = require('./js/modules/logs'); window.CONSTANTS = { MAX_LOGIN_TRIES: 3, - MAX_PASSWORD_LENGTH: 32, + MAX_PASSWORD_LENGTH: 64, MAX_USERNAME_LENGTH: 20, }; diff --git a/preload.js b/preload.js index 94fa47338..46d4474b1 100644 --- a/preload.js +++ b/preload.js @@ -64,7 +64,7 @@ window.isBeforeVersion = (toCheck, baseVersion) => { window.CONSTANTS = { MAX_LOGIN_TRIES: 3, - MAX_PASSWORD_LENGTH: 32, + MAX_PASSWORD_LENGTH: 64, MAX_USERNAME_LENGTH: 20, MAX_GROUP_NAME_LENGTH: 64, DEFAULT_PUBLIC_CHAT_URL: appConfig.get('defaultPublicChatServer'), diff --git a/ts/components/session/SessionPasswordModal.tsx b/ts/components/session/SessionPasswordModal.tsx index 8808b3f16..9d58f742a 100644 --- a/ts/components/session/SessionPasswordModal.tsx +++ b/ts/components/session/SessionPasswordModal.tsx @@ -33,6 +33,7 @@ export class SessionPasswordModal extends React.Component { this.closeDialog = this.closeDialog.bind(this); this.onKeyUp = this.onKeyUp.bind(this); + this.onPaste = this.onPaste.bind(this); } public componentDidMount() { @@ -66,6 +67,7 @@ export class SessionPasswordModal extends React.Component { placeholder={placeholders[0]} onKeyUp={this.onKeyUp} maxLength={window.CONSTANTS.MAX_PASSWORD_LENGTH} + onPaste={this.onPaste} /> {action !== PasswordAction.Remove && ( { placeholder={placeholders[1]} onKeyUp={this.onKeyUp} maxLength={window.CONSTANTS.MAX_PASSWORD_LENGTH} + onPaste={this.onPaste} /> )} @@ -191,6 +194,22 @@ export class SessionPasswordModal extends React.Component { } } + private onPaste(event: any) { + const clipboard = event.clipboardData.getData('text'); + + if (clipboard.length > window.CONSTANTS.MAX_PASSWORD_LENGTH){ + const title = String(window.i18n('pasteLongPasswordToastTitle', window.CONSTANTS.MAX_PASSWORD_LENGTH)); + + window.pushToast({ + title, + type: 'warning', + }); + } + + // Prevent pating into input + return false; + } + private async onKeyUp(event: any) { const { onOk } = this.props; diff --git a/ts/components/session/SessionPasswordPrompt.tsx b/ts/components/session/SessionPasswordPrompt.tsx index cd30d3e53..07fe70aa8 100644 --- a/ts/components/session/SessionPasswordPrompt.tsx +++ b/ts/components/session/SessionPasswordPrompt.tsx @@ -25,6 +25,8 @@ export class SessionPasswordPrompt extends React.PureComponent<{}, State> { }; this.onKeyUp = this.onKeyUp.bind(this); + this.onPaste = this.onPaste.bind(this); + this.initLogin = this.initLogin.bind(this); this.initClearDataView = this.initClearDataView.bind(this); } @@ -62,6 +64,7 @@ export class SessionPasswordPrompt extends React.PureComponent<{}, State> { placeholder={' '} onKeyUp={this.onKeyUp} maxLength={window.CONSTANTS.MAX_PASSWORD_LENGTH} + onPaste={this.onPaste} /> ); const infoIcon = this.state.clearDataView ? ( @@ -120,18 +123,31 @@ export class SessionPasswordPrompt extends React.PureComponent<{}, State> { event.preventDefault(); } + public onPaste(event: any) { + const clipboard = event.clipboardData.getData('text'); + + if (clipboard.length > window.CONSTANTS.MAX_PASSWORD_LENGTH){ + this.setState({ + error: String(window.i18n('pasteLongPasswordToastTitle', window.CONSTANTS.MAX_PASSWORD_LENGTH)) + }); + } + + // Prevent pating into input + return false; + } + public async onLogin(passPhrase: string) { const trimmed = passPhrase ? passPhrase.trim() : passPhrase; try { await window.onLogin(trimmed); - } catch (e) { + } catch (error) { // Increment the error counter and show the button if necessary this.setState({ errorCount: this.state.errorCount + 1, }); - this.setState({ error: e }); + this.setState({ error }); } }