opendal/services/sftp/
utils.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 openssh_sftp_client::metadata::MetaData as SftpMeta;
19
20use crate::EntryMode;
21use crate::Metadata;
22
23/// REMOVE ME: we should not implement `From<SftpMeta> for Metadata`.
24impl From<SftpMeta> for Metadata {
25    fn from(meta: SftpMeta) -> Self {
26        let mode = meta
27            .file_type()
28            .map(|filetype| {
29                if filetype.is_file() {
30                    EntryMode::FILE
31                } else if filetype.is_dir() {
32                    EntryMode::DIR
33                } else {
34                    EntryMode::Unknown
35                }
36            })
37            .unwrap_or(EntryMode::Unknown);
38
39        let mut metadata = Metadata::new(mode);
40
41        if let Some(size) = meta.len() {
42            metadata.set_content_length(size);
43        }
44
45        if let Some(modified) = meta.modified() {
46            metadata.set_last_modified(modified.as_system_time().into());
47        }
48
49        metadata
50    }
51}