Security/ Package Name changes
[portal.git] / ecomp-portal-widget-ms / widget-ms / src / main / java / org / openecomp / portalapp / widget / service / impl / InitializationServiceImpl.java
diff --git a/ecomp-portal-widget-ms/widget-ms/src/main/java/org/openecomp/portalapp/widget/service/impl/InitializationServiceImpl.java b/ecomp-portal-widget-ms/widget-ms/src/main/java/org/openecomp/portalapp/widget/service/impl/InitializationServiceImpl.java
deleted file mode 100644 (file)
index 4b0c04f..0000000
+++ /dev/null
@@ -1,170 +0,0 @@
-/*-
- * ============LICENSE_START==========================================
- * ONAP Portal
- * ===================================================================
- * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
- * ===================================================================
- *
- * Unless otherwise specified, all software contained herein is licensed
- * under the Apache License, Version 2.0 (the “License”);
- * you may not use this software except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *             http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * Unless otherwise specified, all documentation contained herein is licensed
- * under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
- * you may not use this documentation except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *             https://creativecommons.org/licenses/by/4.0/
- *
- * Unless required by applicable law or agreed to in writing, documentation
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * ============LICENSE_END============================================
- *
- * ECOMP is a trademark and service mark of AT&T Intellectual Property.
- */
-package org.openecomp.portalapp.widget.service.impl;
-
-import java.io.File;
-import java.io.FileOutputStream;
-import java.io.InputStream;
-import java.io.OutputStream;
-import java.util.HashSet;
-
-import javax.transaction.Transactional;
-
-import org.openecomp.portalapp.widget.domain.MicroserviceData;
-import org.openecomp.portalapp.widget.domain.MicroserviceParameter;
-import org.openecomp.portalapp.widget.domain.RoleApp;
-import org.openecomp.portalapp.widget.domain.WidgetCatalog;
-import org.openecomp.portalapp.widget.service.InitializationService;
-import org.openecomp.portalapp.widget.service.MicroserviceService;
-import org.openecomp.portalapp.widget.service.StorageService;
-import org.openecomp.portalapp.widget.service.WidgetCatalogService;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.beans.factory.annotation.Value;
-import org.springframework.context.annotation.EnableAspectJAutoProxy;
-import org.springframework.stereotype.Service;
-
-/**
- * Uploads widget zip archives to Portal.
- */
-@Service("initService")
-@Transactional
-@org.springframework.context.annotation.Configuration
-@EnableAspectJAutoProxy
-public class InitializationServiceImpl implements InitializationService {
-
-       private static final String BASIC_AUTH = "Basic Authentication";
-       private static final String PARAMETER_KEY = "resourceType";
-       private static final Logger logger = LoggerFactory.getLogger(InitializationServiceImpl.class);
-
-       @Autowired
-       WidgetCatalogService widgetCatalogService;
-
-       @Autowired
-       StorageService storageService;
-
-       @Autowired
-       MicroserviceService microserviceService;
-
-       @Value("${account.user.name}")
-       String account_user;
-
-       @Value("${account.user.password}")
-       String account_password;
-
-       @Value("${initialization.widgetData.url}")
-       String widgetData_url;
-
-       @Override
-       public void initialize() {
-               initCommonWidget("News");
-               initCommonWidget("Events");
-               initCommonWidget("Resources");
-       }
-
-       private void initCommonWidget(String name) {
-
-               final String newServiceName = name + " Microservice";
-
-               Long serviceId = microserviceService.getMicroserviceIdByName(newServiceName);
-
-               if (serviceId == null) {
-                       MicroserviceData newService = new MicroserviceData();
-                       newService.setName(newServiceName);
-                       newService.setDesc(name);
-                       newService.setAppId(1);
-                       newService.setUrl(widgetData_url);
-                       newService.setSecurityType(BASIC_AUTH);
-                       newService.setUsername(account_user);
-                       newService.setPassword(account_password);
-                       newService.setActive("Y");
-                       serviceId = microserviceService.saveMicroserivce(newService);
-
-                       MicroserviceParameter parameter = new MicroserviceParameter();
-                       parameter.setServiceId(serviceId);
-                       parameter.setPara_key(PARAMETER_KEY);
-                       String parameter_value = null;
-                       switch (name.toLowerCase()) {
-                       case "news":
-                               parameter_value = "NEWS";
-                               break;
-                       case "events":
-                               parameter_value = "EVENTS";
-                               break;
-                       case "resources":
-                               parameter_value = "IMPORTANTRESOURCES";
-                               break;
-                       }
-                       parameter.setPara_value(parameter_value);
-                       microserviceService.saveMicroserviceParameter(parameter);
-               }
-
-               if (!widgetCatalogService.getWidgetIdByName(name)) {
-                       WidgetCatalog newWidget = new WidgetCatalog();
-                       newWidget.setName(name);
-                       newWidget.setDesc(name);
-                       newWidget.setAllowAllUser("1");
-                       String fileLocation = name.toLowerCase() + "-widget.zip";
-                       newWidget.setFileLocation(fileLocation);
-                       newWidget.setServiceId(serviceId);
-                       newWidget.setWidgetRoles(new HashSet<RoleApp>());
-                       long widgetId = widgetCatalogService.saveWidgetCatalog(newWidget);
-
-                       File tmpZipFile = new File("/tmp/" + fileLocation);
-                       InputStream fileInputStream = null;
-                       OutputStream outputStream = null;
-                       try {
-                               fileInputStream = this.getClass().getClassLoader().getResourceAsStream(fileLocation);
-                               outputStream = new FileOutputStream(tmpZipFile);
-                               int read = 0;
-                               byte[] bytes = new byte[4096];
-                               while ((read = fileInputStream.read(bytes)) != -1) {
-                                       outputStream.write(bytes, 0, read);
-                               }
-                               outputStream.close();
-                               fileInputStream.close();
-                       } catch (Exception e) {
-                               logger.error(
-                                               "Exception occurred while performing InitializationServiceImpl.initCommonWidget in widget microservices. Details:", e);
-                       }
-                       storageService.initSave(tmpZipFile, newWidget, widgetId);
-                       tmpZipFile.delete();
-               }
-       }
-}