mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-11 10:21:22 +00:00
35 lines
1 KiB
TypeScript
35 lines
1 KiB
TypeScript
import getMeta from '../../../utils/meta'
|
|
import { DomainInfo } from '../components/emails/add-email/input'
|
|
import { ExposedSettings } from '../../../../../types/exposed-settings'
|
|
import { Institution } from '../../../../../types/institution'
|
|
|
|
export const ssoAvailableForDomain = (domain: DomainInfo | null) => {
|
|
const { hasSamlBeta, hasSamlFeature } = getMeta(
|
|
'ol-ExposedSettings'
|
|
) as ExposedSettings
|
|
if (!hasSamlFeature || !domain || !domain.confirmed || !domain.university) {
|
|
return false
|
|
}
|
|
if (domain.university.ssoEnabled) {
|
|
return true
|
|
}
|
|
return hasSamlBeta && domain.university.ssoBeta
|
|
}
|
|
|
|
export const ssoAvailableForInstitution = (institution: Institution | null) => {
|
|
const { hasSamlBeta, hasSamlFeature } = getMeta(
|
|
'ol-ExposedSettings'
|
|
) as ExposedSettings
|
|
if (
|
|
!hasSamlFeature ||
|
|
!institution ||
|
|
!institution.confirmed ||
|
|
!institution.isUniversity
|
|
) {
|
|
return false
|
|
}
|
|
if (institution.ssoEnabled) {
|
|
return true
|
|
}
|
|
return hasSamlBeta && institution.ssoBeta
|
|
}
|