feat: add support for private GitHub repository cloning with OAuth authentication #193
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
GitHub OAuth Integration for Private Repositories
This update introduces comprehensive support for handling private GitHub repositories by integrating GitHub OAuth authentication. The key updates include:
🔑 Authentication & Repository Access
1. Secure Repository Cloning
clone_repo
function: Now accepts an optional OAuth token._check_repo_exists
now verifies the repository using authentication headers.2. OAuth Authentication Routes
src/server/oauth.py
.3. Session Middleware for Token Management
src/server/main.py
.query_processor
) to access and pass tokens toclone_repo
.🖥️ UI & User Experience
4. Authentication UI Updates
navbar.jinja
:📖 Documentation & Configuration
5. Updated README.md
🛠️ Miscellaneous Enhancements
6. Additional Improvements
.gitignore
updates: Ignores new directories.requirements.txt
updates: Adds dependencies for:Authlib
itsdangerous
These changes enhance security, usability, and documentation, enabling seamless private repository integration via GitHub OAuth. 🚀
