mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-20 17:15:51 +02:00
123 lines
No EOL
4.4 KiB
JavaScript
123 lines
No EOL
4.4 KiB
JavaScript
/*
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
*
|
|
* Copyright (C) 2019 - 2023 Jan Böhmer (https://github.com/jbtronics)
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
import {Controller} from "@hotwired/stimulus";
|
|
import { zxcvbn, zxcvbnOptions } from '@zxcvbn-ts/core';
|
|
import * as zxcvbnCommonPackage from '@zxcvbn-ts/language-common';
|
|
import * as zxcvbnEnPackage from '@zxcvbn-ts/language-en';
|
|
import * as zxcvbnDePackage from '@zxcvbn-ts/language-de';
|
|
import * as zxcvbnFrPackage from '@zxcvbn-ts/language-fr';
|
|
import * as zxcvbnJaPackage from '@zxcvbn-ts/language-ja';
|
|
import {trans, USER_PASSWORD_STRENGTH_VERY_WEAK, USER_PASSWORD_STRENGTH_WEAK, USER_PASSWORD_STRENGTH_MEDIUM,
|
|
USER_PASSWORD_STRENGTH_STRONG, USER_PASSWORD_STRENGTH_VERY_STRONG} from '../../translator.js';
|
|
|
|
/* stimulusFetch: 'lazy' */
|
|
export default class extends Controller {
|
|
|
|
_passwordInput;
|
|
|
|
static targets = ["badge", "warning"]
|
|
|
|
_getTranslations() {
|
|
//Get the current locale
|
|
const locale = document.documentElement.lang;
|
|
if (locale.includes('de')) {
|
|
return zxcvbnDePackage.translations;
|
|
} else if (locale.includes('fr')) {
|
|
return zxcvbnFrPackage.translations;
|
|
} else if (locale.includes('ja')) {
|
|
return zxcvbnJaPackage.translations;
|
|
}
|
|
|
|
//Fallback to english
|
|
return zxcvbnEnPackage.translations;
|
|
}
|
|
|
|
connect() {
|
|
//Find the password input field
|
|
this._passwordInput = this.element.querySelector('input[type="password"]');
|
|
|
|
//Configure zxcvbn
|
|
const options = {
|
|
graphs: zxcvbnCommonPackage.adjacencyGraphs,
|
|
dictionary: {
|
|
...zxcvbnCommonPackage.dictionary,
|
|
// We could use the english dictionary here too, but it is very big. So we just use the common words
|
|
//...zxcvbnEnPackage.dictionary,
|
|
},
|
|
translations: this._getTranslations(),
|
|
};
|
|
zxcvbnOptions.setOptions(options);
|
|
|
|
//Add event listener to the password input field
|
|
this._passwordInput.addEventListener('input', this._onPasswordInput.bind(this));
|
|
}
|
|
|
|
_onPasswordInput() {
|
|
//Retrieve the password
|
|
const password = this._passwordInput.value;
|
|
|
|
//Estimate the password strength
|
|
const result = zxcvbn(password);
|
|
|
|
//Update the badge
|
|
this.badgeTarget.parentElement.classList.remove("d-none");
|
|
this._setBadgeToLevel(result.score);
|
|
|
|
this.warningTarget.innerHTML = result.feedback.warning;
|
|
}
|
|
|
|
_setBadgeToLevel(level) {
|
|
let text, classes;
|
|
|
|
switch (level) {
|
|
case 0:
|
|
text = trans(USER_PASSWORD_STRENGTH_VERY_WEAK);
|
|
classes = "bg-danger badge-danger";
|
|
break;
|
|
case 1:
|
|
text = trans(USER_PASSWORD_STRENGTH_WEAK);
|
|
classes = "bg-warning badge-warning";
|
|
break;
|
|
case 2:
|
|
text = trans(USER_PASSWORD_STRENGTH_MEDIUM)
|
|
classes = "bg-info badge-info";
|
|
break;
|
|
case 3:
|
|
text = trans(USER_PASSWORD_STRENGTH_STRONG);
|
|
classes = "bg-primary badge-primary";
|
|
break;
|
|
case 4:
|
|
text = trans(USER_PASSWORD_STRENGTH_VERY_STRONG);
|
|
classes = "bg-success badge-success";
|
|
break;
|
|
default:
|
|
text = "???";
|
|
classes = "bg-secondary badge-secondary";
|
|
}
|
|
|
|
this.badgeTarget.innerHTML = text;
|
|
//Remove all classes
|
|
this.badgeTarget.className = '';
|
|
//Re-add the classes
|
|
this.badgeTarget.classList.add("badge");
|
|
this.badgeTarget.classList.add(...classes.split(" "));
|
|
}
|
|
} |