blob: a914ac0ed555cb59f445104694a1825deb3019ce [file] [log] [blame] [view]
Luca Milanesio395cbbe2013-06-18 08:38:30 +01001GitHub plugin
2=============
Luca Milanesioe2f32fc2013-08-26 23:37:47 +01003This plugin allows existing GitHub repositories to be integrated
4as Gerrit projects.
Luca Milanesio395cbbe2013-06-18 08:38:30 +01005
Luca Milanesioe2f32fc2013-08-26 23:37:47 +01006Why using GitHub and Gerrit together ?
7--------------------------------------
8
9Many people see Gerrit and GitHub as opposites: the pull-request
10model adopted by GitHub is often used as "easy shortcut" to the
11more comprehensive and structured code-review process in Gerrit.
12
13There 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
18In reality there are already OpenSource projects that have started
19using the two tools together:
20- OpenStack (https://wiki.openstack.org/wiki/GerritJenkinsGithub)
21- MediaWiki (http://www.mediawiki.org/wiki/Gerrit)
22
23The reason for using GitHub and Gerrit together are:
24a) GitHub is widely recognised and accessible by lots of world-wide sites.
25b) Using a public GitHub repo allows to "off-load" a lot of git pull traffic.
26c) Pull-request allows novice users to start getting involved.
27d) Gerrit code-review define the quality gates for avoiding "noise" of unstructured
28 contributions.
29
30Why a Gerrit plugin ?
31---------------------
32
33When using GitHub and Gerrit together, the "master of truth" has to be
34Gerrit: this is because it is the place where more control in terms of
35security and workflow can be defined.
36
37A Gerrit plugin can help controlling the GitHub replica and importing
38the pull requests as Gerrit changes.
39
Luca Milanesio395cbbe2013-06-18 08:38:30 +010040
41Integration points
42------------------
43
Luca Milanesioe2f32fc2013-08-26 23:37:47 +010044### Authentication. (DONE - Change-Id: I7291a90014e51316af3cb07fd03785c1ef33acd0)
Luca Milanesio395cbbe2013-06-18 08:38:30 +010045
46Users can login to Gerrit using the same username and credentials
Luca Milanesioe2f32fc2013-08-26 23:37:47 +010047in GitHub. Gerrit login points to GitHub for generating the OAuth token
Luca Milanesio395cbbe2013-06-18 08:38:30 +010048to be used for the code-review authenticated session.
49
Luca Milanesioe2f32fc2013-08-26 23:37:47 +010050The initial Gerrit registration page can be customised to import
51GitHub SSH Keys directly into Gerrit.
52
David Ostrovsky3f7fcd22014-05-17 23:29:02 +020053### Push-Pull replication. (DONE - Change-Id: I596b2e80b4d9519668a1ab289d6c950139d6a922)
Luca Milanesio395cbbe2013-06-18 08:38:30 +010054
55Existing GitHub repositories are automatically replicated to Gerrit
56for the purpose of performing code-review and pushing back changes
57once approved. Additionally to the standard Gerrit push replication,
58supports as well the ability to pull branches from remote GitHub
59repositories.
60
Luca Milanesio4ba77022013-10-11 14:31:20 +010061### Pull-request to Change. (DONE - Change-Id: d669e351a03798cc2ec966d028458f083c232564)
Luca Milanesio395cbbe2013-06-18 08:38:30 +010062
63Hooks into the GitHub pull-request mechanism to automatically create
64a Change in Gerrit submitted for review.
Luca Milanesioe2f32fc2013-08-26 23:37:47 +010065
66How to build this plugin
67------------------------
68
David Ostrovsky3f7fcd22014-05-17 23:29:02 +020069### Gerrit 2.10 build
Luca Milanesioe2f32fc2013-08-26 23:37:47 +010070
David Ostrovsky3f7fcd22014-05-17 23:29:02 +020071GitHub plugin is designed to work with Gerrit 2.10 (currently in development).
72In order to build the GitHub plugin you need to have a working Gerrit 2.10
Luca Milanesioe2f32fc2013-08-26 23:37:47 +010073build in place.
74
75See https://gerrit-review.googlesource.com/Documentation/dev-buck.html for a
David Ostrovsky3f7fcd22014-05-17 23:29:02 +020076reference on how to build Gerrit 2.10 (master branch) using BUCK.
Luca Milanesioe2f32fc2013-08-26 23:37:47 +010077
78### GitHub API
79
80In order to access GitHub API, we have used the lucamilanesio fork of Kohsuke API
81layer hosted on GitHub at https://github.com/lucamilanesio/github-api.
82
83You need to clone and build the GitHub API as pre-requisite for building the
84GitHub plugin for Gerrit.
85
86Example:
87 git clone https://github.com/lucamilanesio/github-api.git
88 cd github-api
David Ostrovsky3f7fcd22014-05-17 23:29:02 +020089 mvn install -DskipTests=true
Luca Milanesioe2f32fc2013-08-26 23:37:47 +010090
91### singleusergroup plugin
92
93You need to clone, build and install the singleusergroup plugin for Gerrit
94(see https://gerrit-review.googlesource.com/#/admin/projects/plugins/singleusergroup).
95
96This plugin is needed to allow Gerrit to use individual users as Groups for being
David Ostrovsky3f7fcd22014-05-17 23:29:02 +020097used in Gerrit ACLs. As of Gerrit 2.10 singleuserplugin is a core plugin and
98included in Gerrit tree (if it was cloned recursively).
Luca Milanesioe2f32fc2013-08-26 23:37:47 +010099
100Example:
David Ostrovsky3f7fcd22014-05-17 23:29:02 +0200101 cd gerrit
102 buck build plugins/singleusergroup
103 cp buck-out/gen/plugins/singleusergroup/singleusergroup.jar $GERRIT_SITE/plugins/.
Luca Milanesioe2f32fc2013-08-26 23:37:47 +0100104
105### Building GitHub integration for Gerrit
106
107Just clone the Git repository (see https://gerrit-review.googlesource.com/#/admin/projects/plugins/github)
108and do a `mvn install` from the root directory.
109This will create two JARs under github-oauth/target and github-plugin/target: the oauth is a JAR library
110to be copied to $GERRIT_SITE/lib whilst the plugin JAR has to be installed as usual under $GERRIT_SITE/plugins.
111
112Example:
113 git clone https://gerrit.googlesource.com/plugins/github
114 cd github
115 mvn install
David Ostrovsky3f7fcd22014-05-17 23:29:02 +0200116 cp github-oauth/target/github-oauth-*.jar $GERRIT_SITE/lib
117 cp github-plugin/target/github-plugin-*.jar $GERRIT_SITE/plugins
Luca Milanesioe2f32fc2013-08-26 23:37:47 +0100118
David Ostrovsky3f7fcd22014-05-17 23:29:02 +0200119### Register Gerrit as a Github OAuth application ###
Luca Milanesioe2f32fc2013-08-26 23:37:47 +0100120
David Ostrovsky3f7fcd22014-05-17 23:29:02 +0200121* 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 Milanesioe2f32fc2013-08-26 23:37:47 +0100126
David Ostrovsky3f7fcd22014-05-17 23:29:02 +0200127Note: 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 Milanesioe2f32fc2013-08-26 23:37:47 +0100144
Yuki Yugui Sonoda505cd852015-07-20 19:05:24 +0900145### 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 Pursehouse22a1c482014-08-21 18:30:23 +0900161### Contributing to the GitHub plugin
162
163The GitHub plugin uses the lombok library, which provides a set of
164annotations to reduce the amount of boilerplate code that has to be
165written.
166
167To build the plugin in Eclipse, the Lombok Eclipse integration must be
168installed.
169
170Download lombok.jar from http://projectlombok.org/ and install:
171
172
173```
174 java -jar lombok.jar
175```
176
177Follow the instructions to select your Eclipse installation if the
178installer cannot detect it automatically.
179
180After the installation, Eclipse must be restarted and compilation
181errors should disappear.