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