Documentation - API Reference Documented behavior of: +refs, +log, +show, +archive, +doc, +blame, +diff Included working endpoints as examples. References (besides the Gitiles source code): https://www.chromium.org/developers/change-logs/ https://github.com/google/gitiles/issues/52 Change-Id: Icf3db82574b93be18b61772150baf56f3005b6e3
diff --git a/Documentation/api-reference.md b/Documentation/api-reference.md new file mode 100644 index 0000000..0dab3c0 --- /dev/null +++ b/Documentation/api-reference.md
@@ -0,0 +1,64 @@ +# Gitiles API Reference + +[TOC] + +### Formatting + +`?format=`: `TEXT`, `HTML`, and `JSON` + +The `JSON` output has a `)]}'` line at the top to prevent cross-site scripting. +When parsing, strip that line and the rest can be parsed normally. + +#### URL Format +Depending on the servlet context path set up to serve gitiles, the URL used to access these end points may differ. + +On gerrit.googlesource.com one URL is: `https://gerrit.googlesource.com/a/gitiles/+refs?format=TEXT`, while for a standard localhost deployment, the equivalent URL would be `http://localhost:8080/a/plugins/gitiles/test+refs?format=TEXT`. The examples given in this document are of the former form, to allow testing against real refs. They require authentication described in [the REST API Developer's Notes](https://gerrit-review.googlesource.com/Documentation/dev-rest-api.html). + +### Endpoints + +#### **`+refs`** +`https://gerrit.googlesource.com/a/gitiles/+refs?format=TEXT` + +Lists all refs (branches, tags, etc.) in the repository. + +#### **`+log`** +`https://gerrit.googlesource.com/a/gitiles/+log/refs/heads/master?n=10&format=JSON` + +Shows the commit log. +Use the parameter `n=<number>` to limit the number of commits returned. +For paging use the start parameter `s=<next_cursor>`. +The `next` key in the JSON provides a cursor for the next page. Use it with `s=<next_cursor>`. +The final page will have no `next` key. +Every page except for the first will have a `previous` cursor to page backwards. + +#### **`+show`** +`https://gerrit.googlesource.com/a/gitiles/+show/refs/heads/master/?format=JSON` + +View the metadata about a given target. If the target is a file, use `format=TEXT` to view base64-encoded content, e.g. +```bash +curl "https://gerrit.googlesource.com/a/gitiles/+show/refs/heads/master/README.md?format=TEXT" | base64 -d +``` + +#### **`+archive`** +`https://gerrit.googlesource.com/a/gitiles/+archive/refs/heads/master.tar.gz` + +Download a compressed archive of a repository at a specific commit or ref. +Supported formats: `.tar.gz` and `.zip` +```bash +curl "https://gerrit.googlesource.com/a/gitiles/+archive/refs/heads/master.tar.gz" -o repo.tar.gz +``` + +#### **`+doc`** +`https://gerrit.googlesource.com/a/gitiles/+doc/refs/heads/master/README.md` + +Renders Markdown files into HTML. + +#### **`+blame`** +`https://gerrit.googlesource.com/a/gitiles/+blame/refs/heads/master/README.md` + +Shows line-by-line author information for a specific file (`git blame`). + +#### **`+diff`** +`https://gerrit.googlesource.com/a/gitiles/+diff/refs/heads/master/?from=master~1&to=master` + +Compute the diff between two commits. \ No newline at end of file