Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
23 changes: 23 additions & 0 deletions .github/workflows/production-build-without-database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:

permissions:
contents: read
actions: write

env:
ALLOWED_HOSTNAMES: ${{ vars.CI_ALLOWED_HOSTNAMES }}
Expand Down Expand Up @@ -44,4 +45,26 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/dangerous-git-checkout
- uses: ./.github/actions/yarn-install
- name: Generate cache key
id: cache-key
uses: ./.github/actions/cache-build-key
with:
branch_key: ${{ github.head_ref || github.ref_name }}
- name: Check if production build cache exists
uses: actions/cache@v4
id: cache-check
with:
path: |
${{ github.workspace }}/apps/web/.next
${{ github.workspace }}/apps/web/public/embed
**/.turbo/**
**/dist/**
key: ${{ steps.cache-key.outputs.key }}
lookup-only: true
- name: Delete old production build caches for this branch
if: steps.cache-check.outputs.cache-hit != 'true'
uses: useblacksmith/cache-delete@v1
with:
key: prod-build-${{ github.head_ref || github.ref_name }}
prefix: "true"
- uses: ./.github/actions/cache-build
26 changes: 24 additions & 2 deletions packages/features/auth/lib/next-auth-options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ import { dub } from "./dub";
import { validateSamlAccountConversion } from "./samlAccountLinking";
import CalComAdapter from "./next-auth-custom-adapter";
import { verifyPassword } from "./verifyPassword";
import { UserProfile } from "@calcom/types/UserProfile";

type UserWithProfiles = NonNullable<
Awaited<ReturnType<UserRepository["findByEmailAndIncludeProfilesAndPassword"]>>
Expand Down Expand Up @@ -274,6 +275,16 @@ export const CalComCredentialsProvider = CredentialsProvider({
});

const providers: Provider[] = [CalComCredentialsProvider, ImpersonationProvider];
type SamlIdpUser = {
id: number;
userId: number;
firstName: string;
lastName: string;
email: string;
name: string;
email_verified: boolean;
profile: UserProfile;
};

if (IS_GOOGLE_LOGIN_ENABLED) {
providers.push(
Expand Down Expand Up @@ -356,7 +367,7 @@ if (isSAMLLoginEnabled) {
credentials: {
code: {},
},
async authorize(credentials) {
async authorize(credentials): Promise<SamlIdpUser | null> {
log.debug("CredentialsProvider:saml-idp:authorize", safeStringify({ credentials }));
if (!credentials) {
return null;
Expand Down Expand Up @@ -418,7 +429,11 @@ if (isSAMLLoginEnabled) {
}
const [userProfile] = user?.allProfiles ?? [];
return {
// This `id` is actually email as sent by the saml configuration of NameId=email
// Instead of changing it, we introduce a new userId field to the object
// Also, another reason to not touch it is that setting to to user.id starts breaking the saml-idp flow with an uncaught error something related to that it is expected to be a string
id: id as unknown as number,
userId: user.id,
firstName,
lastName,
email,
Expand Down Expand Up @@ -622,7 +637,14 @@ export const getOptions = ({
log.debug("callbacks:jwt:accountType:credentials", safeStringify({ account }));
// return token if credentials,saml-idp
if (account.provider === "saml-idp") {
return { ...token, upId: user.profile?.upId ?? token.upId ?? null } as JWT;
const samlIdpUser = user as SamlIdpUser;
const updatedToken = {
...token,
// Server Session explicitly requires sub to be userId. So, override what is set by BoxyHQ
sub: samlIdpUser.userId.toString(),
upId: samlIdpUser.profile?.upId ?? token.upId ?? null,
} as JWT;
return updatedToken;
}
// any other credentials, add user info
return {
Expand Down
Loading