A customer requires very fine grained access control to work items and versionable objects such as files in the SCM system. In addition the customer had the requirement to be able to set attributes on elements in the SCM system.
I knew that it can be set for work items and kind of how to because I had briefly looked at it in the A RTC WorkItem Command Line Version 3.0. But I was not completely sure about the rules and how to access the SCM part and the attributes in SCM.
Since the customer needed this urgently I looked at what the rules are and what can be done.
The content is way too big for just one post, so this is going to be a series. The first post explains the rules around access control permissions and some basic API’s around finding the objects that can be used to provide the access control context.
Related posts
The posts in this series are:
- Manage Access Control Permissions for Work Items and Versionables – this post
- Setting Access Control Permissions for Work Items
- Setting Access Control Permissions for SCM Versionables
- Setting Attributes for SCM Versionables
Also see
Controlling access to source control artifacts in Rational Team Concert
License and Download
The post contains published code, so our lawyers reminded me to state that the code in this post is derived from examples from Jazz.net as well as the RTC SDK. The usage of code from that example source code is governed by this license. Therefore this code is governed by this license. I found a section relevant to source code at the and of the license. Please also remember, as stated in the disclaimer, that this code comes with the usual lack of promise or guarantee. Enjoy!
Just Starting With Extending RTC?
If you just get started with extending Rational Team Concert, or create API based automation, start with the post Learning To Fly: Getting Started with the RTC Java API’s and follow the linked resources.
You should be able to use the following code in this environment and get your own automation or extension working.
Compatibility
This code has been used with RTC 5.0.2 and is prepared to be used with RTC 6.0.x with no changes and it is pretty safe to assume, that the code will work with newer versions of RTC.
The code in this post uses common libraries/services that are available in the Plain Java Client, Eclipse client and Jazz Eclipse server API. If client or server API is used, this is stated.
Problem Description
The first question was, if it was possible to set the permission to access
- Work Items
- Items in the SCM system such as versionables
The second question was, if it was possible to set the attributes introduced in RTC 5.0 that can be specified and set using the API. The documentation only mentioned the SCM command line.
The third question was, how team areas and access groups can be created automatically.
The forth question was, what exactly the rules are:
- Can this be done in the server?
- Can this be done in the client?
- Can this be done in a command line tool or from another application?
- What permissions are required and what are the rules in the different contexts?
Solution Approach
The approach that we chose was to try to implement a minimal demonstrator to demonstrate the capabilities and prove them as a proof of concept. this demonstrator was also intended to serve as a platform to find the rules.
Learning
Here is what we learned creating the demonstrator.
The Rules – Work Items
Work Items have an attribute called “Restricted Access” that can be used to control access to them. There are basically the following modes available for work items that can be used.
- Access control using access control of the project area
- Restricted access by category
- Restricted access by setting the restricted access attribute
Option 1: Only the users that have access to the context set for the project area can access these items. This can be set to everyone basically exposing the work items to everyone. Other options a re project area membership and access control list etc. The rules here are very clear.
Option 2: It is possible to set RTC in a project area to automatically determine access permissions based on the category (filed against) of the work item. This sets the restricted access to the project area or team area associated to the category. Only members of the team area (and members of sub team areas of the team area associated to the category) have access to the work items which are restricted by category. It is worth noting, that a user being associated to the project area can not look into the work items filed against teams, if these limit access, it is quite the opposite.
Option 3: Use a special editor presentation to set the restricted access attribute manually to a project area or an access group. this could potentially be supported by automation.
The most important learning for option 3 is, that it is only possible to set the restricted access attribute to a project area or an access group this way. It is not possible to set the access context to a team area. If the context is set to a team area, it automatically picks up the containing project area. This also holds for automation.
See this help topic on how to set up the work items to allow setting the restricted access.
The Rules – Versionables
Prior to RTC 6.0.1, which has just been released, it is only possible to set read access control to the default (which is controlled by the component) project areas, team areas (called process areas if the distinction is unimportant) and a single user.
If access control is set to a team area, any member of that team area and its sub team areas have access. Note that this is different from option 2 for work items. If access control is set to a project area, any member who has access to the project area has access to the item.
RTC 6.0.1 introduces the capability to set access control to an access group. Only members of this access group have access to the item. This seems to be the best option by far, especially since access groups can contain project areas and team areas which adds their members to the access group.
Please note, that access control applies to the whole item and its history.
JazzAdmin Repository Role
Users with the JazzAdmin repository role have access to any work item or SCM controlled item, regardless of the access control setting. Users with this role (and sufficient licenses) can access all data.
Project Area Administrators
Administrators of a team or project area and don’t have the JazzAdmin repository role can not access items that have access control set to a context they don’t have access to.
General Rules
Users can only set the access context of work items or items in the SCM system to an access context that preserves their access permission. It is not possible to find or select an access group, process area the user has no access to/is member of or a different user and set the access context to it. This would remove the read permissions and is prevented.
Users with the JazzAdmin role and sufficient licenses however can do this, because they don’t loose read access.
General Rules For Automation
All automation can only perform the operations that are permitted to the user that is used to run the automation. This especially means that automation running in the context of a user with JazzAdmin repository role and the required licenses can perform all operations. The user context available in an automation depends on the automation.
- Follow up actions (participants) run in the context of the user that is performing the operation on the client or the server. They are especially not elevated run in a JazzAdmin repository role, if the user that performs the operation does not have this role. It is also not possible to use a different users or services to elevate the permissions.
- Preconditions (advisors) must not change the triggering elements. Otherwise the same rules apply as described in follow up actions.
- Asynchronous tasks or services in RTC are run with JazzAdmin permissions and can use the IImpersonationService to change the operation to a different user context.
- Plain Java Client Library or other client based automation run in the context of the user that was used to log into the system.
In the context of this post, 1 means, that it is not possible to set access control in such an operation that would remove read access from the user that performs the operation. If you require rules where this could be necessary, it would be necessary to run in a administrative context such as an Asynchronous task or in a client application with JazzAdmin repository role.
Finding ProcessAreas, Access Groups and Contributors
How to find the access context information needed using the Java API?
Finding ProcessAreas
There are many ways to find ProcessAreas (project areas and team areas) using the API, the simplest one assumes an java.net.URI constructed from a string based name path of the process area separated by ‘/’.
Lets assume a project area named TestProject1 and a team area within the project are named TestTeam1 and a sub team area underneath TestTeam1 named TestSubTeam1.
The URI for the project area could be constructed from the string “TestProject1”. The URI for TestTeam1 could be constructed from the string “TestProject1/TestTeam1”. Similar the URI for TestSubTeam1 could be constructed from the string “TestProject1/TestTeam1/TestSubTeam1”.
Process area names could contain spaces. Spaces are not allowed in URI’s, therefore they need to be replaced by the encoding character string “%20”.
To construct an java.net.URI from a string value use the following code.
String namePath = "TestProject1/TestTeam1/TestSubTeam1"; URI anURI = URI.create(URI.create(namePath.replaceAll(" ", "%20")))
The service to find the process area by its URI is provided by the interface IAuditableCommon. This interface class, as its name implies, is a common interface that is available in the RTC Plain Java API, as well as the RTC Eclipse client and Eclipse server SDK. This allows to use this API call in any possible context, either by
IAuditableCommon auditableCommon = (IAuditableCommon) teamRepository .getClientLibrary(IAuditableCommon.class);
in Plain Java and client SDK based code, or using
IAuditableCommon auditableCommon = getService(IAuditableCommon.class);
in the server extensions that all extend AbstractService (or in case of SCM server extensions AbstractScmService, which extends AbstractService).
For code that already retrieved the common Service IWorkItemCommon, for example to find work items, IAuditableCommon is available using the call
IAuditableCommon auditableCommon = workItemCommon.getAuditableCommon();
So the following code would retrieve the access context for the team area “/TestTeam1/TestSubTeam1” nested in the team area “TestTeam1” in the project area “TestProject1”
String namePath = "TestProject1/TestTeam1/TestSubTeam1"; IProcessArea area = auditableCommon.findProcessAreaByURI(URI.create(namePath.replaceAll(" ", "%20")), null, monitor); UUID context = area.getItemId();
Note, for work items only a project area is a valid context. Setting the context above will result in the project area containing the process area to be set. Alternatively use
UUID context = area.getProjectArea().getItemId();
for work items and document the fact to save the time to figure it out the hard way during testing (like I did).
Finding the Public Access Context
Work items can also be set to public read access. The constant com.ibm.team.repository.common.IContext.PUBLIC is available for that.
UUID publicContext = IContext.PUBLIC.getUuidValue();
provides with the public access context.
Finding Access Groups
Access Groups are managed in the administration pages of the RTC application. It is possible to create, modify and delete access groups. The image below shows this section.
Access Groups are also accessible using the IAuditableCommon common interface that was already used in the section above.
To get all access groups use this code:
IAccessGroup[] groups; groups = auditableCommon.getAccessGroups(null, Integer.MAX_VALUE, monitor);
This returns all access groups up to a maximal number that is passed to the method.
It is possible to pass a filter to select only access groups with specific name pattern like below.
IAccessGroup[] groups; groups = auditableCommon.getAccessGroups("My*", Integer.MAX_VALUE, monitor);
The access groups can be iterated like below to compare the name or do something similar.
for (IAccessGroup group : groups) { // Compare the value to the access group name. if (group.getName().equalsIgnoreCase(value)) { return group; } }
Similar to the process areas above, there is also a public access group which can be obtained like this:
return auditableCommon.getAccessGroupForGroupContextId( IContext.PUBLIC, monitor);
Finding Contributors
Finding contributors is different in the client and the server. There is no common API available.
In the client API the IContributorManager can be used for example using the following methods.
IContributorManager contributorManager= teamRepository.contributorManager(); // Find a user by the users ID returns a handle IContributorHandle contributorHandle = contributorManager .fetchContributorByUserId(attributeValue, monitor); // Get all users, returns a list of full IContributor items List contributors = contManager.fetchAllContributors(monitor);
In the server API the IContributorService is available and provides the following method.
IContributorService contributorService = getService(IContributorService.class); contributorService.fetchContributorByUserId(userId);
I was not able to locate a way to search for all users like in the client API. The server API usually gets a user passed and there is no need to find all users.
Summary
This post explains the rules around read access control for work items and RTC SCM versionables and some basic API’s around finding the objects that can be used to provide the access control context. The next post will explain the details around setting access control for work items.
Great article as usual, Ralph.
For whom it may concern,
The function auditableCommon.getAccessGroups(null, Integer.MAX_VALUE, monitor);
has a limit of 250 Access Groups.
I raised an enhancement
https://jazz.net/jazz/web/projects/Jazz%20Foundation#action=com.ibm.team.workitem.viewWorkItem&id=361574
Thanks Miguel, I never tested the boundaries. Obviously the higher the count, the more drain on performance you get.
Can we assign Jazz Repository Group permissions using Java API? I mean can I assign/unassign a user as JazzGuest/JazzAdmin programmatically?
This happens if you run on liberty profile and have no LDAP configured. So it has to be possible. I have not found an API for it.