1 package C4
::Auth_with_shibboleth
;
3 # Copyright 2014 PTFS Europe
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
28 use vars
qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $debug);
32 $VERSION = 3.03; # set the version for version checking
36 qw(shib_ok logout_shib login_shib_url checkpw_shib get_login_shib);
39 # Check that shib config is not malformed
41 my $config = _get_shib_config
();
50 # Logout from Shibboleth
54 print $query->redirect( $uri . "/Shibboleth.sso/Logout?return=$uri" );
57 # Returns Shibboleth login URL with callback to the requesting URL
61 my $param = _get_uri
() . $query->script_name();
62 if ( $query->query_string() ) {
63 $param = $param . '%3F' . $query->query_string();
65 my $uri = _get_uri
() . "/Shibboleth.sso/Login?target=$param";
69 # Returns shibboleth user login
72 # In case of a Shibboleth authentication, we expect a shibboleth user attribute
73 # to contain the login match point of the shibboleth-authenticated user. This match
74 # point is configured in koha-conf.xml
76 # Shibboleth attributes are mapped into http environmement variables, so we're getting
77 # the match point of the user this way
79 # Get shibboleth config
80 my $config = _get_shib_config
();
82 my $matchAttribute = $config->{mapping
}->{ $config->{matchpoint
} }->{is
};
83 $debug and warn $matchAttribute . " value: " . $ENV{$matchAttribute};
85 return $ENV{$matchAttribute} || '';
88 # Checks for password correctness
89 # In our case : does the given attribute match one of our users ?
91 $debug and warn "checkpw_shib";
94 my $config = _get_shib_config
();
95 $debug and warn "User Shibboleth-authenticated as: $match";
97 # Does the given shibboleth attribute value ($match) match a valid koha user ?
99 Koha
::Database
->new()->schema()->resultset('Borrower')
100 ->find( { $config->{matchpoint
} => $match } );
101 if ( defined($borrower) ) {
102 return ( 1, $borrower->get_column('cardnumber'), $borrower->get_column('userid') );
105 # If we reach this point, the user is not a valid koha user
108 "User with $config->{matchpoint} of $match is not a valid Koha user";
114 my $protocol = "https://";
116 my $uri = C4
::Context
->preference('OPACBaseURL') // '';
118 $debug and warn 'OPACBaseURL not set!';
120 if ($uri =~ /(.*):\/\
/(.*)/) {
121 my $oldprotocol = $1;
122 if ($oldprotocol ne 'https') {
125 'Shibboleth requires OPACBaseURL to use the https protocol!';
130 my $return = $protocol . $uri;
134 sub _get_shib_config
{
135 my $config = C4
::Context
->config('shibboleth');
138 carp
'shibboleth config not defined';
142 if ( $config->{matchpoint
}
143 && defined( $config->{mapping
}->{ $config->{matchpoint
} }->{is
} ) )
146 warn "koha borrower field to match: " . $config->{matchpoint
};
147 warn "shibboleth attribute to match: "
148 . $config->{mapping
}->{ $config->{matchpoint
} }->{is
};
153 if ( !$config->{matchpoint
} ) {
154 carp
'shibboleth matchpoint not defined';
157 carp
'shibboleth matchpoint not mapped';
168 C4::Auth_with_shibboleth
172 use C4::Auth_with_shibboleth;
176 This module is specific to Shibboleth authentication in koha and relies heavily upon the native shibboleth service provider package in your operating system.
180 To use this type of authentication these additional packages are required:
194 shibboleth-sp2-schemas
198 We let the native shibboleth service provider packages handle all the complexities of shibboleth negotiation for us, and configuring this is beyond the scope of this documentation.
200 But to sum up, to get shibboleth working in koha, as a minimum you will need to:
206 Create some metadata for your koha instance (if you're in a single instance setup then the default metadata available at https://youraddress.com/Shibboleth.sso/Metadata should be adequate)
210 Swap metadata with your Identidy Provider (IdP)
214 Map their attributes to what you want to see in koha
218 Tell apache that we wish to allow koha to authenticate via shibboleth.
220 This is as simple as adding the below to your virtualhost config:
229 Configure koha to listen for shibboleth environment variables.
231 This is as simple as enabling B<useshibboleth> in koha-conf.xml:
233 <useshibboleth>1</useshibboleth>
237 Map shibboleth attributes to koha fields, and configure authentication match point in koha-conf.xml.
240 <matchpoint>userid<matchpoint> <!-- koha borrower field to match upon -->
242 <userid is="eduPersonID"></userid> <!-- koha borrower field to shibboleth attribute mapping -->
246 Note: The minimum you need here is a <matchpoint> block, containing a valid column name from the koha borrowers table, and a <mapping> block containing a relation between the chosen matchpoint and the shibboleth attribute name.
250 It should be as simple as that; you should now be able to login via shibboleth in the opac.
252 If you need more help configuring your B<S>ervice B<P>rovider to authenticate against a chosen B<Id>entity B<P>rovider then it might be worth taking a look at the community wiki L<page|http://wiki.koha-community.org/wiki/Shibboleth_Configuration>
258 Sends a logout signal to the native shibboleth service provider and then logs out of koha. Depending upon the native service provider configuration and identity provider capabilities this may or may not perform a single sign out action.
262 =head2 login_shib_url
264 Given a query, this will return a shibboleth login url with return code to page with given given query.
266 my $shibLoginURL = login_shib_url($query);
268 =head2 get_login_shib
270 Returns the shibboleth login attribute should it be found present in the http session
272 my $shib_login = get_login_shib();
276 Given a database handle and a shib_login attribute, this routine checks for a matching local user and if found returns true, their cardnumber and their userid. If a match is not found, then this returns false.
278 my ( $retval, $retcard, $retuserid ) = C4::Auth_with_shibboleth::checkpw_shib( $shib_login );