BookReaderAuth.php, which sets loan related cookies from values passed from OL, so...
[bookreader.git] / BookReaderIA / www / BookReaderAuth.php
1 <?
2 /*
3 Copyright(c)2011 Internet Archive. Software license AGPL version 3.
4
5 This file is part of BookReader.
6
7     BookReader is free software: you can redistribute it and/or modify
8     it under the terms of the GNU Affero 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.
11
12     BookReader is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15     GNU Affero General Public License for more details.
16
17     You should have received a copy of the GNU Affero General Public License
18     along with BookReader.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 $id = $_POST['id'];
22 $uuid = $_POST['uuid'];
23 $token = $_POST['token'];
24 $bookPath = $_POST['bookPath'];
25
26 // XXX sanitize incoming params!
27 setcookie('br-loan-' . $id, $uuid, 0, '/', '.archive.org');
28 setcookie('loan-' . $id, $token, 0, '/', '.archive.org');
29
30 header('Location: ' . $bookPath);
31
32 ?>