Merge pull request #27121 from Bonial-International-GmbH/pjungermann/events/validate-raw-body

fix(events,github): fixes signature validation by using raw req body
This commit is contained in:
Patrik Oldsberg
2024-11-07 16:56:06 +01:00
committed by GitHub
15 changed files with 293 additions and 46 deletions
+7 -1
View File
@@ -3,6 +3,8 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
/// <reference types="node" />
import { AuthService } from '@backstage/backend-plugin-api';
import { DiscoveryService } from '@backstage/backend-plugin-api';
import { LifecycleService } from '@backstage/backend-plugin-api';
@@ -114,10 +116,14 @@ export interface HttpPostIngressOptions {
validator?: RequestValidator;
}
// @public (undocumented)
// @public
export interface RequestDetails {
body: unknown;
headers: Record<string, string | string[] | undefined>;
raw: {
body: Buffer;
encoding: BufferEncoding;
};
}
// @public
@@ -15,6 +15,8 @@
*/
/**
* View on an incoming request that has to be validated.
*
* @public
*/
export interface RequestDetails {
@@ -26,4 +28,18 @@ export interface RequestDetails {
* Key-value pairs of header names and values. Header names are lower-cased.
*/
headers: Record<string, string | string[] | undefined>;
/**
* Raw request details.
*/
raw: {
/**
* Raw request body (buffer).
*/
body: Buffer;
/**
* Encoding of the raw request body.
* Can be used to decode the raw request body like `raw.body.toString(raw.encoding)`.
*/
encoding: BufferEncoding;
};
}