Github Submodule Hook

This service provide an API to update submodules to a specific SHA on a repository. This can be triggered by:

Configuration

The whole configuration is defined in the configuration file. The file is in JSON-format.

It can be passed to the program with the -c option, otherwise, it will check the following places:

config.json

json { "user_file": "users.txt", // Optional: The file that contains the mapping "user = token" "token": "mytoken", // The token to access the github API (need enough permission) "permissions": { // Permisson tree: you give, for each user, access to different repository "<user1>": { "<owner>": { "<repo>": { "<branch>": [ "<submodule1>" ] } } } }, // Define the hooks and which repository to update "hooks": { "<owner>": { // owner that triggered the hook "<repo>": { // repository that triggered the hook "<branch>": [ // branch that triggered the hook // List of repository + branch + submodule to update { "owner": "<owner-to-update>", "repo": "<repo-to-update>", "branch": "<branch-to-update>", "submodule": "<submodule-to-update>" } ] } } } }

I choose to use a tree owner -> repo -> branch -> submodule for simplicity when we have for example only 1 owner but many repositories. I also wanted a file that can be manually edited

users.txt (or the name you choose to use)

use the CLI to add them:

bash github_submodule_hook config user add user1

Nb: the file contains 1 entry by line in the following format

yaml {username} = {base64(sha512(token))}

You could generate your own token if you want but this is strongly discouraged.

Usage

user1 can now do the following query

bash curl -X POST localhost:8000/update/<owner>/<repo>/<branch>/<submodule>/<hash>?token?abcd

Build

bash cargo build --release --target=x86_64-unknown-linux-gnu

Using Cross

This simplifies cross-build

Install Cross

bash cargo install cross

Use it to build

bash cross build --target x86_64-unknown-linux-gnu --release

Choices

Token

Misc

For the CLI, I used clap with declaration. I needed to configure cargo

bash cargo add clap --features derive

Development