Compare commits
3 commits
f8bf60ee91
...
c8eb435187
Author | SHA1 | Date | |
---|---|---|---|
|
c8eb435187 | ||
|
cc31287692 | ||
|
06fe17115b |
|
@ -43,5 +43,7 @@ export function createForward(origin: string, webhook: string|undefined): Forwar
|
||||||
webhook = generateRandomWebhookId();
|
webhook = generateRandomWebhookId();
|
||||||
} while (getForwardByWebhook(webhook) != null);
|
} while (getForwardByWebhook(webhook) != null);
|
||||||
}
|
}
|
||||||
return new Forward(webhook, origin);
|
const forward = new Forward(webhook, origin);
|
||||||
|
known_forwards.push(forward);
|
||||||
|
return forward;
|
||||||
};
|
};
|
|
@ -13,14 +13,14 @@
|
||||||
See the License for the specific language governing permissions and
|
See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
export type WebhookRecievedCallback = (webhookId: string, webhook: Promise<any>) => void;
|
export type WebhookRecievedCallback = (webhookId: string, webhook: any) => void;
|
||||||
|
|
||||||
export function setupWebhookRoutes(router:any, webhookRecievedCallback:WebhookRecievedCallback):void {
|
export function setupWebhookRoutes(router:any, webhookRecievedCallback:WebhookRecievedCallback):void {
|
||||||
|
|
||||||
router.post('/webhook/:webhook', (req: any, res: any) => {
|
router.post('/webhook/:webhook', (req: any, res: any) => {
|
||||||
const webhookId = req.params.webhook;
|
const webhookId = req.params.webhook;
|
||||||
console.log("[WEB] Recieved webhook " + webhookId);
|
console.log("[WEB] Recieved webhook " + webhookId);
|
||||||
webhookRecievedCallback(webhookId, res.body);
|
webhookRecievedCallback(webhookId, req.body);
|
||||||
res.statusCode = 200;
|
res.statusCode = 200;
|
||||||
res.end();
|
res.end();
|
||||||
});
|
});
|
||||||
|
|
|
@ -81,14 +81,12 @@ for (const forwardData of parsedData) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
createServer(parseInt(env["PORT"]||"3000"), async (webhookId: string, webhook: Promise<any>) => {
|
createServer(parseInt(env["PORT"]||"3000"), async (webhookId: string, webhookData: any) => {
|
||||||
const forward: Forward|null = getForwardByWebhook(webhookId);
|
const forward: Forward|null = getForwardByWebhook(webhookId);
|
||||||
if (forward == null) return;
|
if (forward == null) return;
|
||||||
const webhookData: any = await webhook;
|
|
||||||
if (!webhookData.hasOwnProperty("repository")) return;
|
if (!webhookData.hasOwnProperty("repository")) return;
|
||||||
const url: any = webhookData.repository.clone_url || webhookData.repository.ssh_url || webhookData.repository.html_url;
|
const url: any = webhookData.repository.clone_url || webhookData.repository.ssh_url || webhookData.repository.html_url;
|
||||||
if (typeof url !== "string") return;
|
if (typeof url !== "string" || forward.origin !== url) {
|
||||||
if (forward.origin !== url) {
|
|
||||||
console.log("[VAL] Invalid webhook origin!");
|
console.log("[VAL] Invalid webhook origin!");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue