Projet

Général

Profil

Télécharger (7,75 ko) Statistiques
| Branche: | Tag: | Révision:
/*
* This program is a part of the IoTa Project.
*
* Copyright © 2008-2012 Université de Caen Basse-Normandie, GREYC
* Copyright © 2008-2012 Orange Labs
*
* 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 3 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.
* <http://www.gnu.org/licenses/>
*
* See AUTHORS for a list of contributors.
*/
package fr.unicaen.iota.xi.client;

import com.sun.xacml.ctx.Result;
import fr.unicaen.iota.xacml.pep.MethodNamesCapture;
import fr.unicaen.iota.xacml.pep.MethodNamesQuery;
import fr.unicaen.iota.xacml.pep.XACMLDSEvent;
import fr.unicaen.iota.xacml.policy.Module;
import fr.unicaen.iota.xacml.request.EventRequest;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

/**
* This class is used to manage the DS access control policy
*/
public class DSPEP extends PEP implements MethodNamesQuery, MethodNamesCapture {

private static final Log log = LogFactory.getLog(DSPEP.class);

public DSPEP(String url) {
super(url);
}

/**
* process access control policy for the Hello method.
*
* @param userId connected user
* @param partnerId corresponding partnerId
* @param module Query, Capture or Admin
* @return
*/
@Override
public int hello(String userId, String partnerId, String module) {
log.trace("process hello policy for user: " + userId);
EventRequest eventRequest = new EventRequest(userId, "hello", partnerId, module);
return processXACMLRequest(eventRequest);
}

/**
* process access control policy for the partnerInfo method.
*
* @param userId connected user
* @param partnerId partner concerned by the request
* @return
*/
@Override
public int partnerInfo(String userId, String partnerId) {
log.trace("process partnerInfo policy for user: " + userId);
EventRequest eventRequest = new EventRequest(userId, "partnerInfo", partnerId, Module.queryModule.getValue());
return processXACMLRequest(eventRequest);
}

/**
* process access control policy for the eventLookup method for each
* retrieved event retriefed.
*
* @param userId connected user
* @param dsEvent the event
* @return
*/
@Override
public int eventLookup(String userId, XACMLDSEvent dsEvent) {
log.trace("process eventLookup policy for user: " + userId);
EventRequest eventRequest = new EventRequest(userId, "eventLookup", dsEvent, Module.queryModule.getValue());
return processXACMLRequest(eventRequest);
}

/**
* process access control policy for the eventInfo method.
*
* @param userId connected user
* @param dsEvent
* @return
*/
@Override
public int eventInfo(String userId, XACMLDSEvent dsEvent) {
log.trace("process eventInfo policy for user: " + userId);
EventRequest eventRequest = new EventRequest(userId, "eventInfo", dsEvent, Module.queryModule.getValue());
return processXACMLRequest(eventRequest);
}

@Override
public int canBe(String userId, String partnerId) {
log.trace("process canBe policy for user: " + userId);
EventRequest eventRequest = new EventRequest(userId, "canBe", partnerId, Module.queryModule.getValue());
return processXACMLRequest(eventRequest);
}

@Override
public int eventCreate(String userId, XACMLDSEvent dsEvent) {
log.trace("process eventCreate policy for user: " + userId);
EventRequest eventRequest = new EventRequest(userId, "eventCreate", dsEvent, Module.captureModule.getValue());
return processXACMLRequest(eventRequest);
}

@Override
public int voidEvent(String userId, XACMLDSEvent dsEvent) {
log.trace("process voidEvent policy for user: " + userId);
EventRequest eventRequest = new EventRequest(userId, "voidEvent", dsEvent, Module.captureModule.getValue());
return processXACMLRequest(eventRequest);
}

@Override
public int multipleEventCreate(String userId, XACMLDSEvent dsEvent) {
log.trace("process multipleEventCreate policy for user: " + userId);
EventRequest eventRequest = new EventRequest(userId, "eventLookup", dsEvent, Module.captureModule.getValue());
return processXACMLRequest(eventRequest);
}

public int userLookup(String userId, String partner) {
log.trace("process userLookup policy for user: " + userId);
EventRequest eventRequest = new EventRequest(userId, "userLookup", partner, Module.administrationModule.getValue());
return processXACMLRequest(eventRequest);
}

public int userCreate(String userId, String partner) {
log.trace("process userCreate policy for user: " + userId);
EventRequest eventRequest = new EventRequest(userId, "userCreate", partner, Module.administrationModule.getValue());
return processXACMLRequest(eventRequest);
}

public int userInfo(String userId, String partner) {
log.trace("process userInfo policy for user: " + userId);
EventRequest eventRequest = new EventRequest(userId, "userInfo", partner, Module.administrationModule.getValue());
return processXACMLRequest(eventRequest);
}

public int userUpdate(String userId, String partner) {
log.trace("process userUpdate policy for user: " + userId);
EventRequest eventRequest = new EventRequest(userId, "userUpdate", partner, Module.administrationModule.getValue());
return processXACMLRequest(eventRequest);
}

public int userDelete(String userId, String partner) {
log.trace("process userDelete policy for user: " + userId);
EventRequest eventRequest = new EventRequest(userId, "userDelete", partner, Module.administrationModule.getValue());
return processXACMLRequest(eventRequest);
}

public int partnerUpdate(String userId, String partner) {
log.trace("process partnerUpdate policy for user: " + userId);
EventRequest eventRequest = new EventRequest(userId, "partnerUpdate", partner, Module.administrationModule.getValue());
return processXACMLRequest(eventRequest);
}

public int partnerLookup(String userId, String partner) {
log.trace("process partnerLookup policy for user: " + userId);
EventRequest eventRequest = new EventRequest(userId, "partnerLookup", partner, Module.administrationModule.getValue());
return processXACMLRequest(eventRequest);
}

public int partnerDelete(String userId, String partner) {
log.trace("process partnerDelete policy for user: " + userId);
EventRequest eventRequest = new EventRequest(userId, "partnerDelete", partner, Module.administrationModule.getValue());
return processXACMLRequest(eventRequest);
}

public int partnerCreate(String userId, String partner) {
log.trace("process partnerCreate policy for user: " + userId);
EventRequest eventRequest = new EventRequest(userId, "partnerCreate", partner, Module.administrationModule.getValue());
return processXACMLRequest(eventRequest);
}

public boolean isRootAccess(String userId, String partnerId) {
log.trace("process checkRootAccess policy for user: " + userId);
EventRequest eventRequest = new EventRequest(userId, "superadmin", partnerId, Module.administrationModule.getValue());
return processXACMLRequest(eventRequest) == Result.DECISION_PERMIT;
}
}
(1-1/2)