You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.1 KiB

9 years ago
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package v1
import (
api "github.com/gogits/go-gogs-client"
"github.com/gogits/gogs/modules/git"
"github.com/gogits/gogs/modules/log"
"github.com/gogits/gogs/modules/middleware"
)
func ToApiSignature(signature *git.Signature) *api.Signature {
return &api.Signature{
Email: signature.Email,
Name: signature.Name,
When: signature.When,
9 years ago
}
}
func ToApiCommit(commit *git.Commit) *api.Commit {
return &api.Commit{
ID: commit.Id.String(),
Author: *ToApiSignature(commit.Author),
Committer: *ToApiSignature(commit.Committer),
9 years ago
CommitMessage: commit.CommitMessage,
}
}
9 years ago
func HEADCommit(ctx *middleware.Context) {
ctx.JSON(200, ToApiCommit(ctx.Repo.Commit.Id.String()))
9 years ago
}
9 years ago
func CommitByID(ctx *middleware.Context) {
9 years ago
9 years ago
commit, err := ctx.Repo.GitRepo.GetCommit(ctx.Params(":commitid"))
9 years ago
if err != nil {
log.Error(4, "GetCommit: %v", err)
ctx.Error(500, err.Error())
9 years ago
return
}
ctx.JSON(200, ToApiCommit(commit))
}