53 lines
1.3 KiB
Go
53 lines
1.3 KiB
Go
|
// Copyright 2019 Drone.IO Inc. All rights reserved.
|
||
|
// Use of this source code is governed by the Drone Non-Commercial License
|
||
|
// that can be found in the LICENSE file.
|
||
|
|
||
|
package syncer
|
||
|
|
||
|
import (
|
||
|
"github.com/drone/drone/core"
|
||
|
"github.com/drone/go-scm/scm"
|
||
|
)
|
||
|
|
||
|
// merge is a helper function that mergest a subset of
|
||
|
// values from the source to the destination repository.
|
||
|
func merge(dst, src *core.Repository) {
|
||
|
dst.Namespace = src.Namespace
|
||
|
dst.Name = src.Name
|
||
|
dst.HTTPURL = src.HTTPURL
|
||
|
dst.SSHURL = src.SSHURL
|
||
|
dst.Private = src.Private
|
||
|
dst.Branch = src.Branch
|
||
|
dst.Slug = scm.Join(src.Namespace, src.Name)
|
||
|
|
||
|
// the gitea and gogs repository endpoints do not
|
||
|
// return the html url, so we need to ensure we do
|
||
|
// not replace the existing value with a zero value.
|
||
|
if src.Link != "" {
|
||
|
dst.Link = src.Link
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// diff is a helper function that compares two repositories
|
||
|
// and returns true if a subset of values are different.
|
||
|
func diff(a, b *core.Repository) bool {
|
||
|
switch {
|
||
|
case a.Namespace != b.Namespace:
|
||
|
return true
|
||
|
case a.Name != b.Name:
|
||
|
return true
|
||
|
case a.HTTPURL != b.HTTPURL:
|
||
|
return true
|
||
|
case a.SSHURL != b.SSHURL:
|
||
|
return true
|
||
|
case a.Private != b.Private:
|
||
|
return true
|
||
|
case a.Branch != b.Branch:
|
||
|
return true
|
||
|
case a.Link != b.Link:
|
||
|
return true
|
||
|
default:
|
||
|
return false
|
||
|
}
|
||
|
}
|