mirror of
https://github.com/joelwmale/webhook-action.git
synced 2026-09-06 09:16:14 +08:00
Convert action to ts
- Add optional header support - Add optional body support
This commit is contained in:
+26
@@ -0,0 +1,26 @@
|
||||
class Http {
|
||||
async make(url: string, headers: string, body: string): Promise<any> {
|
||||
return new Promise((resolve, reject) => {
|
||||
fetch(url, this.getOptions('post', headers, body))
|
||||
.then((res) => resolve(res.body))
|
||||
.catch((res) => reject(res.body));
|
||||
});
|
||||
}
|
||||
|
||||
getOptions(method: string, headers: string, body: string) {
|
||||
const options: any = {
|
||||
headers: JSON.parse(headers),
|
||||
method
|
||||
};
|
||||
|
||||
// stringify the body
|
||||
options.body = JSON.stringify(body);
|
||||
|
||||
// set these headers
|
||||
options.headers['content-type'] = 'application/json';
|
||||
|
||||
return options;
|
||||
}
|
||||
}
|
||||
|
||||
export const http = new Http();
|
||||
Reference in New Issue
Block a user