fix: correct license check to use data.valid instead of data.status in API v2#28521
Open
Harshithk951 wants to merge 2 commits intocalcom:mainfrom
Open
fix: correct license check to use data.valid instead of data.status in API v2#28521Harshithk951 wants to merge 2 commits intocalcom:mainfrom
Harshithk951 wants to merge 2 commits intocalcom:mainfrom
Conversation
3 tasks
Contributor
There was a problem hiding this comment.
1 issue found across 1 file (changes from recent commits).
Prompt for AI agents (unresolved issues)
Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.
<file name="apps/api/v2/src/modules/deployments/deployments.service.ts">
<violation number="1" location="apps/api/v2/src/modules/deployments/deployments.service.ts:45">
P2: License check fallback is only applied on fresh fetch responses; cached responses still read only `valid`, so legacy cached `{status: true}` payloads bypass the fix.</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
| const cacheKey = getLicenseCacheKey(licenseKey); | ||
| this.redisService.redis.set(cacheKey, JSON.stringify(data), "EX", CACHING_TIME); | ||
| return data.status; | ||
| return data.valid ?? data.status ?? false; |
Contributor
There was a problem hiding this comment.
P2: License check fallback is only applied on fresh fetch responses; cached responses still read only valid, so legacy cached {status: true} payloads bypass the fix.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At apps/api/v2/src/modules/deployments/deployments.service.ts, line 45:
<comment>License check fallback is only applied on fresh fetch responses; cached responses still read only `valid`, so legacy cached `{status: true}` payloads bypass the fix.</comment>
<file context>
@@ -42,6 +42,6 @@ export class DeploymentsService {
const cacheKey = getLicenseCacheKey(licenseKey);
this.redisService.redis.set(cacheKey, JSON.stringify(data), "EX", CACHING_TIME);
- return data.valid;
+ return data.valid ?? data.status ?? false;
}
}
</file context>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What does this PR do?
Fixes #26610
The
checkLicense()method indeployments.service.tswas checkingdata.statusto validate the license key, but the Cal.com license APIreturns
data.valid(notdata.status). This caused all API v2requests to fail with "Invalid or missing CALCOM_LICENSE_KEY" even
when a valid license key was set.
Visual Demo (For contributors especially)
N/A — single property name fix, no UI changes.
Mandatory Tasks (DO NOT REMOVE)
How should this be tested?
CALCOM_LICENSE_KEYin your environmentNo new environment variables required.
Checklist