harness-drone/service/syncer/util.go

63 lines
1.7 KiB
Go
Raw Permalink Normal View History

2019-02-20 18:34:26 +00:00
// Copyright 2019 Drone IO, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2019-02-19 23:56:41 +00:00
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
}
}