Skip to content
Snippets Groups Projects
Commit bacff966 authored by Demian Katz's avatar Demian Katz
Browse files

Implemented privacy mode.

- Disables database storage of personally identifying information.
parent b83b3582
Branches
Tags
No related merge requests found
...@@ -290,6 +290,13 @@ ils_encryption_key = false ...@@ -290,6 +290,13 @@ ils_encryption_key = false
;minimum_password_length = 4 ;minimum_password_length = 4
;maximum_password_length = 32 ;maximum_password_length = 32
; Uncomment this line to switch on "privacy mode" in which no user information
; will be stored in the database. Note that this is incompatible with social
; features, password resets, and many other features. It is not recommended for
; use with "Database" authentication, since the user will be forced to create a
; new account upon every login.
;privacy = true
; See the comments in library/VF/Auth/MultiAuth.php for full details ; See the comments in library/VF/Auth/MultiAuth.php for full details
; on using multiple authentication methods. Note that MultiAuth assumes login ; on using multiple authentication methods. Note that MultiAuth assumes login
; with username and password, so some methods (i.e. Shibboleth) may not be ; with username and password, so some methods (i.e. Shibboleth) may not be
......
...@@ -374,6 +374,7 @@ class Manager implements \ZfcRbac\Identity\IdentityProviderInterface ...@@ -374,6 +374,7 @@ class Manager implements \ZfcRbac\Identity\IdentityProviderInterface
// Clear out the cached user object and session entry. // Clear out the cached user object and session entry.
$this->currentUser = false; $this->currentUser = false;
unset($this->session->userId); unset($this->session->userId);
unset($this->session->userDetails);
$this->cookieManager->set('loggedOut', 1); $this->cookieManager->set('loggedOut', 1);
// Destroy the session for good measure, if requested. // Destroy the session for good measure, if requested.
...@@ -408,11 +409,22 @@ class Manager implements \ZfcRbac\Identity\IdentityProviderInterface ...@@ -408,11 +409,22 @@ class Manager implements \ZfcRbac\Identity\IdentityProviderInterface
{ {
// If user object is not in cache, but user ID is in session, // If user object is not in cache, but user ID is in session,
// load the object from the database: // load the object from the database:
if (!$this->currentUser && isset($this->session->userId)) { if (!$this->currentUser) {
$results = $this->userTable if (isset($this->session->userId)) {
->select(['id' => $this->session->userId]); // normal mode
$this->currentUser = count($results) < 1 $results = $this->userTable
? false : $results->current(); ->select(['id' => $this->session->userId]);
$this->currentUser = count($results) < 1
? false : $results->current();
} else if (isset($this->session->userDetails)) {
// privacy mode
$results = $this->userTable->createRow();
$results->exchangeArray($this->session->userDetails);
$this->currentUser = $results;
} else {
// unexpected state
$this->currentUser = false;
}
} }
return $this->currentUser; return $this->currentUser;
} }
...@@ -441,6 +453,17 @@ class Manager implements \ZfcRbac\Identity\IdentityProviderInterface ...@@ -441,6 +453,17 @@ class Manager implements \ZfcRbac\Identity\IdentityProviderInterface
return false; return false;
} }
/**
* Are we in privacy mode?
*
* @return bool
*/
public function inPrivacyMode()
{
return isset($this->config->Authentication->privacy)
&& $this->config->Authentication->privacy;
}
/** /**
* Updates the user information in the session. * Updates the user information in the session.
* *
...@@ -451,7 +474,11 @@ class Manager implements \ZfcRbac\Identity\IdentityProviderInterface ...@@ -451,7 +474,11 @@ class Manager implements \ZfcRbac\Identity\IdentityProviderInterface
public function updateSession($user) public function updateSession($user)
{ {
$this->currentUser = $user; $this->currentUser = $user;
$this->session->userId = $user->id; if ($this->inPrivacyMode()) {
$this->session->userDetails = $user->toArray();
} else {
$this->session->userId = $user->id;
}
$this->cookieManager->clear('loggedOut'); $this->cookieManager->clear('loggedOut');
} }
......
...@@ -142,6 +142,7 @@ class AccountCapabilities ...@@ -142,6 +142,7 @@ class AccountCapabilities
*/ */
protected function isAccountAvailable() protected function isAccountAvailable()
{ {
return $this->auth->loginEnabled(); // We can't use account features if login is broken or privacy is on:
return $this->auth->loginEnabled() && !$this->auth->inPrivacyMode();
} }
} }
<?php
/**
* Fake database row to represent a user in privacy mode.
*
* PHP version 5
*
* Copyright (C) Villanova University 2015.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @category VuFind2
* @package Db_Row
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://vufind.org Main Site
*/
namespace VuFind\Db\Row;
/**
* Fake database row to represent a user in privacy mode.
*
* @category VuFind2
* @package Db_Row
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://vufind.org Main Site
*/
class PrivateUser extends User
{
/**
* __get
*
* @param string $name Field to retrieve.
*
* @throws Exception\InvalidArgumentException
* @return mixed
*/
public function __get($name)
{
return array_key_exists($name, $this->data) ? parent::__get($name) : null;
}
/**
* Whether library cards are enabled
*
* @return bool
*/
public function libraryCardsEnabled()
{
return false; // not supported in this context
}
/**
* Save
*
* @return int
*/
public function save()
{
$this->initialize();
$this->id = -1; // fake ID
$session = new \Zend\Session\Container('Account');
$session->userDetails = $this->toArray();
return 1;
}
}
...@@ -52,7 +52,11 @@ class User extends Gateway ...@@ -52,7 +52,11 @@ class User extends Gateway
*/ */
public function __construct(\Zend\Config\Config $config) public function __construct(\Zend\Config\Config $config)
{ {
parent::__construct('user', 'VuFind\Db\Row\User'); // Use a special row class when we're in privacy mode:
$privacy = isset($config->Authentication->privacy)
&& $config->Authentication->privacy;
$rowClass = 'VuFind\Db\Row\\' . ($privacy ? 'PrivateUser' : 'User');
parent::__construct('user', $rowClass);
$this->config = $config; $this->config = $config;
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment