bb0f4bfa62
* Fix wrapping when too many hosts are shown (#207) * Update npm packages, fixes CVE-2019-10757 * Revert some breaking packages * Major overhaul - Docker buildx support in CI - Cypress API Testing in CI - Restructured folder layout (insert clean face meme) - Added Swagger documentation and validate API against that (to be completed) - Use common base image for all supported archs, which includes updated nginx with ipv6 support - Updated certbot and changes required for it - Large amount of Hosts names will wrap in UI - Updated packages for frontend - Version bump 2.1.0 * Updated documentation * Fix JWT expire time going crazy. Now set to 1day * Backend JS formatting rules * Remove v1 importer, I doubt anyone is using v1 anymore * Added backend formatting rules and enforce them in Jenkins builds * Fix CI, doesn't need a tty * Thanks bcrypt. Why can't you just be normal. * Cleanup after syntax check Co-authored-by: Marcelo Castagna <margaale@users.noreply.github.com>
111 lines
3.2 KiB
JavaScript
111 lines
3.2 KiB
JavaScript
const Mn = require('backbone.marionette');
|
|
const App = require('../../main');
|
|
const AccessListModel = require('../../../models/access-list');
|
|
const template = require('./form.ejs');
|
|
const ItemView = require('./form/item');
|
|
|
|
require('jquery-serializejson');
|
|
|
|
const ItemsView = Mn.CollectionView.extend({
|
|
childView: ItemView
|
|
});
|
|
|
|
module.exports = Mn.View.extend({
|
|
template: template,
|
|
className: 'modal-dialog',
|
|
|
|
ui: {
|
|
items_region: '.items',
|
|
form: 'form',
|
|
buttons: '.modal-footer button',
|
|
cancel: 'button.cancel',
|
|
save: 'button.save'
|
|
},
|
|
|
|
regions: {
|
|
items_region: '@ui.items_region'
|
|
},
|
|
|
|
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;
|
|
}
|
|
|
|
let view = this;
|
|
let form_data = this.ui.form.serializeJSON();
|
|
let items_data = [];
|
|
|
|
form_data.username.map(function (val, idx) {
|
|
if (val.trim().length) {
|
|
items_data.push({
|
|
username: val.trim(),
|
|
password: form_data.password[idx]
|
|
});
|
|
}
|
|
});
|
|
|
|
if (!items_data.length) {
|
|
alert('You must specify at least 1 Username and Password combination');
|
|
return;
|
|
}
|
|
|
|
let data = {
|
|
name: form_data.name,
|
|
items: items_data
|
|
};
|
|
|
|
let method = App.Api.Nginx.AccessLists.create;
|
|
let is_new = true;
|
|
|
|
if (this.model.get('id')) {
|
|
// edit
|
|
is_new = false;
|
|
method = App.Api.Nginx.AccessLists.update;
|
|
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();
|
|
}
|
|
});
|
|
})
|
|
.catch(err => {
|
|
alert(err.message);
|
|
this.ui.buttons.prop('disabled', false).removeClass('btn-disabled');
|
|
});
|
|
}
|
|
},
|
|
|
|
onRender: function () {
|
|
let items = this.model.get('items');
|
|
|
|
// 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({});
|
|
}
|
|
}
|
|
|
|
this.showChildView('items_region', new ItemsView({
|
|
collection: new Backbone.Collection(items)
|
|
}));
|
|
},
|
|
|
|
initialize: function (options) {
|
|
if (typeof options.model === 'undefined' || !options.model) {
|
|
this.model = new AccessListModel.Model();
|
|
}
|
|
}
|
|
});
|