如何在github

时间:2017-01-15 14:16:17

标签: github github-api eslint

我正在尝试编写一个小脚本,可以使用eslint输出对github PR进行注释。

问题是eslint给出了每个错误的绝对行号。 但是github API需要相对于diff的行号。

来自github API文档:https://developer.github.com/v3/pulls/comments/#create-a-comment

  

要评论文件中的特定行,您需要先进行   确定差异中的位置。 GitHub提供了一个   application / vnd.github.v3.diff你可以在一个文件中使用的媒体类型   在请求之前查看pull请求的diff。差异需要   被解释为从文件中的行转换到中的位置   差异。位置值是从中向下的行数   您要评论的文件中的第一个“@@”hunk标头。

     

“@@”行下方的行是位置1,下一行是   位置2,依此类推。文件差异中的位置继续   通过空白线和额外的帅哥增加直到一个新的   文件已到达。

enter image description here

因此,如果我想在上面的图片中添加对第5行的新评论,那么我需要将12传递给API

我的问题是如何轻松地将eslint在其错误消息中提供的新行号与github API所需的相对行号进行映射

到目前为止我尝试了什么

我正在使用parse-diff将github API提供的diff转换为json对象

[{
  "chunks": [{
    "content": "@@ -,OLD_TOTAL_LINES +NEW_STARTING_LINE_NUMBER,NEW_TOTAL_LINES @@",
    "changes": [
    {
      "type": STRING("normal"|"add"|"del"),
      "normal": BOOLEAN,
      "add": BOOLEAN,
      "del": BOOLEAN,
      "ln1": OLD_LINE_NUMBER,
      "ln2": NEW_LINE_NUMBER,
      "content": STRING,
      "oldStart": NUMBER,
      "oldLines": NUMBER,
      "newStart": NUMBER,
      "newLines": NUMBER
    }
  }]
}]

我正在考虑以下算法

  • 制作一系列从NEW_STARTING_LINE_NUMBER开始的新行号 每个文件NEW_STARTING_LINE_NUMBER+NEW_TOTAL_LINES
  • 从每个数字中减去newStart,并使其成为另一个数组relativeLineNumbers
  • 遍历数组,并为每个已删除的行(type==='del')增加相应的剩余relativeLineNumbers
  • 为另一个hunk(具有@@的行)减少相应的剩余relativeLineNumbers

1 个答案:

答案 0 :(得分:4)

我找到了解决方案。我没有把它放在这里,因为它涉及简单的循环而没有什么特别之处。但无论如何现在回答帮助他人。

我已经打开了一个拉取请求来创建相似的情况,如下所示 https://github.com/harryi3t/5134/pull/7/files

Diff Image

使用Github API可以获得差异数据。

diff --git a/test.js b/test.js
index 2aa9a08..066fc99 100644
--- a/test.js
+++ b/test.js
@@ -2,14 +2,7 @@

 var hello = require('./hello.js');

-var names = [
-  'harry',
-  'barry',
-  'garry',
-  'harry',
-  'barry',
-  'marry',
-];
+var names = ['harry', 'barry', 'garry', 'harry', 'barry', 'marry'];

 var names2 = [
   'harry',
@@ -23,9 +16,7 @@ var names2 = [
 // after this line new chunk will be created
 var names3 = [
   'harry',
-  'barry',
-  'garry',
   'harry',
   'barry',
-  'marry',
+  'marry', 'garry',
 ];

现在只需将此数据传递给diff-parse模块并进行计算。

var parsedFiles = parseDiff(data); // diff output
parsedFiles.forEach(
  function (file) {
    var relativeLine = 0;
    file.chunks.forEach(
      function (chunk, index) {
        if (index !== 0)  // relative line number should increment for each chunk
          relativeLine++; // except the first one (see rel-line 16 in the image)
        chunk.changes.forEach(
          function (change) {
            relativeLine++;
            console.log(
             change.type,
             change.ln1 ? change.ln1 : '-',
             change.ln2 ? change.ln2 : '-',
             change.ln ? change.ln : '-',
             relativeLine
           );
          }
        );
      }
    );
  }
);

这会打印

type    (ln1) old line   (ln2) new line   (ln) added/deleted line    relative line
normal     2                  2                 -                       1
normal     3                  3                 -                       2
normal     4                  4                 -                       3
del        -                  -                 5                       4
del        -                  -                 6                       5
del        -                  -                 7                       6
del        -                  -                 8                       7
del        -                  -                 9                       8
del        -                  -                 10                      9
del        -                  -                 11                      10
del        -                  -                 12                      11
add        -                  -                 5                       12
normal     13                 6                 -                       13
normal     14                 7                 -                       14
normal     15                 8                 -                       15
normal     23                 16                -                       17
normal     24                 17                -                       18
normal     25                 18                -                       19
del        -                   -                26                      20
del        -                   -                27                      21
normal     28                 19                -                       22
normal     29                 20                -                       23
del        -                  -                 30                      24
add        -                  -                 21                      25
normal     31                 22                -                       26

现在您可以使用相对行号使用github api发布评论。

出于我的目的,我只需要新添加的行的相对行号,但是使用上面的表格也可以获取已删除的行。

这里是我使用它的linting项目的链接。 https://github.com/harryi3t/lint-github-pr