Browse Source

Refactor uri_parts processor so it can be exposed in Painless (#73344)

Dan Hermann 4 years ago
parent
commit
bb5fea160b

+ 16 - 12
modules/ingest-common/src/main/java/org/elasticsearch/ingest/common/UriPartsProcessor.java

@@ -58,18 +58,7 @@ public class UriPartsProcessor extends AbstractProcessor {
     public IngestDocument execute(IngestDocument ingestDocument) throws Exception {
         String value = ingestDocument.getFieldValue(field, String.class);
 
-        URI uri = null;
-        URL url = null;
-        try {
-            uri = new URI(value);
-        } catch (URISyntaxException e) {
-            try {
-                url = new URL(value);
-            } catch (MalformedURLException e2) {
-                throw new IllegalArgumentException("unable to parse URI [" + value + "]");
-            }
-        }
-        var uriParts = getUriParts(uri, url);
+        var uriParts = apply(value);
         if (keepOriginal) {
             uriParts.put("original", value);
         }
@@ -81,6 +70,21 @@ public class UriPartsProcessor extends AbstractProcessor {
         return ingestDocument;
     }
 
+    public static Map<String, Object> apply(String urlString) {
+        URI uri = null;
+        URL url = null;
+        try {
+            uri = new URI(urlString);
+        } catch (URISyntaxException e) {
+            try {
+                url = new URL(urlString);
+            } catch (MalformedURLException e2) {
+                throw new IllegalArgumentException("unable to parse URI [" + urlString + "]");
+            }
+        }
+        return getUriParts(uri, url);
+    }
+
     @SuppressForbidden(reason = "URL.getPath is used only if URI.getPath is unavailable")
     private static Map<String, Object> getUriParts(URI uri, URL fallbackUrl) {
         var uriParts = new HashMap<String, Object>();