You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@linkis.apache.org by pe...@apache.org on 2022/02/11 02:52:39 UTC

[incubator-linkis] 08/21: add the request for get connect params by datasource name action

This is an automated email from the ASF dual-hosted git repository.

peacewong pushed a commit to branch dev-1.1.0-datasource
in repository https://gitbox.apache.org/repos/asf/incubator-linkis.git

commit 189a2f03ea3fa81a30798ac3e35ce14022681827
Author: xiaojie19852006 <xi...@163.com>
AuthorDate: Fri Feb 11 09:33:41 2022 +0800

    add the request for get connect params by datasource name action
---
 .../GetConnectParamsByDataSourceNameAction.scala   | 83 ++++++++++++++++++++++
 1 file changed, 83 insertions(+)

diff --git a/linkis-public-enhancements/linkis-datasource/linkis-datasource-client/src/main/scala/org/apache/linkis/datasource/client/request/GetConnectParamsByDataSourceNameAction.scala b/linkis-public-enhancements/linkis-datasource/linkis-datasource-client/src/main/scala/org/apache/linkis/datasource/client/request/GetConnectParamsByDataSourceNameAction.scala
new file mode 100644
index 0000000..19d6de0
--- /dev/null
+++ b/linkis-public-enhancements/linkis-datasource/linkis-datasource-client/src/main/scala/org/apache/linkis/datasource/client/request/GetConnectParamsByDataSourceNameAction.scala
@@ -0,0 +1,83 @@
+/*
+ * 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.linkis.datasource.client.request
+
+import java.net.URLEncoder
+import java.nio.charset.StandardCharsets
+
+import org.apache.linkis.datasource.client.exception.DataSourceClientBuilderException
+import org.apache.linkis.datasource.client.config.DatasourceClientConfig.DATA_SOURCE_SERVICE_MODULE
+import org.apache.linkis.httpclient.request.GetAction
+/**
+  * Get version parameters from data source
+ */
+class GetConnectParamsByDataSourceNameAction extends GetAction with DataSourceAction{
+  private var dataSourceName: String = _
+
+  private var user: String = _
+
+  override def suffixURLs: Array[String] = Array(DATA_SOURCE_SERVICE_MODULE.getValue, "name", dataSourceName, "connect_params")
+
+  override def setUser(user: String): Unit = this.user = user
+
+  override def getUser: String = user
+}
+
+object GetConnectParamsByDataSourceNameAction{
+  def builder(): Builder = new Builder
+
+  class Builder private[GetConnectParamsByDataSourceNameAction]() {
+    private var dataSourceName: String = _
+    private var system: String = _
+    private var user: String = _
+
+    def setUser(user: String): Builder = {
+      this.user = user
+      this
+    }
+
+    def setDataSourceName(dataSourceName: String): Builder = {
+      this.dataSourceName = dataSourceName
+      this
+    }
+
+    def setSystem(system: String): Builder = {
+      this.system = system
+      this
+    }
+
+    def build(): GetConnectParamsByDataSourceNameAction = {
+      if (dataSourceName == null) throw new DataSourceClientBuilderException("dataSourceId is needed!")
+      if(system == null) throw new DataSourceClientBuilderException("system is needed!")
+      if(user == null) throw new DataSourceClientBuilderException("user is needed!")
+      // Use URIEncoder to encode the datSourceName
+      var requestDataSourceName = this.dataSourceName
+      try {
+        requestDataSourceName = URLEncoder.encode(dataSourceName, StandardCharsets.UTF_8.name())
+      } catch {
+        case e: Exception =>
+          throw new DataSourceClientBuilderException(s"Cannot encode the name of data source:[$dataSourceName] for request", e)
+      }
+      val getConnectParamsByDataSourceNameAction = new GetConnectParamsByDataSourceNameAction
+      getConnectParamsByDataSourceNameAction.dataSourceName = requestDataSourceName
+      getConnectParamsByDataSourceNameAction.setParameter("system", system)
+      getConnectParamsByDataSourceNameAction.setUser(user)
+      getConnectParamsByDataSourceNameAction
+    }
+  }
+}

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@linkis.apache.org
For additional commands, e-mail: commits-help@linkis.apache.org