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: test realtime webhook #493

Closed
wants to merge 3 commits into from
Closed

Conversation

naelob
Copy link
Member

@naelob naelob commented Jun 11, 2024

No description provided.

@rflihxyz
Copy link
Contributor

Qovery Preview

Qovery can create a Preview Environment for this PR.
To trigger its creation, please post a comment with one of the following command.

Command Blueprint environment
/qovery preview 783d0240-ec38-4387-a9a9-8e225f1bd3e1 dev
/qovery preview {all|UUID1,UUID2,...} To preview multiple environments

This comment has been generated from Qovery AI 🤖.
Below, a word from its wisdom :

Help yourself at 2AM by putting some metrics to help observability

Copy link

vercel bot commented Jun 11, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
panora-client-ts ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 11, 2024 9:37pm

Copy link

changeset-bot bot commented Jun 11, 2024

⚠️ No Changeset found

Latest commit: 87c9106

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link

gitguardian bot commented Jun 11, 2024

⚠️ GitGuardian has uncovered 2 secrets following the scan of your pull request.

Please consider investigating the findings and remediating the incidents. Failure to do so may lead to compromising the associated services or software components.

🔎 Detected hardcoded secrets in your pull request
GitGuardian id GitGuardian status Secret Commit Filename
11681213 Triggered Generic High Entropy Secret 61339fd ngrok.yml View secret
11681213 Triggered Generic High Entropy Secret 4cfc64b ngrok.yml View secret
🛠 Guidelines to remediate hardcoded secrets
  1. Understand the implications of revoking this secret by investigating where it is used in your code.
  2. Replace and store your secrets safely. Learn here the best practices.
  3. Revoke and rotate these secrets.
  4. If possible, rewrite git history. Rewriting git history is not a trivial act. You might completely break other contributing developers' workflow and you risk accidentally deleting legitimate data.

To avoid such incidents in the future consider


🦉 GitGuardian detects secrets in your source code to help developers and security teams secure the modern development process. You are seeing this because you or someone else with access to this repository has authorized GitGuardian to scan your pull request.

Copy link
Contributor

coderabbitai bot commented Jun 11, 2024

Important

Review skipped

Auto reviews are disabled on this repository.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


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>.
    • 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 generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @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 as 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.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration 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.

@CLAassistant
Copy link

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

Copy link

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

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

PR Summary

  • Introduced real-time webhook functionality for Zendesk
  • Added new models for file storage integrations in schema.prisma
  • Enhanced handler.module.ts to include additional modules
  • Updated sync services to handle real-time webhook triggers for accounts, contacts, tickets, and users
  • Added default sync methods for individual entities across various service classes

Comment on lines +319 to +328
await this.syncAccountsService.syncAccountsForLinkedUser(
connection.provider_slug.toLowerCase(),
connection.id_linked_user,
connection.id_project,
{
action:
event_action.toLowerCase() == 'deleted' ? 'DELETE' : 'UPDATE',
data: { remote_id: payload_.detail.id as string },
},
);
Copy link

Choose a reason for hiding this comment

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

Missing 'break' statement after 'organization' case.

Comment on lines +65 to +73
async syncAccount(
linkedUserId: string,
remote_id: string,
): Promise<ApiResponse<any[]>> {
return {
data: [],
message: 'Default syncAccount implementation',
statusCode: 200,
};
Copy link

Choose a reason for hiding this comment

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

Consider implementing the actual logic for syncing a single account instead of returning a default response.

Comment on lines +75 to +78
return {
data: [],
message: 'Default syncAccount implementation',
statusCode: 200,
Copy link

Choose a reason for hiding this comment

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

Returning an empty data array might be misleading. Consider returning null or an appropriate message indicating that the method is not yet implemented.

Comment on lines +167 to +171
return await this.removeAccountInDb(
linkedUserId,
integrationId,
wh_real_time_trigger.data.remote_id,
);
Copy link

Choose a reason for hiding this comment

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

Ensure existingAccount is checked for null before accessing its properties.

Comment on lines 30 to 31
remote_account_id: string,
): Promise<ApiResponse<GorgiasContactOutput[]>> {
Copy link

Choose a reason for hiding this comment

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

Removing the check for 'remote_account_id' might lead to issues if this parameter is required for the function to operate correctly.

this.logger.log(`Synced zendesk unique ticket !`);

return {
data: [resp.data.ticket],
Copy link

Choose a reason for hiding this comment

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

Ensure 'resp.data.ticket' is not undefined or null before returning it.

Comment on lines +166 to +170
return await this.removeTicketInDb(
linkedUserId,
integrationId,
wh_real_time_trigger.data.remote_id,
);
Copy link

Choose a reason for hiding this comment

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

Ensure removeTicketInDb handles cases where existingTicket is null to avoid runtime errors.

Comment on lines +65 to +73
async syncUser(
linkedUserId: string,
remote_id: string,
): Promise<ApiResponse<any[]>> {
return {
data: [],
message: 'Default syncUser implementation',
statusCode: 200,
};
Copy link

Choose a reason for hiding this comment

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

Consider implementing the actual logic for syncing a single user instead of returning a default response.

Comment on lines +64 to +72
async syncUser(
linkedUserId: string,
remote_id: string,
): Promise<ApiResponse<any[]>> {
return {
data: [],
message: 'Default syncUser implementation',
statusCode: 200,
};
Copy link

Choose a reason for hiding this comment

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

Consider implementing the actual logic for syncing a single user instead of returning a default response.

Comment on lines +360 to +366
const existingUser = await this.prisma.tcg_users.findFirst({
where: {
remote_id: remote_id,
remote_platform: originSource,
id_linked_user: linkedUserId,
},
});
Copy link

Choose a reason for hiding this comment

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

Check if existingUser is null before attempting to delete.

@naelob naelob closed this Jun 11, 2024
@naelob naelob deleted the feat/realtime-webhook-zendesk branch June 11, 2024 21:40
@rflihxyz rflihxyz linked an issue Jun 13, 2024 that may be closed by this pull request
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

feat: Webhook Listeners
3 participants