Compare commits

...

3 commits

Author SHA1 Message Date
BradBot_1 c8eb435187 CHORE: remove references to promise
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-23 01:46:11 +00:00
BradBot_1 cc31287692 FIX: webhook is already resolved 2023-02-23 01:45:41 +00:00
BradBot_1 06fe17115b FIX: not registered forward 2023-02-23 01:39:33 +00:00
3 changed files with 7 additions and 7 deletions

View file

@ -43,5 +43,7 @@ export function createForward(origin: string, webhook: string|undefined): Forwar
webhook = generateRandomWebhookId();
} while (getForwardByWebhook(webhook) != null);
}
return new Forward(webhook, origin);
const forward = new Forward(webhook, origin);
known_forwards.push(forward);
return forward;
};

View file

@ -13,14 +13,14 @@
See the License for the specific language governing permissions and
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 {
router.post('/webhook/:webhook', (req: any, res: any) => {
const webhookId = req.params.webhook;
console.log("[WEB] Recieved webhook " + webhookId);
webhookRecievedCallback(webhookId, res.body);
webhookRecievedCallback(webhookId, req.body);
res.statusCode = 200;
res.end();
});

View file

@ -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);
if (forward == null) return;
const webhookData: any = await webhook;
if (!webhookData.hasOwnProperty("repository")) return;
const url: any = webhookData.repository.clone_url || webhookData.repository.ssh_url || webhookData.repository.html_url;
if (typeof url !== "string") return;
if (forward.origin !== url) {
if (typeof url !== "string" || forward.origin !== url) {
console.log("[VAL] Invalid webhook origin!");
return;
}