mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-04 03:11:52 -05:00
59 lines
1.6 KiB
Go
59 lines
1.6 KiB
Go
// Copyright 2019 Dolthub, 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.
|
|
|
|
package env
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/dolthub/dolt/go/libraries/doltcore/doltdb"
|
|
"github.com/dolthub/dolt/go/store/types"
|
|
)
|
|
|
|
var NoRemote = Remote{}
|
|
|
|
func IsEmptyRemote(r Remote) bool {
|
|
return len(r.Name) == 0 && len(r.Url) == 0 && r.FetchSpecs == nil && r.Params == nil
|
|
}
|
|
|
|
type Remote struct {
|
|
Name string `json:"name"`
|
|
Url string `json:"url"`
|
|
FetchSpecs []string `json:"fetch_specs"`
|
|
Params map[string]string `json:"params"`
|
|
}
|
|
|
|
func NewRemote(name, url string, params map[string]string) Remote {
|
|
return Remote{name, url, []string{"refs/heads/*:refs/remotes/" + name + "/*"}, params}
|
|
}
|
|
|
|
func (r *Remote) GetParam(pName string) (string, bool) {
|
|
val, ok := r.Params[pName]
|
|
return val, ok
|
|
}
|
|
|
|
func (r *Remote) GetParamOrDefault(pName, defVal string) string {
|
|
val, ok := r.Params[pName]
|
|
|
|
if !ok {
|
|
return defVal
|
|
}
|
|
|
|
return val
|
|
}
|
|
|
|
func (r *Remote) GetRemoteDB(ctx context.Context, nbf *types.NomsBinFormat) (*doltdb.DoltDB, error) {
|
|
return doltdb.LoadDoltDBWithParams(ctx, nbf, r.Url, r.Params)
|
|
}
|