2021-07-23 19:36:38 +08:00
|
|
|
|
|
|
|
(rl => {
|
|
|
|
|
2022-04-25 22:21:16 +08:00
|
|
|
addEventListener('rl-view-model', e => {
|
2021-10-11 20:31:54 +08:00
|
|
|
if (e.detail && 'Login' === e.detail.viewModelTemplateID) {
|
2021-07-23 19:36:38 +08:00
|
|
|
const container = e.detail.viewModelDom.querySelector('#plugin-Login-BottomControlGroup'),
|
2022-04-25 22:21:16 +08:00
|
|
|
placeholder = 'PLUGIN_2FA/LABEL_TWO_FACTOR_CODE';
|
2021-07-23 19:36:38 +08:00
|
|
|
if (container) {
|
2021-07-23 21:58:54 +08:00
|
|
|
container.prepend(Element.fromHTML('<div class="controls">'
|
2021-11-16 19:35:11 +08:00
|
|
|
+ '<span class="fontastic">⏱</span>'
|
|
|
|
+ '<input name="totp_code" type="text" class="input-block-level"'
|
|
|
|
+ ' pattern="[0-9]*" inputmode="numeric"'
|
|
|
|
+ ' autocomplete="off" autocorrect="off" autocapitalize="none" spellcheck="false"'
|
|
|
|
+ ' data-bind="textInput: totp, disable: submitRequest" data-i18n="[placeholder]'+placeholder
|
|
|
|
+ '" placeholder="'+rl.i18n(placeholder)+'">'
|
2021-07-23 19:36:38 +08:00
|
|
|
+ '</div>'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-04-25 22:21:16 +08:00
|
|
|
// https://github.com/the-djmaze/snappymail/issues/349
|
|
|
|
let code;
|
|
|
|
addEventListener('sm-user-login', e => {
|
|
|
|
code = e.detail.get('totp_code');
|
|
|
|
});
|
|
|
|
addEventListener('sm-user-login-response', e => {
|
|
|
|
if (e.detail && !e.detail.error && rl.settings.get('RequireTwoFactor') && !code) {
|
|
|
|
document.location.hash = '#/settings/two-factor-auth';
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-07-23 19:36:38 +08:00
|
|
|
})(window.rl);
|