1/**
2 * common Constant service
3 *
4 * @module app/common/services/constants
5 * @exports Constants
6 * @name Constants
7
8 * @version 0.0.1
9 */
10
11window.angular && (function (angular) {
12    'use strict';
13
14    angular
15        .module('app.common.services')
16        .service('Constants', function () {
17            return {
18                LOGIN_CREDENTIALS: {
19                    username: "test",
20                    password: "testpass",
21                },
22                API_CREDENTIALS: {
23                    host: 'https://9.3.181.64',
24                    mock_host: 'http://localhost:3000'
25                },
26                API_RESPONSE: {
27                    ERROR_STATUS: 'error',
28                    ERROR_MESSAGE: '401 Unauthorized',
29                    SUCCESS_STATUS: 'ok',
30                    SUCCESS_MESSAGE: '200 OK'
31                },
32                CHASSIS_POWER_STATE: {
33                    on: 'On',
34                    off: 'Off'
35                },
36                HOST_STATE_TEXT: {
37                    on: 'Running',
38                    off: 'Off',
39                    booting: 'Quiesced',
40                    unreachable: 'Unreachable'
41                },
42                HOST_STATE: {
43                    on: 1,
44                    off: -1,
45                    booting: 0,
46                    unreachable: -2
47                },
48                LED_STATE: {
49                    on: true,
50                    off: false
51                },
52                LED_STATE_TEXT: {
53                    on: 'on',
54                    off: 'off'
55                },
56                SEVERITY_TO_HEALTH_MAP:{
57                    Emergency: 'Critical',
58                    Alert: 'Critical',
59                    Critical: 'Critical',
60                    Error: 'Warning',
61                    Warning: 'Warning',
62                    Notice: 'Good',
63                    Debug: 'Good',
64                    Informational: 'Good'
65                },
66                SEVERITY_TO_PRIORITY_MAP:{
67                    Emergency: 'High',
68                    Alert: 'High',
69                    Critical: 'High',
70                    Error: 'High',
71                    Warning: 'Medium',
72                    Notice: 'Low',
73                    Debug: 'Low',
74                    Informational: 'Low'
75                },
76                PAGINATION: {
77                    LOG_ITEMS_PER_PAGE: 25
78                },
79                HARDWARE: {
80                  component_key_filter: '/xyz/openbmc_project/inventory/system',
81                  parent_components: [
82                   /xyz\/openbmc_project\/inventory\/system\/chassis\/motherboard\/cpu\d+\//
83                  ],
84                  uppercase_titles: [
85                   'cpu', 'dimm'
86                  ]
87                },
88                SENSOR_UNIT_MAP: {
89                  'xyz.openbmc_project.Sensor.Value.Unit.RPMS': 'rpms',
90                  'xyz.openbmc_project.Sensor.Value.Unit.DegreesC': 'C',
91                  'xyz.openbmc_project.Sensor.Value.Unit.Volts': 'volts',
92                  'xyz.openbmc_project.Sensor.Value.Unit.Meters': 'meters',
93                  'xyz.openbmc_project.Sensor.Value.Unit.Watts': 'watts',
94                  'xyz.openbmc_project.Sensor.Value.Unit.Amperes': 'amperes',
95                  'xyz.openbmc_project.Sensor.Value.Unit.Joules': 'joules'
96                },
97                SERVER_HEALTH: {
98                    critical: 'Critical',
99                    warning: 'Warning',
100                    good: 'Good',
101                    unknown: 'Unknown'
102                },
103                SENSOR_SORT_ORDER: [
104                   'xyz.openbmc_project.Sensor.Value.Unit.DegreesC',
105                   'xyz.openbmc_project.Sensor.Value.Unit.RPMS',
106                   'xyz.openbmc_project.Sensor.Value.Unit.Meters',
107                   'xyz.openbmc_project.Sensor.Value.Unit.Volts',
108                   'xyz.openbmc_project.Sensor.Value.Unit.Amperes',
109                   'xyz.openbmc_project.Sensor.Value.Unit.Joules',
110                   'xyz.openbmc_project.Sensor.Value.Unit.Meters'
111                ],
112                SENSOR_SORT_ORDER_DEFAULT: 8
113            };
114        });
115
116})(window.angular);
117