forked from CMU-17313Q/cmu-17313q-f24-nodebb-f24-NodeBB
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add starter code for translation service
- Loading branch information
1 parent
4d2e6f2
commit 5955be1
Showing
4 changed files
with
32 additions
and
0 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
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
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
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,11 @@ | ||
var request = require('request'); | ||
|
||
const translatorApi = module.exports; | ||
|
||
translatorApi.translate = async function (postData) { | ||
// Edit the translator URL below | ||
const TRANSLATOR_API = "https://nodebb-f24-translator.azurewebsites.net/" | ||
const response = await fetch(TRANSLATOR_API+'/?content='+postData.content); | ||
const data = await response.json(); | ||
return [data["is_english"], data["translated_content"]] | ||
} |