2014-07-12 22:45:33 +00:00
|
|
|
// Copyright (C) 2014 Jakob Borg and Contributors (see the CONTRIBUTORS file).
|
|
|
|
// All rights reserved. Use of this source code is governed by an MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
2014-06-01 20:50:14 +00:00
|
|
|
|
2014-02-10 19:54:37 +00:00
|
|
|
/*jslint browser: true, continue: true, plusplus: true */
|
|
|
|
/*global $: false, angular: false */
|
|
|
|
|
2014-05-28 18:06:48 +00:00
|
|
|
'use strict';
|
2014-02-10 19:54:37 +00:00
|
|
|
|
2014-07-20 11:49:26 +00:00
|
|
|
var syncthing = angular.module('syncthing', ['pascalprecht.translate']);
|
2014-04-30 20:02:34 +00:00
|
|
|
var urlbase = 'rest';
|
2014-01-05 22:54:57 +00:00
|
|
|
|
2014-07-20 11:49:26 +00:00
|
|
|
syncthing.config(function ($httpProvider, $translateProvider) {
|
2014-06-04 19:20:07 +00:00
|
|
|
$httpProvider.defaults.xsrfHeaderName = 'X-CSRF-Token';
|
|
|
|
$httpProvider.defaults.xsrfCookieName = 'CSRF-Token';
|
2014-07-20 11:49:26 +00:00
|
|
|
|
|
|
|
$translateProvider.useStaticFilesLoader({
|
2014-09-04 06:53:28 +00:00
|
|
|
prefix: 'lang/lang-',
|
2014-07-20 11:49:26 +00:00
|
|
|
suffix: '.json'
|
|
|
|
});
|
2014-06-04 19:20:07 +00:00
|
|
|
});
|
|
|
|
|
2014-07-29 09:06:52 +00:00
|
|
|
syncthing.controller('EventCtrl', function ($scope, $http) {
|
|
|
|
$scope.lastEvent = null;
|
|
|
|
var lastID = 0;
|
|
|
|
|
|
|
|
var successFn = function (data) {
|
2014-08-29 22:24:26 +00:00
|
|
|
// When Syncthing restarts while the long polling connection is in
|
|
|
|
// progress the browser on some platforms returns a 200 (since the
|
|
|
|
// headers has been flushed with the return code 200), with no data.
|
|
|
|
// This basically means that the connection has been reset, and the call
|
|
|
|
// was not actually sucessful.
|
|
|
|
if (!data) {
|
|
|
|
errorFn(data);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-08-24 23:04:12 +00:00
|
|
|
$scope.$emit('UIOnline');
|
2014-07-29 09:06:52 +00:00
|
|
|
|
|
|
|
if (lastID > 0) {
|
|
|
|
data.forEach(function (event) {
|
2014-07-29 09:54:00 +00:00
|
|
|
console.log("event", event.id, event.type, event.data);
|
2014-07-29 09:06:52 +00:00
|
|
|
$scope.$emit(event.type, event);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.lastEvent = data[data.length - 1];
|
|
|
|
lastID = $scope.lastEvent.id;
|
|
|
|
|
|
|
|
setTimeout(function () {
|
|
|
|
$http.get(urlbase + '/events?since=' + lastID)
|
|
|
|
.success(successFn)
|
|
|
|
.error(errorFn);
|
|
|
|
}, 500);
|
|
|
|
};
|
|
|
|
|
|
|
|
var errorFn = function (data) {
|
2014-08-24 23:04:12 +00:00
|
|
|
$scope.$emit('UIOffline');
|
|
|
|
|
2014-07-29 09:06:52 +00:00
|
|
|
setTimeout(function () {
|
2014-07-29 09:59:11 +00:00
|
|
|
$http.get(urlbase + '/events?limit=1')
|
2014-07-29 09:06:52 +00:00
|
|
|
.success(successFn)
|
|
|
|
.error(errorFn);
|
2014-07-29 09:59:11 +00:00
|
|
|
}, 1000);
|
2014-07-29 09:06:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
$http.get(urlbase + '/events?limit=1')
|
|
|
|
.success(successFn)
|
|
|
|
.error(errorFn);
|
|
|
|
});
|
|
|
|
|
2014-07-22 18:27:36 +00:00
|
|
|
syncthing.controller('SyncthingCtrl', function ($scope, $http, $translate, $location) {
|
2014-04-16 13:16:44 +00:00
|
|
|
var prevDate = 0;
|
2014-05-19 22:58:05 +00:00
|
|
|
var getOK = true;
|
2014-08-24 23:04:12 +00:00
|
|
|
var navigatingAway = false;
|
|
|
|
var online = false;
|
2014-04-16 13:16:44 +00:00
|
|
|
var restarting = false;
|
2014-01-09 09:31:27 +00:00
|
|
|
|
2014-07-29 09:06:52 +00:00
|
|
|
$scope.completion = {};
|
2014-02-01 19:23:19 +00:00
|
|
|
$scope.config = {};
|
2014-02-12 11:10:44 +00:00
|
|
|
$scope.configInSync = true;
|
2014-07-29 09:06:52 +00:00
|
|
|
$scope.connections = {};
|
2014-02-12 22:18:41 +00:00
|
|
|
$scope.errors = [];
|
2014-04-09 21:00:23 +00:00
|
|
|
$scope.model = {};
|
2014-07-29 09:06:52 +00:00
|
|
|
$scope.myID = '';
|
|
|
|
$scope.nodes = [];
|
|
|
|
$scope.protocolChanged = false;
|
2014-06-11 18:04:23 +00:00
|
|
|
$scope.reportData = {};
|
|
|
|
$scope.reportPreview = false;
|
2014-07-29 09:06:52 +00:00
|
|
|
$scope.repos = {};
|
|
|
|
$scope.seenError = '';
|
2014-07-14 08:45:29 +00:00
|
|
|
$scope.upgradeInfo = {};
|
2014-08-22 19:35:22 +00:00
|
|
|
$scope.stats = {};
|
2014-02-01 19:23:19 +00:00
|
|
|
|
2014-07-26 20:30:29 +00:00
|
|
|
$http.get(urlbase+"/lang").success(function (langs) {
|
2014-08-14 15:04:17 +00:00
|
|
|
// Find the first language in the list provided by the user's browser
|
|
|
|
// that is a prefix of a language we have available. That is, "en"
|
|
|
|
// sent by the browser will match "en" or "en-US", while "zh-TW" will
|
|
|
|
// match only "zh-TW" and not "zh-CN".
|
|
|
|
|
|
|
|
var lang, matching;
|
2014-07-26 20:30:29 +00:00
|
|
|
for (var i = 0; i < langs.length; i++) {
|
|
|
|
lang = langs[i];
|
2014-08-28 11:23:23 +00:00
|
|
|
if (lang.length < 2) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
matching = validLangs.filter(function (possibleLang) {
|
|
|
|
// The langs returned by the /rest/langs call will be in lower
|
|
|
|
// case. We compare to the lowercase version of the language
|
|
|
|
// code we have as well.
|
|
|
|
possibleLang = possibleLang.toLowerCase()
|
|
|
|
if (possibleLang.length > lang.length) {
|
|
|
|
return possibleLang.indexOf(lang) == 0;
|
|
|
|
} else {
|
|
|
|
return lang.indexOf(possibleLang) == 0;
|
|
|
|
}
|
2014-08-14 15:04:17 +00:00
|
|
|
});
|
|
|
|
if (matching.length >= 1) {
|
|
|
|
$translate.use(matching[0]);
|
2014-08-28 11:23:23 +00:00
|
|
|
return;
|
2014-07-26 20:30:29 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-28 11:23:23 +00:00
|
|
|
// Fallback if nothing matched
|
|
|
|
$translate.use("en");
|
2014-07-26 20:30:29 +00:00
|
|
|
})
|
|
|
|
|
2014-08-24 23:04:12 +00:00
|
|
|
$(window).bind('beforeunload', function() {
|
|
|
|
navigatingAway = true;
|
|
|
|
});
|
|
|
|
|
2014-07-22 18:27:36 +00:00
|
|
|
$scope.$on("$locationChangeSuccess", function () {
|
|
|
|
var lang = $location.search().lang;
|
|
|
|
if (lang) {
|
|
|
|
$translate.use(lang);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-06-14 08:58:36 +00:00
|
|
|
$scope.needActions = {
|
|
|
|
'rm': 'Del',
|
|
|
|
'rmdir': 'Del (dir)',
|
|
|
|
'sync': 'Sync',
|
|
|
|
'touch': 'Update',
|
|
|
|
}
|
|
|
|
$scope.needIcons = {
|
|
|
|
'rm': 'remove',
|
|
|
|
'rmdir': 'remove',
|
|
|
|
'sync': 'download',
|
|
|
|
'touch': 'asterisk',
|
|
|
|
}
|
|
|
|
|
2014-07-29 09:06:52 +00:00
|
|
|
$scope.$on('UIOnline', function (event, arg) {
|
2014-08-24 23:04:12 +00:00
|
|
|
if (online && !restarting) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-29 09:59:11 +00:00
|
|
|
console.log('UIOnline');
|
2014-07-29 09:06:52 +00:00
|
|
|
$scope.init();
|
2014-08-24 23:04:12 +00:00
|
|
|
online = true;
|
2014-07-29 09:59:11 +00:00
|
|
|
restarting = false;
|
2014-07-29 09:06:52 +00:00
|
|
|
$('#networkError').modal('hide');
|
|
|
|
$('#restarting').modal('hide');
|
|
|
|
$('#shutdown').modal('hide');
|
|
|
|
});
|
|
|
|
|
|
|
|
$scope.$on('UIOffline', function (event, arg) {
|
2014-08-24 23:04:12 +00:00
|
|
|
if (navigatingAway || !online) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-29 09:59:11 +00:00
|
|
|
console.log('UIOffline');
|
2014-08-24 23:04:12 +00:00
|
|
|
online = false;
|
2014-07-29 09:06:52 +00:00
|
|
|
if (!restarting) {
|
2014-08-10 22:28:04 +00:00
|
|
|
$('#networkError').modal();
|
2014-01-09 09:31:27 +00:00
|
|
|
}
|
2014-07-29 09:06:52 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$scope.$on('StateChanged', function (event, arg) {
|
|
|
|
var data = arg.data;
|
|
|
|
if ($scope.model[data.repo]) {
|
|
|
|
$scope.model[data.repo].state = data.to;
|
2014-04-16 13:16:44 +00:00
|
|
|
}
|
2014-07-29 09:06:52 +00:00
|
|
|
});
|
2014-01-09 09:31:27 +00:00
|
|
|
|
2014-07-29 09:06:52 +00:00
|
|
|
$scope.$on('LocalIndexUpdated', function (event, arg) {
|
|
|
|
var data = arg.data;
|
|
|
|
refreshRepo(data.repo);
|
|
|
|
|
|
|
|
// Update completion status for all nodes that we share this repo with.
|
|
|
|
$scope.repos[data.repo].Nodes.forEach(function (nodeCfg) {
|
2014-07-29 09:54:00 +00:00
|
|
|
refreshCompletion(nodeCfg.NodeID, data.repo);
|
2014-07-29 09:06:52 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$scope.$on('RemoteIndexUpdated', function (event, arg) {
|
|
|
|
var data = arg.data;
|
|
|
|
refreshRepo(data.repo);
|
|
|
|
refreshCompletion(data.node, data.repo);
|
|
|
|
});
|
|
|
|
|
|
|
|
$scope.$on('NodeDisconnected', function (event, arg) {
|
|
|
|
delete $scope.connections[arg.data.id];
|
2014-08-22 19:35:22 +00:00
|
|
|
refreshNodeStats();
|
2014-07-29 09:06:52 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$scope.$on('NodeConnected', function (event, arg) {
|
|
|
|
if (!$scope.connections[arg.data.id]) {
|
|
|
|
$scope.connections[arg.data.id] = {
|
|
|
|
inbps: 0,
|
|
|
|
outbps: 0,
|
|
|
|
InBytesTotal: 0,
|
|
|
|
OutBytesTotal: 0,
|
|
|
|
Address: arg.data.addr,
|
|
|
|
};
|
2014-08-05 18:16:25 +00:00
|
|
|
$scope.completion[arg.data.id] = {
|
|
|
|
_total: 100,
|
|
|
|
};
|
2014-04-16 13:16:44 +00:00
|
|
|
}
|
2014-07-29 09:06:52 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$scope.$on('ConfigLoaded', function (event) {
|
|
|
|
if ($scope.config.Options.URAccepted == 0) {
|
|
|
|
// If usage reporting has been neither accepted nor declined,
|
|
|
|
// we want to ask the user to make a choice. But we don't want
|
|
|
|
// to bug them during initial setup, so we set a cookie with
|
|
|
|
// the time of the first visit. When that cookie is present
|
|
|
|
// and the time is more than four hours ago, we ask the
|
|
|
|
// question.
|
|
|
|
|
|
|
|
var firstVisit = document.cookie.replace(/(?:(?:^|.*;\s*)firstVisit\s*\=\s*([^;]*).*$)|^.*$/, "$1");
|
|
|
|
if (!firstVisit) {
|
|
|
|
document.cookie = "firstVisit=" + Date.now() + ";max-age=" + 30*24*3600;
|
|
|
|
} else {
|
|
|
|
if (+firstVisit < Date.now() - 4*3600*1000){
|
2014-08-10 22:28:04 +00:00
|
|
|
$('#ur').modal();
|
2014-07-29 09:06:52 +00:00
|
|
|
}
|
|
|
|
}
|
2014-01-09 09:31:27 +00:00
|
|
|
}
|
2014-07-29 09:06:52 +00:00
|
|
|
})
|
|
|
|
|
2014-09-06 16:17:32 +00:00
|
|
|
$scope.$on('ConfigSaved', function (event, arg) {
|
|
|
|
updateLocalConfig(arg.data);
|
|
|
|
|
|
|
|
$http.get(urlbase + '/config/sync').success(function (data) {
|
|
|
|
$scope.configInSync = data.configInSync;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-07-29 09:54:00 +00:00
|
|
|
var debouncedFuncs = {};
|
|
|
|
|
2014-07-29 09:06:52 +00:00
|
|
|
function refreshRepo(repo) {
|
2014-07-29 09:54:00 +00:00
|
|
|
var key = "refreshRepo" + repo;
|
|
|
|
if (!debouncedFuncs[key]) {
|
|
|
|
debouncedFuncs[key] = debounce(function () {
|
|
|
|
$http.get(urlbase + '/model?repo=' + encodeURIComponent(repo)).success(function (data) {
|
|
|
|
$scope.model[repo] = data;
|
|
|
|
console.log("refreshRepo", repo, data);
|
|
|
|
});
|
|
|
|
}, 1000, true);
|
|
|
|
}
|
|
|
|
debouncedFuncs[key]();
|
2014-01-09 09:31:27 +00:00
|
|
|
}
|
|
|
|
|
2014-09-06 16:17:32 +00:00
|
|
|
function updateLocalConfig(config) {
|
|
|
|
var hasConfig = !isEmptyObject($scope.config);
|
|
|
|
|
|
|
|
$scope.config = config;
|
|
|
|
$scope.config.Options.ListenStr = $scope.config.Options.ListenAddress.join(', ');
|
|
|
|
|
|
|
|
$scope.nodes = $scope.config.Nodes;
|
|
|
|
$scope.nodes.forEach(function (nodeCfg) {
|
|
|
|
$scope.completion[nodeCfg.NodeID] = {
|
|
|
|
_total: 100,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
$scope.nodes.sort(nodeCompare);
|
|
|
|
|
|
|
|
$scope.repos = repoMap($scope.config.Repositories);
|
|
|
|
Object.keys($scope.repos).forEach(function (repo) {
|
|
|
|
refreshRepo(repo);
|
|
|
|
$scope.repos[repo].Nodes.forEach(function (nodeCfg) {
|
|
|
|
refreshCompletion(nodeCfg.NodeID, repo);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!hasConfig) {
|
|
|
|
$scope.$emit('ConfigLoaded');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-29 09:06:52 +00:00
|
|
|
function refreshSystem() {
|
2014-04-30 20:02:34 +00:00
|
|
|
$http.get(urlbase + '/system').success(function (data) {
|
2014-07-29 09:06:52 +00:00
|
|
|
$scope.myID = data.myID;
|
2014-01-09 23:09:27 +00:00
|
|
|
$scope.system = data;
|
2014-07-29 09:54:00 +00:00
|
|
|
console.log("refreshSystem", data);
|
2014-04-09 21:00:23 +00:00
|
|
|
});
|
2014-07-29 09:06:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function refreshCompletion(node, repo) {
|
|
|
|
if (node === $scope.myID) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-07-29 09:54:00 +00:00
|
|
|
var key = "refreshCompletion" + node + repo;
|
|
|
|
if (!debouncedFuncs[key]) {
|
|
|
|
debouncedFuncs[key] = debounce(function () {
|
2014-07-29 09:06:52 +00:00
|
|
|
$http.get(urlbase + '/completion?node=' + node + '&repo=' + encodeURIComponent(repo)).success(function (data) {
|
|
|
|
if (!$scope.completion[node]) {
|
|
|
|
$scope.completion[node] = {};
|
2014-06-19 22:27:54 +00:00
|
|
|
}
|
2014-07-29 09:06:52 +00:00
|
|
|
$scope.completion[node][repo] = data.completion;
|
|
|
|
|
|
|
|
var tot = 0, cnt = 0;
|
|
|
|
for (var cmp in $scope.completion[node]) {
|
2014-07-29 09:54:00 +00:00
|
|
|
if (cmp === "_total") {
|
|
|
|
continue;
|
|
|
|
}
|
2014-07-29 09:06:52 +00:00
|
|
|
tot += $scope.completion[node][cmp];
|
|
|
|
cnt += 1;
|
|
|
|
}
|
|
|
|
$scope.completion[node]._total = tot / cnt;
|
2014-07-29 09:54:00 +00:00
|
|
|
|
|
|
|
console.log("refreshCompletion", node, repo, $scope.completion[node]);
|
2014-06-19 22:27:54 +00:00
|
|
|
});
|
2014-07-29 09:54:00 +00:00
|
|
|
}, 1000, true);
|
2014-07-29 09:06:52 +00:00
|
|
|
}
|
2014-07-29 09:54:00 +00:00
|
|
|
debouncedFuncs[key]();
|
2014-07-29 09:06:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function refreshConnectionStats() {
|
2014-04-30 20:02:34 +00:00
|
|
|
$http.get(urlbase + '/connections').success(function (data) {
|
2014-02-10 19:54:37 +00:00
|
|
|
var now = Date.now(),
|
2014-04-09 21:00:23 +00:00
|
|
|
td = (now - prevDate) / 1000,
|
|
|
|
id;
|
2014-02-10 19:54:37 +00:00
|
|
|
|
2014-01-05 22:54:57 +00:00
|
|
|
prevDate = now;
|
2014-02-10 19:54:37 +00:00
|
|
|
for (id in data) {
|
|
|
|
if (!data.hasOwnProperty(id)) {
|
|
|
|
continue;
|
|
|
|
}
|
2014-01-05 22:54:57 +00:00
|
|
|
try {
|
2014-01-09 09:31:27 +00:00
|
|
|
data[id].inbps = Math.max(0, 8 * (data[id].InBytesTotal - $scope.connections[id].InBytesTotal) / td);
|
|
|
|
data[id].outbps = Math.max(0, 8 * (data[id].OutBytesTotal - $scope.connections[id].OutBytesTotal) / td);
|
2014-01-05 22:54:57 +00:00
|
|
|
} catch (e) {
|
|
|
|
data[id].inbps = 0;
|
|
|
|
data[id].outbps = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$scope.connections = data;
|
2014-07-29 09:54:00 +00:00
|
|
|
console.log("refreshConnections", data);
|
2014-01-05 22:54:57 +00:00
|
|
|
});
|
2014-07-29 09:06:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function refreshErrors() {
|
2014-04-30 20:02:34 +00:00
|
|
|
$http.get(urlbase + '/errors').success(function (data) {
|
2014-02-12 22:18:41 +00:00
|
|
|
$scope.errors = data;
|
2014-07-29 09:54:00 +00:00
|
|
|
console.log("refreshErrors", data);
|
2014-02-12 22:18:41 +00:00
|
|
|
});
|
2014-07-29 09:06:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function refreshConfig() {
|
|
|
|
$http.get(urlbase + '/config').success(function (data) {
|
2014-09-06 16:17:32 +00:00
|
|
|
updateLocalConfig(data);
|
2014-07-29 09:54:00 +00:00
|
|
|
console.log("refreshConfig", data);
|
2014-07-29 09:06:52 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$http.get(urlbase + '/config/sync').success(function (data) {
|
|
|
|
$scope.configInSync = data.configInSync;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-08-22 19:35:22 +00:00
|
|
|
var refreshNodeStats = debounce(function () {
|
|
|
|
$http.get(urlbase+"/stats/node").success(function (data) {
|
|
|
|
$scope.stats = data;
|
|
|
|
console.log("refreshNodeStats", data);
|
|
|
|
});
|
|
|
|
}, 500);
|
|
|
|
|
2014-07-29 09:06:52 +00:00
|
|
|
$scope.init = function() {
|
|
|
|
refreshSystem();
|
|
|
|
refreshConfig();
|
|
|
|
refreshConnectionStats();
|
2014-08-22 19:35:22 +00:00
|
|
|
refreshNodeStats();
|
2014-07-29 09:06:52 +00:00
|
|
|
|
|
|
|
$http.get(urlbase + '/version').success(function (data) {
|
|
|
|
$scope.version = data;
|
|
|
|
});
|
|
|
|
|
|
|
|
$http.get(urlbase + '/report').success(function (data) {
|
|
|
|
$scope.reportData = data;
|
|
|
|
});
|
|
|
|
|
|
|
|
$http.get(urlbase + '/upgrade').success(function (data) {
|
|
|
|
$scope.upgradeInfo = data;
|
|
|
|
}).error(function () {
|
|
|
|
$scope.upgradeInfo = {};
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.refresh = function () {
|
|
|
|
refreshSystem();
|
|
|
|
refreshConnectionStats();
|
|
|
|
refreshErrors();
|
2014-01-05 22:54:57 +00:00
|
|
|
};
|
|
|
|
|
2014-04-14 07:58:17 +00:00
|
|
|
$scope.repoStatus = function (repo) {
|
|
|
|
if (typeof $scope.model[repo] === 'undefined') {
|
2014-07-26 20:30:29 +00:00
|
|
|
return 'unknown';
|
2014-04-14 07:58:17 +00:00
|
|
|
}
|
|
|
|
|
2014-04-27 19:53:27 +00:00
|
|
|
if ($scope.model[repo].invalid !== '') {
|
2014-07-26 20:30:29 +00:00
|
|
|
return 'stopped';
|
2014-04-14 07:58:17 +00:00
|
|
|
}
|
|
|
|
|
2014-07-26 20:30:29 +00:00
|
|
|
return '' + $scope.model[repo].state;
|
2014-05-28 15:26:38 +00:00
|
|
|
};
|
2014-04-14 07:58:17 +00:00
|
|
|
|
|
|
|
$scope.repoClass = function (repo) {
|
|
|
|
if (typeof $scope.model[repo] === 'undefined') {
|
2014-05-20 17:36:37 +00:00
|
|
|
return 'info';
|
2014-04-14 07:58:17 +00:00
|
|
|
}
|
|
|
|
|
2014-04-27 19:53:27 +00:00
|
|
|
if ($scope.model[repo].invalid !== '') {
|
2014-05-20 17:36:37 +00:00
|
|
|
return 'danger';
|
2014-04-27 19:53:27 +00:00
|
|
|
}
|
|
|
|
|
2014-04-14 07:58:17 +00:00
|
|
|
var state = '' + $scope.model[repo].state;
|
|
|
|
if (state == 'idle') {
|
2014-05-20 17:36:37 +00:00
|
|
|
return 'success';
|
2014-04-14 07:58:17 +00:00
|
|
|
}
|
|
|
|
if (state == 'syncing') {
|
2014-05-20 17:36:37 +00:00
|
|
|
return 'primary';
|
2014-04-14 07:58:17 +00:00
|
|
|
}
|
2014-07-31 08:53:54 +00:00
|
|
|
if (state == 'scanning') {
|
|
|
|
return 'primary';
|
|
|
|
}
|
2014-05-20 17:36:37 +00:00
|
|
|
return 'info';
|
2014-05-28 15:26:38 +00:00
|
|
|
};
|
2014-04-14 07:58:17 +00:00
|
|
|
|
2014-04-09 21:00:23 +00:00
|
|
|
$scope.syncPercentage = function (repo) {
|
|
|
|
if (typeof $scope.model[repo] === 'undefined') {
|
|
|
|
return 100;
|
|
|
|
}
|
|
|
|
if ($scope.model[repo].globalBytes === 0) {
|
|
|
|
return 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
var pct = 100 * $scope.model[repo].inSyncBytes / $scope.model[repo].globalBytes;
|
2014-05-20 17:36:37 +00:00
|
|
|
return Math.floor(pct);
|
2014-04-09 21:00:23 +00:00
|
|
|
};
|
|
|
|
|
2014-02-01 19:23:19 +00:00
|
|
|
$scope.nodeIcon = function (nodeCfg) {
|
2014-07-29 09:06:52 +00:00
|
|
|
if ($scope.connections[nodeCfg.NodeID]) {
|
|
|
|
if ($scope.completion[nodeCfg.NodeID] && $scope.completion[nodeCfg.NodeID]._total === 100) {
|
2014-02-13 11:41:37 +00:00
|
|
|
return 'ok';
|
|
|
|
} else {
|
|
|
|
return 'refresh';
|
|
|
|
}
|
2014-02-01 19:23:19 +00:00
|
|
|
}
|
|
|
|
|
2014-02-11 13:34:47 +00:00
|
|
|
return 'minus';
|
2014-02-01 19:23:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
$scope.nodeClass = function (nodeCfg) {
|
2014-07-29 09:06:52 +00:00
|
|
|
if ($scope.connections[nodeCfg.NodeID]) {
|
|
|
|
if ($scope.completion[nodeCfg.NodeID] && $scope.completion[nodeCfg.NodeID]._total === 100) {
|
2014-02-13 11:41:37 +00:00
|
|
|
return 'success';
|
|
|
|
} else {
|
|
|
|
return 'primary';
|
|
|
|
}
|
2014-02-01 19:23:19 +00:00
|
|
|
}
|
|
|
|
|
2014-02-11 13:34:47 +00:00
|
|
|
return 'info';
|
2014-02-01 19:23:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
$scope.nodeAddr = function (nodeCfg) {
|
|
|
|
var conn = $scope.connections[nodeCfg.NodeID];
|
|
|
|
if (conn) {
|
|
|
|
return conn.Address;
|
|
|
|
}
|
2014-04-09 21:00:23 +00:00
|
|
|
return '?';
|
2014-02-01 19:23:19 +00:00
|
|
|
};
|
|
|
|
|
2014-02-13 11:41:37 +00:00
|
|
|
$scope.nodeCompletion = function (nodeCfg) {
|
|
|
|
var conn = $scope.connections[nodeCfg.NodeID];
|
|
|
|
if (conn) {
|
|
|
|
return conn.Completion + '%';
|
|
|
|
}
|
|
|
|
return '';
|
|
|
|
};
|
|
|
|
|
2014-05-20 17:36:37 +00:00
|
|
|
$scope.findNode = function (nodeID) {
|
|
|
|
var matches = $scope.nodes.filter(function (n) { return n.NodeID == nodeID; });
|
|
|
|
if (matches.length != 1) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
return matches[0];
|
|
|
|
};
|
|
|
|
|
2014-02-05 21:49:26 +00:00
|
|
|
$scope.nodeName = function (nodeCfg) {
|
2014-05-21 19:07:37 +00:00
|
|
|
if (typeof nodeCfg === 'undefined') {
|
|
|
|
return "";
|
|
|
|
}
|
2014-02-05 21:49:26 +00:00
|
|
|
if (nodeCfg.Name) {
|
|
|
|
return nodeCfg.Name;
|
|
|
|
}
|
|
|
|
return nodeCfg.NodeID.substr(0, 6);
|
|
|
|
};
|
|
|
|
|
2014-05-16 16:42:22 +00:00
|
|
|
$scope.thisNodeName = function () {
|
2014-05-20 17:36:37 +00:00
|
|
|
var node = $scope.thisNode();
|
|
|
|
if (typeof node === 'undefined') {
|
2014-05-16 16:42:22 +00:00
|
|
|
return "(unknown node)";
|
|
|
|
}
|
2014-05-20 17:36:37 +00:00
|
|
|
if (node.Name) {
|
|
|
|
return node.Name;
|
2014-05-16 16:42:22 +00:00
|
|
|
}
|
2014-05-20 17:36:37 +00:00
|
|
|
return node.NodeID.substr(0, 6);
|
2014-05-16 16:42:22 +00:00
|
|
|
};
|
|
|
|
|
2014-04-09 21:00:23 +00:00
|
|
|
$scope.editSettings = function () {
|
2014-05-21 19:54:16 +00:00
|
|
|
// Make a working copy
|
2014-06-17 21:22:19 +00:00
|
|
|
$scope.tmpOptions = angular.copy($scope.config.Options);
|
|
|
|
$scope.tmpOptions.UREnabled = ($scope.tmpOptions.URAccepted > 0);
|
2014-09-10 09:27:21 +00:00
|
|
|
$scope.tmpOptions.NodeName = $scope.thisNode().Name;
|
2014-06-17 21:22:19 +00:00
|
|
|
$scope.tmpGUI = angular.copy($scope.config.GUI);
|
2014-08-10 22:28:04 +00:00
|
|
|
$('#settings').modal();
|
2014-05-28 15:26:38 +00:00
|
|
|
};
|
2014-04-09 21:00:23 +00:00
|
|
|
|
2014-06-07 02:00:46 +00:00
|
|
|
$scope.saveConfig = function() {
|
|
|
|
var cfg = JSON.stringify($scope.config);
|
|
|
|
var opts = {headers: {'Content-Type': 'application/json'}};
|
|
|
|
$http.post(urlbase + '/config', cfg, opts).success(function () {
|
|
|
|
$http.get(urlbase + '/config/sync').success(function (data) {
|
|
|
|
$scope.configInSync = data.configInSync;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2014-02-01 19:23:19 +00:00
|
|
|
$scope.saveSettings = function () {
|
2014-05-21 18:35:51 +00:00
|
|
|
// Make sure something changed
|
2014-06-17 21:22:19 +00:00
|
|
|
var changed = !angular.equals($scope.config.Options, $scope.tmpOptions) ||
|
|
|
|
!angular.equals($scope.config.GUI, $scope.tmpGUI);
|
|
|
|
if (changed) {
|
|
|
|
// Check if usage reporting has been enabled or disabled
|
|
|
|
if ($scope.tmpOptions.UREnabled && $scope.tmpOptions.URAccepted <= 0) {
|
|
|
|
$scope.tmpOptions.URAccepted = 1000;
|
|
|
|
} else if (!$scope.tmpOptions.UREnabled && $scope.tmpOptions.URAccepted > 0){
|
|
|
|
$scope.tmpOptions.URAccepted = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if protocol will need to be changed on restart
|
|
|
|
if($scope.config.GUI.UseTLS !== $scope.tmpGUI.UseTLS){
|
2014-05-28 15:26:38 +00:00
|
|
|
$scope.protocolChanged = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Apply new settings locally
|
2014-09-10 09:27:21 +00:00
|
|
|
$scope.thisNode().Name = $scope.tmpOptions.NodeName;
|
2014-06-17 21:22:19 +00:00
|
|
|
$scope.config.Options = angular.copy($scope.tmpOptions);
|
|
|
|
$scope.config.GUI = angular.copy($scope.tmpGUI);
|
2014-05-21 18:35:51 +00:00
|
|
|
$scope.config.Options.ListenAddress = $scope.config.Options.ListenStr.split(',').map(function (x) { return x.trim(); });
|
2014-06-07 02:00:46 +00:00
|
|
|
|
|
|
|
$scope.saveConfig();
|
2014-05-21 18:35:51 +00:00
|
|
|
}
|
2014-05-24 19:01:21 +00:00
|
|
|
|
2014-04-09 21:00:23 +00:00
|
|
|
$('#settings').modal("hide");
|
2014-02-01 19:23:19 +00:00
|
|
|
};
|
|
|
|
|
2014-02-12 11:10:44 +00:00
|
|
|
$scope.restart = function () {
|
2014-04-16 13:16:44 +00:00
|
|
|
restarting = true;
|
2014-08-10 22:28:04 +00:00
|
|
|
$('#restarting').modal();
|
2014-04-30 20:02:34 +00:00
|
|
|
$http.post(urlbase + '/restart');
|
2014-02-12 11:10:44 +00:00
|
|
|
$scope.configInSync = true;
|
2014-05-28 15:26:38 +00:00
|
|
|
|
|
|
|
// Switch webpage protocol if needed
|
|
|
|
if($scope.protocolChanged){
|
|
|
|
var protocol = 'http';
|
|
|
|
|
|
|
|
if($scope.config.GUI.UseTLS){
|
|
|
|
protocol = 'https';
|
|
|
|
}
|
|
|
|
|
|
|
|
setTimeout(function(){
|
|
|
|
window.location.protocol = protocol;
|
|
|
|
}, 1000);
|
2014-05-28 15:29:08 +00:00
|
|
|
|
|
|
|
$scope.protocolChanged = false;
|
2014-05-28 15:26:38 +00:00
|
|
|
}
|
2014-02-12 11:10:44 +00:00
|
|
|
};
|
|
|
|
|
2014-07-14 08:45:29 +00:00
|
|
|
$scope.upgrade = function () {
|
2014-08-06 12:41:46 +00:00
|
|
|
restarting = true;
|
2014-08-10 22:28:04 +00:00
|
|
|
$('#upgrading').modal();
|
2014-07-14 08:45:29 +00:00
|
|
|
$http.post(urlbase + '/upgrade').success(function () {
|
2014-08-10 22:28:04 +00:00
|
|
|
$('#restarting').modal();
|
2014-08-06 12:41:46 +00:00
|
|
|
$('#upgrading').modal('hide');
|
2014-07-14 08:45:29 +00:00
|
|
|
}).error(function () {
|
2014-08-06 12:41:46 +00:00
|
|
|
$('#upgrading').modal('hide');
|
2014-07-14 08:45:29 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2014-05-20 17:36:37 +00:00
|
|
|
$scope.shutdown = function () {
|
2014-05-21 17:35:56 +00:00
|
|
|
restarting = true;
|
2014-05-20 17:36:37 +00:00
|
|
|
$http.post(urlbase + '/shutdown').success(function () {
|
2014-08-10 22:28:04 +00:00
|
|
|
$('#shutdown').modal();
|
2014-05-20 17:36:37 +00:00
|
|
|
});
|
|
|
|
$scope.configInSync = true;
|
|
|
|
};
|
|
|
|
|
2014-02-01 19:23:19 +00:00
|
|
|
$scope.editNode = function (nodeCfg) {
|
2014-04-09 21:00:23 +00:00
|
|
|
$scope.currentNode = $.extend({}, nodeCfg);
|
2014-02-01 19:23:19 +00:00
|
|
|
$scope.editingExisting = true;
|
2014-04-22 10:01:09 +00:00
|
|
|
$scope.editingSelf = (nodeCfg.NodeID == $scope.myID);
|
2014-02-11 13:34:47 +00:00
|
|
|
$scope.currentNode.AddressesStr = nodeCfg.Addresses.join(', ');
|
2014-05-14 10:55:00 +00:00
|
|
|
$scope.nodeEditor.$setPristine();
|
2014-08-10 22:28:04 +00:00
|
|
|
$('#editNode').modal();
|
2014-02-01 19:23:19 +00:00
|
|
|
};
|
|
|
|
|
2014-05-21 18:06:14 +00:00
|
|
|
$scope.idNode = function () {
|
|
|
|
$('#idqr').modal('show');
|
|
|
|
};
|
|
|
|
|
2014-02-01 19:23:19 +00:00
|
|
|
$scope.addNode = function () {
|
2014-07-28 10:44:46 +00:00
|
|
|
$scope.currentNode = {AddressesStr: 'dynamic', Compression: true};
|
2014-02-01 19:23:19 +00:00
|
|
|
$scope.editingExisting = false;
|
2014-04-22 10:01:09 +00:00
|
|
|
$scope.editingSelf = false;
|
2014-05-14 10:55:00 +00:00
|
|
|
$scope.nodeEditor.$setPristine();
|
2014-08-10 22:28:04 +00:00
|
|
|
$('#editNode').modal();
|
2014-02-01 19:23:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
$scope.deleteNode = function () {
|
|
|
|
$('#editNode').modal('hide');
|
2014-02-10 19:54:37 +00:00
|
|
|
if (!$scope.editingExisting) {
|
2014-02-01 19:23:19 +00:00
|
|
|
return;
|
2014-02-10 19:54:37 +00:00
|
|
|
}
|
2014-02-01 19:23:19 +00:00
|
|
|
|
2014-04-09 21:00:23 +00:00
|
|
|
$scope.nodes = $scope.nodes.filter(function (n) {
|
|
|
|
return n.NodeID !== $scope.currentNode.NodeID;
|
|
|
|
});
|
|
|
|
$scope.config.Nodes = $scope.nodes;
|
2014-02-01 19:23:19 +00:00
|
|
|
|
2014-05-21 19:06:20 +00:00
|
|
|
for (var id in $scope.repos) {
|
2014-05-14 10:55:00 +00:00
|
|
|
$scope.repos[id].Nodes = $scope.repos[id].Nodes.filter(function (n) {
|
2014-04-09 21:00:23 +00:00
|
|
|
return n.NodeID !== $scope.currentNode.NodeID;
|
|
|
|
});
|
|
|
|
}
|
2014-02-01 19:23:19 +00:00
|
|
|
|
2014-06-07 02:00:46 +00:00
|
|
|
$scope.saveConfig();
|
2014-02-10 19:54:37 +00:00
|
|
|
};
|
2014-02-01 19:23:19 +00:00
|
|
|
|
|
|
|
$scope.saveNode = function () {
|
2014-02-10 19:54:37 +00:00
|
|
|
var nodeCfg, done, i;
|
|
|
|
|
2014-02-01 19:23:19 +00:00
|
|
|
$('#editNode').modal('hide');
|
|
|
|
nodeCfg = $scope.currentNode;
|
|
|
|
nodeCfg.Addresses = nodeCfg.AddressesStr.split(',').map(function (x) { return x.trim(); });
|
|
|
|
|
2014-02-10 19:54:37 +00:00
|
|
|
done = false;
|
|
|
|
for (i = 0; i < $scope.nodes.length; i++) {
|
2014-02-01 19:23:19 +00:00
|
|
|
if ($scope.nodes[i].NodeID === nodeCfg.NodeID) {
|
|
|
|
$scope.nodes[i] = nodeCfg;
|
|
|
|
done = true;
|
|
|
|
break;
|
|
|
|
}
|
2014-02-10 19:54:37 +00:00
|
|
|
}
|
2014-02-01 19:23:19 +00:00
|
|
|
|
|
|
|
if (!done) {
|
|
|
|
$scope.nodes.push(nodeCfg);
|
|
|
|
}
|
|
|
|
|
2014-02-10 19:54:37 +00:00
|
|
|
$scope.nodes.sort(nodeCompare);
|
2014-04-09 21:00:23 +00:00
|
|
|
$scope.config.Nodes = $scope.nodes;
|
2014-02-01 19:23:19 +00:00
|
|
|
|
2014-06-07 02:00:46 +00:00
|
|
|
$scope.saveConfig();
|
2014-02-10 19:54:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
$scope.otherNodes = function () {
|
2014-04-09 21:00:23 +00:00
|
|
|
return $scope.nodes.filter(function (n){
|
|
|
|
return n.NodeID !== $scope.myID;
|
|
|
|
});
|
2014-02-10 19:54:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
$scope.thisNode = function () {
|
|
|
|
var i, n;
|
|
|
|
|
|
|
|
for (i = 0; i < $scope.nodes.length; i++) {
|
|
|
|
n = $scope.nodes[i];
|
|
|
|
if (n.NodeID === $scope.myID) {
|
2014-05-20 17:36:37 +00:00
|
|
|
return n;
|
2014-02-10 19:54:37 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-01 19:23:19 +00:00
|
|
|
};
|
|
|
|
|
2014-05-20 17:36:37 +00:00
|
|
|
$scope.allNodes = function () {
|
|
|
|
var nodes = $scope.otherNodes();
|
|
|
|
nodes.push($scope.thisNode());
|
|
|
|
return nodes;
|
|
|
|
};
|
|
|
|
|
2014-02-12 22:18:41 +00:00
|
|
|
$scope.errorList = function () {
|
2014-04-09 21:00:23 +00:00
|
|
|
return $scope.errors.filter(function (e) {
|
|
|
|
return e.Time > $scope.seenError;
|
|
|
|
});
|
2014-02-12 22:18:41 +00:00
|
|
|
};
|
2014-03-08 22:19:33 +00:00
|
|
|
|
2014-02-12 22:18:41 +00:00
|
|
|
$scope.clearErrors = function () {
|
|
|
|
$scope.seenError = $scope.errors[$scope.errors.length - 1].Time;
|
2014-04-30 20:02:34 +00:00
|
|
|
$http.post(urlbase + '/error/clear');
|
2014-02-12 22:18:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
$scope.friendlyNodes = function (str) {
|
|
|
|
for (var i = 0; i < $scope.nodes.length; i++) {
|
|
|
|
var cfg = $scope.nodes[i];
|
|
|
|
str = str.replace(cfg.NodeID, $scope.nodeName(cfg));
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
};
|
|
|
|
|
2014-05-14 10:55:00 +00:00
|
|
|
$scope.repoList = function () {
|
|
|
|
return repoList($scope.repos);
|
2014-05-28 15:26:38 +00:00
|
|
|
};
|
2014-05-14 10:55:00 +00:00
|
|
|
|
2014-04-09 21:00:23 +00:00
|
|
|
$scope.editRepo = function (nodeCfg) {
|
2014-05-25 18:49:08 +00:00
|
|
|
$scope.currentRepo = angular.copy(nodeCfg);
|
|
|
|
$scope.currentRepo.selectedNodes = {};
|
2014-04-09 21:00:23 +00:00
|
|
|
$scope.currentRepo.Nodes.forEach(function (n) {
|
|
|
|
$scope.currentRepo.selectedNodes[n.NodeID] = true;
|
|
|
|
});
|
2014-05-25 18:49:08 +00:00
|
|
|
if ($scope.currentRepo.Versioning && $scope.currentRepo.Versioning.Type === "simple") {
|
|
|
|
$scope.currentRepo.simpleFileVersioning = true;
|
2014-08-21 22:41:17 +00:00
|
|
|
$scope.currentRepo.FileVersioningSelector = "simple";
|
2014-05-25 18:49:08 +00:00
|
|
|
$scope.currentRepo.simpleKeep = +$scope.currentRepo.Versioning.Params.keep;
|
2014-08-21 22:41:17 +00:00
|
|
|
} else if ($scope.currentRepo.Versioning && $scope.currentRepo.Versioning.Type === "staggered") {
|
|
|
|
$scope.currentRepo.staggeredFileVersioning = true;
|
|
|
|
$scope.currentRepo.FileVersioningSelector = "staggered";
|
2014-08-22 16:16:05 +00:00
|
|
|
$scope.currentRepo.staggeredMaxAge = Math.floor(+$scope.currentRepo.Versioning.Params.maxAge / 86400);
|
2014-08-21 22:41:17 +00:00
|
|
|
$scope.currentRepo.staggeredCleanInterval = +$scope.currentRepo.Versioning.Params.cleanInterval;
|
|
|
|
$scope.currentRepo.staggeredVersionsPath = $scope.currentRepo.Versioning.Params.versionsPath;
|
|
|
|
} else {
|
|
|
|
$scope.currentRepo.FileVersioningSelector = "none";
|
2014-05-25 18:49:08 +00:00
|
|
|
}
|
|
|
|
$scope.currentRepo.simpleKeep = $scope.currentRepo.simpleKeep || 5;
|
2014-08-21 22:41:17 +00:00
|
|
|
$scope.currentRepo.staggeredCleanInterval = $scope.currentRepo.staggeredCleanInterval || 3600;
|
|
|
|
$scope.currentRepo.staggeredVersionsPath = $scope.currentRepo.staggeredVersionsPath || "";
|
2014-08-22 16:16:05 +00:00
|
|
|
|
2014-08-31 19:44:06 +00:00
|
|
|
// staggeredMaxAge can validly be zero, which we should not replace
|
|
|
|
// with the default value of 365. So only set the default if it's
|
|
|
|
// actually undefined.
|
|
|
|
if (typeof $scope.currentRepo.staggeredMaxAge === 'undefined') {
|
|
|
|
$scope.currentRepo.staggeredMaxAge = 365;
|
|
|
|
}
|
|
|
|
|
2014-04-09 21:00:23 +00:00
|
|
|
$scope.editingExisting = true;
|
2014-05-14 10:55:00 +00:00
|
|
|
$scope.repoEditor.$setPristine();
|
2014-08-10 22:28:04 +00:00
|
|
|
$('#editRepo').modal();
|
2014-04-09 21:00:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
$scope.addRepo = function () {
|
|
|
|
$scope.currentRepo = {selectedNodes: {}};
|
2014-08-23 17:40:32 +00:00
|
|
|
$scope.currentRepo.RescanIntervalS = 60;
|
2014-08-21 22:41:17 +00:00
|
|
|
$scope.currentRepo.FileVersioningSelector = "none";
|
|
|
|
$scope.currentRepo.simpleKeep = 5;
|
2014-08-22 16:16:05 +00:00
|
|
|
$scope.currentRepo.staggeredMaxAge = 365;
|
2014-08-21 22:41:17 +00:00
|
|
|
$scope.currentRepo.staggeredCleanInterval = 3600;
|
|
|
|
$scope.currentRepo.staggeredVersionsPath = "";
|
2014-04-09 21:00:23 +00:00
|
|
|
$scope.editingExisting = false;
|
2014-05-14 10:55:00 +00:00
|
|
|
$scope.repoEditor.$setPristine();
|
2014-08-10 22:28:04 +00:00
|
|
|
$('#editRepo').modal();
|
2014-04-09 21:00:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
$scope.saveRepo = function () {
|
|
|
|
var repoCfg, done, i;
|
|
|
|
|
|
|
|
$('#editRepo').modal('hide');
|
|
|
|
repoCfg = $scope.currentRepo;
|
|
|
|
repoCfg.Nodes = [];
|
|
|
|
repoCfg.selectedNodes[$scope.myID] = true;
|
|
|
|
for (var nodeID in repoCfg.selectedNodes) {
|
|
|
|
if (repoCfg.selectedNodes[nodeID] === true) {
|
|
|
|
repoCfg.Nodes.push({NodeID: nodeID});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete repoCfg.selectedNodes;
|
|
|
|
|
2014-08-21 22:41:17 +00:00
|
|
|
if (repoCfg.FileVersioningSelector === "simple") {
|
2014-05-25 18:49:08 +00:00
|
|
|
repoCfg.Versioning = {
|
|
|
|
'Type': 'simple',
|
|
|
|
'Params': {
|
|
|
|
'keep': '' + repoCfg.simpleKeep,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
delete repoCfg.simpleFileVersioning;
|
|
|
|
delete repoCfg.simpleKeep;
|
2014-08-21 22:41:17 +00:00
|
|
|
} else if (repoCfg.FileVersioningSelector === "staggered") {
|
|
|
|
repoCfg.Versioning = {
|
|
|
|
'Type': 'staggered',
|
|
|
|
'Params': {
|
2014-08-22 16:16:05 +00:00
|
|
|
'maxAge': '' + (repoCfg.staggeredMaxAge * 86400),
|
2014-08-21 22:41:17 +00:00
|
|
|
'cleanInterval': '' + repoCfg.staggeredCleanInterval,
|
|
|
|
'versionsPath': '' + repoCfg.staggeredVersionsPath,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
delete repoCfg.staggeredFileVersioning;
|
|
|
|
delete repoCfg.staggeredMaxAge;
|
|
|
|
delete repoCfg.staggeredCleanInterval;
|
|
|
|
delete repoCfg.staggeredVersionsPath;
|
2014-08-22 16:16:05 +00:00
|
|
|
|
2014-05-25 18:49:08 +00:00
|
|
|
} else {
|
|
|
|
delete repoCfg.Versioning;
|
|
|
|
}
|
|
|
|
|
2014-05-14 10:55:00 +00:00
|
|
|
$scope.repos[repoCfg.ID] = repoCfg;
|
|
|
|
$scope.config.Repositories = repoList($scope.repos);
|
2014-04-09 21:00:23 +00:00
|
|
|
|
2014-06-07 02:00:46 +00:00
|
|
|
$scope.saveConfig();
|
2014-04-09 21:00:23 +00:00
|
|
|
};
|
|
|
|
|
2014-05-24 19:13:35 +00:00
|
|
|
$scope.sharesRepo = function(repoCfg) {
|
|
|
|
var names = [];
|
|
|
|
repoCfg.Nodes.forEach(function (node) {
|
|
|
|
names.push($scope.nodeName($scope.findNode(node.NodeID)));
|
|
|
|
});
|
|
|
|
names.sort();
|
|
|
|
return names.join(", ");
|
|
|
|
};
|
|
|
|
|
2014-04-09 21:00:23 +00:00
|
|
|
$scope.deleteRepo = function () {
|
|
|
|
$('#editRepo').modal('hide');
|
|
|
|
if (!$scope.editingExisting) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-05-14 10:55:00 +00:00
|
|
|
delete $scope.repos[$scope.currentRepo.ID];
|
|
|
|
$scope.config.Repositories = repoList($scope.repos);
|
2014-04-09 21:00:23 +00:00
|
|
|
|
2014-06-07 02:00:46 +00:00
|
|
|
$scope.saveConfig();
|
2014-04-09 21:00:23 +00:00
|
|
|
};
|
|
|
|
|
2014-06-04 20:00:55 +00:00
|
|
|
$scope.setAPIKey = function (cfg) {
|
|
|
|
cfg.APIKey = randomString(30, 32);
|
|
|
|
};
|
|
|
|
|
2014-06-11 18:04:23 +00:00
|
|
|
$scope.acceptUR = function () {
|
2014-06-17 21:22:19 +00:00
|
|
|
$scope.config.Options.URAccepted = 1000; // Larger than the largest existing report version
|
2014-06-11 18:04:23 +00:00
|
|
|
$scope.saveConfig();
|
|
|
|
$('#ur').modal('hide');
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.declineUR = function () {
|
2014-06-17 21:22:19 +00:00
|
|
|
$scope.config.Options.URAccepted = -1;
|
2014-06-11 18:04:23 +00:00
|
|
|
$scope.saveConfig();
|
|
|
|
$('#ur').modal('hide');
|
2014-05-11 17:43:38 +00:00
|
|
|
};
|
2014-04-09 21:00:23 +00:00
|
|
|
|
2014-06-14 08:58:36 +00:00
|
|
|
$scope.showNeed = function (repo) {
|
|
|
|
$scope.neededLoaded = false;
|
2014-08-10 22:28:04 +00:00
|
|
|
$('#needed').modal();
|
2014-06-14 08:58:36 +00:00
|
|
|
$http.get(urlbase + "/need?repo=" + encodeURIComponent(repo)).success(function (data) {
|
|
|
|
$scope.needed = data;
|
|
|
|
$scope.neededLoaded = true;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.needAction = function (file) {
|
|
|
|
var fDelete = 4096;
|
|
|
|
var fDirectory = 16384;
|
|
|
|
|
|
|
|
if ((file.Flags & (fDelete+fDirectory)) === fDelete+fDirectory) {
|
|
|
|
return 'rmdir';
|
|
|
|
} else if ((file.Flags & fDelete) === fDelete) {
|
|
|
|
return 'rm';
|
|
|
|
} else if ((file.Flags & fDirectory) === fDirectory) {
|
|
|
|
return 'touch';
|
|
|
|
} else {
|
|
|
|
return 'sync';
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-06-16 08:47:02 +00:00
|
|
|
$scope.override = function (repo) {
|
2014-08-15 10:48:36 +00:00
|
|
|
$http.post(urlbase + "/model/override?repo=" + encodeURIComponent(repo));
|
2014-06-16 08:47:02 +00:00
|
|
|
};
|
|
|
|
|
2014-07-07 10:58:56 +00:00
|
|
|
$scope.about = function () {
|
|
|
|
$('#about').modal('show');
|
|
|
|
};
|
|
|
|
|
2014-08-03 19:47:02 +00:00
|
|
|
$scope.showReportPreview = function () {
|
|
|
|
$scope.reportPreview = true;
|
|
|
|
};
|
|
|
|
|
2014-08-15 10:48:36 +00:00
|
|
|
$scope.rescanRepo = function (repo) {
|
|
|
|
$http.post(urlbase + "/scan?repo=" + encodeURIComponent(repo));
|
|
|
|
};
|
|
|
|
|
2014-05-11 17:43:38 +00:00
|
|
|
$scope.init();
|
2014-05-19 22:58:05 +00:00
|
|
|
setInterval($scope.refresh, 10000);
|
2014-01-05 22:54:57 +00:00
|
|
|
});
|
|
|
|
|
2014-05-14 10:55:00 +00:00
|
|
|
function nodeCompare(a, b) {
|
|
|
|
if (typeof a.Name !== 'undefined' && typeof b.Name !== 'undefined') {
|
|
|
|
if (a.Name < b.Name)
|
|
|
|
return -1;
|
|
|
|
return a.Name > b.Name;
|
|
|
|
}
|
|
|
|
if (a.NodeID < b.NodeID) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return a.NodeID > b.NodeID;
|
|
|
|
}
|
|
|
|
|
|
|
|
function repoCompare(a, b) {
|
2014-09-03 16:41:45 +00:00
|
|
|
if (a.ID < b.ID) {
|
2014-05-14 10:55:00 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2014-09-03 16:41:45 +00:00
|
|
|
return a.ID > b.ID;
|
2014-05-14 10:55:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function repoMap(l) {
|
|
|
|
var m = {};
|
|
|
|
l.forEach(function (r) {
|
|
|
|
m[r.ID] = r;
|
|
|
|
});
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
|
|
|
function repoList(m) {
|
|
|
|
var l = [];
|
|
|
|
for (var id in m) {
|
2014-05-28 15:26:38 +00:00
|
|
|
l.push(m[id]);
|
2014-05-14 10:55:00 +00:00
|
|
|
}
|
|
|
|
l.sort(repoCompare);
|
|
|
|
return l;
|
|
|
|
}
|
|
|
|
|
2014-01-09 23:09:27 +00:00
|
|
|
function decimals(val, num) {
|
2014-02-10 19:54:37 +00:00
|
|
|
var digits, decs;
|
|
|
|
|
|
|
|
if (val === 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
digits = Math.floor(Math.log(Math.abs(val)) / Math.log(10));
|
|
|
|
decs = Math.max(0, num - digits);
|
|
|
|
return decs;
|
2014-01-05 22:54:57 +00:00
|
|
|
}
|
|
|
|
|
2014-06-04 20:00:55 +00:00
|
|
|
function randomString(len, bits)
|
|
|
|
{
|
|
|
|
bits = bits || 36;
|
|
|
|
var outStr = "", newStr;
|
|
|
|
while (outStr.length < len)
|
|
|
|
{
|
|
|
|
newStr = Math.random().toString(bits).slice(2);
|
|
|
|
outStr += newStr.slice(0, Math.min(newStr.length, (len - outStr.length)));
|
|
|
|
}
|
2014-06-29 23:42:03 +00:00
|
|
|
return outStr.toLowerCase();
|
2014-06-04 20:00:55 +00:00
|
|
|
}
|
|
|
|
|
2014-07-29 09:06:52 +00:00
|
|
|
function isEmptyObject(obj) {
|
|
|
|
var name;
|
|
|
|
for (name in obj) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-07-29 09:54:00 +00:00
|
|
|
function debounce(func, wait) {
|
|
|
|
var timeout, args, context, timestamp, result, again;
|
2014-07-29 09:06:52 +00:00
|
|
|
|
|
|
|
var later = function() {
|
|
|
|
var last = Date.now() - timestamp;
|
|
|
|
if (last < wait) {
|
|
|
|
timeout = setTimeout(later, wait - last);
|
|
|
|
} else {
|
|
|
|
timeout = null;
|
2014-07-29 09:54:00 +00:00
|
|
|
if (again) {
|
2014-09-04 20:29:53 +00:00
|
|
|
again = false;
|
2014-07-29 09:06:52 +00:00
|
|
|
result = func.apply(context, args);
|
|
|
|
context = args = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return function() {
|
|
|
|
context = this;
|
|
|
|
args = arguments;
|
|
|
|
timestamp = Date.now();
|
2014-07-29 09:54:00 +00:00
|
|
|
var callNow = !timeout;
|
2014-07-29 09:06:52 +00:00
|
|
|
if (!timeout) {
|
|
|
|
timeout = setTimeout(later, wait);
|
|
|
|
result = func.apply(context, args);
|
|
|
|
context = args = null;
|
2014-07-29 09:54:00 +00:00
|
|
|
} else {
|
|
|
|
again = true;
|
2014-07-29 09:06:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2014-02-10 19:54:37 +00:00
|
|
|
syncthing.filter('natural', function () {
|
|
|
|
return function (input, valid) {
|
2014-01-09 23:09:27 +00:00
|
|
|
return input.toFixed(decimals(input, valid));
|
2014-02-10 19:54:37 +00:00
|
|
|
};
|
2014-01-09 23:09:27 +00:00
|
|
|
});
|
|
|
|
|
2014-02-10 19:54:37 +00:00
|
|
|
syncthing.filter('binary', function () {
|
|
|
|
return function (input) {
|
2014-01-05 22:54:57 +00:00
|
|
|
if (input === undefined) {
|
2014-02-10 19:54:37 +00:00
|
|
|
return '0 ';
|
2014-01-05 22:54:57 +00:00
|
|
|
}
|
|
|
|
if (input > 1024 * 1024 * 1024) {
|
|
|
|
input /= 1024 * 1024 * 1024;
|
2014-01-09 23:09:27 +00:00
|
|
|
return input.toFixed(decimals(input, 2)) + ' Gi';
|
2014-01-05 22:54:57 +00:00
|
|
|
}
|
|
|
|
if (input > 1024 * 1024) {
|
|
|
|
input /= 1024 * 1024;
|
2014-01-09 23:09:27 +00:00
|
|
|
return input.toFixed(decimals(input, 2)) + ' Mi';
|
2014-01-05 22:54:57 +00:00
|
|
|
}
|
|
|
|
if (input > 1024) {
|
|
|
|
input /= 1024;
|
2014-01-09 23:09:27 +00:00
|
|
|
return input.toFixed(decimals(input, 2)) + ' Ki';
|
2014-01-05 22:54:57 +00:00
|
|
|
}
|
|
|
|
return Math.round(input) + ' ';
|
2014-02-10 19:54:37 +00:00
|
|
|
};
|
2014-01-05 22:54:57 +00:00
|
|
|
});
|
|
|
|
|
2014-02-10 19:54:37 +00:00
|
|
|
syncthing.filter('metric', function () {
|
|
|
|
return function (input) {
|
2014-01-05 22:54:57 +00:00
|
|
|
if (input === undefined) {
|
2014-02-10 19:54:37 +00:00
|
|
|
return '0 ';
|
2014-01-05 22:54:57 +00:00
|
|
|
}
|
|
|
|
if (input > 1000 * 1000 * 1000) {
|
|
|
|
input /= 1000 * 1000 * 1000;
|
2014-01-09 23:09:27 +00:00
|
|
|
return input.toFixed(decimals(input, 2)) + ' G';
|
2014-01-05 22:54:57 +00:00
|
|
|
}
|
|
|
|
if (input > 1000 * 1000) {
|
|
|
|
input /= 1000 * 1000;
|
2014-01-09 23:09:27 +00:00
|
|
|
return input.toFixed(decimals(input, 2)) + ' M';
|
2014-01-05 22:54:57 +00:00
|
|
|
}
|
|
|
|
if (input > 1000) {
|
|
|
|
input /= 1000;
|
2014-01-09 23:09:27 +00:00
|
|
|
return input.toFixed(decimals(input, 2)) + ' k';
|
2014-01-05 22:54:57 +00:00
|
|
|
}
|
|
|
|
return Math.round(input) + ' ';
|
2014-02-10 19:54:37 +00:00
|
|
|
};
|
2014-01-05 22:54:57 +00:00
|
|
|
});
|
|
|
|
|
2014-02-10 19:54:37 +00:00
|
|
|
syncthing.filter('alwaysNumber', function () {
|
|
|
|
return function (input) {
|
2014-01-05 22:54:57 +00:00
|
|
|
if (input === undefined) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return input;
|
2014-02-10 19:54:37 +00:00
|
|
|
};
|
2014-01-05 22:54:57 +00:00
|
|
|
});
|
2014-02-01 19:23:19 +00:00
|
|
|
|
2014-06-14 08:58:36 +00:00
|
|
|
syncthing.filter('basename', function () {
|
|
|
|
return function (input) {
|
|
|
|
if (input === undefined)
|
|
|
|
return "";
|
|
|
|
var parts = input.split(/[\/\\]/);
|
|
|
|
if (!parts || parts.length < 1) {
|
|
|
|
return input;
|
|
|
|
}
|
|
|
|
return parts[parts.length-1];
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2014-05-14 10:55:00 +00:00
|
|
|
syncthing.directive('uniqueRepo', function() {
|
|
|
|
return {
|
|
|
|
require: 'ngModel',
|
|
|
|
link: function(scope, elm, attrs, ctrl) {
|
|
|
|
ctrl.$parsers.unshift(function(viewValue) {
|
|
|
|
if (scope.editingExisting) {
|
|
|
|
// we shouldn't validate
|
|
|
|
ctrl.$setValidity('uniqueRepo', true);
|
|
|
|
} else if (scope.repos[viewValue]) {
|
|
|
|
// the repo exists already
|
|
|
|
ctrl.$setValidity('uniqueRepo', false);
|
|
|
|
} else {
|
|
|
|
// the repo is unique
|
|
|
|
ctrl.$setValidity('uniqueRepo', true);
|
|
|
|
}
|
|
|
|
return viewValue;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
2014-05-28 03:16:11 +00:00
|
|
|
|
2014-07-18 08:00:02 +00:00
|
|
|
syncthing.directive('validNodeid', function($http) {
|
2014-05-28 03:16:11 +00:00
|
|
|
return {
|
|
|
|
require: 'ngModel',
|
|
|
|
link: function(scope, elm, attrs, ctrl) {
|
|
|
|
ctrl.$parsers.unshift(function(viewValue) {
|
|
|
|
if (scope.editingExisting) {
|
|
|
|
// we shouldn't validate
|
|
|
|
ctrl.$setValidity('validNodeid', true);
|
|
|
|
} else {
|
2014-07-18 08:00:02 +00:00
|
|
|
$http.get(urlbase + '/nodeid?id='+viewValue).success(function (resp) {
|
|
|
|
if (resp.error) {
|
|
|
|
ctrl.$setValidity('validNodeid', false);
|
|
|
|
} else {
|
|
|
|
ctrl.$setValidity('validNodeid', true);
|
|
|
|
}
|
|
|
|
});
|
2014-05-28 03:16:11 +00:00
|
|
|
}
|
|
|
|
return viewValue;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
2014-07-14 12:14:26 +00:00
|
|
|
|
|
|
|
syncthing.directive('modal', function () {
|
|
|
|
return {
|
|
|
|
restrict: 'E',
|
|
|
|
templateUrl: 'modal.html',
|
|
|
|
replace: true,
|
|
|
|
transclude: true,
|
|
|
|
scope: {
|
|
|
|
title: '@',
|
|
|
|
status: '@',
|
|
|
|
icon: '@',
|
|
|
|
close: '@',
|
|
|
|
large: '@',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|