nginx-proxy-manager/frontend/js/app/nginx/access/form.js

144 lines
4.3 KiB
JavaScript
Raw Normal View History

const Mn = require('backbone.marionette');
const App = require('../../main');
const AccessListModel = require('../../../models/access-list');
const template = require('./form.ejs');
2018-08-18 03:16:23 -04:00
const ItemView = require('./form/item');
2020-04-10 20:33:14 -04:00
const ClientView = require('./form/client');
2018-07-24 02:56:39 -04:00
require('jquery-serializejson');
2018-08-18 03:16:23 -04:00
const ItemsView = Mn.CollectionView.extend({
childView: ItemView
});
2018-07-24 02:56:39 -04:00
2020-04-10 20:33:14 -04:00
const ClientsView = Mn.CollectionView.extend({
childView: ClientView
});
2018-07-24 02:56:39 -04:00
module.exports = Mn.View.extend({
template: template,
className: 'modal-dialog',
ui: {
2020-04-10 20:33:14 -04:00
items_region: '.items',
clients_region: '.clients',
form: 'form',
buttons: '.modal-footer button',
cancel: 'button.cancel',
save: 'button.save'
2018-08-18 03:16:23 -04:00
},
regions: {
2020-04-10 20:33:14 -04:00
items_region: '@ui.items_region',
clients_region: '@ui.clients_region'
2018-07-24 02:56:39 -04:00
},
events: {
'click @ui.save': function (e) {
e.preventDefault();
if (!this.ui.form[0].checkValidity()) {
$('<input type="submit">').hide().appendTo(this.ui.form).click().remove();
return;
}
2020-04-10 20:33:14 -04:00
let view = this;
let form_data = this.ui.form.serializeJSON();
let items_data = [];
let clients_data = [];
2018-07-24 02:56:39 -04:00
2018-08-18 03:16:23 -04:00
form_data.username.map(function (val, idx) {
if (val.trim().length) {
items_data.push({
username: val.trim(),
password: form_data.password[idx]
});
}
});
2020-04-10 20:33:14 -04:00
form_data.address.map(function (val, idx) {
if (val.trim().length) {
clients_data.push({
address: val.trim(),
directive: form_data.directive[idx]
})
}
});
2020-04-11 03:26:54 -04:00
if (!items_data.length && !clients_data.length) {
alert('You must specify at least 1 Authorization or Access rule');
2018-08-18 03:16:23 -04:00
return;
}
let data = {
2020-04-11 03:26:54 -04:00
name: form_data.name,
2020-04-21 21:11:20 -04:00
satisfy_any: !!form_data.satisfy_any,
2020-04-11 03:26:54 -04:00
items: items_data,
clients: clients_data
2018-08-18 03:16:23 -04:00
};
2018-07-24 02:56:39 -04:00
2020-04-11 03:26:54 -04:00
console.log(data);
let method = App.Api.Nginx.AccessLists.create;
let is_new = true;
2018-07-24 02:56:39 -04:00
if (this.model.get('id')) {
// edit
is_new = false;
method = App.Api.Nginx.AccessLists.update;
2018-07-24 02:56:39 -04:00
data.id = this.model.get('id');
}
this.ui.buttons.prop('disabled', true).addClass('btn-disabled');
method(data)
.then(result => {
view.model.set(result);
App.UI.closeModal(function () {
if (is_new) {
App.Controller.showNginxAccess();
2018-07-24 02:56:39 -04:00
}
});
})
.catch(err => {
alert(err.message);
this.ui.buttons.prop('disabled', false).removeClass('btn-disabled');
});
}
},
2018-08-18 03:16:23 -04:00
onRender: function () {
let items = this.model.get('items');
2020-04-10 20:33:14 -04:00
let clients = this.model.get('clients');
2018-08-18 03:16:23 -04:00
// Add empty items to the end of the list. This is cheating but hey I don't have the time to do it right
let items_to_add = 5 - items.length;
if (items_to_add) {
for (let i = 0; i < items_to_add; i++) {
items.push({});
}
}
let clients_to_add = 4 - clients.length;
2020-04-10 20:33:14 -04:00
if (clients_to_add) {
for (let i = 0; i < clients_to_add; i++) {
clients.push({});
}
}
2018-08-18 03:16:23 -04:00
this.showChildView('items_region', new ItemsView({
collection: new Backbone.Collection(items)
}));
2020-04-10 20:33:14 -04:00
this.showChildView('clients_region', new ClientsView({
collection: new Backbone.Collection(clients)
}));
2018-08-18 03:16:23 -04:00
},
2018-07-24 02:56:39 -04:00
initialize: function (options) {
if (typeof options.model === 'undefined' || !options.model) {
this.model = new AccessListModel.Model();
2018-07-24 02:56:39 -04:00
}
}
});