mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
29264061d8
Check if IdP metadata to hide set GitOrigin-RevId: 7a30961730b21d512b55faf718e5fe97e15eb6ce
71 lines
1.5 KiB
JavaScript
71 lines
1.5 KiB
JavaScript
'use strict'
|
|
|
|
const _ = require('lodash')
|
|
|
|
class UKAMFEntity {
|
|
constructor(data) {
|
|
this.data = data
|
|
}
|
|
|
|
getSamlConfig() {
|
|
let hiddenIdP = false
|
|
const idp = this.data.IDPSSODescriptor[0]
|
|
const idpMetaData =
|
|
_.get(this.data, [
|
|
'Extensions',
|
|
0,
|
|
'mdattr:EntityAttributes',
|
|
0,
|
|
'saml:Attribute',
|
|
]) || []
|
|
idpMetaData.forEach(data => {
|
|
const value = _.get(data, ['saml:AttributeValue', 0])
|
|
if (
|
|
value === 'http://refeds.org/category/hide-from-discovery' ||
|
|
value === 'https://refeds.org/category/hide-from-discovery'
|
|
) {
|
|
hiddenIdP = true
|
|
}
|
|
})
|
|
|
|
const keys = idp.KeyDescriptor
|
|
|
|
const signingKey =
|
|
keys.length === 1
|
|
? keys[0]
|
|
: keys.find(key => _.get(key, ['$', 'use']) === 'signing')
|
|
const entityId = this.data.$.entityID
|
|
|
|
let cert = _.get(signingKey, [
|
|
'ds:KeyInfo',
|
|
0,
|
|
'ds:X509Data',
|
|
0,
|
|
'ds:X509Certificate',
|
|
0,
|
|
])
|
|
if (!cert) {
|
|
throw new Error('no cert')
|
|
}
|
|
cert = cert.replace(/\s/g, '')
|
|
|
|
let entryPoint = idp.SingleSignOnService.find(
|
|
sso =>
|
|
_.get(sso, ['$', 'Binding']) ===
|
|
'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect'
|
|
)
|
|
entryPoint = _.get(entryPoint, ['$', 'Location'])
|
|
if (!entryPoint) {
|
|
throw new Error('no entryPoint')
|
|
}
|
|
|
|
return {
|
|
cert,
|
|
entityId,
|
|
entryPoint,
|
|
hiddenIdP,
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = UKAMFEntity
|