2018-01-07 15:30:12 +00:00
|
|
|
(function() {
|
|
|
|
|
|
|
|
angular
|
2018-01-07 23:59:21 +00:00
|
|
|
.module('NginxConfigIoApp', ['ngclipboard'])
|
2018-01-07 22:34:59 +00:00
|
|
|
.controller('NginxConfigIoController', function NginxConfigIoController($scope, $location, $timeout) {
|
|
|
|
///////////////////////
|
|
|
|
// PRIVATE VARIABLES //
|
|
|
|
///////////////////////
|
|
|
|
var data = {
|
2018-01-07 15:30:12 +00:00
|
|
|
domain: 'example.com',
|
|
|
|
path: '/var/www/example.com',
|
|
|
|
document_root: '/public',
|
|
|
|
https: false,
|
|
|
|
http2: true,
|
|
|
|
email: 'hello@example.com',
|
2018-01-07 21:53:27 +00:00
|
|
|
cdn: false,
|
2018-01-07 15:30:12 +00:00
|
|
|
non_www: true,
|
|
|
|
php: '7.2',
|
2018-01-07 23:02:48 +00:00
|
|
|
index_php: true,
|
2018-01-07 15:30:12 +00:00
|
|
|
index_html: false,
|
|
|
|
wordpress: false,
|
|
|
|
|
|
|
|
file_structure: 'unified',
|
|
|
|
|
|
|
|
worker_processes: 'auto',
|
|
|
|
user: 'www-data',
|
|
|
|
pid: '/run/nginx.pid',
|
|
|
|
access_log: '/var/log/nginx/access.log',
|
|
|
|
error_log: '/var/log/nginx/error.log',
|
|
|
|
gzip: true,
|
|
|
|
server_tokens: false,
|
|
|
|
log_not_found: false,
|
|
|
|
limit_req: false,
|
|
|
|
|
|
|
|
expires: {
|
2018-01-07 21:42:27 +00:00
|
|
|
assets: '7d',
|
|
|
|
fonts: '7d',
|
2018-01-07 15:30:12 +00:00
|
|
|
svg: '7d',
|
2018-01-07 21:42:27 +00:00
|
|
|
media: '7d',
|
|
|
|
docs: '7d',
|
2018-01-07 15:30:12 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2018-01-07 22:34:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
/////////////////////
|
|
|
|
// SCOPE VARIABLES //
|
|
|
|
/////////////////////
|
|
|
|
$scope.data = angular.copy(data);
|
|
|
|
$scope.dataInit = false;
|
|
|
|
|
2018-01-07 21:42:27 +00:00
|
|
|
$scope.extensions = {
|
|
|
|
assets: 'css(\\.map)?|js(\\.map)?',
|
|
|
|
fonts: 'ttf|ttc|otf|eot|woff|woff2',
|
|
|
|
svg: 'svgz?',
|
|
|
|
images: 'jpe?g|png|gif|ico|cur|heic|webp|tiff?',
|
|
|
|
audio: 'mp3|m4a|aac|ogg|midi?|wav',
|
|
|
|
video: 'mp4|mov|webm|mpe?g|avi|ogv|flv|wmv',
|
|
|
|
docs: 'pdf|docx?|xlsx?|pptx?'
|
|
|
|
};
|
|
|
|
|
2018-01-07 21:53:27 +00:00
|
|
|
$scope.gzipTypes = 'text/plain text/css text/xml application/json application/javascript application/xml+rss application/atom+xml image/svg+xml';
|
|
|
|
|
2018-01-07 21:42:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
/////////////////////
|
|
|
|
// SCOPE FUNCTIONS //
|
|
|
|
/////////////////////
|
2018-01-07 15:30:12 +00:00
|
|
|
$scope.refreshHighlighting = function() {
|
|
|
|
document.querySelectorAll('main .file .code.source').forEach(function(code) {
|
|
|
|
$timeout(function(code) {
|
|
|
|
code.nextSibling.innerHTML = code.innerHTML;
|
|
|
|
if (code.nextSibling.children.length && code.nextSibling.children[0].children.length) {
|
|
|
|
hljs.highlightBlock(code.nextSibling.children[0].children[0]);
|
|
|
|
}
|
|
|
|
}, 0, true, code);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-01-07 22:34:59 +00:00
|
|
|
$scope.setDataFromHash = function() {
|
|
|
|
var hashData = $location.search();
|
|
|
|
|
|
|
|
for (var key in hashData) {
|
|
|
|
if ($scope.data[key] !== undefined && typeof $scope.data[key] === typeof hashData[key]) {
|
|
|
|
$scope.data[key] = hashData[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.updateHash = function() {
|
|
|
|
if (!$scope.dataInit) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var changedData = {};
|
|
|
|
|
|
|
|
for (var key in $scope.data) {
|
|
|
|
if (!angular.equals($scope.data[key], data[key])) {
|
|
|
|
changedData[key] = $scope.data[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Object.keys(changedData).length) {
|
|
|
|
$location.search(changedData).replace();
|
|
|
|
} else {
|
|
|
|
$location.search({});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-01-07 21:42:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
//////////////////
|
|
|
|
// SCOPE EVENTS //
|
|
|
|
//////////////////
|
2018-01-07 22:34:59 +00:00
|
|
|
$scope.$watch('data', function() {
|
|
|
|
$scope.refreshHighlighting();
|
|
|
|
$scope.updateHash();
|
|
|
|
|
|
|
|
if (!$scope.dataInit) {
|
|
|
|
$scope.dataInit = true;
|
|
|
|
}
|
|
|
|
}, true);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//////////
|
|
|
|
// INIT //
|
|
|
|
//////////
|
|
|
|
$scope.setDataFromHash();
|
2018-01-08 01:49:44 +00:00
|
|
|
})
|
|
|
|
.directive('ngIncludeTabs', function () {
|
|
|
|
return {
|
|
|
|
require: 'ngInclude',
|
|
|
|
restrict: 'A',
|
|
|
|
link: {
|
|
|
|
pre: function preLink(scope, iElement, iAttrs, controller) {
|
|
|
|
var tabs = parseInt(iAttrs.ngIncludeTabs || 0);
|
2018-01-08 07:28:51 +00:00
|
|
|
|
|
|
|
var startRegex = new RegExp('\t'.repeat(tabs - 1));
|
|
|
|
|
|
|
|
controller.template = controller.template
|
|
|
|
.replace(/^(.*)$/mg, '\t'.repeat(tabs) + '$1')
|
|
|
|
.replace(startRegex, '')
|
|
|
|
.replace(/\s*$/, '');
|
2018-01-08 01:49:44 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
2018-01-07 15:30:12 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
})();
|