summaryrefslogtreecommitdiffstats
path: root/shib
diff options
context:
space:
mode:
Diffstat (limited to 'shib')
-rw-r--r--shib/api.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/shib/api.php b/shib/api.php
index 38b2d7a..0c32f9a 100644
--- a/shib/api.php
+++ b/shib/api.php
@@ -47,11 +47,18 @@ if (empty($_SERVER['persistent-id'])) {
file_put_contents('/tmp/shib-nopid-' . time() . '-' . $_SERVER['REMOTE_ADDR'] . '.txt', print_r($_SERVER, true));
} else {
// Query database for user
- $shibId = md5($_SERVER['persistent-id']);
+ $shibId = [ md5($_SERVER['persistent-id']) ];
+ if (strpos($_SERVER['persistent-id'], ';') !== false) {
+ foreach (explode(';', $_SERVER['persistent-id']) as $s) {
+ if (empty($s))
+ continue;
+ $shibId[] = md5($s);
+ }
+ }
$user = Database::queryFirst("SELECT user.userid, user.organizationid, user.firstname, user.lastname, user.email "
. " FROM user "
. " INNER JOIN organization USING (organizationid) "
- . " WHERE user.shibid = :shibid LIMIT 1", array('shibid' => $shibId));
+ . " WHERE user.shibid IN (:shibid) LIMIT 1", array('shibid' => $shibId));
// Figure out role
if (strpos(";{$_SERVER['entitlement']};", CONFIG_ENTITLEMENT) !== false) {
$role = 'TUTOR';