From 595ce2ae9007a24415140b2d969b80988e248aa3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no>
Date: Sun, 11 Jan 2009 11:39:18 +0000
Subject: [PATCH] Adding new auth proc filter that will do its best to get the
 users full name from several attributes

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1130 44740490-163a-0410-bde0-09ae8108e29a
---
 modules/smartnameattribute/default-disable    |  0
 .../lib/Auth/Process/SmartName.php            | 73 +++++++++++++++++++
 2 files changed, 73 insertions(+)
 create mode 100644 modules/smartnameattribute/default-disable
 create mode 100644 modules/smartnameattribute/lib/Auth/Process/SmartName.php

diff --git a/modules/smartnameattribute/default-disable b/modules/smartnameattribute/default-disable
new file mode 100644
index 000000000..e69de29bb
diff --git a/modules/smartnameattribute/lib/Auth/Process/SmartName.php b/modules/smartnameattribute/lib/Auth/Process/SmartName.php
new file mode 100644
index 000000000..86ebc6a05
--- /dev/null
+++ b/modules/smartnameattribute/lib/Auth/Process/SmartName.php
@@ -0,0 +1,73 @@
+<?php
+
+/**
+ * Filter to set name in a smart way, based on available name attributes.
+ *
+ * @author Andreas Ă…kre Solberg, UNINETT AS.
+ * @package simpleSAMLphp
+ * @version $Id$
+ */
+class sspmod_smartnameattribute_Auth_Process_SmartName extends SimpleSAML_Auth_ProcessingFilter {
+
+	/**
+	 * Attributes which should be added/appended.
+	 *
+	 * Assiciative array of arrays.
+	 */
+	private $attributes = array();
+
+
+	private function getFullName($attributes) {
+		if (isset($attributes['displayName']))
+			return $attributes['displayName'][0];
+		
+		if (isset($attributes['sn']) && isset($attributes['givenName']))
+			return $attributes['givenName'][0] . ' ' . $attributes['sn'][0];
+
+		if (isset($attributes['cn']))
+			return $attributes['cn'][0];
+
+		if (isset($attributes['sn']))
+			return $attributes['sn'][0];
+
+		if (isset($attributes['givenName']))
+			return $attributes['givenName'][0];
+		
+		if (isset($attributes['eduPersonPrincipalName'])) {
+			$localname = $this->getLocalUser($attributes['eduPersonPrincipalName']);
+			if (isset($localname)) return $localname;
+		}		
+		
+		return NULL;
+	}
+	
+	private function getLocalUser($userid) {
+		$decomposed = explode('@', $userid);
+		if(count($decomposed) === 2) {
+			return $decomposed[0];
+		}
+		return NULL;
+	}
+
+	/**
+	 * 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'];
+		
+		$fullname = $this->getFullName($attributes);
+		
+		if(isset($fullname)) $request['Attributes']['smartname-fullname'] = array($fullname);
+		
+	}
+
+}
+
+?>
\ No newline at end of file
-- 
GitLab