opendal/services/vercel_artifacts/
config.rs

1// Licensed to the Apache Software Foundation (ASF) under one
2// or more contributor license agreements.  See the NOTICE file
3// distributed with this work for additional information
4// regarding copyright ownership.  The ASF licenses this file
5// to you under the Apache License, Version 2.0 (the
6// "License"); you may not use this file except in compliance
7// with the License.  You may obtain a copy of the License at
8//
9//   http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing,
12// software distributed under the License is distributed on an
13// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14// KIND, either express or implied.  See the License for the
15// specific language governing permissions and limitations
16// under the License.
17
18use std::fmt::Debug;
19
20use serde::Deserialize;
21use serde::Serialize;
22
23use super::builder::VercelArtifactsBuilder;
24
25/// Config for Vercel Cache support.
26#[derive(Default, Serialize, Deserialize, Clone, PartialEq, Eq)]
27#[serde(default)]
28#[non_exhaustive]
29pub struct VercelArtifactsConfig {
30    /// The access token for Vercel.
31    pub access_token: Option<String>,
32}
33
34impl Debug for VercelArtifactsConfig {
35    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
36        f.debug_struct("VercelArtifactsConfig")
37            .finish_non_exhaustive()
38    }
39}
40
41impl crate::Configurator for VercelArtifactsConfig {
42    type Builder = VercelArtifactsBuilder;
43
44    fn from_uri(uri: &crate::types::OperatorUri) -> crate::Result<Self> {
45        Self::from_iter(uri.options().clone())
46    }
47
48    #[allow(deprecated)]
49    fn into_builder(self) -> Self::Builder {
50        VercelArtifactsBuilder {
51            config: self,
52            http_client: None,
53        }
54    }
55}
56
57#[cfg(test)]
58mod tests {
59    use super::*;
60    use crate::Configurator;
61    use crate::types::OperatorUri;
62
63    #[test]
64    fn from_uri_loads_access_token() {
65        let uri = OperatorUri::new(
66            "vercel-artifacts://cache",
67            vec![("access_token".to_string(), "token123".to_string())],
68        )
69        .unwrap();
70
71        let cfg = VercelArtifactsConfig::from_uri(&uri).unwrap();
72        assert_eq!(cfg.access_token.as_deref(), Some("token123"));
73    }
74}