# encoding: utf-8
module Github
class GitData
# This tags api only deals with tag objects - so only annotated tags, not lightweight tags.
module Tags
VALID_TAG_PARAM_NAMES = %w[
tag
message
object
type
name
email
date
]
VALID_TAG_PARAM_VALUES = {
'type' => %w[ blob tree commit ]
}
# Get a tag
#
# = Examples
# @github = Github.new
# @github.git_data.tag 'user-name', 'repo-name', 'sha'
#
def tag(user_name, repo_name, sha, params={})
_update_user_repo_params(user_name, repo_name)
_validate_user_repo_params(user, repo) unless user? && repo?
_validate_presence_of sha
_normalize_params_keys(params)
get("/repos/#{user}/#{repo}/git/tags/#{sha}", params)
end
# Create a tag object
# Note that creating a tag object does not create the reference that
# makes a tag in Git. If you want to create an annotated tag in Git,
# you have to do this call to create the tag object, and then create
# the refs/tags/[tag] reference. If you want to create a lightweight tag, you simply have to create the reference - this call would be unnecessary.
#
# = Parameters
# * :tag - String of the tag
# * :message - String of the tag message
# * :object - String of the SHA of the git object this is tagging
# * :type - String of the type of the object we're tagging. Normally this is a commit but it can also be a tree or a blob
# * tagger.name:: String of the name of the author of the tag
# * tagger.email:: String of the email of the author of the tag
# * tagger.date:: Timestamp of when this object was tagged
#
# = Examples
# @github = Github.new
# @github.git_data.create_tag 'user-name', 'repo-name',
# "tag" => "v0.0.1",
# "message" => "initial version\n",
# "type": "commit",
# "object": "c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c",
# "tagger" => {
# "name" => "Scott Chacon",
# "email" => "schacon@gmail.com",
# "date" => "2011-06-17T14:53:3"
# }
#
def create_tag(user_name, repo_name, params={})
_update_user_repo_params(user_name, repo_name)
_validate_user_repo_params(user, repo) unless user? && repo?
_normalize_params_keys(params)
_filter_params_keys(VALID_TAG_PARAM_NAMES, params)
_validate_params_values(VALID_TAG_PARAM_VALUES, params)
post("/repos/#{user}/#{repo}/git/tags", params)
end
end # Tags
end # GitData
end # Github