Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

603 better oauth datasources #611

Draft
wants to merge 40 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 38 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
7036c8c
modifying .env.example to fix incorrect port used for internal airbyt…
NaderRNA Oct 10, 2024
dd52986
Merge branch 'develop' into 603-better_oauth_datasources
NaderRNA Oct 15, 2024
0722b51
adding secret factory for clientId and clientSecret for oauth
NaderRNA Oct 15, 2024
3fe4b99
adding new method to airbyte controller, adding api route and router …
NaderRNA Oct 16, 2024
4f68736
commiting to save progress, fetch non functional returning 405
NaderRNA Oct 16, 2024
cbde5b4
refactoring oauth to handle using passport.js instead of trying to ha…
NaderRNA Oct 18, 2024
d56d99b
refactoring redirect, modifying HubSpot OAuth scopes
NaderRNA Oct 20, 2024
edb07ea
successful authentication of hubspot, callback url called with valid …
NaderRNA Oct 21, 2024
9d3fa15
hubspot successfully integrated into datasource creation workflow, st…
NaderRNA Oct 22, 2024
a9c0ab5
migration to add new tool to each team
NaderRNA Oct 15, 2024
d1d9833
setting the rabbitmq host as the local host ip
ragyabraham Oct 8, 2024
a91b518
adding google and githun auth build args to webapp docker file
ragyabraham Oct 10, 2024
43b0f0e
modifying migration to correctly add tool as option to install for bu…
NaderRNA Oct 15, 2024
9dd0842
fixing small naming convention that breaks tool on prod
NaderRNA Oct 16, 2024
621c41c
Use singleton pattern for mongodb and limit pool size to 10
iandjx Oct 17, 2024
e7fdbaa
Merge branch 'develop' into 603-better_oauth_datasources
NaderRNA Oct 22, 2024
7b23881
merging with develop and fixing some front end bugs
NaderRNA Oct 22, 2024
23f672d
Merge branch 'installsh-dockercompose-changes' into 603-better_oauth_…
NaderRNA Oct 27, 2024
e6d818b
adding middleware to handle datasource name and datasource descriptio…
NaderRNA Oct 28, 2024
5437778
adding user feedback to show that datasource is being tested, incomplete
NaderRNA Oct 28, 2024
63199b1
Merge branch 'develop' into 603-better_oauth_datasources
NaderRNA Oct 28, 2024
1f90b12
functional user feedback on successful oauth
NaderRNA Oct 28, 2024
162af0d
functional hubspot oauth
NaderRNA Oct 28, 2024
0dcfbd4
lint
NaderRNA Oct 28, 2024
96f50af
initializing salesforce/forcedotcom strategy
NaderRNA Oct 29, 2024
3e3ad63
adding salesforce and xero passport strategy templates, need more work
NaderRNA Oct 29, 2024
db48429
fixing mistake with installing npm packages into root instead of webapp
NaderRNA Oct 29, 2024
a003104
removing node modules
NaderRNA Oct 29, 2024
e0bc5d9
lint
NaderRNA Oct 29, 2024
b303560
adding slack strategy
NaderRNA Oct 31, 2024
acf79ab
adding routes for other strategies
NaderRNA Nov 4, 2024
cea520e
lint
NaderRNA Nov 4, 2024
f50aaaf
Merge branch 'develop' into 603-better_oauth_datasources
NaderRNA Nov 4, 2024
6df80fc
adding custom strategy, starting custom strategy struct, array etc...…
NaderRNA Nov 5, 2024
0e14b90
successful redirect for airtable oauth, still need to rebuild a compa…
NaderRNA Nov 5, 2024
de9bd1e
resolving merge conflicts
NaderRNA Nov 20, 2024
e26a097
fixing issue where file upload wasn't correctly displaying
NaderRNA Nov 20, 2024
1d48ae9
corrctly making airtable request in custom strategy
NaderRNA Nov 21, 2024
712f9de
Revert "lint"
NaderRNA Nov 21, 2024
b4f9ea2
linting the revert
NaderRNA Nov 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docker-compose.minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ services:
RABBITMQ_DEFAULT_USER: guest
RABBITMQ_DEFAULT_PASS: guest
ports:
- "127.0.0.1:5672:5672"
- "127.0.0.1:15672:15672"
- "0.0.0.0:5672:5672"
- "0.0.0.0:15672:15672"
extra_hosts:
- "host.docker.internal:host-gateway"

docker_mongo:
restart: always
Expand Down
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ services:
ports:
- "0.0.0.0:5672:5672"
- "0.0.0.0:15672:15672"
extra_hosts:
- "host.docker.internal:host-gateway"

docker_mongo:
restart: always
Expand Down
6 changes: 6 additions & 0 deletions node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
87 changes: 87 additions & 0 deletions webapp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,14 @@
"nprogress": "^0.2.0",
"openapi-client-axios": "^7.4.0",
"passport": "^0.6.0",
"passport-custom": "^1.1.1",
"passport-forcedotcom": "^0.2.1",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^2.0.0",
"passport-hubspot-oauth2": "^1.0.3",
"passport-slack": "^0.0.7",
"passport-stripe": "^0.2.3",
"passport-xero": "^1.0.0-a",
"pdf.js-extract": "^0.2.1",
"posthog-js": "^1.88.4",
"posthog-node": "^4.1.0",
Expand Down
Loading
Loading