Add Start/stop routes 84/85084/1
authorsebdet <sebastien.determe@intl.att.com>
Thu, 11 Apr 2019 15:58:36 +0000 (17:58 +0200)
committersebdet <sebastien.determe@intl.att.com>
Thu, 11 Apr 2019 15:58:36 +0000 (17:58 +0200)
Add Start/stop routes for policy control, it's obviously working the PDP
group

Issue-ID: CLAMP-303
Change-Id: I16cafa46ee39b6114af9b36f7382b7c2401edaf1
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
src/main/resources/clds/camel/rest/clamp-api-v2.xml
src/main/resources/clds/camel/routes/flexible-flow.xml

index e6dc27c..a823c09 100644 (file)
                                        uri="bean:org.onap.clamp.operation.LoopOperation?method=unDeployLoop(${header.loopName})" />
                        </route>
                </put>
+               <put
+                       uri="/v2/loop/stop/{loopName}"
+                       outType="org.onap.clamp.loop.Loop"
+                       produces="application/json">
+                       <route>
+                               <log
+                                       loggingLevel="INFO"
+                                       message="Receive STOP request for loop: ${header.loopName}" />
+                       </route>
+                       <to
+                               uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
+                       <to uri="direct:load-loop" />
+                       <to uri="direct:remove-all-policy-from-active-pdp-group" />
+                       <log
+                               loggingLevel="INFO"
+                               message="STOP request successfully executed for loop: ${body}" />
+                       <to
+                               uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('STOP request successfully executed','INFO',${header.LoopObject})" />
+                       <to
+                               uri="bean:org.onap.clamp.loop.LoopController?method=getLoop(${header.loopName})" />
+               </put>
+               <put
+                       uri="/v2/loop/start/{loopName}"
+                       outType="org.onap.clamp.loop.Loop"
+                       produces="application/json">
+                       <route>
+                               <log
+                                       loggingLevel="INFO"
+                                       message="Receive START request for loop: ${header.loopName}" />
+                       </route>
+                       <to
+                               uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
+                       <to uri="direct:load-loop" />
+                       <to uri="direct:add-all-to-active-pdp-group" />
+                       <log
+                               loggingLevel="INFO"
+                               message="START request successfully executed for loop: ${body}" />
+                       <to
+                               uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('START request successfully executed','INFO',${header.LoopObject})" />
+                       <to
+                               uri="bean:org.onap.clamp.loop.LoopController?method=getLoop(${header.loopName})" />
+               </put>
                <put
                        uri="/v2/loop/submit/{loopName}"
                        outType="org.onap.clamp.loop.Loop"
index 3e69fa4..683737a 100644 (file)
 
        <route id="create-micro-service-policy">
                <from uri="direct:create-micro-service-policy" />
-               <to uri="direct:check-raise-http-exception-flag" />
+               
                <log
                        loggingLevel="INFO"
                        message="Creating Micro Service Policy: ${header.microServicePolicy.getName()}" />
                        loggingLevel="INFO"
                        message="Endpoint to create microservice policy: ${header.CamelHttpMethod} ${header.CamelHttpUri}"></log>
                <toD
-                       uri="http4://policyhost:8085?throwExceptionOnFailure=${header.RaiseHttpExceptionFlag}&amp;httpClient.connectTimeout=10000&amp;authUsername={{clamp.config.policy.userName}}&amp;authPassword={{clamp.config.policy.password}}" />
+                       uri="http4://policyhost:8085?mapHttpMessageHeaders=false&amp;throwExceptionOnFailure=${header.RaiseHttpExceptionFlag}&amp;httpClient.connectTimeout=10000&amp;authUsername={{clamp.config.policy.userName}}&amp;authPassword={{clamp.config.policy.password}}" />
                <to
                        uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('MicroService policy created successfully','INFO',${header.LoopObject})" />
                <to uri="direct:reset-raise-http-exception-flag" />
        </route>
        <route id="delete-micro-service-policy">
                <from uri="direct:delete-micro-service-policy" />
-               <to uri="direct:check-raise-http-exception-flag" />
+               
                <log
                        loggingLevel="INFO"
                        message="Deleting Micro Service Policy: ${header.microServicePolicy.getName()}" />
                        loggingLevel="INFO"
                        message="Endpoint to delete microservice policy: ${header.CamelHttpMethod} ${header.CamelHttpUri}"></log>
                <toD
-                       uri="http4://policyhost:8085?throwExceptionOnFailure=${header.RaiseHttpExceptionFlag}&amp;httpClient.connectTimeout=10000&amp;deleteWithBody=false&amp;mapHttpMessageBody=false&amp;mapHttpMessageFormUrlEncodedBody=false&amp;authUsername={{clamp.config.policy.userName}}&amp;authPassword={{clamp.config.policy.password}}" />
+                       uri="http4://policyhost:8085?mapHttpMessageHeaders=false&amp;throwExceptionOnFailure=${header.RaiseHttpExceptionFlag}&amp;httpClient.connectTimeout=10000&amp;deleteWithBody=false&amp;mapHttpMessageBody=false&amp;mapHttpMessageFormUrlEncodedBody=false&amp;authUsername={{clamp.config.policy.userName}}&amp;authPassword={{clamp.config.policy.password}}" />
                <to
                        uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('MicroService policy deleted successfully','INFO',${header.LoopObject})" />
                <to uri="direct:reset-raise-http-exception-flag" />
 
        <route id="create-operational-policy">
                <from uri="direct:create-operational-policy" />
-               <to uri="direct:check-raise-http-exception-flag" />
+               
                <log
                        loggingLevel="INFO"
                        message="Creating Operational Policy: ${header.operationalPolicy.getName()}" />
                        loggingLevel="INFO"
                        message="Endpoint to create operational policy: ${header.CamelHttpMethod} ${header.CamelHttpUri}"></log>
                <toD
-                       uri="http4://policyhost:8085?throwExceptionOnFailure=${header.RaiseHttpExceptionFlag}&amp;httpClient.connectTimeout=10000&amp;authUsername={{clamp.config.policy.userName}}&amp;authPassword={{clamp.config.policy.password}}" />
+                       uri="http4://policyhost:8085?mapHttpMessageHeaders=false&amp;throwExceptionOnFailure=${header.RaiseHttpExceptionFlag}&amp;httpClient.connectTimeout=10000&amp;authUsername={{clamp.config.policy.userName}}&amp;authPassword={{clamp.config.policy.password}}" />
                <to
                        uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('Operational policy created successfully','INFO',${header.LoopObject})" />
                <to uri="direct:reset-raise-http-exception-flag" />
        </route>
        <route id="delete-operational-policy">
                <from uri="direct:delete-operational-policy" />
-               <to uri="direct:check-raise-http-exception-flag" />
+               
                <log
                        loggingLevel="INFO"
                        message="Deleting Operational Policy: ${header.operationalPolicy.getName()}" />
                        loggingLevel="INFO"
                        message="Endpoint to delete operational policy: ${header.CamelHttpMethod} ${header.CamelHttpUri}"></log>
                <toD
-                       uri="http4://policyhost:8085?throwExceptionOnFailure=${header.RaiseHttpExceptionFlag}&amp;httpClient.connectTimeout=10000&amp;deleteWithBody=false&amp;mapHttpMessageBody=false&amp;mapHttpMessageFormUrlEncodedBody=false&amp;authUsername={{clamp.config.policy.userName}}&amp;authPassword={{clamp.config.policy.password}}" />
+                       uri="http4://policyhost:8085?mapHttpMessageHeaders=false&amp;throwExceptionOnFailure=${header.RaiseHttpExceptionFlag}&amp;httpClient.connectTimeout=10000&amp;deleteWithBody=false&amp;mapHttpMessageBody=false&amp;mapHttpMessageFormUrlEncodedBody=false&amp;authUsername={{clamp.config.policy.userName}}&amp;authPassword={{clamp.config.policy.password}}" />
                <to
                        uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('Operational policy deleted successfully','INFO',${header.LoopObject})" />
                <to uri="direct:reset-raise-http-exception-flag" />
 
        <route id="create-guard-policy">
                <from uri="direct:create-guard-policy" />
-               <to uri="direct:check-raise-http-exception-flag" />
+               
                <log
                        loggingLevel="INFO"
                        message="Creating Guard Policy: ${header.guardPolicy.getKey()}" />
                        loggingLevel="INFO"
                        message="Endpoint to create guard policy: ${header.CamelHttpMethod} ${header.CamelHttpUri}"></log>
                <toD
-                       uri="http4://policyhost:8085?throwExceptionOnFailure=${header.RaiseHttpExceptionFlag}&amp;httpClient.connectTimeout=10000&amp;authUsername={{clamp.config.policy.userName}}&amp;authPassword={{clamp.config.policy.password}}" />
+                       uri="http4://policyhost:8085?mapHttpMessageHeaders=false&amp;throwExceptionOnFailure=${header.RaiseHttpExceptionFlag}&amp;httpClient.connectTimeout=10000&amp;authUsername={{clamp.config.policy.userName}}&amp;authPassword={{clamp.config.policy.password}}" />
                <to
                        uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('Guard policy created successfully','INFO',${header.LoopObject})" />
                <to uri="direct:reset-raise-http-exception-flag" />
        </route>
        <route id="delete-guard-policy">
                <from uri="direct:delete-guard-policy" />
-               <to uri="direct:check-raise-http-exception-flag" />
+               
                <log
                        loggingLevel="INFO"
                        message="Deleting Guard Policy: ${header.guardPolicy.getKey()}" />
        </route>
        <route id="add-all-to-active-pdp-group">
                <from uri="direct:add-all-to-active-pdp-group" />
-               <to uri="direct:check-raise-http-exception-flag" />
+               
                <log
                        loggingLevel="INFO"
                        message="Adding loop policies to PDP Group: ${header.LoopObject.getName()}" />
                        loggingLevel="INFO"
                        message="Endpoint to add policies to PDP Group: ${header.CamelHttpMethod} ${header.CamelHttpUri}"></log>
                <toD
-                       uri="http4://policyhost:8085?throwExceptionOnFailure=${header.RaiseHttpExceptionFlag}&amp;httpClient.connectTimeout=10000&amp;authUsername={{clamp.config.policy.userName}}&amp;authPassword={{clamp.config.policy.password}}" />
+                       uri="http4://policyhost:8085?mapHttpMessageHeaders=false&amp;throwExceptionOnFailure=${header.RaiseHttpExceptionFlag}&amp;httpClient.connectTimeout=10000&amp;authUsername={{clamp.config.policy.userName}}&amp;authPassword={{clamp.config.policy.password}}" />
                <to
                        uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('Policies pushed to PDP Group successfully','INFO',${header.LoopObject})" />
                <to uri="direct:reset-raise-http-exception-flag" />
 
        <route id="remove-all-policy-from-active-pdp-group">
                <from uri="direct:remove-all-policy-from-active-pdp-group" />
-               <to uri="direct:check-raise-http-exception-flag" />
                <log
                        loggingLevel="INFO"
                        message="Removing policies from active PDP group for loop: ${header.LoopObject.getName()}" />
                                loggingLevel="INFO"
                                message="Endpoint to delete policy from PDP Group: ${header.CamelHttpMethod} ${header.CamelHttpUri}"></log>
                        <toD
-                               uri="http4://policyhost:8085?throwExceptionOnFailure=${header.RaiseHttpExceptionFlag}&amp;httpClient.connectTimeout=10000&amp;authUsername={{clamp.config.policy.userName}}&amp;authPassword={{clamp.config.policy.password}}" />
+                               uri="http4://policyhost:8085?mapHttpMessageHeaders=false&amp;throwExceptionOnFailure=${header.RaiseHttpExceptionFlag}&amp;httpClient.connectTimeout=10000&amp;authUsername={{clamp.config.policy.userName}}&amp;authPassword={{clamp.config.policy.password}}" />
                        <to
                                uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog(${header.PolicyName}' Policy removed from PDP Group successfully','INFO',${header.LoopObject})" />
                </split>
                <to uri="direct:reset-raise-http-exception-flag" />
        </route>
 
-       <route id="check-raise-http-exception-flag">
-               <from uri="direct:check-raise-http-exception-flag" />
-               <when>
-                       <simple>${header.RaiseHttpExceptionFlag} == null</simple>
-                       <setHeader headerName="RaiseHttpExceptionFlag">
-                               <simple resultType="java.lang.Boolean">true</simple>
-                       </setHeader>
-               </when>
-       </route>
-       
        <route id="reset-raise-http-exception-flag">
                <from uri="direct:reset-raise-http-exception-flag" />
-                       <setHeader headerName="RaiseHttpExceptionFlag">
-                               <constant>null</constant>
-                       </setHeader>
+               <setHeader headerName="RaiseHttpExceptionFlag">
+                       <simple resultType="java.lang.Boolean">true</simple>
+               </setHeader>
        </route>
 </routes>
\ No newline at end of file