This repository has been archived by the owner on Nov 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
14 changed files
with
2,656 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"projects": { | ||
"default": "mycoach-77f86" | ||
} | ||
} |
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,68 @@ | ||
#idea | ||
.idea/ | ||
|
||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
firebase-debug.log* | ||
|
||
# Firebase cache | ||
.firebase/ | ||
|
||
# Firebase config | ||
|
||
# Uncomment this if you'd like others to create their own Firebase project. | ||
# For a team working on the same Firebase project(s), it is recommended to leave | ||
# it commented so all members can deploy to the same project(s) in .firebaserc. | ||
# .firebaserc | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# Bower dependency directory (https://bower.io/) | ||
bower_components | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directories | ||
node_modules/ | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
# Output of 'npm pack' | ||
*.tgz | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity | ||
|
||
# dotenv environment variables file | ||
.env |
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,39 @@ | ||
|
||
# API for MyCoash | ||
Using Firebase Functions, Firestore and Dialogflow | ||
|
||
### POST /dialogflowGateway | ||
- Talk with chatbot | ||
|
||
Query | ||
``` | ||
{ | ||
"sessionId": "50", | ||
"queryInput": { | ||
"text": { | ||
"text": "Salut!", | ||
"languageCode": "fr-FR" | ||
} | ||
} | ||
} | ||
``` | ||
### POST /detectIntent | ||
|
||
- Detect intention and update workout data | ||
|
||
### POST /workouts | ||
- Get workouts of a user in a specfic date | ||
``` | ||
{ | ||
"userId": "50", | ||
"date": "2020-06-18" | ||
} | ||
``` | ||
|
||
## Firestore db structure | ||
|
||
|
||
|
||
## License | ||
|
||
Copyright © 2020, [Taoufik Tribki](https://github.com/ta0uf19). Released under the [MIT License](https://github.com/jonschlinkert/update-copyright/blob/master/LICENSE). |
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,12 @@ | ||
{ | ||
"firestore": { | ||
"rules": "firestore.rules", | ||
"indexes": "firestore.indexes.json" | ||
}, | ||
"functions": { | ||
"predeploy": [ | ||
"npm --prefix \"$RESOURCE_DIR\" run lint", | ||
"npm --prefix \"$RESOURCE_DIR\" run build" | ||
] | ||
} | ||
} |
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,4 @@ | ||
{ | ||
"indexes": [], | ||
"fieldOverrides": [] | ||
} |
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,17 @@ | ||
rules_version = '2'; | ||
service cloud.firestore { | ||
match /databases/{database}/documents { | ||
|
||
// This rule allows anyone on the internet to view, edit, and delete | ||
// all data in your Firestore database. It is useful for getting | ||
// started, but it is configured to expire after 30 days because it | ||
// leaves your app open to attackers. At that time, all client | ||
// requests to your Firestore database will be denied. | ||
// | ||
// Make sure to write security rules for your app before that time, or else | ||
// your app will lose access to your Firestore database | ||
match /{document=**} { | ||
allow read, write: if request.time < timestamp.date(2020, 7, 15); | ||
} | ||
} | ||
} |
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,8 @@ | ||
## Compiled JavaScript files | ||
**/*.js | ||
**/*.js.map | ||
|
||
# Typescript v1 declaration files | ||
typings/ | ||
|
||
node_modules/ |
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,12 @@ | ||
{ | ||
"type": "service_account", | ||
"project_id": "mycoach-77f86", | ||
"private_key_id": "703b003656ea2a7efd0584e53479f592edfe89c4", | ||
"private_key": "-----BEGIN PRIVATE KEY-----\nMIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDk5nMIwgvsKoHq\ntTRuLIyQTUSGbYNTm/+1SK5X9JOg1L8AdluzK7kGJZ2Z6GCzLIitiXkbmc5hEg1M\nr41MVoyT69HpgllpCC6GQeLvcUg/KC4yQJirl/z3KiPK0GMYbGem5J1dtawCf0KL\n7FYElIa1iyy3nefZjO/++wV1N3M6Y41+We2cmw7NERqJcx9Pttg5b3Hu9nos0VYD\nPUQetu8DA/OhL3akjl3Cn8uiYuXDK4EKQESPEsLJn7iWsPsWr+z0HVMpdcr7wI4J\nLj2VKymiOo8vrCq75/nmrctrF92fEPGT2aJz+dV/63IDgd0hQ6/ofqlZMIvKraqi\nUt/eqpOzAgMBAAECggEAAg2ZHDaABzXDEDkLh9jJcqU8HJ07L32iN7I3sh1E/Q0m\nIMRvAnaSxHMuQd+mN7qKB/hy3Xmt3WFdPNdZmUTbd5uGuKVNKlaC8vxV+JeCXOKo\n4MAt6Q1wx5duq8Ezv60qlCzPxok8dOdG+wdQfDOy2PUEc9SBlwofFaE9xXU3s4nb\nCneZjmBcO1Tcrd69ovx5Z4kiNhjVzvbXXFMN/L/nbK9krqO4e9OmgXUNOpDy6+Ti\nNNj+gsAL2TxaV40Akh4KqpZekcjQBs8d6PvrPPFa/cTGHNhHgEr4QxPH4dwxkpCY\nxJGqaq0jZoiBhZtL0ltXh0nkRQE4eKgN74PoKrI1fQKBgQD/4mBqr7lQqvAIJt1v\nBECsGt+1A9SOGtrSXTlfsN9KSyyd7+H2Nc67hyg7d814VzK0Kg+lSGA5YhTP+W+C\nBuFwDtiU3oWmkDV0s71nAHeRsagemcbuWA15xBpD0qJ3H/ngDU+gEcSKIh6/H/Li\nRh/6kQZwvRx/Dq8XCJe5jCbyRQKBgQDlAPLlbkLPwpG3Q9gr8ycIL78+qz1BJvJh\ndl14E05ixiWQeHCmlzECNm8QAZHNvDA1ut4VoAWse/7vVXdr8dp8VNAbWYGJHLp5\nBtXZeMn6TuMO+3xrrsWSn4uiwLWFO0vou/00Y7Veq93zE2W2ID1hTm54PMf+RXSO\narF9TexJlwKBgDWblZuESQyvYy4yBj4V4/6qeqePr949ng5oXXbAtWb5LNXBxdMx\nHqiG/lTHGpLVodfA4Bo+eXpMJBQWK9hP3Lb/RTybCeEFYU2bwlhr7qDlWVVf3h9c\n7yXNgbsny8WtO0pHP6FHV6eg0lQ0O0xQaK6z52eDFw8/YksvD6pdxGMJAoGBAMbm\njhHMNOdy3VFJ8gYqSSqJHhh2btuZ0kfooMJcMmcEJzhWA7IN+5kqYkiKtHL3EwB3\n79DkjkkD4adKmlD9XYFDwQUgNqw6cZQQ5cjfar6nqfsnXyfAQwZY4NVZf8/actIQ\nBZptR+iUalBn9p27XtSXZMe2MxaciOHxtXtaJPK9AoGAAyNHy8hOhe192IfJr6OK\naQmaGFOtdSe7Xha8iImPSrbLTCwUEdmLfXIT/8bE6s9ZhE+szUwso8056WM/tldn\njFMc1IeXhT7Pq23thsLjNTSA+/m9xMq0Jab4644pKljryiAMXSca2yE5YJ1FXd8z\n1M8HIfUMgojVSlmmkylJemU=\n-----END PRIVATE KEY-----\n", | ||
"client_email": "firebase-mycoach@mycoach-77f86.iam.gserviceaccount.com", | ||
"client_id": "110064585400738855058", | ||
"auth_uri": "https://accounts.google.com/o/oauth2/auth", | ||
"token_uri": "https://oauth2.googleapis.com/token", | ||
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", | ||
"client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/firebase-mycoach%40mycoach-77f86.iam.gserviceaccount.com" | ||
} |
Oops, something went wrong.