Update project structure to org.onap
[dmaap/datarouter.git] / datarouter-prov / src / main / java / org / onap / dmaap / datarouter / provisioning / utils / URLUtilities.java
diff --git a/datarouter-prov/src/main/java/org/onap/dmaap/datarouter/provisioning/utils/URLUtilities.java b/datarouter-prov/src/main/java/org/onap/dmaap/datarouter/provisioning/utils/URLUtilities.java
new file mode 100644 (file)
index 0000000..c324942
--- /dev/null
@@ -0,0 +1,130 @@
+/*******************************************************************************\r
+ * ============LICENSE_START==================================================\r
+ * * org.onap.dmaap\r
+ * * ===========================================================================\r
+ * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
+ * * ===========================================================================\r
+ * * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * * you may not use this file except in compliance with the License.\r
+ * * You may obtain a copy of the License at\r
+ * * \r
+ *  *      http://www.apache.org/licenses/LICENSE-2.0\r
+ * * \r
+ *  * Unless required by applicable law or agreed to in writing, software\r
+ * * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * * See the License for the specific language governing permissions and\r
+ * * limitations under the License.\r
+ * * ============LICENSE_END====================================================\r
+ * *\r
+ * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
+ * *\r
+ ******************************************************************************/\r
+\r
+\r
+package org.onap.dmaap.datarouter.provisioning.utils;\r
+\r
+import java.net.InetAddress;\r
+import java.net.UnknownHostException;\r
+import java.util.Arrays;\r
+\r
+import org.onap.dmaap.datarouter.provisioning.BaseServlet;\r
+\r
+/**\r
+ * Utility functions used to generate the different URLs used by the Data Router.\r
+ *\r
+ * @author Robert Eby\r
+ * @version $Id: URLUtilities.java,v 1.2 2014/03/12 19:45:41 eby Exp $\r
+ */\r
+public class URLUtilities {\r
+       /**\r
+        * Generate the URL used to access a feed.\r
+        * @param feedid the feed id\r
+        * @return the URL\r
+        */\r
+       public static String generateFeedURL(int feedid) {\r
+               return "https://" + BaseServlet.prov_name + "/feed/" + feedid;\r
+       }\r
+       /**\r
+        * Generate the URL used to publish to a feed.\r
+        * @param feedid the feed id\r
+        * @return the URL\r
+        */\r
+       public static String generatePublishURL(int feedid) {\r
+               return "https://" + BaseServlet.prov_name + "/publish/" + feedid;\r
+       }\r
+       /**\r
+        * Generate the URL used to subscribe to a feed.\r
+        * @param feedid the feed id\r
+        * @return the URL\r
+        */\r
+       public static String generateSubscribeURL(int feedid) {\r
+               return "https://" + BaseServlet.prov_name + "/subscribe/" + feedid;\r
+       }\r
+       /**\r
+        * Generate the URL used to access a feed's logs.\r
+        * @param feedid the feed id\r
+        * @return the URL\r
+        */\r
+       public static String generateFeedLogURL(int feedid) {\r
+               return "https://" + BaseServlet.prov_name + "/feedlog/" + feedid;\r
+       }\r
+       /**\r
+        * Generate the URL used to access a subscription.\r
+        * @param subid the subscription id\r
+        * @return the URL\r
+        */\r
+       public static String generateSubscriptionURL(int subid) {\r
+               return "https://" + BaseServlet.prov_name + "/subs/" + subid;\r
+       }\r
+       /**\r
+        * Generate the URL used to access a subscription's logs.\r
+        * @param subid the subscription id\r
+        * @return the URL\r
+        */\r
+       public static String generateSubLogURL(int subid) {\r
+               return "https://" + BaseServlet.prov_name + "/sublog/" + subid;\r
+       }\r
+       /**\r
+        * Generate the URL used to access the provisioning data on the peer POD.\r
+        * @return the URL\r
+        */\r
+       public static String generatePeerProvURL() {\r
+               return "https://" + getPeerPodName() + "/internal/prov";\r
+       }\r
+       /**\r
+        * Generate the URL used to access the logfile data on the peer POD.\r
+        * @return the URL\r
+        */\r
+       public static String generatePeerLogsURL() {\r
+               //Fixes for Itrack ticket - DATARTR-4#Fixing if only one Prov is configured, not to give exception to fill logs.\r
+               String peerPodUrl = getPeerPodName();\r
+               if(peerPodUrl.equals("") || peerPodUrl.equals(null)){\r
+                       return "";\r
+               }\r
+                               \r
+               return "https://" + peerPodUrl + "/internal/drlogs/";\r
+       }\r
+       /**\r
+        * Return the real (non CNAME) version of the peer POD's DNS name.\r
+        * @return the name\r
+        */\r
+       public static String getPeerPodName() {\r
+               if (other_pod == null) {\r
+                       String this_pod = "";\r
+                       try {\r
+                               this_pod = InetAddress.getLocalHost().getHostName();\r
+                               System.out.println("this_pod: "+this_pod);\r
+                       } catch (UnknownHostException e) {\r
+                               this_pod = "";\r
+                       }\r
+                       System.out.println("ALL PODS: "+Arrays.asList(BaseServlet.getPods()));\r
+                       for (String pod : BaseServlet.getPods()) {\r
+                               if (!pod.equals(this_pod))\r
+                                       other_pod = pod;\r
+                       }\r
+               }\r
+               return other_pod;\r
+       }\r
+       private static String other_pod;\r
+}\r