1

本番環境のプロジェクトに実際に何がコミットされているかを知るために、Git ログを管理者に表示します。これは、その場しのぎの変更ログとして機能します。

Node.js Express サーバーに次のルーチンがあります。

 router.get('/changelog/json', ac.allow('ROLE_ADMIN'), function (req, res, next) {

  const k = cp.spawn('bash');

  k.stdin.write('git log --pretty=format:\'{%n  "commit": "%H",%n  "abbreviated_commit": "%h",%n  "tree": "%T",%n  "abbreviated_tree": "%t",%n  "parent": "%P",%n  "abbreviated_parent": "%p",%n  "refs": "%D",%n  "encoding": "%e",%n  "subject": "%s",%n  "sanitized_subject_line": "%f",%n  "body": "%b",%n  "commit_notes": "%N",%n  "verification_flag": "%G?",%n  "signer": "%GS",%n  "signer_key": "%GK",%n  "author": {%n    "name": "%aN",%n    "email": "%aE",%n    "date": "%aD"%n  },%n  "commiter": {%n    "name": "%cN",%n    "email": "%cE",%n    "date": "%cD"%n  }%n},\'\n')

  k.stdin.end();
  k.stdout.pipe(res);


});

この種の動作はしますが、実際には JSON 配列を取得するのではなく、カンマ区切りの JSON 文字列を取得するだけです。

ここでこの情報フォームを取得しました: https://gist.github.com/varemenos/e95c2e098e657c7688fd https://git-scm.com/docs/pretty-formats

Git コマンドの stdout から JSON 配列を作成する方法を知っている人はいますか?

私はこれを試しました:

router.get('/json', ac.allow('ROLE_ADMIN'), function (req, res, next) {

  const p = createParser();

  const k = cp.spawn('bash', [], {
    cwd: global.cdtProjectRoot
  });

  const items = [];

  k.stdin.write('git log --pretty=format:\'{%n  "commit": "%H",%n  "abbreviated_commit": "%h",%n  "tree": "%T",%n  "abbreviated_tree": "%t",%n  "parent": "%P",%n  "abbreviated_parent": "%p",%n  "refs": "%D",%n  "encoding": "%e",%n  "subject": "%s",%n  "sanitized_subject_line": "%f",%n  "body": "%b",%n  "commit_notes": "%N",%n  "verification_flag": "%G?",%n  "signer": "%GS",%n  "signer_key": "%GK",%n  "author": {%n    "name": "%aN",%n    "email": "%aE",%n    "date": "%aD"%n  },%n  "commiter": {%n    "name": "%cN",%n    "email": "%cE",%n    "date": "%cD"%n  }%n},\'\n')
  k.stdin.end();

  k.stdout.pipe(p).on('data', function (d) {
     // d would be a parsed JSON object
    items.push(d);
  })
  .once('error', next)
  .once('end', function () {

    res.json({
      success: items
    })
  })

});

別のプロジェクトで使用しているため、パーサー変換が機能するため、問題を引き起こしているのは標準出力からの JSON の形式に関するものです。「データ」イベント ハンドラーはデータを認識しません。

4

1 に答える 1