Gitea (gitea v1.1.11)
Documentation for the main Gitea
functions.
This package is an Elixir
interface to our Gitea
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: github.com/dwyl/gitea/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.
clone/2
clones a remote git repository based on git_repo_url
.
The second argument is a list of string representing where to clone the
repository to.
The functin returns either {:ok, path} or {:error, reason}
create_branch/3
creates a branch.
inject_git/0
injects a Git
TestDouble in Tests & CI
so we don't have duplicate mocks in the downstream app.
local_branch_create/3
creates a branch with the specified name
or defaults to "draft", and switch to this branch.
local_file_read/3
reads the raw text from the file_name
,
params: org_name
, repo_name
& file_name
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.
push/2
pushes the org_name/repo_name
(current active branch)
to the remote repository URL. Mocked during test/CI.
Create an organisation on Gitea. The second argument opts is a keyword list value and define the description, full_name and visibility
Delete an organisation on Gitea.
remote_read_file/4
reads a file from the remote repo.
Accepts 4 arguments: org_name
, repo_name
, file_name
and branch_name
.
The 4<sup>th</sup> argument is optional and defaults to "master"
(the default branch for a repo hosted on Gitea
).
Makes a GET
request to the remote Gitea
instance as defined
by the environment variable GITEA_URL
.
Returns {:ok, %HTTPoison.Response{ body: response_body}}
Uses REST API Endpoint
remote_render_markdown_html/4
uses Gitea
built-in Markdown processor
to render a Markdown Doc e.g. the README.md
so you can easily use the HTML.
Accepts 4 arguments: org_name
, repo_name
, file_name
and branch_name
.
The 4<sup>th</sup> argument is optional and defaults to "master"
(the default branch for a repo hosted on Gitea
).
Makes a GET
request to the remote Gitea
instance as defined
by the environment variable GITEA_URL
.
Returns {:ok, %HTTPoison.Response{ body: response_body}}
Uses REST API Endpoint
remote_repo_create/3
accepts 3 arguments: org_name
, repo_name
& private
.
It creates a repo on the remote Gitea
instance as defined
by the environment variable GITEA_URL
.
For convenience it assumes that you only have one Gitea
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 Gitea
instance as defined
by the environment variable GITEA_URL
.
Link to this section Functions
clone(git_repo_url)
clone/1
clones a remote git repository based on git_repo_url
returns the path of the local copy of the repository.
clone(git_repo_url, path)
clone/2
clones a remote git repository based on git_repo_url
.
The second argument is a list of string representing where to clone the
repository to.
The functin returns either {:ok, path} or {:error, reason}
commit(org_name, repo_name, params)
@spec commit(String.t(), String.t(), %{ message: String.t(), full_name: String.t(), email: String.t() }) :: {:ok, any()} | {:error, Gitea.Error}
commit/3
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.
create_branch(org_name, repo_name, branch_name)
create_branch/3
creates a branch.
inject_git()
inject_git/0
injects a Git
TestDouble in Tests & CI
so we don't have duplicate mocks in the downstream app.
local_branch_create(org_name, repo_name, branch_name \\ "draft")
local_branch_create/3
creates a branch with the specified name
or defaults to "draft", and switch to this branch.
local_file_read(org_name, repo_name, file_name)
local_file_read/3
reads the raw text from the file_name
,
params: org_name
, repo_name
& file_name
local_file_write_text(org_name, repo_name, file_name, text)
@spec local_file_write_text(String.t(), String.t(), String.t(), String.t()) :: {:ok, String.t()} | {:error, Gitea.Error}
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.
push(org_name, repo_name)
push/2
pushes the org_name/repo_name
(current active branch)
to the remote repository URL. Mocked during test/CI.
remote_org_create(params)
@spec remote_org_create(%{ :username => String.t(), optional(:description) => String.t(), optional(:full_name) => String.t(), optional(:visibility) => String.t() }) :: {:ok, map()} | {:error, any()}
Create an organisation on Gitea. The second argument opts is a keyword list value and define the description, full_name and visibility
remote_org_delete(org_name)
Delete an organisation on Gitea.
remote_read_raw(org_name, repo_name, file_name, branch_name \\ "master")
@spec remote_read_raw(String.t(), String.t(), String.t(), String.t()) :: {:ok, map()} | {:error, any()}
remote_read_file/4
reads a file from the remote repo.
Accepts 4 arguments: org_name
, repo_name
, file_name
and branch_name
.
The 4<sup>th</sup> argument is optional and defaults to "master"
(the default branch for a repo hosted on Gitea
).
Makes a GET
request to the remote Gitea
instance as defined
by the environment variable GITEA_URL
.
Returns {:ok, %HTTPoison.Response{ body: response_body}}
Uses REST API Endpoint:
GET /repos/:username/:reponame/raw/:branchname/:path
Ref: https://github.com/gitea/docs-api/blob/master/Repositories/Contents.md#get-contents
remote_render_markdown_html(org_name, repo_name, file_name, branch_name \\ "master")
@spec remote_render_markdown_html(String.t(), String.t(), String.t(), String.t()) :: {:ok, map()} | {:error, any()}
remote_render_markdown_html/4
uses Gitea
built-in Markdown processor
to render a Markdown Doc e.g. the README.md
so you can easily use the HTML.
Accepts 4 arguments: org_name
, repo_name
, file_name
and branch_name
.
The 4<sup>th</sup> argument is optional and defaults to "master"
(the default branch for a repo hosted on Gitea
).
Makes a GET
request to the remote Gitea
instance as defined
by the environment variable GITEA_URL
.
Returns {:ok, %HTTPoison.Response{ body: response_body}}
Uses REST API Endpoint:
POST /markdown/raw
remote_repo_create(org_name, repo_name, private \\ false)
@spec remote_repo_create(String.t(), String.t(), boolean()) :: {:ok, :repo_created} | {:error, Gitea.Error}
remote_repo_create/3
accepts 3 arguments: org_name
, repo_name
& private
.
It creates a repo on the remote Gitea
instance as defined
by the environment variable GITEA_URL
.
For convenience it assumes that you only have one Gitea
instance.
If you have more or different requirements, please share!
remote_repo_delete(org_name, repo_name)
remote_repo_delete/2
accepts two arguments: org_name
and repo_name
.
It deletes the repo on the remote Gitea
instance as defined
by the environment variable GITEA_URL
.