1 Star 0 Fork 0

yangx282441848 / scm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
linker.go 1.33 KB
一键复制 编辑 原始数据 按行查看 历史
Your Name 提交于 2021-10-11 10:02 . gitee
// Copyright 2017 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package gogs
import (
"context"
"fmt"
"gitee.com/yangx282441848/scm/scm"
)
type linker struct {
base string
}
// Resource returns a link to the resource.
func (l *linker) Resource(ctx context.Context, repo string, ref scm.Reference) (string, error) {
switch {
case scm.IsTag(ref.Path):
t := scm.TrimRef(ref.Path)
return fmt.Sprintf("%s%s/src/%s", l.base, repo, t), nil
case scm.IsPullRequest(ref.Path):
d := scm.ExtractPullRequest(ref.Path)
return fmt.Sprintf("%s%s/pulls/%d", l.base, repo, d), nil
case ref.Sha == "":
t := scm.TrimRef(ref.Path)
return fmt.Sprintf("%s%s/src/%s", l.base, repo, t), nil
default:
return fmt.Sprintf("%s%s/commit/%s", l.base, repo, ref.Sha), nil
}
}
// Diff returns a link to the diff.
func (l *linker) Diff(ctx context.Context, repo string, source, target scm.Reference) (string, error) {
if scm.IsPullRequest(target.Path) {
d := scm.ExtractPullRequest(target.Path)
return fmt.Sprintf("%s%s/pulls/%d/files", l.base, repo, d), nil
}
s := source.Sha
t := target.Sha
if s == "" {
s = scm.TrimRef(source.Path)
}
if t == "" {
t = scm.TrimRef(target.Path)
}
return fmt.Sprintf("%s%s/compare/%s...%s", l.base, repo, s, t), nil
}
1
https://gitee.com/yangx282441848/scm.git
git@gitee.com:yangx282441848/scm.git
yangx282441848
scm
scm
v1.16.27

搜索帮助