Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mail-smtp.controller.js « smtp « angularjs « CoreAdminHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1ef0ce0510ed36496b558f23d2ad79730122c86b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*!
 * Piwik - free/libre analytics platform
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

/**
 * Controller to save mail smtp settings
 */
(function () {
    angular.module('piwikApp').controller('MailSmtpController', MailSmtpController);

    MailSmtpController.$inject = ['$scope', 'piwikApi'];

    function MailSmtpController($scope, piwikApi) {

        var self = this;
        this.isLoading = false;

        this.save = function () {

            this.isLoading = true;

            piwikApi.withTokenInUrl();
            piwikApi.post({module: 'CoreAdminHome', action: 'setMailSettings'}, {
                mailUseSmtp: this.enabled ? '1' : '0',
                mailPort: this.mailPort,
                mailHost: this.mailHost,
                mailType: this.mailType,
                mailUsername: this.mailUsername,
                mailPassword: this.mailPassword,
                mailEncryption: this.mailEncryption,
            }).then(function (success) {

                self.isLoading = false;

                var UI = require('piwik/UI');
                var notification = new UI.Notification();
                notification.show(_pk_translate('CoreAdminHome_SettingsSaveSuccess'), {
                    id: 'generalSettings', context: 'success'
                });
                notification.scrollToNotification();

            }, function () {
                self.isLoading = false;
            });
        };
    }
})();