summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThijs Kinkhorst <thijs@kinkhorst.com>2016-11-14 18:12:49 +0100
committerGitHub <noreply@github.com>2016-11-14 18:12:49 +0100
commit0f89c1f74ce18049c83b27e513322124f454cdf3 (patch)
treec7cb276244f38644338945aa49d7ecf3288445f1
parent18bc59c8d502dfab5fd9516f3311a52402c059b3 (diff)
parent603020c1caba0c4d0f56ca1294c3761a0558d28d (diff)
downloadsimplesamlphp-0f89c1f74ce18049c83b27e513322124f454cdf3.zip
simplesamlphp-0f89c1f74ce18049c83b27e513322124f454cdf3.tar.gz
simplesamlphp-0f89c1f74ce18049c83b27e513322124f454cdf3.tar.bz2
Merge pull request #513 from simplesamlphp/feature/deprecate-attributerealm
Deprecate AttributeRealm authproc filter
-rw-r--r--config-templates/config.php3
-rw-r--r--docs/simplesamlphp-authproc.md5
-rw-r--r--modules/core/docs/authproc_attributerealm.md3
-rw-r--r--modules/core/lib/Auth/Process/AttributeRealm.php83
4 files changed, 46 insertions, 48 deletions
diff --git a/config-templates/config.php b/config-templates/config.php
index fcb1ffa..6cf0865 100644
--- a/config-templates/config.php
+++ b/config-templates/config.php
@@ -767,9 +767,6 @@ $config = array(
// Adopts language from attribute to use in UI
30 => 'core:LanguageAdaptor',
- /* Add a realm attribute from edupersonprincipalname
- 40 => 'core:AttributeRealm',
- */
45 => array(
'class' => 'core:StatisticsWithAttribute',
'attributename' => 'realm',
diff --git a/docs/simplesamlphp-authproc.md b/docs/simplesamlphp-authproc.md
index 784ae9e..863a880 100644
--- a/docs/simplesamlphp-authproc.md
+++ b/docs/simplesamlphp-authproc.md
@@ -50,7 +50,6 @@ The configuration of *Auth Proc Filters* is a list of filters with priority as *
'addurnprefix'
),
20 => 'core:TargetedID',
- 40 => 'core:AttributeRealm',
50 => 'core:AttributeLimit',
90 => array(
'class' => 'consent:Consent',
@@ -112,7 +111,7 @@ Filters can be added both in `hosted` and `remote` metadata. Here is an example
'certificate' => 'example.org.crt',
'auth' => 'feide',
'authproc' => array(
- 40 => 'core:AttributeRealm',
+ 40 => 'preprodwarning:Warning',
),
)
@@ -132,7 +131,7 @@ The following filters are included in the SimpleSAMLphp distribution:
- [`core:AttributeAlter`](./core:authproc_attributealter): Do search-and-replace on attributevalues.
- [`core:AttributeLimit`](./core:authproc_attributelimit): Limit the attributes in the response.
- [`core:AttributeMap`](./core:authproc_attributemap): Change the name of the attributes.
-- [`core:AttributeRealm`](./core:authproc_attributerealm): Create an attribute with the realm of the user.
+- [`core:AttributeRealm`](./core:authproc_attributerealm): (deprecated) Create an attribute with the realm of the user.
- [`core:GenerateGroups`](./core:authproc_generategroups): Generate a `group` attribute for the user.
- [`core:LanguageAdaptor`](./core:authproc_languageadaptor): Transfering language setting from IdP to SP.
- [`core:PHP`](./core:authproc_php): Modify attributes with custom PHP code.
diff --git a/modules/core/docs/authproc_attributerealm.md b/modules/core/docs/authproc_attributerealm.md
index 77b0bb3..cf51177 100644
--- a/modules/core/docs/authproc_attributerealm.md
+++ b/modules/core/docs/authproc_attributerealm.md
@@ -1,6 +1,9 @@
`core:AttributeRealm`
=====================
+*NOTE:* This filter has been deprecated and will be removed in a future release. Please use
+`core:ScopeFromAttribute` instead.
+
This filter creates a new attribute with the realm of the user.
The new attribute is names `realm` by default, but can be controlled by the `attributename` option.
diff --git a/modules/core/lib/Auth/Process/AttributeRealm.php b/modules/core/lib/Auth/Process/AttributeRealm.php
index a4755a0..9e50d78 100644
--- a/modules/core/lib/Auth/Process/AttributeRealm.php
+++ b/modules/core/lib/Auth/Process/AttributeRealm.php
@@ -6,49 +6,48 @@
*
* @author Andreas Åkre Solberg, UNINETT AS.
* @package SimpleSAMLphp
+ * @deprecated Use ScopeFromAttribute instead.
*/
class sspmod_core_Auth_Process_AttributeRealm extends SimpleSAML_Auth_ProcessingFilter {
- private $attributename = 'realm';
-
- /**
- * Initialize this filter.
- *
- * @param array $config Configuration information about this filter.
- * @param mixed $reserved For future use.
- */
- public function __construct($config, $reserved) {
- parent::__construct($config, $reserved);
- assert('is_array($config)');
-
- if (array_key_exists('attributename', $config))
- $this->attributename = $config['attributename'];
-
- }
-
-
- /**
- * Apply filter to add or replace attributes.
- *
- * Add or replace existing attributes with the configured values.
- *
- * @param array &$request The current request
- */
- public function process(&$request) {
- assert('is_array($request)');
- assert('array_key_exists("Attributes", $request)');
-
- $attributes =& $request['Attributes'];
-
- if (!array_key_exists('UserID', $request)) {
- throw new Exception('core:AttributeRealm: Missing UserID for this user. Please' .
- ' check the \'userid.attribute\' option in the metadata against the' .
- ' attributes provided by the authentication source.');
- }
- $userID = $request['UserID'];
- $decomposed = explode('@', $userID);
- if (count($decomposed) !== 2) return;
- $request['Attributes'][$this->attributename] = array($decomposed[1]);
- }
-
+ private $attributename = 'realm';
+
+ /**
+ * Initialize this filter.
+ *
+ * @param array $config Configuration information about this filter.
+ * @param mixed $reserved For future use.
+ */
+ public function __construct($config, $reserved) {
+ parent::__construct($config, $reserved);
+ assert('is_array($config)');
+
+ if (array_key_exists('attributename', $config))
+ $this->attributename = $config['attributename'];
+
+ }
+
+ /**
+ * Apply filter to add or replace attributes.
+ *
+ * Add or replace existing attributes with the configured values.
+ *
+ * @param array &$request The current request
+ */
+ public function process(&$request) {
+ assert('is_array($request)');
+ assert('array_key_exists("Attributes", $request)');
+
+ $attributes =& $request['Attributes'];
+
+ if (!array_key_exists('UserID', $request)) {
+ throw new Exception('core:AttributeRealm: Missing UserID for this user. Please' .
+ ' check the \'userid.attribute\' option in the metadata against the' .
+ ' attributes provided by the authentication source.');
+ }
+ $userID = $request['UserID'];
+ $decomposed = explode('@', $userID);
+ if (count($decomposed) !== 2) return;
+ $request['Attributes'][$this->attributename] = array($decomposed[1]);
+ }
}