commit | bc61e44e11e67cc1f5a004fc12aed81b52970511 | [log] [tgz] |
---|---|---|
author | Jacek Centkowski <geminica.programs@gmail.com> | Fri Nov 01 15:20:56 2024 +0100 |
committer | Jacek Centkowski <geminica.programs@gmail.com> | Wed Nov 06 07:51:30 2024 +0100 |
tree | 0ecebce11d65e1d4d9bf2e06f93b2c4094574f92 | |
parent | 7c366e4b7a5e58f794c6d5e0cc4c848956aaf4c4 [diff] |
Display `Copy owner's email` button for owner When owners list is returned from the plugin's REST API it contains only the account id. Email is available in account details therefore it can be obtained from the Gerrit's REST API. But that: * would mean that accout details are obtained two times - once for the change screen purposes and another time for plugin * `gr-account-label` or similar would have to be implemented from scratch In order to circumvent that the alternative approach was chosen. The `gr-account-label` component (which is a part of `gr-owner` element) contains all the necessary means to obtain account details therefore: * when the initial `gr-owner` element updsate is performed `gr-account-label` instance is obtained (as defined by `GrAccountLabel` interface) * that instance is used to fill account details - note that it leverages the caching abilities of the `AccountState` therefore given account details are obtained only once Bug: Issue 373151160 Change-Id: I8dcffa067e07ecc7e63df6d12bca35d1791bd730
This plugin provides some Prolog predicates that can be used to add customized validation checks based on the approval of ‘path owners’ of a particular folder in the project.
That allows creating a single big project including multiple components and users have different roles depending on the particular path where changes are being proposed. A user can be “owner” in a specific directory, and thus influencing the approvals of changes there, but cannot do the same in others paths, so assuring a kind of dynamic subproject access rights.
There are currently two main prolog public verbs:
add_owner_approval/3
(UserList, InList, OutList) appends label('Owner-Approval', need(_))
to InList building OutList if UserList has no users contained in the defined owners of this path change.
In other words, the predicate just copies InList to OutList if at least one of the elements in UserList is an owner.
add_owner_approval/2
(InList, OutList) appends label('Owner-Approval', need(_))
to InList building OutList if no owners has given a Code-Review +2 to this path change.
This predicate is similar to the first one but generates a UserList with an hardcoded policy.
Since add_owner_approval/3 is not using hard coded policies, it can be suitable for complex customizations.
There is a second plugin, gerrit-owners-autoassign which depends on gerrit-owners. It will automatically assign all of the owners to review a change when it's created or updated.
This plugin is built with Bazel and two build modes are supported:
To build the plugin, issue the following command:
bazel build :all
The output is created in
bazel-bin/owners/owners.jar bazel-bin/owners-autoassign/owners-autoassign.jar bazel-bin/owners-api/owners-api.jar
To execute the tests run:
bazel test //...
This project can be imported into the Eclipse IDE:
./tools/eclipse/project.sh
Create symbolic links of the owners and owners-autoassign folders and of the external_plugin_deps.bzl file to the Gerrit source code /plugins directory.
Create a symbolic link of the owners-common plugin to the Gerrit source code directory.
Then build the owners and owners-autoassign plugins with the usual Gerrit plugin compile command.
Example:
$ git clone https://gerrit.googlesource.com/plugins/owners $ git clone https://gerrit.googlesource.com/gerrit $ cd gerrit/plugins $ ln -s ../../owners/owners . $ ln -s ../../owners/owners-autoassign . $ ln -s ../../owners/owners-api . $ ln -sf ../../owners/external_plugin_deps.bzl . $ cd .. $ ln -s ../owners/owners-common . $ bazel build plugins/owners plugins/owners-autoassign
NOTE: the owners-common folder is producing shared artifacts for the two plugins and does not need to be built separately being a direct dependency of the build process. Its resulting .jar must not be installed in gerrit plugins directory.
The output is created in
bazel-bin/plugins/owners/owners.jar bazel-bin/plugins/owners-autoassign/owners-autoassign.jar
To execute the tests run:
bazel test owners-common:test
This project can be imported into the Eclipse IDE:
Add the plugin name to the CUSTOM_PLUGINS
(and in case when you want to run tests from the IDE to CUSTOM_PLUGINS_TEST_DEPS
) in Gerrit core in tools/bzl/plugins.bzl
file and run:
./tools/eclipse/project.py