Gogs (gogs v0.5.0)

Documentation for the main Gogs functions.
This package is an Elixir interface to our Gogs Server. It contains all functions we need to create repositories, clone, add data to files, commit, push and diff. Some of these functions use Git and others use the REST API. We would obviously prefer if everything was one or the other, but sadly, some things cannot be done via Git or REST so we have adopted a "hybrid" approach.

If anything is unclear, please open an issue: https://github.com/dwyl/gogs/issues

Link to this section Summary

Functions

clone/1 clones a remote git repository based on git_repo_url returns the path of the local copy of the repository.

commit/2 commits the latest changes on the local branch. Accepts the repo_name and a Map of params: params.message: the commit message you want in the log params.full_name: the name of the person making the commit params.email: email address of the person committing.

delete/1 accepts a single argument url; the url for the repository to be deleted.

inject_git/0 injects a Git TestDouble in Tests & CI so we don't have duplicate mocks in the downstream app.

inject_poison/0 injects a TestDouble of HTTPoison in Test. see: github.com/dwyl/elixir-auth-google/issues/35

local_branch_create/2 creates a branch with the specified name or defaults to "draft".

local_file_write_text/3 writes the desired text, to the file_name in the repo_name. Touches the file in case it doesn't already exist.

post/2 accepts two arguments: url and params. Makes an HTTP POST request to the specified url passing in the params as the request body. Auth Headers and Content-Type are implicit.

push/1 pushes the repo_name (current active branch) to the remote repository URL. Mocked during test/CI.

remote_repo_create/3 accepts 3 arguments: org_name, repo_name & private. It creates a repo on the remote Gogs instance as defined by the environment variable GOGS_URL. For convenience it assumes that you only have one Gogs instance. If you have more or different requirements, please share!

remote_repo_delete/2 accepts two arguments: org_name and repo_name. It deletes the repo on the remote Gogs instance as defined by the environment variable GOGS_URL.

Link to this section Functions

Link to this function

clone(git_repo_url)

@spec clone(String.t()) :: {:ok, any()} | {:error, any()}

clone/1 clones a remote git repository based on git_repo_url returns the path of the local copy of the repository.

Link to this function

commit(repo_name, params)

@spec commit(String.t(), map()) :: {:ok, any()} | {:error, any()}

commit/2 commits the latest changes on the local branch. Accepts the repo_name and a Map of params: params.message: the commit message you want in the log params.full_name: the name of the person making the commit params.email: email address of the person committing.

@spec delete(String.t()) :: {:ok, map()} | {:error, any()}

delete/1 accepts a single argument url; the url for the repository to be deleted.

inject_git/0 injects a Git TestDouble in Tests & CI so we don't have duplicate mocks in the downstream app.

Link to this function

inject_poison()

inject_poison/0 injects a TestDouble of HTTPoison in Test. see: github.com/dwyl/elixir-auth-google/issues/35

Link to this function

local_branch_create(repo_name, branch_name \\ "draft")

@spec local_branch_create(String.t(), String.t()) :: {:ok, map()} | {:error, any()}

local_branch_create/2 creates a branch with the specified name or defaults to "draft".

Link to this function

local_file_write_text(repo_name, file_name, text)

@spec local_file_write_text(String.t(), String.t(), String.t()) ::
  :ok | {:error, any()}

local_file_write_text/3 writes the desired text, to the file_name in the repo_name. Touches the file in case it doesn't already exist.

Link to this function

post(url, params \\ %{})

@spec post(String.t(), map()) :: {:ok, map()} | {:error, any()}

post/2 accepts two arguments: url and params. Makes an HTTP POST request to the specified url passing in the params as the request body. Auth Headers and Content-Type are implicit.

Link to this function

push(repo_name)

@spec push(String.t()) :: {:ok, any()} | {:error, any()}

push/1 pushes the repo_name (current active branch) to the remote repository URL. Mocked during test/CI.

Link to this function

remote_repo_create(org_name, repo_name, private \\ false)

@spec remote_repo_create(String.t(), String.t(), boolean()) ::
  {:ok, map()} | {:error, any()}

remote_repo_create/3 accepts 3 arguments: org_name, repo_name & private. It creates a repo on the remote Gogs instance as defined by the environment variable GOGS_URL. For convenience it assumes that you only have one Gogs instance. If you have more or different requirements, please share!

Link to this function

remote_repo_delete(org_name, repo_name)

@spec remote_repo_delete(String.t(), String.t()) :: {:ok, map()} | {:error, any()}

remote_repo_delete/2 accepts two arguments: org_name and repo_name. It deletes the repo on the remote Gogs instance as defined by the environment variable GOGS_URL.