#ftp #libunftp #wrapper #unftp #storage #back-end #authorization

unftp-sbe-restrict

A libunftp wrapper storage back-end that restricts FTP operations

3 releases

0.1.2 May 18, 2024
0.1.1 Sep 17, 2023
0.1.0 Sep 13, 2023

#1302 in Network programming

Download history 10/week @ 2024-02-19 79/week @ 2024-02-26 14/week @ 2024-03-04 21/week @ 2024-03-11 8/week @ 2024-03-18 6/week @ 2024-03-25 57/week @ 2024-04-01 2/week @ 2024-04-08 70/week @ 2024-04-15 5/week @ 2024-04-22 49/week @ 2024-05-06 264/week @ 2024-05-13 61/week @ 2024-05-20 48/week @ 2024-05-27

422 downloads per month
Used in unftp

Apache-2.0

13KB
225 lines

unftp-sbe-restrict

Crate Version API Docs Crate License Follow on Telegram

A libunftp wrapper storage back-end that restricts FTP operations and in so doing provide some form of authorization. See the docs to get started.


lib.rs:

A libunftp wrapper storage back-end that restricts FTP operations and in so doing provide some form of authorization.

Quick start

Start by implementing the libunftp UserDetail trait and then follow that by implementing UserWithPermissions.

Finally call the RestrictingVfs::new() method.

use libunftp::auth::UserDetail;
use unftp_sbe_restrict::{UserWithPermissions, VfsOperations};
use std::fmt::Formatter;

#[derive(Debug, PartialEq, Eq)]
pub struct User {
    pub username: String,
    // e.g. this can be something like
    // `VfsOperations::all() - VfsOperations::PUT - VfsOperations::DEL`
    pub permissions: VfsOperations,
}

impl UserDetail for User {
    fn account_enabled(&self) -> bool {
        true
    }
}

impl std::fmt::Display for User {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        write!(f, "User(username: {:?}", self.username,)
    }
}

impl UserWithPermissions for User {
    fn permissions(&self) -> VfsOperations {
        self.permissions
    }
}

// Return type omited for brevity.
fn create_restricted_storage_backend() {
    use unftp_sbe_fs::{Filesystem, Meta};
    let _backend = Box::new(move || {
        unftp_sbe_restrict::RestrictingVfs::<Filesystem, User, Meta>::new(Filesystem::new("/srv/ftp"))
    });
}

Dependencies

~22–33MB
~593K SLoC