blob: 156c98327fd3a39be76eabfa90226b13947c514a [file] [log] [blame]
// Copyright 2018 The LUCI Authors.
//
// 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 buildbucket
import (
"time"
"go.chromium.org/luci/common/data/stringset"
pb "go.chromium.org/luci/buildbucket/proto"
)
// This file contains helper functions for pb package.
// TODO(nodir): move existing helpers from pb to this file.
// BuildTokenHeader is the name of gRPC metadata header indicating the build
// token (see BuildSecrets.BuildToken).
// It is required in UpdateBuild RPC.
// Defined in
// https://chromium.googlesource.com/infra/infra/+/c189064/appengine/cr-buildbucket/v2/api.py#35
const BuildTokenHeader = "x-build-token"
// BuildbucketTokenHeader is the new name of gRPC metadata header indicating the
// build token.
// Currently it's used by ScheduleBuild (and batch request for ScheduleBuild) RPC.
// TODO(crbug.com/1031205) Replace BuildTokenHeader with this.
const BuildbucketTokenHeader = "x-buildbucket-token"
// DummyBuildbucketToken is the dummy token for led builds.
const DummyBuildbucketToken = "dummy token"
// MinUpdateBuildInterval is the minimum interval bbagent should call UpdateBuild.
const MinUpdateBuildInterval = 30 * time.Second
// Well-known experiment strings.
//
// See the Builder.experiments field documentation.
const (
ExperimentBackendAlt = "luci.buildbucket.backend_alt"
ExperimentBBAgent = "luci.buildbucket.use_bbagent"
ExperimentBBAgentDownloadCipd = "luci.buildbucket.agent.cipd_installation"
ExperimentBBAgentGetBuild = "luci.buildbucket.bbagent_getbuild"
ExperimentBBCanarySoftware = "luci.buildbucket.canary_software"
ExperimentNonProduction = "luci.non_production"
ExperimentParentTracking = "luci.buildbucket.parent_tracking"
ExperimentRecipePY3 = "luci.recipes.use_python3"
)
var (
// DisallowedAppendTagKeys is the set of tag keys which cannot be set via
// UpdateBuild. Clients calling UpdateBuild must strip these before making
// the request.
DisallowedAppendTagKeys = stringset.NewFromSlice("build_address", "buildset", "builder")
)
// WithoutDisallowedTagKeys returns tags whose key are not in
// `DisallowedAppendTagKeys`.
func WithoutDisallowedTagKeys(tags []*pb.StringPair) []*pb.StringPair {
if len(tags) == 0 {
return tags
}
ret := make([]*pb.StringPair, 0, len(tags))
for _, tag := range tags {
if !DisallowedAppendTagKeys.Has(tag.Key) {
ret = append(ret, tag)
}
}
return ret
}