blob: 29b40f0315a04cb59eff4b96b3f90b9faa200e86 [file] [edit]
// Copyright 2026 Google LLC
//
// 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
//
// https://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.
//
#include "tsp/status_codes.h"
#include <cstdint>
#include "absl/status/status.h"
#include "absl/status/statusor.h"
#include "absl/strings/str_cat.h"
namespace credentio {
absl::StatusOr<TspPkiStatus> GetTspPkiStatus(int64_t status_code) {
switch (status_code) {
case 0:
return TspPkiStatus::kGranted;
case 1:
return TspPkiStatus::kGrantedWithMods;
case 2:
return TspPkiStatus::kRejection;
case 3:
return TspPkiStatus::kWaiting;
case 4:
return TspPkiStatus::kRevocationWarning;
case 5:
return TspPkiStatus::kRevocationNotification;
}
return absl::InvalidArgumentError(
absl::StrCat("unknown TspPkiStatus code: ", status_code));
}
bool IsTspPkiStatusOk(TspPkiStatus status_code) {
return status_code == TspPkiStatus::kGranted ||
status_code == TspPkiStatus::kGrantedWithMods;
}
} // namespace credentio