forked from bolcom/libunftp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.rs
38 lines (35 loc) · 1.28 KB
/
help.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! The `HELP` command
//
// A HELP request asks for human-readable information from the server. The server may accept this request with code 211 or 214, or reject it with code 502.
//
// A HELP request may include a parameter. The meaning of the parameter is defined by the server. Some servers interpret the parameter as an FTP verb,
// and respond by briefly explaining the syntax of the verb.
use crate::{
auth::UserDetail,
server::controlchan::{
error::ControlChanError,
handler::{CommandContext, CommandHandler},
Reply, ReplyCode,
},
storage::{Metadata, StorageBackend},
};
use async_trait::async_trait;
#[derive(Debug)]
pub struct Help;
#[async_trait]
impl<Storage, User> CommandHandler<Storage, User> for Help
where
User: UserDetail + 'static,
Storage: StorageBackend<User> + 'static,
Storage::Metadata: Metadata,
{
#[tracing_attributes::instrument]
async fn handle(&self, _args: CommandContext<Storage, User>) -> Result<Reply, ControlChanError> {
let text: Vec<String> = vec![
"Help:".to_string(),
format!("Powered by libunftp: {}", env!("CARGO_PKG_VERSION")),
"View the docs at: https://unftp.rs/".to_string(),
];
Ok(Reply::new_multiline(ReplyCode::HelpMessage, text))
}
}