0

我编写了一个 shell 脚本代码,它成功地在 Imperva 系统/实例中添加了一个新的 OS 连接 IP。

## Create a new IP OS connection in a given site, server group.
create_ip()
{
 JSESSIONID="${1}"
 addThisIP="${2}"
 siteName="${3}"
 serverGroupName="${4}"
 echo -e "\n- Trying to create a new OS connection IP now.\n";

 ##Make sure while initiating a REST API call, any parameter which has ' ' (space) in Imperva should be substituted with '%20'.
 ##JSESSIONID will be generated first and will be available to this function
 create_new_ip_output="$(curl -ik -X POST -H "Cookie: JSESSIONID=$JSESSIONID" -H "Content-Type: application/json" -H "Accept: application/json" "https://${MX}:8083/SecureSphere/api/v1/conf/serverGroups/${siteName// /%20}/${serverGroupName// /%20}/servers/${addThisIP}" -d '{"connection-mode":"SSH","host-name":"thisLinuxServer.fdqn","OS-type":"linux","user-name":"enter_your_userID"}')";
 return_code="$?";
 if [[ "${return_code}" == "0" && ! `echo "${create_new_ip_output}" | grep "do not have permission"` ]]; then
  echo -e "\n\n- OS connection IP (${addThisIP}) created successfully in site: ${siteName}, servergroup: ${serverGroupName} and stdout:\n${create_new_ip_output}\n";
  return 0;
 else
  echo -e "\n\n- Failed to create a new OS connection IP (${addThisIP}) in site: ${siteName} and servergroup: ${serverGroupName}\n- using session ID: ${JSESSIONID}, error log:\n${create_new_ip_output}\n";
  return 1;
 fi
}

好的,上面的代码运行良好,一旦运行,我会看到显示 IP 是否成功添加或失败消息是什么的有效输出。

现在,我正在尝试在NodeJS中实现相同的功能。

为此,我已经成功创建了生成 JSESSIONID 的函数(这样我就可以使用它来执行多个 REST/API 调用操作,而不是每次为任何操作创建一个新会话),成功删除了一个 JSESSIONID(即注销/从 Imperva 会话中退出,这样我就不会达到限制)并成功搜索 Imperva 系统中的 IP(如果之前已添加)。

使用上述 shell 脚本逻辑,我编写了以下 NodeJS 代码以使用 Rest/API 在 Imperva 中添加新的 OS 连接 IP,但出现错误。

//Imperva create IP
//qData is a hash array that has valid index/value pair values.
var impervaCreateIP = function(qData){
  var deferred = Q.defer();
  var data = ''
  var options = {
    hostname: 'myImpervaServerInstance.mycompanydomain.com',
    port: 8083,
    method: 'POST',
    path: '/SecureSphere/api/v1/conf/serverGroups/'+ qData['siteName'] + '/' + qData['serverGroupName'] + '/servers/' + qData['ip'],
    headers: {
      'Content-Type': 'application/xml',
      'X-Requested-With': 'Nodejs',
      'Cookie': 'JSESSIONID='+qData['sid']
    }
  }
  //svtLog() is a logger that I'm using to log messages to a file. Out of scope of this post.
  svtLog('info','Imperva','Inside impervaCreateIP function')
  svtLog('info','Imperva',qData['ip'])
  svtLog('info','Imperva',qData['siteName'])
  svtLog('info','Imperva',qData['serverGroupName'])
  svtLog('info','Imperva','')
  console.log('Inside impervaCreateIP')
  console.log(options);
  httpHelp(options, data)
  .then(function(fullResponse){
    var result = JSON.parse(fullResponse[1])
    console.log("11 -----")
    console.log(result)
    console.log("22 -----")
    deferred.resolve(qData['sid'])
    console.log(result)
  })
  .fail(function(e){
    svtLog('error','Imperva','Failed to add IP in Imperva')
    svtLog('info','Imperva',qData['ip'])
    svtLog('error','Imperva',e)
    svtLog('info','Imperva','')
    deferred.reject(e)
  })
  return deferred.promise;
}

错误信息:

Inside impervaCreateIP
{ hostname: 'myImpervaServerInstance.mycompanydomain.com',
  port: 8083,
  method: 'POST',
  path: '/SecureSphere/api/v1/conf/serverGroups/some%20Site%20NameInImperva/someServerGroupNameInImperva_01/servers/10.20.30.40',
  headers: 
   { 'Content-Type': 'application/xml',
     'X-Requested-With': 'Nodejs',
     Cookie: 'JSESSIONID=7B3C378D365B673F6C749847DEDC7D8F } }
[SyntaxError: Unexpected token <]

我正在寻找两件事:
1.如何解决错误(如上所示)。
2.如何在上面的NodeJS代码中传递CURL的-d选项{...} body参数,就像我在shell脚本中使用的一样。

PS:将 POST 更改为 GET(方法),确保代码语法正确,因为它使用上述 NodeJS 代码成功显示了 IP(使用 GET 操作)。

因此,只有当我使用POST(即,当我尝试创建 IP 时)-vs- GET(我用它来查找 IP 是否存在)时,它才会失败。我根据 Imperva API 文档进行了检查,响应采用 JSON 格式。不确定是否由于缺少第 2 个问题,我在 POST 中收到此语法错误。

4

1 回答 1

0

好的。

解决方案#1和#2是在NodeJS中设置CURL“-d选项值”,如下所示(我之前将其设置为空白):

  var data = '{"connection-mode":"SSH","host-name":"thisLinuxServer.fdqn","OS-type":"linux","user-name":"enter_your_userID"}'

现在,选项和数据都将被发送到 httpHelp(options,data) 并且它会工作。

以上只是一个虚拟数据值。通常我会在 JSON 对象中传递有效的主机名。

没想到不设置数据变量会导致这个语法错误。

另一件事是,我错过了很多时间是 headers 变量中“Content-Type”的值。这就是原因,错误消息中包含“<”括号(默认情况下,它会查找<body>...</body>包含某些XML 格式的部分,但在我们的例子中,HTML 响应包含或以 JSON { ... }格式返回正文部分的方式。这就是为什么它显示意外令牌 <错误的原因。

根据 API 文档,它应该是“JSON”类型,因此将该行更改为

'Content-Type': 'application/json',
于 2016-06-21T03:08:36.330 回答