Files
cloudron-box/src/js/main.js

170 lines
6.2 KiB
JavaScript
Raw Normal View History

2018-01-22 13:01:38 -08:00
'use strict';
/* global angular */
/* global $ */
2019-01-17 13:26:47 +01:00
angular.module('Application').controller('MainController', ['$scope', '$route', '$timeout', '$location', '$interval', 'Client', function ($scope, $route, $timeout, $location, $interval, Client) {
2018-06-25 18:04:16 -07:00
$scope.initialized = false; // used to animate the UI
2018-01-22 13:01:38 -08:00
$scope.user = Client.getUserInfo();
$scope.installedApps = Client.getInstalledApps();
$scope.config = {};
$scope.client = Client;
$scope.subscription = {};
$scope.notificationCount = 0;
2018-01-22 13:01:38 -08:00
$scope.hideNavBarActions = $location.path() === '/logs';
$scope.backgroundImageUrl = '';
2018-01-22 13:01:38 -08:00
$scope.reboot = {
busy: false,
show: function () {
$scope.reboot.busy = false;
$('#rebootModal').modal('show');
},
submit: function () {
$scope.reboot.busy = true;
Client.reboot(function (error) {
if (error) return Client.error(error);
$('#rebootModal').modal('hide');
// trigger refetch to show offline banner
$timeout(function () { Client.getStatus(function () {}); }, 5000);
});
}
};
2018-01-22 13:01:38 -08:00
$scope.isActive = function (url) {
if (!$route.current) return false;
return $route.current.$$route.originalPath.indexOf(url) === 0;
};
$scope.logout = function (event) {
event.stopPropagation();
$scope.initialized = false;
Client.logout();
};
$scope.openSubscriptionSetup = function () {
Client.openSubscriptionSetup($scope.subscription);
2018-01-22 13:01:38 -08:00
};
// NOTE: this function is exported and called from the appstore.js
$scope.updateSubscriptionStatus = function () {
Client.getSubscription(function (error, subscription) {
if (error && error.statusCode === 412) return; // ignore if not yet registered
if (error && error.statusCode === 402) return; // ignore if not yet registered
if (error) return console.error(error);
2018-03-28 14:32:21 +02:00
$scope.subscription = subscription;
});
};
function refreshNotifications() {
if (!Client.getUserInfo().isAtLeastAdmin) return;
Client.getNotifications({ acknowledged: false }, 1, 100, function (error, results) { // counter maxes out at 100
if (error) console.error(error);
else $scope.notificationCount = results.length;
});
}
2019-01-08 12:36:08 +01:00
// update state of acknowledged notification
$scope.notificationAcknowledged = function () {
if ($scope.notificationCount === 0) return; // already down to 0
$scope.notificationCount--;
2019-01-08 12:36:08 +01:00
};
function init() {
Client.getStatus(function (error, status) {
if (error) return Client.initError(error, init);
// WARNING if anything about the routing is changed here test these use-cases:
//
// 1. Caas
// 3. selfhosted restore
// 4. local development with gulp develop
if (!status.activated) {
console.log('Not activated yet, redirecting', status);
if (status.restore.active || status.restore.errorMessage) { // show the error message in restore page
window.location.href = '/restore.html' + window.location.search;
} else {
window.location.href = (status.adminFqdn ? '/setup.html' : '/setupdns.html') + window.location.search;
}
return;
}
2018-01-22 13:01:38 -08:00
// support local development with localhost check
if (window.location.hostname !== status.adminFqdn && window.location.hostname !== 'localhost' && !window.location.hostname.startsWith('192.')) {
// user is accessing by IP or by the old admin location (pre-migration)
window.location.href = '/setupdns.html' + window.location.search;
return;
}
2018-01-22 13:01:38 -08:00
// check version and force reload if needed
if (!localStorage.version) {
localStorage.version = status.version;
} else if (localStorage.version !== status.version) {
localStorage.version = status.version;
window.location.reload(true);
}
console.log('Running dashboard version ', localStorage.version);
// get user profile as the first thing. this populates the "scope" and affects subsequent API calls
Client.refreshUserInfo(function (error) {
if (error) return Client.initError(error, init);
2018-01-22 13:01:38 -08:00
Client.refreshConfig(function (error) {
if (error) return Client.initError(error, init);
2018-01-22 13:01:38 -08:00
Client.refreshAvailableLanguages(function (error) {
if (error) return Client.initError(error, init);
2018-01-22 13:01:38 -08:00
Client.refreshInstalledApps(function (error) {
if (error) return Client.initError(error, init);
2018-01-22 13:01:38 -08:00
// now mark the Client to be ready
Client.setReady();
2018-01-22 13:01:38 -08:00
$scope.config = Client.getConfig();
2018-01-22 13:01:38 -08:00
document.getElementById('mainContentContainer').style.backgroundImage = 'url("' + Client.getBackgroundImageUrl() + '")';
$scope.initialized = true;
2020-07-10 10:43:08 -07:00
if (Client.getConfig().mandatory2FA && !Client.getUserInfo().twoFactorAuthenticationEnabled) {
$location.path('/profile').search({ setup2fa: true });
return;
}
2018-01-22 13:01:38 -08:00
$interval(refreshNotifications, 60 * 1000);
refreshNotifications();
$scope.updateSubscriptionStatus();
});
});
2018-01-22 13:01:38 -08:00
});
});
});
}
2018-01-22 13:01:38 -08:00
Client.onConfig(function (config) {
if (config.cloudronName) {
document.title = config.cloudronName;
}
});
init();
2018-01-22 13:01:38 -08:00
// setup all the dialog focus handling
['updateModal'].forEach(function (id) {
$('#' + id).on('shown.bs.modal', function () {
2019-05-05 09:05:06 -07:00
$(this).find('[autofocus]:first').focus();
2018-01-22 13:01:38 -08:00
});
});
}]);