|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.dspace.authorize.AuthorizeManager
public class AuthorizeManager
AuthorizeManager handles all authorization checks for DSpace. For better security, DSpace assumes that you do not have the right to do something unless that permission is spelled out somewhere. That "somewhere" is the ResourcePolicy table. The AuthorizeManager is given a user, an object, and an action, and it then does a lookup in the ResourcePolicy table to see if there are any policies giving the user permission to do that action.
ResourcePolicies now apply to single objects (such as submit (ADD) permission to a collection.)
Note: If an eperson is a member of the administrator group (id 1), then they are automatically given permission for all requests another special group is group 0, which is anonymous - all EPeople are members of group 0.
| Constructor Summary | |
|---|---|
AuthorizeManager()
|
|
| Method Summary | |
|---|---|
static void |
addPolicies(Context c,
List<ResourcePolicy> policies,
DSpaceObject dest)
Copies policies from a list of resource policies to a given DSpaceObject |
static void |
addPolicy(Context c,
DSpaceObject o,
int actionID,
EPerson e)
Add a policy for an individual eperson |
static void |
addPolicy(Context c,
DSpaceObject o,
int actionID,
EPerson e,
String type)
Add a policy for an individual eperson |
static void |
addPolicy(Context c,
DSpaceObject o,
int actionID,
Group g)
Add a policy for a group |
static void |
addPolicy(Context c,
DSpaceObject o,
int actionID,
Group g,
String type)
Add a policy for a group |
static void |
authorizeAction(Context c,
DSpaceObject o,
int action)
Checks that the context's current user can perform the given action on the given object. |
static void |
authorizeAction(Context c,
DSpaceObject o,
int action,
boolean useInheritance)
Checks that the context's current user can perform the given action on the given object. |
static boolean |
authorizeActionBoolean(Context c,
DSpaceObject o,
int a)
same authorize, returns boolean for those who don't want to deal with catching exceptions. |
static boolean |
authorizeActionBoolean(Context c,
DSpaceObject o,
int a,
boolean useInheritance)
same authorize, returns boolean for those who don't want to deal with catching exceptions. |
static void |
authorizeAnyOf(Context c,
DSpaceObject o,
int[] actions)
Utility method, checks that the current user of the given context can perform all of the specified actions on the given object. |
static ResourcePolicy |
createOrModifyPolicy(ResourcePolicy policy,
Context context,
String name,
int idGroup,
EPerson ePerson,
Date embargoDate,
int action,
String reason,
DSpaceObject dso)
|
static ResourcePolicy |
findByTypeIdGroupAction(Context c,
int dsoType,
int dsoID,
int groupID,
int action,
int policyID)
|
static List<ResourcePolicy> |
findPoliciesByDSOAndType(Context c,
DSpaceObject o,
String type)
Return a List of the policies for an object |
static void |
generateAutomaticPolicies(Context context,
Date embargoDate,
String reason,
DSpaceObject dso,
Collection owningCollection)
Generate Policies policies READ for the date in input adding reason. |
static Group[] |
getAuthorizedGroups(Context c,
DSpaceObject o,
int actionID)
Returns all groups authorized to perform an action on an object. |
static List<ResourcePolicy> |
getPolicies(Context c,
DSpaceObject o)
Return a List of the policies for an object |
static List<ResourcePolicy> |
getPoliciesActionFilter(Context c,
DSpaceObject o,
int actionID)
Return a list of policies for an object that match the action |
static List<ResourcePolicy> |
getPoliciesForGroup(Context c,
Group g)
Return a List of the policies for a group |
static void |
inheritPolicies(Context c,
DSpaceObject src,
DSpaceObject dest)
Add policies to an object to match those from a previous object |
static boolean |
isAdmin(Context c)
Check to see if the current user is a System Admin. |
static boolean |
isAdmin(Context c,
DSpaceObject o)
Check to see if the current user is an Administrator of a given object within DSpace. |
static boolean |
isAnIdenticalPolicyAlreadyInPlace(Context c,
DSpaceObject o,
int groupID,
int action,
int policyID)
|
static boolean |
isAnIdenticalPolicyAlreadyInPlace(Context c,
DSpaceObject o,
ResourcePolicy rp)
|
static boolean |
isAnIdenticalPolicyAlreadyInPlace(Context c,
int dsoType,
int dsoID,
int groupID,
int action,
int policyID)
|
static void |
removeAllPolicies(Context c,
DSpaceObject o)
removes ALL policies for an object. |
static void |
removeAllPoliciesByDSOAndType(Context c,
DSpaceObject o,
String type)
removes policies |
static void |
removeAllPoliciesByDSOAndTypeNotEqualsTo(Context c,
DSpaceObject o,
String type)
removes ALL policies for an object that are not of the input type. |
static void |
removeEPersonPolicies(Context c,
DSpaceObject o,
EPerson e)
Removes all policies from an eperson for a particular object that belong to an EPerson. |
static void |
removeGroupPolicies(Context c,
DSpaceObject o,
Group g)
Removes all policies from a group for a particular object that belong to a Group. |
static void |
removeGroupPolicies(Context c,
int groupID)
Removes all policies relating to a particular group. |
static void |
removePoliciesActionFilter(Context context,
DSpaceObject dso,
int actionID)
Remove all policies from an object that match a given action. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public AuthorizeManager()
| Method Detail |
|---|
public static void authorizeAnyOf(Context c,
DSpaceObject o,
int[] actions)
throws AuthorizeException,
SQLException
AuthorizeException if all the authorizations fail.
c - context with the current usero - DSpace object user is attempting to perform action onactions - array of action IDs from
org.dspace.core.Constants
AuthorizeException - if any one of the specified actions cannot be performed by
the current user on the given object.
SQLException - if there's a database problem
public static void authorizeAction(Context c,
DSpaceObject o,
int action)
throws AuthorizeException,
SQLException
c - contexto - a DSpaceObjectaction - action to perform from org.dspace.core.Constants
AuthorizeException - if the user is denied
SQLException
public static void authorizeAction(Context c,
DSpaceObject o,
int action,
boolean useInheritance)
throws AuthorizeException,
SQLException
c - contexto - a DSpaceObjectuseInheritance - flag to say if ADMIN action on the current object or parent
object can be usedaction - action to perform from org.dspace.core.Constants
AuthorizeException - if the user is denied
SQLException
public static boolean authorizeActionBoolean(Context c,
DSpaceObject o,
int a)
throws SQLException
c - DSpace context, containing current usero - DSpaceObjecta - action being attempted, from
org.dspace.core.Constants
true if the current user in the context is
authorized to perform the given action on the given object
SQLException
public static boolean authorizeActionBoolean(Context c,
DSpaceObject o,
int a,
boolean useInheritance)
throws SQLException
c - DSpace context, containing current usero - DSpaceObjecta - action being attempted, from
org.dspace.core.ConstantsuseInheritance - flag to say if ADMIN action on the current object or parent
object can be used
true if the current user in the context is
authorized to perform the given action on the given object
SQLException
public static boolean isAdmin(Context c,
DSpaceObject o)
throws SQLException
true if the user is a System
Admin
c - current contexto - current DSpace Object, if null the call will be
equivalent to a call to the isAdmin(Context c)
method
true if user has administrative privileges on the
given DSpace object
SQLException
public static boolean isAdmin(Context c)
throws SQLException
true if c.ignoreAuthorization is set. Anonymous users
can't be Admins (EPerson set to NULL)
c - current context
true if user is an admin or ignore authorization
flag set
SQLException
public static void addPolicy(Context c,
DSpaceObject o,
int actionID,
EPerson e)
throws SQLException,
AuthorizeException
c - context. Current user irrelevanto - DSpaceObject to add policy toactionID - ID of action from org.dspace.core.Constantse - eperson who can perform the action
AuthorizeException - if current user in context is not authorized to add policies
SQLException
public static void addPolicy(Context c,
DSpaceObject o,
int actionID,
EPerson e,
String type)
throws SQLException,
AuthorizeException
c - context. Current user irrelevanto - DSpaceObject to add policy toactionID - ID of action from org.dspace.core.Constantse - eperson who can perform the actiontype - policy type, deafult types are declared in the ResourcePolicy class
AuthorizeException - if current user in context is not authorized to add policies
SQLException
public static void addPolicy(Context c,
DSpaceObject o,
int actionID,
Group g)
throws SQLException,
AuthorizeException
c - current contexto - object to add policy foractionID - ID of action from org.dspace.core.Constantsg - group to add policy for
SQLException - if there's a database problem
AuthorizeException - if the current user is not authorized to add this policy
public static void addPolicy(Context c,
DSpaceObject o,
int actionID,
Group g,
String type)
throws SQLException,
AuthorizeException
c - current contexto - object to add policy foractionID - ID of action from org.dspace.core.Constantsg - group to add policy fortype - policy type, deafult types are declared in the ResourcePolicy class
SQLException - if there's a database problem
AuthorizeException - if the current user is not authorized to add this policy
public static List<ResourcePolicy> getPolicies(Context c,
DSpaceObject o)
throws SQLException
c - current contexto - object to retrieve policies for
ResourcePolicy objects
SQLException
public static List<ResourcePolicy> findPoliciesByDSOAndType(Context c,
DSpaceObject o,
String type)
throws SQLException
c - current contexto - object to retrieve policies for
ResourcePolicy objects
SQLException
public static List<ResourcePolicy> getPoliciesForGroup(Context c,
Group g)
throws SQLException
c - current contextg - group to retrieve policies for
ResourcePolicy objects
SQLException
public static List<ResourcePolicy> getPoliciesActionFilter(Context c,
DSpaceObject o,
int actionID)
throws SQLException
c - contexto - DSpaceObject policies relate toactionID - action (defined in class Constants)
SQLException - if there's a database problem
public static void inheritPolicies(Context c,
DSpaceObject src,
DSpaceObject dest)
throws SQLException,
AuthorizeException
c - contextsrc - source of policiesdest - destination of inherited policies
SQLException - if there's a database problem
AuthorizeException - if the current user is not authorized to add these policies
public static void addPolicies(Context c,
List<ResourcePolicy> policies,
DSpaceObject dest)
throws SQLException,
AuthorizeException
c - DSpace contextpolicies - List of ResourcePolicy objectsdest - object to have policies added
SQLException - if there's a database problem
AuthorizeException - if the current user is not authorized to add these policies
public static void removeAllPolicies(Context c,
DSpaceObject o)
throws SQLException
c - DSpace contexto - object to remove policies for
SQLException - if there's a database problem
public static void removeAllPoliciesByDSOAndTypeNotEqualsTo(Context c,
DSpaceObject o,
String type)
throws SQLException
c - DSpace contexto - object to remove policies for
SQLException - if there's a database problem
public static void removeAllPoliciesByDSOAndType(Context c,
DSpaceObject o,
String type)
throws SQLException
c - DSpace contexto - object to remove policies fortype - policy type
SQLException - if there's a database problem
public static void removePoliciesActionFilter(Context context,
DSpaceObject dso,
int actionID)
throws SQLException
context - current contextdso - object to remove policies fromactionID - ID of action to match from
org.dspace.core.Constants, or -1=all
SQLException - if there's a database problem
public static void removeGroupPolicies(Context c,
int groupID)
throws SQLException
c - current contextgroupID - ID of the group
SQLException - if there's a database problem
public static void removeGroupPolicies(Context c,
DSpaceObject o,
Group g)
throws SQLException
c - current contexto - the objectg - the group
SQLException - if there's a database problem
public static void removeEPersonPolicies(Context c,
DSpaceObject o,
EPerson e)
throws SQLException
c - current contexto - the objecte - the eperson
SQLException - if there's a database problem
public static Group[] getAuthorizedGroups(Context c,
DSpaceObject o,
int actionID)
throws SQLException
c - current contexto - objectactionID - ID of action frm org.dspace.core.Constants
Groups that can perform the specified
action on the specified object
SQLException - if there's a database problem
public static boolean isAnIdenticalPolicyAlreadyInPlace(Context c,
DSpaceObject o,
ResourcePolicy rp)
throws SQLException
SQLException
public static boolean isAnIdenticalPolicyAlreadyInPlace(Context c,
DSpaceObject o,
int groupID,
int action,
int policyID)
throws SQLException
SQLException
public static boolean isAnIdenticalPolicyAlreadyInPlace(Context c,
int dsoType,
int dsoID,
int groupID,
int action,
int policyID)
throws SQLException
SQLException
public static ResourcePolicy findByTypeIdGroupAction(Context c,
int dsoType,
int dsoID,
int groupID,
int action,
int policyID)
throws SQLException
SQLException
public static void generateAutomaticPolicies(Context context,
Date embargoDate,
String reason,
DSpaceObject dso,
Collection owningCollection)
throws SQLException,
AuthorizeException
context - embargoDate - reason - dso - owningCollection -
SQLException
AuthorizeException
public static ResourcePolicy createOrModifyPolicy(ResourcePolicy policy,
Context context,
String name,
int idGroup,
EPerson ePerson,
Date embargoDate,
int action,
String reason,
DSpaceObject dso)
throws AuthorizeException,
SQLException
AuthorizeException
SQLException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||