Luca Milanesio | 395cbbe | 2013-06-18 08:38:30 +0100 | [diff] [blame] | 1 | GitHub plugin |
| 2 | ============= |
Luca Milanesio | e2f32fc | 2013-08-26 23:37:47 +0100 | [diff] [blame] | 3 | This plugin allows existing GitHub repositories to be integrated |
| 4 | as Gerrit projects. |
Luca Milanesio | 395cbbe | 2013-06-18 08:38:30 +0100 | [diff] [blame] | 5 | |
Luca Milanesio | e2f32fc | 2013-08-26 23:37:47 +0100 | [diff] [blame] | 6 | Why using GitHub and Gerrit together ? |
| 7 | -------------------------------------- |
| 8 | |
| 9 | Many people see Gerrit and GitHub as opposites: the pull-request |
| 10 | model adopted by GitHub is often used as "easy shortcut" to the |
| 11 | more comprehensive and structured code-review process in Gerrit. |
| 12 | |
| 13 | There are many discussion threads on this: |
| 14 | - http://programmers.stackexchange.com/questions/173262/gerrit-code-review-or-githubs-fork-and-pull-model |
| 15 | - http://stackoverflow.com/questions/2451644/gerrit-with-github |
| 16 | - http://julien.danjou.info/blog/2013/rant-about-github-pull-request-workflow-implementation |
| 17 | |
| 18 | In reality there are already OpenSource projects that have started |
| 19 | using the two tools together: |
| 20 | - OpenStack (https://wiki.openstack.org/wiki/GerritJenkinsGithub) |
| 21 | - MediaWiki (http://www.mediawiki.org/wiki/Gerrit) |
| 22 | |
| 23 | The reason for using GitHub and Gerrit together are: |
| 24 | a) GitHub is widely recognised and accessible by lots of world-wide sites. |
| 25 | b) Using a public GitHub repo allows to "off-load" a lot of git pull traffic. |
| 26 | c) Pull-request allows novice users to start getting involved. |
| 27 | d) Gerrit code-review define the quality gates for avoiding "noise" of unstructured |
| 28 | contributions. |
| 29 | |
| 30 | Why a Gerrit plugin ? |
| 31 | --------------------- |
| 32 | |
| 33 | When using GitHub and Gerrit together, the "master of truth" has to be |
| 34 | Gerrit: this is because it is the place where more control in terms of |
| 35 | security and workflow can be defined. |
| 36 | |
| 37 | A Gerrit plugin can help controlling the GitHub replica and importing |
| 38 | the pull requests as Gerrit changes. |
| 39 | |
Luca Milanesio | 395cbbe | 2013-06-18 08:38:30 +0100 | [diff] [blame] | 40 | |
| 41 | Integration points |
| 42 | ------------------ |
| 43 | |
Luca Milanesio | e2f32fc | 2013-08-26 23:37:47 +0100 | [diff] [blame] | 44 | ### Authentication. (DONE - Change-Id: I7291a90014e51316af3cb07fd03785c1ef33acd0) |
Luca Milanesio | 395cbbe | 2013-06-18 08:38:30 +0100 | [diff] [blame] | 45 | |
| 46 | Users can login to Gerrit using the same username and credentials |
Luca Milanesio | e2f32fc | 2013-08-26 23:37:47 +0100 | [diff] [blame] | 47 | in GitHub. Gerrit login points to GitHub for generating the OAuth token |
Luca Milanesio | 395cbbe | 2013-06-18 08:38:30 +0100 | [diff] [blame] | 48 | to be used for the code-review authenticated session. |
| 49 | |
Luca Milanesio | e2f32fc | 2013-08-26 23:37:47 +0100 | [diff] [blame] | 50 | The initial Gerrit registration page can be customised to import |
| 51 | GitHub SSH Keys directly into Gerrit. |
| 52 | |
David Ostrovsky | 3f7fcd2 | 2014-05-17 23:29:02 +0200 | [diff] [blame] | 53 | ### Push-Pull replication. (DONE - Change-Id: I596b2e80b4d9519668a1ab289d6c950139d6a922) |
Luca Milanesio | 395cbbe | 2013-06-18 08:38:30 +0100 | [diff] [blame] | 54 | |
| 55 | Existing GitHub repositories are automatically replicated to Gerrit |
| 56 | for the purpose of performing code-review and pushing back changes |
| 57 | once approved. Additionally to the standard Gerrit push replication, |
| 58 | supports as well the ability to pull branches from remote GitHub |
| 59 | repositories. |
| 60 | |
Luca Milanesio | 4ba7702 | 2013-10-11 14:31:20 +0100 | [diff] [blame] | 61 | ### Pull-request to Change. (DONE - Change-Id: d669e351a03798cc2ec966d028458f083c232564) |
Luca Milanesio | 395cbbe | 2013-06-18 08:38:30 +0100 | [diff] [blame] | 62 | |
| 63 | Hooks into the GitHub pull-request mechanism to automatically create |
| 64 | a Change in Gerrit submitted for review. |
Luca Milanesio | e2f32fc | 2013-08-26 23:37:47 +0100 | [diff] [blame] | 65 | |
| 66 | How to build this plugin |
| 67 | ------------------------ |
| 68 | |
David Ostrovsky | 3f7fcd2 | 2014-05-17 23:29:02 +0200 | [diff] [blame] | 69 | ### Gerrit 2.10 build |
Luca Milanesio | e2f32fc | 2013-08-26 23:37:47 +0100 | [diff] [blame] | 70 | |
David Ostrovsky | 3f7fcd2 | 2014-05-17 23:29:02 +0200 | [diff] [blame] | 71 | GitHub plugin is designed to work with Gerrit 2.10 (currently in development). |
| 72 | In order to build the GitHub plugin you need to have a working Gerrit 2.10 |
Luca Milanesio | e2f32fc | 2013-08-26 23:37:47 +0100 | [diff] [blame] | 73 | build in place. |
| 74 | |
| 75 | See https://gerrit-review.googlesource.com/Documentation/dev-buck.html for a |
David Ostrovsky | 3f7fcd2 | 2014-05-17 23:29:02 +0200 | [diff] [blame] | 76 | reference on how to build Gerrit 2.10 (master branch) using BUCK. |
Luca Milanesio | e2f32fc | 2013-08-26 23:37:47 +0100 | [diff] [blame] | 77 | |
| 78 | ### GitHub API |
| 79 | |
| 80 | In order to access GitHub API, we have used the lucamilanesio fork of Kohsuke API |
| 81 | layer hosted on GitHub at https://github.com/lucamilanesio/github-api. |
| 82 | |
| 83 | You need to clone and build the GitHub API as pre-requisite for building the |
| 84 | GitHub plugin for Gerrit. |
| 85 | |
| 86 | Example: |
| 87 | git clone https://github.com/lucamilanesio/github-api.git |
| 88 | cd github-api |
David Ostrovsky | 3f7fcd2 | 2014-05-17 23:29:02 +0200 | [diff] [blame] | 89 | mvn install -DskipTests=true |
Luca Milanesio | e2f32fc | 2013-08-26 23:37:47 +0100 | [diff] [blame] | 90 | |
| 91 | ### singleusergroup plugin |
| 92 | |
| 93 | You need to clone, build and install the singleusergroup plugin for Gerrit |
| 94 | (see https://gerrit-review.googlesource.com/#/admin/projects/plugins/singleusergroup). |
| 95 | |
| 96 | This plugin is needed to allow Gerrit to use individual users as Groups for being |
David Ostrovsky | 3f7fcd2 | 2014-05-17 23:29:02 +0200 | [diff] [blame] | 97 | used in Gerrit ACLs. As of Gerrit 2.10 singleuserplugin is a core plugin and |
| 98 | included in Gerrit tree (if it was cloned recursively). |
Luca Milanesio | e2f32fc | 2013-08-26 23:37:47 +0100 | [diff] [blame] | 99 | |
| 100 | Example: |
David Ostrovsky | 3f7fcd2 | 2014-05-17 23:29:02 +0200 | [diff] [blame] | 101 | cd gerrit |
| 102 | buck build plugins/singleusergroup |
| 103 | cp buck-out/gen/plugins/singleusergroup/singleusergroup.jar $GERRIT_SITE/plugins/. |
Luca Milanesio | e2f32fc | 2013-08-26 23:37:47 +0100 | [diff] [blame] | 104 | |
| 105 | ### Building GitHub integration for Gerrit |
| 106 | |
| 107 | Just clone the Git repository (see https://gerrit-review.googlesource.com/#/admin/projects/plugins/github) |
| 108 | and do a `mvn install` from the root directory. |
| 109 | This will create two JARs under github-oauth/target and github-plugin/target: the oauth is a JAR library |
| 110 | to be copied to $GERRIT_SITE/lib whilst the plugin JAR has to be installed as usual under $GERRIT_SITE/plugins. |
| 111 | |
| 112 | Example: |
| 113 | git clone https://gerrit.googlesource.com/plugins/github |
| 114 | cd github |
| 115 | mvn install |
David Ostrovsky | 3f7fcd2 | 2014-05-17 23:29:02 +0200 | [diff] [blame] | 116 | cp github-oauth/target/github-oauth-*.jar $GERRIT_SITE/lib |
| 117 | cp github-plugin/target/github-plugin-*.jar $GERRIT_SITE/plugins |
Luca Milanesio | e2f32fc | 2013-08-26 23:37:47 +0100 | [diff] [blame] | 118 | |
David Ostrovsky | 3f7fcd2 | 2014-05-17 23:29:02 +0200 | [diff] [blame] | 119 | ### Register Gerrit as a Github OAuth application ### |
Luca Milanesio | e2f32fc | 2013-08-26 23:37:47 +0100 | [diff] [blame] | 120 | |
David Ostrovsky | 3f7fcd2 | 2014-05-17 23:29:02 +0200 | [diff] [blame] | 121 | * login to Github |
| 122 | * open the URL: https://github.com/settings/applications/new |
| 123 | * Application name: Gerrit |
| 124 | * Homepage URL: https://review.my-domain.org |
| 125 | * Authorization callback URL: https://review.my-domain.org/oauth |
Luca Milanesio | e2f32fc | 2013-08-26 23:37:47 +0100 | [diff] [blame] | 126 | |
David Ostrovsky | 3f7fcd2 | 2014-05-17 23:29:02 +0200 | [diff] [blame] | 127 | Note: Client ID & Client Secret are generated that used in the next step. |
| 128 | |
| 129 | ### Running Gerrit init to configure GitHub OAuth |
| 130 | |
| 131 | * java -jar buck-out/gen/gerrit.war `$gerrit_site` |
| 132 | * User Authentication |
| 133 | * Authentication methodi []: HTTP |
| 134 | * Ger username from custom HTTP header [Y/n]? Y |
| 135 | * Username HTTP header []: GITHUB_USER |
| 136 | * SSO logout URL : /oauth/reset |
| 137 | |
| 138 | * GitHub Integration |
| 139 | |
| 140 | * GitHub URL: [https://github.com]: <confirm> |
| 141 | * Use GitHub for Gerrit login? [Y/n] Y |
| 142 | * ClientId []: <provided client id from previous step> |
| 143 | * ClientSecret []: <provided client secret from previous step> |
Luca Milanesio | e2f32fc | 2013-08-26 23:37:47 +0100 | [diff] [blame] | 144 | |
Yuki Yugui Sonoda | 505cd85 | 2015-07-20 19:05:24 +0900 | [diff] [blame] | 145 | ### Receiving Pull Request events to automatically import |
| 146 | |
| 147 | * Create a github user account which automatic import operation uses. |
| 148 | * Register the account to your gerrit site by logging into Gerrit with the |
| 149 | account. |
| 150 | * [Create webhook](https://developer.github.com/webhooks/creating/) on your |
| 151 | github repository. |
| 152 | * The payload URL should be something like |
| 153 | http://*your-gerrit-host.example*/plugins/github-plugin-*version*/webhook. |
| 154 | * It is recommended to specify some webhook secret. |
| 155 | * Edit `etc/gerrit.config` and `etc/secure.config` files in your `$gerrit_site`. |
| 156 | * Add the github user account name as `webhookUser` entry in `github` section |
| 157 | of `etc/gerrit.config` |
| 158 | * Add the webhook secret as `webhookSecret` entry in `github` section of |
| 159 | `etc/secure.config`. |
| 160 | |
David Pursehouse | 22a1c48 | 2014-08-21 18:30:23 +0900 | [diff] [blame] | 161 | ### Contributing to the GitHub plugin |
| 162 | |
| 163 | The GitHub plugin uses the lombok library, which provides a set of |
| 164 | annotations to reduce the amount of boilerplate code that has to be |
| 165 | written. |
| 166 | |
| 167 | To build the plugin in Eclipse, the Lombok Eclipse integration must be |
| 168 | installed. |
| 169 | |
| 170 | Download lombok.jar from http://projectlombok.org/ and install: |
| 171 | |
| 172 | |
| 173 | ``` |
| 174 | java -jar lombok.jar |
| 175 | ``` |
| 176 | |
| 177 | Follow the instructions to select your Eclipse installation if the |
| 178 | installer cannot detect it automatically. |
| 179 | |
| 180 | After the installation, Eclipse must be restarted and compilation |
| 181 | errors should disappear. |