PDF rausgenommen

This commit is contained in:
aschwarz
2023-01-23 11:03:31 +01:00
parent 82d562a322
commit a6523903eb
28078 changed files with 4247552 additions and 2 deletions

View File

@ -0,0 +1,47 @@
/*!
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
(function () {
angular.module('piwikApp').controller('AnonymousSettingsController', AnonymousSettingsController);
AnonymousSettingsController.$inject = ['piwikApi'];
function AnonymousSettingsController(piwikApi) {
// remember to keep controller very simple. Create a service/factory (model) if needed
var self = this;
function updateSettings(postParams)
{
self.loading = true;
piwikApi.withTokenInUrl();
piwikApi.post({
module: 'UsersManager', action: 'recordAnonymousUserSettings', format: 'json'
}, postParams).then(function (success) {
var UI = require('piwik/UI');
var notification = new UI.Notification();
notification.show(_pk_translate('CoreAdminHome_SettingsSaveSuccess'), {
id: 'anonymousUserSettings', context: 'success'});
notification.scrollToNotification();
self.loading = false;
}, function (errorMessage) {
self.loading = false;
});
}
this.save = function () {
var postParams = {
anonymousDefaultReport: this.defaultReport == '1' ? this.defaultReportWebsite : this.defaultReport,
anonymousDefaultDate: this.defaultDate
};
updateSettings(postParams);
};
}
})();

View File

@ -0,0 +1,103 @@
/*!
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
(function () {
angular.module('piwikApp').controller('PersonalSettingsController', PersonalSettingsController);
PersonalSettingsController.$inject = ['piwikApi', '$window', 'piwik'];
function PersonalSettingsController(piwikApi, $window, piwik) {
// remember to keep controller very simple. Create a service/factory (model) if needed
var self = this;
this.doesRequirePasswordConfirmation = false;
function updateSettings(postParams)
{
self.loading = true;
piwikApi.withTokenInUrl();
piwikApi.post({
module: 'UsersManager', action: 'recordUserSettings', format: 'json'
}, postParams).then(function (success) {
var UI = require('piwik/UI');
var notification = new UI.Notification();
notification.show(_pk_translate('CoreAdminHome_SettingsSaveSuccess'), {
id: 'PersonalSettingsSuccess', context: 'success'});
notification.scrollToNotification();
self.doesRequirePasswordConfirmation = !!self.password;
self.passwordCurrent = '';
self.loading = false;
}, function (errorMessage) {
self.loading = false;
self.passwordCurrent = '';
});
}
this.requirePasswordConfirmation = function () {
this.doesRequirePasswordConfirmation = true;
};
this.regenerateTokenAuth = function () {
var parameters = { userLogin: piwik.userLogin };
self.loading = true;
piwikHelper.modalConfirm('#confirmTokenRegenerate', {yes: function () {
piwikApi.withTokenInUrl();
piwikApi.post({
module: 'API',
method: 'UsersManager.regenerateTokenAuth'
}, parameters).then(function (success) {
$window.location.reload();
self.loading = false;
}, function (errorMessage) {
self.loading = false;
});
}});
};
this.cancelSave = function () {
this.passwordCurrent = '';
};
this.save = function () {
if (this.doesRequirePasswordConfirmation && !this.passwordCurrent) {
angular.element('#confirmChangesWithPassword').openModal({ dismissible: false, ready: function () {
$('.modal.open #currentPassword').focus();
}});
return;
}
angular.element('#confirmChangesWithPassword').closeModal();
var postParams = {
email: this.email,
defaultReport: this.defaultReport == 'MultiSites' ? this.defaultReport : this.site.id,
defaultDate: this.defaultDate,
language: this.language,
timeformat: this.timeformat,
};
if (this.password) {
postParams.password = this.password;
}
if (this.passwordBis) {
postParams.passwordBis = this.passwordBis;
}
if (this.passwordCurrent) {
postParams.passwordConfirmation = this.passwordCurrent;
}
updateSettings(postParams);
};
}
})();