notes for developers

Gitolite has a huge bunch of existing features that gradually need to moved over. Plus you may want to write your own programs to interact with it.

Here are some random notes on developing hooks, commands, triggers, and sugar scripts.

environment variables and other inputs

In general, the following environment variables should always be available:

GL_BINDIR
GL_REPO_BASE
GL_ADMIN_BASE

Commands invoked by a remote client will also have GL_USER set. Hooks will have GL_REPO also set.

Finally, note that triggers get a lot of relevant information from gitolite as arguments; see [here][triggers] for details.

APIs

the shell API

The following commands exist to help you write shell scripts that interact easily with gitolite. Each of them responds to -h so please run that for more info.

In addition, you can also look at the comments in src/lib/Gitolite/Easy.pm (the perl API module) for ideas.

the perl API

...is implemented by Gitolite::Easy; the comments in src/lib/Gitolite/Easy.pm serve as documentation.

writing your own...

...hooks

anything but the update hook

If you want to add your own hook, it's easy as long as it's not the 'update' hook. Just add it to $HOME/.gitolite/hooks/common and run gitolite setup.

The rest is between you and 'man githooks' :-)

update hook

If you want to add additional update hook functionality, do this:

As you probably guessed, you can now make your additional update hooks more selective, applying them only to some repos / users / combinations.

Note: a normal update hook expects 3 arguments (ref, old SHA, new SHA). A VREF will get those three, followed by at least 4 more. Your VREF should just ignore the extra args.

...commands

You can add your own commands. You can run them on the server (example, gitolite access). Then you can enable certain commands to be allowed to run by a remote user by adding them to the "COMMANDS" hash of the [rc][] file.

Commands are standalone programs, in any language you like. They simply receive the arguments you append. In addition, the env var GL_USER is available if it is being run remotely. src/commands/desc is the best example at present.

...trigger programs

Trigger programs run at specific points in gitolite's execution, with specific arguments being passed to them. See the [triggers][] page for details.

You can write programs that are both manually runnable as well as callable by trigger events, especially if they don't need any arguments.

..."sugar"

Syntactic sugar helpers are NOT complete, standalone, programs. They must include a perl sub called sugar_script that takes in a listref, and returns a listref. The listrefs point to a list that contains the entire conf file (with all [include][] processing already done). You create a new list with contents modified as you like and return a ref to it.

There are a couple of examples in src/syntactic-sugar.