lasso/lasso/saml-2.0/server.c

86 lines
2.6 KiB
C

/* $Id$
*
* Lasso - A free implementation of the Liberty Alliance specifications.
*
* Copyright (C) 2004-2007 Entr'ouvert
* http://lasso.entrouvert.org
*
* Authors: See AUTHORS file in top-level directory.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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
*/
#include "../xml/private.h"
#include "serverprivate.h"
#include "../id-ff/serverprivate.h"
#include "../id-ff/providerprivate.h"
int
lasso_saml20_server_load_affiliation(LassoServer *server, xmlNode *node)
{
xmlNode *t;
char *owner_id, *member_id, *affiliation_id;
LassoProvider *provider;
if (strcmp((char*)node->ns->href, LASSO_SAML2_METADATA_HREF) != 0) {
/* not saml 2 metadata ns */
return LASSO_XML_ERROR_NODE_NOT_FOUND;
}
for (t = node->children; t; t = t->next) {
if (t->type == XML_ELEMENT_NODE &&
strcmp((char*)t->name, "AffiliationDescriptor") == 0) {
break;
}
}
if (t == NULL) {
/* no AffiliationDescriptor element */
return LASSO_XML_ERROR_NODE_NOT_FOUND;
}
affiliation_id = (char*)xmlGetProp(node, (xmlChar*)"entityID");
owner_id = (char*)xmlGetProp(t, (xmlChar*)"affiliationOwnerID");
for (t = t->children; t; t = t->next) {
if (t->type == XML_ELEMENT_NODE &&
strcmp((char*)t->name, "AffiliateMember") == 0) {
member_id = (char*)xmlNodeGetContent(t);
provider = lasso_server_get_provider(server, member_id);
if (provider == NULL) {
message(G_LOG_LEVEL_WARNING,
"Failed to find affiliate member: %s", member_id);
xmlFree(member_id);
continue;
}
if (provider->private_data->affiliation_owner_id) {
message(G_LOG_LEVEL_WARNING,
"Provider %s in more than one affiliation",
provider->ProviderID);
g_free(provider->private_data->affiliation_owner_id);
}
provider->private_data->affiliation_owner_id = g_strdup(owner_id);
provider->private_data->affiliation_id = g_strdup(affiliation_id);
xmlFree(member_id);
}
}
xmlFree(affiliation_id);
xmlFree(owner_id);
return 0;
}