aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@angular/cli/commands/analytics-impl.js
blob: 9384ee633a789943ecdb10fe8fe9987d95e43356 (plain) (blame)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
"use strict";
/**
 * @license
 * Copyright Google LLC All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://angular.io/license
 */
Object.defineProperty(exports, "__esModule", { value: true });
exports.AnalyticsCommand = void 0;
const analytics_1 = require("../models/analytics");
const command_1 = require("../models/command");
const analytics_2 = require("./analytics");
class AnalyticsCommand extends command_1.Command {
    async run(options) {
        // Our parser does not support positional enums (won't report invalid parameters). Do the
        // validation manually.
        // TODO(hansl): fix parser to better support positionals. This would be a breaking change.
        if (options.settingOrProject === undefined) {
            if (options['--']) {
                // The user passed positional arguments but they didn't validate.
                this.logger.error(`Argument ${JSON.stringify(options['--'][0])} is invalid.`);
                this.logger.error(`Please provide one of the following value: on, off, ci or project.`);
                return 1;
            }
            else {
                // No argument were passed.
                await this.printHelp();
                return 2;
            }
        }
        else if (options.settingOrProject == analytics_2.SettingOrProject.Project &&
            options.projectSetting === undefined) {
            this.logger.error(`Argument ${JSON.stringify(options.settingOrProject)} requires a second ` +
                `argument of one of the following value: on, off.`);
            return 2;
        }
        try {
            switch (options.settingOrProject) {
                case analytics_2.SettingOrProject.Off:
                    (0, analytics_1.setAnalyticsConfig)('global', false);
                    break;
                case analytics_2.SettingOrProject.On:
                    (0, analytics_1.setAnalyticsConfig)('global', true);
                    break;
                case analytics_2.SettingOrProject.Ci:
                    (0, analytics_1.setAnalyticsConfig)('global', 'ci');
                    break;
                case analytics_2.SettingOrProject.Project:
                    switch (options.projectSetting) {
                        case analytics_2.ProjectSetting.Off:
                            (0, analytics_1.setAnalyticsConfig)('local', false);
                            break;
                        case analytics_2.ProjectSetting.On:
                            (0, analytics_1.setAnalyticsConfig)('local', true);
                            break;
                        case analytics_2.ProjectSetting.Prompt:
                            await (0, analytics_1.promptProjectAnalytics)(true);
                            break;
                        default:
                            await this.printHelp();
                            return 3;
                    }
                    break;
                case analytics_2.SettingOrProject.Prompt:
                    await (0, analytics_1.promptGlobalAnalytics)(true);
                    break;
                default:
                    await this.printHelp();
                    return 4;
            }
        }
        catch (err) {
            this.logger.fatal(err.message);
            return 1;
        }
        return 0;
    }
}
exports.AnalyticsCommand = AnalyticsCommand;