mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-06-14 16:34:27 +00:00
164 lines
5.7 KiB
JavaScript
164 lines
5.7 KiB
JavaScript
const Mn = require('backbone.marionette');
|
|
const App = require('../main');
|
|
const UserModel = require('../../models/user');
|
|
const template = require('./form.ejs');
|
|
|
|
require('jquery-serializejson');
|
|
|
|
module.exports = Mn.View.extend({
|
|
template: template,
|
|
className: 'modal-dialog',
|
|
|
|
ui: {
|
|
form: 'form',
|
|
buttons: '.modal-footer button',
|
|
cancel: 'button.cancel',
|
|
save: 'button.save',
|
|
error: '.secret-error',
|
|
addMfa: '.add-mfa',
|
|
mfaLabel: '.mfa-label', // added binding
|
|
mfaValidation: '.mfa-validation-container', // added binding
|
|
qrInstructions: '.qr-instructions' // added binding for instructions
|
|
},
|
|
|
|
events: {
|
|
|
|
'submit @ui.form': function (e) {
|
|
e.preventDefault();
|
|
this.ui.error.hide();
|
|
let view = this;
|
|
let data = this.ui.form.serializeJSON();
|
|
|
|
// Save "mfa_validation" value and remove it from data
|
|
let mfaToken = data.mfa_validation;
|
|
delete data.mfa_validation;
|
|
|
|
let show_password = this.model.get('email') === 'admin@example.com';
|
|
|
|
// admin@example.com is not allowed
|
|
if (data.email === 'admin@example.com') {
|
|
this.ui.error.text(App.i18n('users', 'default_error')).show();
|
|
this.ui.buttons.prop('disabled', false).removeClass('btn-disabled');
|
|
return;
|
|
}
|
|
|
|
// Manipulate
|
|
data.roles = [];
|
|
if ((this.model.get('id') === App.Cache.User.get('id') && this.model.isAdmin()) || (typeof data.is_admin !== 'undefined' && data.is_admin)) {
|
|
data.roles.push('admin');
|
|
delete data.is_admin;
|
|
}
|
|
|
|
data.is_disabled = typeof data.is_disabled !== 'undefined' ? !!data.is_disabled : false;
|
|
this.ui.buttons.prop('disabled', true).addClass('btn-disabled');
|
|
let method = App.Api.Users.create;
|
|
|
|
if (this.model.get('id')) {
|
|
// edit
|
|
method = App.Api.Users.update;
|
|
data.id = this.model.get('id');
|
|
}
|
|
|
|
method(data)
|
|
.then(result => {
|
|
if (result.id === App.Cache.User.get('id')) {
|
|
App.Cache.User.set(result);
|
|
}
|
|
|
|
if (view.model.get('id') !== App.Cache.User.get('id')) {
|
|
App.Controller.showUsers();
|
|
}
|
|
|
|
view.model.set(result);
|
|
|
|
if (mfaToken) {
|
|
return App.Api.Mfa.enable(mfaToken)
|
|
.then(() => result);
|
|
}
|
|
console.log(result);
|
|
return result;
|
|
})
|
|
.then(result => {
|
|
App.UI.closeModal(function () {
|
|
if (method === App.Api.Users.create) {
|
|
// Show permissions dialog immediately
|
|
App.Controller.showUserPermissions(view.model);
|
|
} else if (show_password) {
|
|
App.Controller.showUserPasswordForm(view.model);
|
|
}
|
|
});
|
|
})
|
|
.catch(err => {
|
|
this.ui.error.text(err.message).show();
|
|
this.ui.buttons.prop('disabled', false).removeClass('btn-disabled');
|
|
});
|
|
},
|
|
'click @ui.addMfa': function (e) {
|
|
let view = this;
|
|
App.Api.Mfa.create()
|
|
.then(response => {
|
|
view.ui.addMfa.replaceWith(`<img class="qr-code" src="${response.qrCode}" alt="QR Code">`);
|
|
view.ui.qrInstructions.show();
|
|
view.ui.mfaValidation.show();
|
|
// Add required attribute once MFA is activated
|
|
view.ui.mfaValidation.find('input[name="mfa_validation"]').attr('required', true);
|
|
})
|
|
.catch(err => {
|
|
view.ui.error.text(err.message).show();
|
|
});
|
|
}
|
|
},
|
|
|
|
templateContext: function () {
|
|
let view = this;
|
|
|
|
return {
|
|
isSelf: function () {
|
|
return view.model.get('id') === App.Cache.User.get('id');
|
|
},
|
|
|
|
isAdmin: function () {
|
|
return App.Cache.User.isAdmin();
|
|
},
|
|
|
|
isAdminUser: function () {
|
|
return view.model.isAdmin();
|
|
},
|
|
|
|
isDisabled: function () {
|
|
return view.model.isDisabled();
|
|
}
|
|
};
|
|
},
|
|
|
|
initialize: function (options) {
|
|
if (typeof options.model === 'undefined' || !options.model) {
|
|
this.model = new UserModel.Model();
|
|
}
|
|
},
|
|
|
|
onRender: function () {
|
|
let view = this;
|
|
App.Api.Mfa.check()
|
|
.then(response => {
|
|
if (response.active) {
|
|
view.ui.addMfa.hide();
|
|
view.ui.mfaLabel.hide();
|
|
view.ui.qrInstructions.hide();
|
|
view.ui.mfaValidation.hide();
|
|
// Remove required attribute if MFA is active & field is hidden
|
|
view.ui.mfaValidation.find('input[name="mfa_validation"]').removeAttr('required');
|
|
} else {
|
|
view.ui.addMfa.show();
|
|
view.ui.mfaLabel.show();
|
|
view.ui.qrInstructions.hide();
|
|
view.ui.mfaValidation.hide();
|
|
view.ui.mfaValidation.find('input[name="mfa_validation"]').removeAttr('required');
|
|
}
|
|
})
|
|
.catch(err => {
|
|
view.ui.error.text(err.message).show();
|
|
});
|
|
}
|
|
});
|