blob: 5dab5c924ac2915ff2e98b38b8ebcef9944e13a7 [file] [log] [blame]
// Copyright 2020 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 resultdb
import (
"context"
"go.chromium.org/luci/common/errors"
"go.chromium.org/luci/grpc/appstatus"
"go.chromium.org/luci/resultdb/internal/artifacts"
"go.chromium.org/luci/resultdb/internal/invocations"
"go.chromium.org/luci/resultdb/internal/invocations/graph"
"go.chromium.org/luci/resultdb/internal/pagination"
"go.chromium.org/luci/resultdb/internal/permissions"
"go.chromium.org/luci/resultdb/pbutil"
pb "go.chromium.org/luci/resultdb/proto/v1"
"go.chromium.org/luci/resultdb/rdbperms"
"go.chromium.org/luci/server/span"
)
// validateQueryArtifactsRequest returns a non-nil error if req is determined
// to be invalid.
func validateQueryArtifactsRequest(req *pb.QueryArtifactsRequest) error {
if err := pbutil.ValidateArtifactPredicate(req.GetPredicate()); err != nil {
return errors.Annotate(err, "predicate").Err()
}
return validateQueryRequest(req)
}
// QueryArtifacts implements pb.ResultDBServer.
func (s *resultDBServer) QueryArtifacts(ctx context.Context, in *pb.QueryArtifactsRequest) (*pb.QueryArtifactsResponse, error) {
// Use one transaction for the entire RPC so that we work with a
// consistent snapshot of the system state. This is important to
// prevent subtle bugs and TOC-TOU vulnerabilities.
ctx, cancel := span.ReadOnlyTransaction(ctx)
defer cancel()
if err := permissions.VerifyInvocationsByName(ctx, in.Invocations, rdbperms.PermListArtifacts); err != nil {
return nil, err
}
if err := validateQueryArtifactsRequest(in); err != nil {
return nil, appstatus.BadRequest(err)
}
// Query is valid - increment the queryInvocationsCount metric
queryInvocationsCount.Add(ctx, 1, "QueryArtifacts", len(in.Invocations))
// Get the transitive closure.
invs := invocations.MustParseNames(in.Invocations)
reachableInvs, err := graph.Reachable(ctx, invs)
if err != nil {
return nil, err
}
reachableInvIDs, err := reachableInvs.IDSet()
if err != nil {
return nil, err
}
// Query artifacts.
q := artifacts.Query{
InvocationIDs: reachableInvIDs,
TestResultPredicate: in.GetPredicate().GetTestResultPredicate(),
PageSize: pagination.AdjustPageSize(in.PageSize),
PageToken: in.PageToken,
FollowEdges: in.GetPredicate().GetFollowEdges(),
ContentTypeRegexp: in.GetPredicate().GetContentTypeRegexp(),
ArtifactIDRegexp: in.GetPredicate().GetArtifactIdRegexp(),
WithGcsURI: true,
}
arts, token, err := q.FetchProtos(ctx)
if err != nil {
return nil, err
}
realms := make([]string, 0, len(invs))
for id := range invs {
ri, ok := reachableInvs.Invocations[id]
if ok {
realms = append(realms, ri.Realm)
}
}
if err := s.populateFetchURLs(ctx, realms, arts...); err != nil {
return nil, err
}
return &pb.QueryArtifactsResponse{
Artifacts: arts,
NextPageToken: token,
}, nil
}