cx_sdk/metadata.rs
1// Copyright 2024 Coralogix Ltd.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14use tonic::metadata::MetadataMap;
15
16use http::HeaderMap;
17
18#[derive(Default, Debug, Clone)]
19/// Request metadata. It contains the metadata needed for authorization and metrics gathering.
20pub struct CallProperties {
21 pub(crate) header_map: HeaderMap,
22}
23
24impl CallProperties {
25 /// Creates a new AuthData instance.
26 ///
27 /// # Arguments
28 /// * `header_map` - The header map to use for authentication.
29 pub fn new(header_map: HeaderMap) -> Self {
30 CallProperties { header_map }
31 }
32
33 /// Returns the underlying header map as a MetadataMap.
34 pub fn to_metadata_map(&self) -> MetadataMap {
35 MetadataMap::from_headers(self.header_map.clone())
36 }
37}