James Moger
2014-04-13 a3ac802e4cd624129131b8004852d608ac2cf64c
commit | author | age
c5dfd6 1
JM 2 ## Gitblit Plugins
3
4 *SINCE 1.5.0*
5
6 Gitblit supports extending and enhancing the core functionality through plugins.  This mechanism is very young and incomplete with few extension points, but you can expect it to evolve rapidly in upcoming releases.
7
8 ### What is a plugin?
9
10 A plugin is a collection of Java classes and required jar dependencies bundled together in a zip file.  A plugin may optionally include *Extensions* which enhance Gitblit at specific Gitblit-specified *ExtensionPoints*.
11
12 *Plugins* are singleton instances that are *STARTED* when Gitblit launches and *STOPPED* when Gitblit terminates.  *Extensions* are dynamic instances that are created when Gitblit processes requests that trigger *ExtensionPoints*.
13
14 ### Architecture
15
16 The existing plugin mechanism is based on [pf4j](https://github.com/decebals/pf4j).  Plugins are distributed as zip files and may include their runtime dependencies or may rely on the bundled dependencies of other plugins and/or Gitblit core.
17
18 The zip plugins are stored in `${baseFolder}/plugins` and are unpacked on startup into folders of the same name.
19
20 A plugin defines it's metadata in the META-INF/MANIFEST.MF file:
21
22     Plugin-Id: powertools
a3ac80 23     Plugin-Description: Command and control Gitblit over SSH
c5dfd6 24     Plugin-Class: com.gitblit.plugin.powertools.Powertools
JM 25     Plugin-Version: 1.2.0
26     Plugin-Provider: gitblit.com
27
28 In addition to extending Gitblit core, plugins can also define extension points that may be implemented by other plugins.  Therefore a plugin may depend on other plugins.
29
30     Plugin-Dependencies: foo, bar
31
32 **NOTE:**
33 The pf4j plugin framework relies on a javac apt processor to generate compile-time extension information, so be sure to enable apt processing in your build process.
34
35 #### Limitations of Dependencies & Requires
36
37 Plugins may specify dependencies by ID, but may not specify specific versions of a dependency.  The plugin registry allows you to specify a *requires* version of Gitblit, but this is not currently enforced.
38
39 ### Managing Plugins
40
41 Administrators may manage plugins through the `plugin` SSH dispatch command:
42
43     ssh host plugin
44
45 Through this command interface plugins can be started, stopped, disabled, enabled, installed, uninstalled, listed, etc.
46
47 ### Default Plugin Registry
48
49 Gitblit provides a simple default registry of plugins. The registry is a JSON file and it lists plugin metadata and download locations.
50
51     plugins.registry = http://plugins.gitblit.com/plugins.json
52
53 The [registry](http://plugins.gitblit.com/plugins.json) is currently hosted in a [Git repository on Github](https://github.com/gitblit/gitblit-registry).  This git repository is also a [Maven-compatible repository](http://plugins.gitblit.com), which hosts some plugin binaries.
54
55 ### Contributing Plugins to the Default Registry
56
57 If you develop your own plugins that you want hosted by or linked in the default registry, open pull request for the registry repository.  Any contributed binaries hosted in this repository must have Maven metadata and the SHA-1 & MD5 checksums.  By default, Gitblit enforces checksum validation on all downloads.
58
59 ### Hosting your Own Registry / Allowing Multiple Registries
60
61 The `plugins.json` file is parameterized with the `${self}` placeholder.  This parameter is substituted on download with with the source URL of the registry file.  This allows you to clone and serve your own copy of this git repository or just server your own `plugins.json` on your own network.
62
63 Gitblit also supports loading multiple plugin registries.  Just place another **properly formatted** `.json` file in `${baseFolder}/plugins` and Gitblit will load that as an additional registry.
64
65 ### Mac OSX Fonts
66
67 Gitblit's core SSH commands and those in the *powertools* plugin rely on ANSI border characters to provide a pretty presentation of data.  Unfortunately, the fonts provided by Apple - while very nice - don't work well with ANSI border characters.  The following public domain fixed-width, fixed-point, bitmapped fonts work very nicely.  I find the 6x12 font with a line spacing of ~0.8 to be quite acceptable.
68
69 [6x12.dfont](6x12.dfont)
70 [6x13.dfont](6x13.dfont)
71 [7x13.dfont](7x13.dfont)
72 [7x14.dfont](7x14.dfont)
73