Create SVG in UI
[clamp.git] / src / main / java / org / onap / clamp / loop / template / LoopTemplatesService.java
index 279d602..2938213 100644 (file)
 package org.onap.clamp.loop.template;
 
 import java.util.List;
-import org.onap.clamp.clds.exception.sdc.controller.BlueprintParserException;
-import org.onap.clamp.clds.sdc.controller.installer.BlueprintMicroService;
-import org.onap.clamp.clds.sdc.controller.installer.BlueprintParser;
 import org.onap.clamp.clds.sdc.controller.installer.ChainGenerator;
-import org.onap.clamp.clds.util.drawing.SvgFacade;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 
@@ -40,9 +36,6 @@ public class LoopTemplatesService {
     @Autowired
     ChainGenerator chainGenerator;
 
-    @Autowired
-    private SvgFacade svgFacade;
-
     /**
      * Constructor.
      */
@@ -56,24 +49,6 @@ public class LoopTemplatesService {
         return loopTemplatesRepository.save(loopTemplate);
     }
 
-    /**
-     * Saves or updates loop template Object.
-     *
-     * @param templateName the loop template name
-     * @param loopTemplate the loop template object
-     * @return the loop template
-     * @throws BlueprintParserException In case of issues with the blueprint
-     *         parsing
-     */
-    public LoopTemplate saveOrUpdateLoopTemplateByName(String templateName,
-        LoopTemplate loopTemplate) throws BlueprintParserException {
-
-        if (getLoopTemplate(templateName) != null) {
-            loopTemplate.setName(getLoopTemplate(templateName).getName());
-        }
-        return saveOrUpdateLoopTemplate(createTemplateFromBlueprint(templateName, loopTemplate));
-    }
-
     public List<String> getLoopTemplateNames() {
         return loopTemplatesRepository.getAllLoopTemplateNames();
     }
@@ -89,23 +64,4 @@ public class LoopTemplatesService {
     public void deleteLoopTemplate(String name) {
         loopTemplatesRepository.deleteById(name);
     }
-
-    private LoopTemplate createTemplateFromBlueprint(String templateName, LoopTemplate loopTemplate)
-        throws BlueprintParserException {
-
-        String blueprintYaml = loopTemplate.getBlueprint();
-        List<BlueprintMicroService> microServicesChain =
-            chainGenerator.getChainOfMicroServices(BlueprintParser.getMicroServices(blueprintYaml));
-        if (microServicesChain.isEmpty()) {
-            microServicesChain = BlueprintParser.fallbackToOneMicroService();
-        }
-        loopTemplate.setSvgRepresentation(svgFacade.getSvgImage(microServicesChain));
-        loopTemplate.setName(templateName);
-
-        LoopTemplate existingTemplate = getLoopTemplate(templateName);
-        if (existingTemplate != null) {
-            loopTemplate.setName(existingTemplate.getName());
-        }
-        return loopTemplate;
-    }
 }