2017-02-23 09:10:44 +05:30
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2017-02-23 09:10:44 +05:30
|
|
|
|
|
|
|
package git
|
|
|
|
|
2018-05-21 18:04:20 +05:30
|
|
|
import "fmt"
|
|
|
|
|
2017-02-23 09:10:44 +05:30
|
|
|
// FileBlame return the Blame object of file
|
|
|
|
func (repo *Repository) FileBlame(revision, path, file string) ([]byte, error) {
|
2022-10-23 20:14:45 +05:30
|
|
|
stdout, _, err := NewCommand(repo.Ctx, "blame", "--root").AddDashesAndList(file).RunStdBytes(&RunOpts{Dir: path})
|
2022-04-01 08:25:30 +05:30
|
|
|
return stdout, err
|
2018-05-21 18:04:20 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// LineBlame returns the latest commit at the given line
|
|
|
|
func (repo *Repository) LineBlame(revision, path, file string, line uint) (*Commit, error) {
|
2022-10-23 20:14:45 +05:30
|
|
|
res, _, err := NewCommand(repo.Ctx, "blame").
|
|
|
|
AddArguments(CmdArg(fmt.Sprintf("-L %d,%d", line, line))).
|
|
|
|
AddArguments("-p").AddDynamicArguments(revision).
|
|
|
|
AddDashesAndList(file).RunStdString(&RunOpts{Dir: path})
|
2018-05-21 18:04:20 +05:30
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(res) < 40 {
|
|
|
|
return nil, fmt.Errorf("invalid result of blame: %s", res)
|
|
|
|
}
|
2019-07-24 00:20:39 +05:30
|
|
|
return repo.GetCommit(res[:40])
|
2017-02-23 09:10:44 +05:30
|
|
|
}
|