Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ウェブフックの recording_metadata の送信可否を設定できるようにする #51

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@

## develop

- [UPDATE] 設定に `exclude_webhook_recording_metadata` を追加し、report ファイルアップロード後のウェブフックに `recording_metadata` を含めるかどうか設定できるようにする
- デフォルトは `false` で `recording_metadata` を送信するウェブフックに含める
- `true` を設定するとレポートファイルに `recording_metadata` または `metadata` が含まれていてもウェブフックには含めない
- @tnamao
- [UPDATE] report ファイルアップロード後のウェブフックに `recording_metadata` を追加する
- アップロードした report ファイルの `recording_metadata` または `metadata` の内容をウェブフックの `recording_metadata` に含めて送信する
- セッション録画の場合は `recording_metadata` の値を使用する
Expand Down
2 changes: 2 additions & 0 deletions config.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ type Config struct {
WebhookTypeSplitArchiveEndUploaded string `ini:"webhook_type_split_archive_end_uploaded"`
WebhookTypeReportUploaded string `ini:"webhook_type_report_uploaded"`

ExcludeWebhookRecordingMetadata bool `ini:"exclude_webhook_recording_metadata"`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💯


WebhookBasicAuthUsername string `ini:"webhook_basic_auth_username"`
WebhookBasicAuthPassword string `ini:"webhook_basic_auth_password"`

Expand Down
4 changes: 4 additions & 0 deletions config_example.ini
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,7 @@ webhook_type_report_uploaded = "recording-report.uploaded"
# webhook で mTLS を利用する場合に指定します
# webhook_tls_fullchain_path = /path/to/fullchain.pem
# webhook_tls_privkey_path = /path/to/privkey.pem

# report_uploaded ウェブフックに recording_metadata を含めない設定
# recording_metadata を含めない場合は true を指定する
# exclude_webhook_recording_metadata = true
15 changes: 9 additions & 6 deletions uploader.go
Original file line number Diff line number Diff line change
Expand Up @@ -471,12 +471,15 @@ func (u Uploader) handleReport(reportJSONFilePath string) bool {
FileURL: fileURL,
}

// セッション録画とレガシー録画では、録画の metadata のキーが異なるための分岐
// SessionID が空でなければセッション録画とみなす
if rr.SessionID != "" {
w.RecordingMetadata = rr.RecordingMetadata
} else {
w.RecordingMetadata = rr.Metadata
// recording_metadata の除外設定が *無効* の時は recording_metadata をウェブフックに含める
if !u.config.ExcludeWebhookRecordingMetadata {
// セッション録画とレガシー録画では、録画の metadata のキーが異なるための分岐
// SessionID が空でなければセッション録画とみなす
if rr.SessionID != "" {
w.RecordingMetadata = rr.RecordingMetadata
} else {
w.RecordingMetadata = rr.Metadata
}
}

buf, err := json.Marshal(w)
Expand Down
Loading