-
Notifications
You must be signed in to change notification settings - Fork 331
/
Copy paththird-party-strategies.ts
122 lines (103 loc) · 3.87 KB
/
third-party-strategies.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// c.f. vendor/clerk-js/src/ui/hooks/useEnabledThirdPartyProviders.tsx [Modified]
import { iconImageUrl } from '@clerk/shared/constants';
import { OAUTH_PROVIDERS } from '@clerk/shared/oauth';
import { WEB3_PROVIDERS } from '@clerk/shared/web3';
import type {
EnterpriseSSOStrategy,
EnvironmentResource,
OAuthProvider,
OAuthStrategy,
SamlStrategy,
Web3Provider,
Web3Strategy,
} from '@clerk/types';
import { fromEntries } from './clerk-js';
export type ThirdPartyStrategy =
| {
id: Web3Strategy | OAuthStrategy;
iconUrl: string;
name: string;
}
| {
strategy: SamlStrategy | EnterpriseSSOStrategy;
iconUrl?: never;
name: string;
};
export type ThirdPartyProvider =
| {
strategy: Web3Strategy | OAuthStrategy;
iconUrl: string;
name: string;
}
| {
strategy: SamlStrategy | EnterpriseSSOStrategy;
iconUrl?: never;
name: string;
};
type ThirdPartyStrategyToDataMap = {
[k in Web3Strategy | OAuthStrategy]: ThirdPartyStrategy;
};
type ThirdPartyProviderToDataMap = {
[k in Web3Provider | OAuthProvider]: ThirdPartyProvider;
};
export interface EnabledThirdPartyProviders {
authenticatableOauthStrategies: OAuthStrategy[];
providerToDisplayData: ThirdPartyProviderToDataMap;
strategies: (Web3Strategy | OAuthStrategy)[];
strategyToDisplayData: ThirdPartyStrategyToDataMap;
web3Strategies: Web3Strategy[];
}
const oauthStrategies = OAUTH_PROVIDERS.map(p => p.strategy);
export const providerToDisplayData: ThirdPartyProviderToDataMap = fromEntries(
[...OAUTH_PROVIDERS, ...WEB3_PROVIDERS].map(p => {
return [p.provider, { iconUrl: iconImageUrl(p.provider), name: p.name, strategy: p.strategy }];
}),
) as ThirdPartyProviderToDataMap;
const strategyToDisplayData: ThirdPartyStrategyToDataMap = fromEntries(
[...OAUTH_PROVIDERS, ...WEB3_PROVIDERS].map(p => {
return [p.strategy, { iconUrl: iconImageUrl(p.provider), id: p.provider, name: p.name }];
}),
) as ThirdPartyStrategyToDataMap;
export function isSamlStrategy(strategy: any): strategy is SamlStrategy {
return strategy === 'saml';
}
export function isEnterpriseSSOStrategy(strategy: any): strategy is EnterpriseSSOStrategy {
return strategy === 'enterprise_sso';
}
export function isWeb3Strategy(
strategy: any,
available: EnabledThirdPartyProviders['web3Strategies'],
): strategy is Web3Strategy {
return available.includes(strategy.startsWith('web3_') ? strategy : `web3_${strategy}_signature`);
}
export function isAuthenticatableOauthStrategy(
strategy: any,
available: EnabledThirdPartyProviders['authenticatableOauthStrategies'],
): strategy is OAuthStrategy {
return available.includes(strategy.startsWith('oauth_') ? strategy : `oauth_${strategy}`);
}
const emptyThirdPartyProviders: EnabledThirdPartyProviders = {
authenticatableOauthStrategies: [],
providerToDisplayData: {} as any,
strategies: [],
strategyToDisplayData: {} as any,
web3Strategies: [],
};
export const getEnabledThirdPartyProviders = (
environment: EnvironmentResource | undefined | null,
): EnabledThirdPartyProviders => {
if (!environment?.userSettings) {
return emptyThirdPartyProviders;
}
const { socialProviderStrategies, web3FirstFactors, authenticatableSocialStrategies } = environment.userSettings;
// Filter out any OAuth strategies that are not yet known, they are not included in our types.
const knownSocialProviderStrategies = socialProviderStrategies.filter(s => oauthStrategies.includes(s));
const knownAuthenticatableSocialStrategies = authenticatableSocialStrategies.filter(s => oauthStrategies.includes(s));
return {
authenticatableOauthStrategies: [...knownAuthenticatableSocialStrategies],
providerToDisplayData: providerToDisplayData,
strategies: [...knownSocialProviderStrategies, ...web3FirstFactors],
strategyToDisplayData: strategyToDisplayData,
web3Strategies: web3FirstFactors,
};
};