-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
impl: API key auth over REST (#14785)
- Loading branch information
Showing
8 changed files
with
164 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// Copyright 2024 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 "google/cloud/internal/oauth2_api_key_credentials.h" | ||
|
||
namespace google { | ||
namespace cloud { | ||
namespace oauth2_internal { | ||
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN | ||
|
||
ApiKeyCredentials::ApiKeyCredentials(std::string api_key) | ||
: api_key_(std::move(api_key)) {} | ||
|
||
StatusOr<AccessToken> ApiKeyCredentials::GetToken( | ||
std::chrono::system_clock::time_point tp) { | ||
return AccessToken{std::string{}, tp}; | ||
} | ||
|
||
StatusOr<std::pair<std::string, std::string>> | ||
ApiKeyCredentials::AuthenticationHeader(std::chrono::system_clock::time_point) { | ||
return std::make_pair(std::string{"x-goog-api-key"}, api_key_); | ||
} | ||
|
||
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END | ||
} // namespace oauth2_internal | ||
} // namespace cloud | ||
} // namespace google |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// Copyright 2024 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. | ||
|
||
#ifndef GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_INTERNAL_OAUTH2_API_KEY_CREDENTIALS_H | ||
#define GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_INTERNAL_OAUTH2_API_KEY_CREDENTIALS_H | ||
|
||
#include "google/cloud/internal/credentials_impl.h" | ||
#include "google/cloud/internal/oauth2_credentials.h" | ||
#include "google/cloud/status_or.h" | ||
#include "google/cloud/version.h" | ||
#include <string> | ||
#include <utility> | ||
|
||
namespace google { | ||
namespace cloud { | ||
namespace oauth2_internal { | ||
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN | ||
|
||
/** | ||
* A `Credentials` type representing a Bearer Token OAuth 2.0 credentials. | ||
*/ | ||
class ApiKeyCredentials : public oauth2_internal::Credentials { | ||
public: | ||
explicit ApiKeyCredentials(std::string api_key); | ||
|
||
StatusOr<AccessToken> GetToken( | ||
std::chrono::system_clock::time_point tp) override; | ||
|
||
StatusOr<std::pair<std::string, std::string>> AuthenticationHeader( | ||
std::chrono::system_clock::time_point) override; | ||
|
||
private: | ||
std::string api_key_; | ||
}; | ||
|
||
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END | ||
} // namespace oauth2_internal | ||
} // namespace cloud | ||
} // namespace google | ||
|
||
#endif // GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_INTERNAL_OAUTH2_API_KEY_CREDENTIALS_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// Copyright 2024 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 "google/cloud/internal/oauth2_api_key_credentials.h" | ||
#include "google/cloud/testing_util/status_matchers.h" | ||
#include <gmock/gmock.h> | ||
#include <chrono> | ||
|
||
namespace google { | ||
namespace cloud { | ||
namespace oauth2_internal { | ||
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN | ||
namespace { | ||
|
||
using ::google::cloud::testing_util::IsOkAndHolds; | ||
using ::testing::IsEmpty; | ||
using ::testing::Pair; | ||
|
||
TEST(ApiKeyCredentials, EmptyToken) { | ||
ApiKeyCredentials creds("api-key"); | ||
auto const now = std::chrono::system_clock::now(); | ||
auto const token = creds.GetToken(now); | ||
ASSERT_STATUS_OK(token); | ||
EXPECT_THAT(token->token, IsEmpty()); | ||
} | ||
|
||
TEST(ApiKeyCredentials, SetsXGoogApiKeyHeader) { | ||
ApiKeyCredentials creds("api-key"); | ||
auto const now = std::chrono::system_clock::now(); | ||
EXPECT_THAT(creds.AuthenticationHeader(now), | ||
IsOkAndHolds(Pair("x-goog-api-key", "api-key"))); | ||
} | ||
|
||
} // namespace | ||
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END | ||
} // namespace oauth2_internal | ||
} // namespace cloud | ||
} // namespace google |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters