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

feat: Adding loggers for workspaces api #681

Merged
merged 3 commits into from
Oct 13, 2024
Merged

Conversation

Ashutosh619-sudo
Copy link
Contributor

@Ashutosh619-sudo Ashutosh619-sudo commented Oct 9, 2024

Description

Please add PR description here, add screenshots if needed

Clickup

Please add link here
https://app.clickup.com/1864988/v/l/6-901603904304-1

Summary by CodeRabbit

  • New Features

    • Enhanced logging for workspace retrieval to improve traceability.
    • Implemented error handling for OAuth connection issues in the QBO integration.
    • Added validation checks for QBO credentials to ensure they are active before processing.
  • Bug Fixes

    • Improved error logging for invalid or expired authorization codes during QBO connection.

Copy link

coderabbitai bot commented Oct 9, 2024

Walkthrough

The changes in this pull request involve modifications to the WorkspaceView and ConnectQBOView classes in apps/workspaces/views.py. Enhancements include the addition of logging statements in the get method of WorkspaceView to improve traceability of workspace retrievals, and the implementation of error handling in ConnectQBOView to manage exceptions during OAuth connections. The get method in ConnectQBOView now also validates QBO credentials, responding with a 400 status for invalid or expired credentials.

Changes

File Path Change Summary
apps/workspaces/views.py - Updated get method in WorkspaceView to add logging for user ID and workspace details.
- Updated post method in ConnectQBOView to include error handling and refined logging.
- Updated get method in ConnectQBOView to check validity of QBO credentials, returning 400 for invalid ones.

Possibly related PRs

  • feat: Add middleware to log all post requests #680: The changes in this PR involve logging functionality for POST requests, which is conceptually related to the logging enhancements made in the WorkspaceView and ConnectQBOView classes in the main PR. Both PRs focus on improving logging for better traceability and debugging.

Suggested labels

size/S

Suggested reviewers

  • ashwin1111

Poem

🐇 In the world of workspaces, we hop and play,
With logs and checks to light the way.
OAuth connections, now safe and sound,
Invalid codes won't stick around.
So let's celebrate with a joyful cheer,
For better tracking, we hold dear! 🎉


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 201ce76 and d283f66.

📒 Files selected for processing (1)
  • apps/workspaces/views.py (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • apps/workspaces/views.py

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@github-actions github-actions bot added the size/XS Extra Small PR label Oct 9, 2024
Copy link

github-actions bot commented Oct 9, 2024

Tests Skipped Failures Errors Time
261 0 💤 0 ❌ 0 🔥 45.821s ⏱️

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Outside diff range and nitpick comments (3)
apps/workspaces/views.py (3)

63-65: LGTM! Consider adding structured logging.

The added logging statements improve traceability and debugging capabilities. They provide relevant information about the user and workspace retrieval process.

Consider using structured logging for easier parsing and analysis:

logger.info('Workspace retrieval', extra={
    'user_id': request.user,
    'workspace_details': workspaces[0].__dict__ if workspaces else None,
    'org_id': org_id
})

This approach allows for more efficient log parsing and analysis in production environments.

Also applies to: 72-73


Line range hint 127-129: LGTM! Consider enhancing error handling.

The added error handling improves the robustness of the OAuth connection process. The logging message provides useful information about the error, and the HTTP status code is appropriate.

Consider separating the error handling for different exception types to provide more specific error messages to the client:

except qbo_exc.UnauthorizedClientError as e:
    logger.error('Unauthorized client error', extra={'error': str(e)})
    return Response({'message': 'Unauthorized client'}, status=status.HTTP_401_UNAUTHORIZED)
except qbo_exc.NotFoundClientError as e:
    logger.error('QBO application not found', extra={'error': str(e)})
    return Response({'message': 'QBO application not found'}, status=status.HTTP_404_NOT_FOUND)
except (qbo_exc.WrongParamsError, qbo_exc.InternalServerError) as e:
    logger.error('QBO error', extra={'error': str(e)})
    return Response({'message': 'An error occurred while connecting to QBO'}, status=status.HTTP_500_INTERNAL_SERVER_ERROR)

This approach provides more specific error messages and appropriate status codes for different error scenarios.


Line range hint 137-140: LGTM! Consider enhancing the response structure.

The added check for credential validity improves the reliability of the API. The use of the is_expired flag and the appropriate HTTP status code for invalid credentials are good practices.

Consider enhancing the response structure to provide more informative feedback:

if qbo_credentials.refresh_token and not qbo_credentials.is_expired:
    return Response(data=QBOCredentialSerializer(qbo_credentials).data, status=status.HTTP_200_OK)
else:
    return Response(
        data={
            'error': 'Invalid or expired QBO credentials',
            'is_expired': qbo_credentials.is_expired,
            'has_refresh_token': bool(qbo_credentials.refresh_token)
        },
        status=status.HTTP_400_BAD_REQUEST
    )

This approach provides more detailed information about why the credentials are considered invalid, which can be helpful for debugging and client-side error handling.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between b9ae13f and 201ce76.

📒 Files selected for processing (1)
  • apps/workspaces/views.py (1 hunks)
🧰 Additional context used

if workspaces:
logger.info('Workspace detail %s', workspaces[0].__dict__)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

print whole workspaces variable, I am fine with it being ORM Returned object, id would still be visible

Copy link

Tests Skipped Failures Errors Time
261 0 💤 0 ❌ 0 🔥 50.685s ⏱️

Copy link

Tests Skipped Failures Errors Time
261 0 💤 0 ❌ 0 🔥 1m 0s ⏱️

@Ashutosh619-sudo Ashutosh619-sudo merged commit 6de716a into master Oct 13, 2024
4 checks passed
Ashutosh619-sudo added a commit that referenced this pull request Oct 14, 2024
* feat: Adding loggers for workspaces api

* comment resolved
Ashutosh619-sudo added a commit that referenced this pull request Oct 14, 2024
* feat: Adding loggers for workspaces api

* comment resolved
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
size/XS Extra Small PR
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants