Change designer to plugin in code
[sdc.git] / catalog-ui / src / app / models / app-config.ts
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 'use strict';
22 export interface IApi {
23     baseUrl:string;
24
25     //***** NEW API *******//
26     GET_component:string;
27     PUT_component:string;
28     GET_component_validate_name:string;
29     POST_changeLifecycleState:string;
30     component_api_root:string;
31     //*********//
32
33     GET_user:string;
34     GET_user_authorize:string;
35     GET_all_users:string;
36     POST_create_user;
37     DELETE_delete_user;
38     POST_edit_user_role;
39     GET_resource:string;
40     GET_resources_latestversion_notabstract:string;
41     GET_resources_certified_not_abstract:string;
42     GET_resources_certified_abstract:string;
43     PUT_resource:string;
44     GET_resource_property:string;
45     GET_resource_artifact:string;
46     GET_download_instance_artifact:string;
47     POST_instance_artifact:string;
48     GET_resource_additional_information:string;
49     GET_service_artifact:string;
50     GET_resource_interface_artifact:string;
51     GET_resource_api_artifact:string;
52     GET_resource_validate_name:string;
53     GET_resource_artifact_types:string;
54     GET_activity_log:string;
55     GET_configuration_ui:string;
56     GET_plugins_configuration:string;
57     GET_service:string;
58     GET_ecomp_menu_items:string;
59     GET_service_validate_name:string;
60     GET_service_distributions:string;
61     GET_service_distributions_components:string;
62     POST_service_distribution_deploy:string;
63     GET_element:string;
64     GET_catalog:string;
65     GET_resource_category:string;
66     GET_service_category:string;
67     resource_instance:string;
68     GET_resource_instance_property:string;
69     GET_relationship:string;
70     GET_lifecycle_state_resource:string;
71     GET_lifecycle_state_CHECKIN:string;
72     GET_lifecycle_state_CERTIFICATIONREQUEST:string;
73     GET_lifecycle_state_UNDOCHECKOUT:string;
74     root:string;
75     no_proxy_root:string;
76     PUT_service:string;
77     GET_download_artifact:string;
78     GET_SDC_Version:string;
79     GET_categories:string;
80     POST_category:string;
81     POST_subcategory:string;
82     POST_change_instance_version:string;
83     GET_requirements_capabilities:string;
84     GET_onboarding:string;
85     GET_component_from_csar_uuid:string;
86     kibana:string;
87 }
88
89 export interface ILogConfig {
90     minLogLevel:string;
91     prefix:string;
92 }
93
94 export interface ICookie {
95     junctionName:string;
96     prefix:string;
97     userIdSuffix:string;
98     userFirstName:string;
99     userLastName:string;
100     userEmail:string;
101 }
102 export interface IUserTypes {
103     admin:any;
104     designer:any;
105     tester:any;
106 }
107
108 export interface IConfigStatuses {
109     inDesign:IConfigStatus;
110     readyForCertification:IConfigStatus;
111     inCertification:IConfigStatus;
112     certified:IConfigStatus;
113     distributed:IConfigStatus;
114 }
115
116 export interface IConfigStatus {
117     name:string;
118     values:Array<string>;
119 }
120
121 export interface IConfigRoles {
122     ADMIN:IConfigRole;
123     DESIGNER:IConfigRole;
124     TESTER:IConfigRole;
125     OPS:IConfigRole;
126     GOVERNOR:IConfigRole;
127 }
128
129 export interface IConfigRole {
130     pages:Array<string>;
131     states:IConfigState;
132 }
133
134 export interface IConfigState {
135     NOT_CERTIFIED_CHECKOUT:Array<IConfigDistribution>;
136     NOT_CERTIFIED_CHECKIN:Array<IConfigDistribution>;
137     READY_FOR_CERTIFICATION:Array<IConfigDistribution>;
138     CERTIFICATION_IN_PROGRESS:Array<IConfigDistribution>;
139     CERTIFIED:Array<IConfigDistribution>;
140 }
141
142 export interface IConfigDistribution {
143     DISTRIBUTION_NOT_APPROVED:Array<ConfigMenuItem>;
144     DISTRIBUTION_APPROVED:Array<ConfigMenuItem>;
145     DISTRIBUTED:Array<ConfigMenuItem>;
146     DISTRIBUTION_REJECTED:Array<ConfigMenuItem>;
147 }
148
149 export interface IConfirmationMessage {
150     showComment:boolean;
151     title:string;
152     message:string;
153 }
154
155 export interface IConfirmationMessages {
156     checkin:IConfirmationMessage;
157     checkout:IConfirmationMessage;
158     certify:IConfirmationMessage;
159     failCertification:IConfirmationMessage;
160     certificationRequest:IConfirmationMessage;
161     approve:IConfirmationMessage;
162     reject:IConfirmationMessage;
163 }
164
165 export interface IAlertMessage {
166     title:string;
167     message:string;
168 }
169
170 export interface IAlertMessages {
171     deleteInstance:IAlertMessage;
172     exitWithoutSaving:IConfirmationMessage;
173 }
174
175 class ConfigMenuItem {
176     text:string;
177     action:string;
178     url:string;
179     disable:boolean = false;
180 }
181
182 export interface IAppConfigurtaion {
183     environment:string;
184     api:IApi;
185     hostedApplications:Array<IHostedApplication>;
186     resourceTypesFilter:IResourceTypesFilter;
187     logConfig:ILogConfig;
188     cookie:ICookie;
189     imagesPath:string;
190     toscaFileExtension:string;
191     csarFileExtension:string;
192     testers:Array<ITester>
193     tutorial:any;
194     roles:Array<string>;
195     cpEndPointInstances:Array<string>;
196     openSource:boolean;
197     showOutlook:boolean;
198     validationConfigPath:string;
199 }
200
201 export interface IResourceTypesFilter {
202     resource:Array<string>;
203 }
204
205 export interface IHostedApplication {
206     moduleName:string;
207     navTitle:string;
208     defaultState:string;
209     exists?:boolean;
210     state:IHostedApplicationState;
211 }
212
213 export interface IHostedApplicationState {
214     name:string;
215     url:string;
216     relativeHtmlPath:string;
217     controllerName:string;
218 }
219
220 export interface ITester {
221     email:string;
222 }
223
224 export interface IAppMenu {
225     roles:IConfigRoles;
226     confirmationMessages:IConfirmationMessages;
227     alertMessages:IAlertMessages;
228     statuses:IConfigStatuses;
229     catalogMenuItem:any;
230     categoriesDictionary:any;
231     canvas_buttons:Object;
232     component_workspace_menu_option:any;
233     LifeCycleStatuses:any;
234     DistributionStatuses:any;
235     ChangeLifecycleStateButton:any;
236 }