[ 
https://issues.apache.org/jira/browse/KNOX-2053?focusedWorklogId=328437&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-328437
 ]

ASF GitHub Bot logged work on KNOX-2053:
----------------------------------------

                Author: ASF GitHub Bot
            Created on: 15/Oct/19 09:19
            Start Date: 15/Oct/19 09:19
    Worklog Time Spent: 10m 
      Work Description: risdenk commented on pull request #164: KNOX-2053 - New 
REST API to create/read/update/delete service definitions
URL: https://github.com/apache/knox/pull/164#discussion_r334838585
 
 

 ##########
 File path: 
gateway-spi/src/main/java/org/apache/knox/gateway/service/definition/UrlRewriteRulesDescriptorAdapter.java
 ##########
 @@ -0,0 +1,66 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file 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.
+ */
+package org.apache.knox.gateway.service.definition;
+
+import java.io.ByteArrayInputStream;
+import java.io.ByteArrayOutputStream;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.io.StringWriter;
+import java.io.Writer;
+import java.nio.charset.StandardCharsets;
+
+import javax.xml.bind.annotation.adapters.XmlAdapter;
+import javax.xml.transform.TransformerFactory;
+import javax.xml.transform.dom.DOMSource;
+import javax.xml.transform.stream.StreamResult;
+
+import org.apache.knox.gateway.filter.rewrite.api.UrlRewriteRulesDescriptor;
+import 
org.apache.knox.gateway.filter.rewrite.impl.xml.XmlUrlRewriteRulesExporter;
+import 
org.apache.knox.gateway.filter.rewrite.impl.xml.XmlUrlRewriteRulesImporter;
+import org.w3c.dom.Node;
+
+/**
+ * Serves as a gateway between JAXB marshal/unmarshal and DOM
+ * serializing/digesting.
+ */
+public class UrlRewriteRulesDescriptorAdapter extends XmlAdapter<Object, 
UrlRewriteRulesDescriptor> {
+
+  private final XmlUrlRewriteRulesExporter xmlRewriteRulesExporter = new 
XmlUrlRewriteRulesExporter();
+  private final XmlUrlRewriteRulesImporter xmlRewriteRulesImporter = new 
XmlUrlRewriteRulesImporter();
+
+  @Override
+  public UrlRewriteRulesDescriptor unmarshal(Object value) throws Exception {
+    try (InputStream is = nodeToInputStream((Node) value); InputStreamReader 
isr = new InputStreamReader(is, StandardCharsets.UTF_8)) {
+      return xmlRewriteRulesImporter.load(isr);
+    }
+  }
+
+  private static InputStream nodeToInputStream(Node node) throws Exception {
+    final ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
 
 Review comment:
   Does the output stream need to be closed?
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


Issue Time Tracking
-------------------

    Worklog Id:     (was: 328437)
    Time Spent: 40m  (was: 0.5h)

> Add Service Definition Management to Admin API
> ----------------------------------------------
>
>                 Key: KNOX-2053
>                 URL: https://issues.apache.org/jira/browse/KNOX-2053
>             Project: Apache Knox
>          Issue Type: Improvement
>          Components: Server
>            Reporter: Larry McCay
>            Assignee: Sandor Molnar
>            Priority: Major
>             Fix For: 1.4.0
>
>          Time Spent: 40m
>  Remaining Estimate: 0h
>
> Currently, the Admin API allows management and access to topologies, 
> descriptors, provider config, etc but does not provide access to the Service 
> Definitions for the proxied services.
> Let's expand the API the include to include service defs and allow for 
> customization through the API. Changes made via the API will typically 
> require a restart and touch of an topology file that is referencing the 
> change service def. This may require a separate Jira and effort to address. 
> In the meantime, we should be able to change, add and delete service 
> definitions including both service and rewrite XML files.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to