Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
1138b06
working on adding shibboleth to Dendro
nelsonmmp May 16, 2018
0f56f65
changed parameters type
nelsonmmp May 17, 2018
8cb7c8e
Update load_logic_routes.js
nelsonmmp May 21, 2018
6ac96c1
Update bower.json
nelsonmmp May 21, 2018
9f71525
still working on UP Shibboleth
nelsonmmp May 21, 2018
4dabf90
Fixed comflicts
nelsonmmp May 21, 2018
45e550c
Changed console.log calls to Logger
nelsonmmp May 22, 2018
42f1cc9
first iteration of shibboleth sign-in working
nelsonmmp May 24, 2018
f349db1
Shibboleth users are now blocked from editing their profile in Dendro…
nelsonmmp May 24, 2018
8c38dc6
Users authenticated via federated sign-in can only edit their avatar
nelsonmmp May 24, 2018
0ff7f6b
added the configuration "shibbolethUP" to the remaining configuration…
nelsonmmp May 24, 2018
475782c
- Changed the name of the routes for ShibbolethUP
nelsonmmp May 25, 2018
c4b263e
Changed Shibboleth_UP class
nelsonmmp Jun 6, 2018
4d8eec8
refactored code
nelsonmmp Jun 6, 2018
6584160
Edited the shibboleth options for the other Dendro configs(test, trav…
nelsonmmp Jun 6, 2018
c0bf86a
Removed code that originated from another branch where I was working …
nelsonmmp Jun 6, 2018
eaf17c9
Login via UP sign in is now working
nelsonmmp Jun 14, 2018
23ea83a
Added a few TODOs
nelsonmmp Jun 14, 2018
cbc091d
working on updating user info everytime the user login via shibboleth
nelsonmmp Jun 15, 2018
f91cebb
Cleaned code a bit
nelsonmmp Jun 18, 2018
3386217
Cleaned code
nelsonmmp Jun 19, 2018
7c08a2a
Edited error message
nelsonmmp Jun 19, 2018
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
55 changes: 54 additions & 1 deletion conf/deployment_configs.json
Original file line number Diff line number Diff line change
Expand Up @@ -380,11 +380,25 @@
"callback_url": "/auth/orcid/callback"
},
"saml": {
"enabled": true,
"enabled": false,
"callback_path": "/auth/saml/callback",
"entry_point": "https://openidp.feide.no/simplesaml/saml2/idp/SSOService.php",
"issuer": "passport-saml",
"button_text": "Sign-in with SIGARRA"
},
"shibboleth":
{
"enabled": true,
"business_logic_handler": "bootup/models/shibboleth/shibboleth_UP.js",
"callback_url": "http://dendropessoal.up.pt:3001/Shibboleth/login/callback",
"button_url": "http://dendropessoal.up.pt:3001/Shibboleth",
"entry_point": "https://stark.up.pt/idp/profile/SAML2/Redirect/SSO",
"issuer": "https://dendropessoal.up.pt/shibboleth",
"session_secret": "secret123",
"button_text": "UP-Sign-in",
"idp_cert_path": "/Users/nelsonpereira/Desktop/infolaRepos/dendroRepo/dendro/conf/cert/idp_cert.pem",
"key_path": "/Users/nelsonpereira/Desktop/infolaRepos/dendroRepo/dendro/conf/cert/key.pem",
"cert_path": "/Users/nelsonpereira/Desktop/infolaRepos/dendroRepo/dendro/conf/cert/cert.pem"
}
},
"numCPUs": 4
Expand Down Expand Up @@ -770,6 +784,19 @@
"entry_point": "https://openidp.feide.no/simplesaml/saml2/idp/SSOService.php",
"issuer": "passport-saml",
"button_text": "Sign-in with SIGARRA"
},
"shibboleth": {
"enabled": false,
"business_logic_handler": "default_string",
"callback_url": "default_string",
"button_url": "default_string",
"entry_point": "default_string",
"issuer": "default_string",
"session_secret": "default_string",
"button_text": "default_string",
"idp_cert_path": "default_string",
"key_path": "default_string",
"cert_path": "default_string"
}
},
"numCPUs": 1
Expand Down Expand Up @@ -1155,6 +1182,19 @@
"entry_point": "https://openidp.feide.no/simplesaml/saml2/idp/SSOService.php",
"issuer": "passport-saml",
"button_text": "Sign-in with SIGARRA"
},
"shibboleth": {
"enabled": false,
"business_logic_handler": "default_string",
"callback_url": "default_string",
"button_url": "default_string",
"entry_point": "default_string",
"issuer": "default_string",
"session_secret": "default_string",
"button_text": "default_string",
"idp_cert_path": "default_string",
"key_path": "default_string",
"cert_path": "default_string"
}
},
"numCPUs": 1
Expand Down Expand Up @@ -1540,6 +1580,19 @@
"entry_point": "https://openidp.feide.no/simplesaml/saml2/idp/SSOService.php",
"issuer": "passport-saml",
"button_text": "Sign-in with SIGARRA"
},
"shibboleth": {
"enabled": false,
"business_logic_handler": "default_string",
"callback_url": "default_string",
"button_url": "default_string",
"entry_point": "default_string",
"issuer": "default_string",
"session_secret": "default_string",
"button_text": "default_string",
"idp_cert_path": "default_string",
"key_path": "default_string",
"cert_path": "default_string"
}
},
"numCPUs": 1
Expand Down
Loading