How to retrieve Bamboo Data Center permissions through REST API and SQL Queries

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。

このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。

*Fisheye および Crucible は除く

本記事で説明している手順は、現時点でのものとなります。そのため、一部のお客様で特定の状況下で動作したという報告がありますが、正式にサポートされているわけではなく、お客様の特定のシナリオで動作することを保証するものではありません。

本番環境での実施の前に一通り非本番環境で検証し、成功しなかった場合にはサポートされている代替案にフォール バックしてください。

また、アトラシアン サポートのサポート対象外のご質問の場合には、Community もご活用ください。

要約

This article provides useful REST API and Database queries to assist in Bamboo permission audit.

環境

The solution has been validated in Bamboo 9.2.17 but may be applicable to other versions.

ソリューション

REST API

Please replace admin:password with your administrator credentials and http://localhost:8085 with your Bamboo URL.

Refer to the linked pages below for more information on the API endpoints. For a list of all API endpoints to retrieve and manage permissions, please refer to the official API documentation:

グローバル権限

  • ユーザー
    curl -k -u admin:password \
         -H 'Accept: application/json' \
         -X GET http://localhost:8085/rest/api/latest/permissions/global/users
  • グループ
    curl -k -u admin:password \
         -H 'Accept: application/json' \
         -X GET http://localhost:8085/rest/api/latest/permissions/global/groups

プロジェクト権限

  • Get Projects

    curl -k -u admin:password \
         -H 'Accept: application/json' \
         -X GET http://localhost:8085/rest/api/latest/project
    
  • Get users permissions from project

    curl -k -u admin:password \
         -H 'Accept: application/json' \
         -X GET http://localhost:8085/rest/api/latest/permissions/project/{projectKey}/users
    


  • Get groups permissions from project

    curl -k -u admin:password \
         -H 'Accept: application/json' \
         -X GET http://localhost:8085/rest/api/latest/permissions/project/{projectKey}/groups
    

Plan Permissions

  • Get plans

    curl -k -u admin:password \
         -H 'Accept: application/json' \
         -X GET http://localhost:8085/rest/api/latest/plan
    
  • Get users permissions from plan

    curl -k -u admin:password \
         -H 'Accept: application/json' \
         -X GET http://localhost:8085/rest/api/latest/permissions/plan/{planKey}/users
    
  • Get groups permissions from plan

    curl -k -u admin:password \
         -H 'Accept: application/json' \
         -X GET http://localhost:8085/rest/api/latest/permissions/plan/{planKey}/groups
    

デプロイメント プロジェクト

  • Get deployment projects

    curl -k -u admin:password \
         -H 'Accept: application/json' \
         -X GET http://localhost:8085/rest/api/latest/deploy/project/all
    

Deployment Environment

Linked repositories

データベース

Meaning of permissions

The acl_object_identity.object_id_class describes the type of permission granted:

acl_object_identity.object_id_class

permission on

acl_entry.mask

com.atlassian.bamboo.security.GlobalApplicationSecureObject

グローバル

(1) Access, (4) Create, (1024) Create repository, (16) Admin

com.atlassian.bamboo.project.DefaultProject

プロジェクト

(4) Create plan, (16) Admin, (1024) Create repository [Data Center only]

com.atlassian.bamboo.project.ProjectPlanPermissionsPlan Inheritance(1) View, (2) Edit, (64) Build, (128) Clone, (16) Admin, (2048) View Configuration [Data Center only]

com.atlassian.bamboo.chains.DefaultChain

Plan

(1) View, (2) Edit, (64) Build, (128) Clone, (16) Admin

com.atlassian.bamboo.deployments.projects.InternalDeploymentProject

Deployment Project

(1) View, (2) Edit

com.atlassian.bamboo.deployments.environments.InternalEnvironment

Deployment Environment

(1) View, (2) Edit, (64) Deploy

com.atlassian.bamboo.repository.RepositoryDataEntityImpl

Linked Repositories

(1) Use, (16) Admin

The acl_entry.type describes the type of permission granted:

acl_entry.typepermission to
PRINCIPALユーザー
GROUP_PRINCIPALグループ
GRANTED_AUTHORITYLogged in users
GRANTED_AUTHORITY匿名ユーザー

The acl_entry.sid describes to whom permission was granted to:

acl_entry.typeacl_entry.sid
PRINCIPALusername, e.g: admin
GROUP_PRINCIPALgroupname, e.g. bamboo-admin
GRANTED_AUTHORITYROLE_USER
GRANTED_AUTHORITYROLE_ANONYMOUS

SQL クエリ

The queries below have been tested in PostgreSQL. They might need adjustments to work on other DBMSs.

Get global permission for user/group
select ae.sid user_group_name
     , ae.type access_type
     , ae.mask permission
  from acl_entry ae
  join acl_object_identity aoi on ae.acl_object_identity = aoi.id
 where ae.type in ('PRINCIPAL','GROUP_PRINCIPAL','GRANTED_AUTHORITY')
   and aoi.object_id_class = 'com.atlassian.bamboo.security.GlobalApplicationSecureObject'
 order by ae.sid, ae.mask;
Get projects and user/group permissions
select p.project_key
     , ae.sid user_group_name
     , ae.mask permission
     , ae.type access_type
  from acl_entry ae
  join acl_object_identity aoi on ae.acl_object_identity = aoi.id
  join project p on aoi.object_id_identity = p.project_id
 where ae.type in ('PRINCIPAL','GROUP_PRINCIPAL')
   and aoi.object_id_class = 'com.atlassian.bamboo.project.DefaultProject'
   and p.project_key like '%'
 order by p.project_key, ae.sid, ae.mask;
Get plan permission inheritance
select p.project_key
     , ae.sid user_group_name
     , ae.mask permission
     , ae.type access_type
  from acl_entry ae
  join acl_object_identity aoi on ae.acl_object_identity = aoi.id
  join project p on aoi.object_id_identity = p.project_id
 where ae.type in ('PRINCIPAL','GROUP_PRINCIPAL','GRANTED_AUTHORITY')
   and aoi.object_id_class = 'com.atlassian.bamboo.project.ProjectPlanPermissions'
   and p.project_key like '%'
 order by p.project_key, ae.sid, ae.mask
Get plans and user/group permissions
select b.full_key planKey
     , ae.sid user_group_name
     , ae.mask permission
     , ae.type access_type
  from acl_entry ae
  join acl_object_identity aoi on ae.acl_object_identity = aoi.id
  join build b on aoi.object_id_identity = b.build_id
 where ae.type in ('PRINCIPAL','GROUP_PRINCIPAL','GRANTED_AUTHORITY')
   and aoi.object_id_class = 'com.atlassian.bamboo.chains.DefaultChain'
   and b.full_key like '%'
 order by b.full_key, ae.sid, ae.mask;
Get deployment project and user/group permissions
select dp.name deploy_proj
     , ae.sid user_group_name
     , ae.mask permission
     , ae.type access_type
  from acl_entry ae
  join acl_object_identity aoi on ae.acl_object_identity = aoi.id
  join deployment_project dp on aoi.object_id_identity = dp.deployment_project_id
 where ae.type in ('PRINCIPAL','GROUP_PRINCIPAL')
   and aoi.object_id_class = 'com.atlassian.bamboo.deployments.projects.InternalDeploymentProject'
   and dp.name like '%'
 order by dp.name, ae.sid, ae.mask;
Get deployment environment and user/group permissions
select concat(dp.name,concat(' - ',de.name)) deploy_env
     , ae.sid user_name
     , ae.mask permission
     , ae.type access_type
  from acl_entry ae
  join acl_object_identity aoi on ae.acl_object_identity = aoi.id
  join deployment_environment de on aoi.object_id_identity = de.environment_id
  join deployment_project dp on de.package_definition_id = dp.deployment_project_id
 where ae.type in ('PRINCIPAL','GROUP_PRINCIPAL','GRANTED_AUTHORITY')
   and aoi.object_id_class = 'com.atlassian.bamboo.deployments.environments.InternalEnvironment'
   and de.name like '%'
 order by concat(dp.name,concat(' - ',de.name)), ae.sid, ae.mask;
Get linked repositories and user/group permissions
select ae.sid user_group_name
     , ae.mask permission
     , vl.name repo_name
     , ae.type access_type
  from acl_entry ae
  join acl_object_identity aoi on ae.acl_object_identity = aoi.id
  join vcs_location vl on aoi.object_id_identity = vl.vcs_location_id
 where ae.type in ('PRINCIPAL','GROUP_PRINCIPAL','GRANTED_AUTHORITY')
   and aoi.object_id_class = 'com.atlassian.bamboo.repository.RepositoryDataEntityImpl'
   and vl.name like '%'
 order by vl.name, ae.sid, ae.mask;


最終更新日 2025 年 7 月 4 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.