-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4ad4ce9
commit 05a4a67
Showing
2 changed files
with
31 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import axios from 'axios'; | ||
import { https } from 'firebase-functions/v2'; | ||
|
||
export const notificationSlack = https.onRequest(async (request, response) => { | ||
if (request.method === `OPTIONS`) { | ||
response.set(`Access-Control-Allow-Methods`, `POST`); | ||
response.set(`Access-Control-Allow-Headers`, `Content-Type`); | ||
response.status(204).send(``); | ||
} | ||
else if (request.method === `POST`) { | ||
if (request.body[`text`]) { | ||
const endpoint = process.env.SLACK_ENDPOINT | ||
if (!endpoint) { | ||
response.status(400).send(`could not find SLACK_ENDPOINT`); | ||
return; | ||
} | ||
axios.post(endpoint, { text: request.body[`text`] }); | ||
response.status(200).send(`OK`); | ||
} | ||
else { | ||
response.status(400).send(`invalid parameter. You must include 'text' param in the body`); | ||
} | ||
} else { | ||
response.status(405).send(`invalid method`); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters