rust way step 8

rust 复制代码
use actix_web::{get, post, web, App, Error, HttpResponse, HttpServer, Responder};
use actix_files as fs;
use actix_web::{Result};
use actix_files::NamedFile;
use actix_web::HttpRequest;
use serde::Serialize;
use std::{path::PathBuf, string};
use serde::Deserialize;


#[derive(Serialize,Deserialize)]
struct MyObj {
    name: String,
    sex:i32
}

#[get("/obj/{name}")]
async fn test6(name: web::Path<String>) -> Result<impl Responder> {
    let obj = MyObj {
        name: name.to_string(),
        sex:1
    };
    Ok(web::Json(obj))
}



#[get("/file/{filename:.*}")]
async fn test5(req: HttpRequest) -> actix_web::Result<NamedFile> {
    let path: PathBuf = req.match_info().query("filename").parse().unwrap();
    println!("{}",path.to_str().unwrap());
    println!("当前工作目录是: {:?}", std::env::current_dir());
    Ok(NamedFile::open(path)?)
}

#[get("/users/{user_id}/{friend}")] // <- define path parameters
async fn test2(path: web::Path<(u32, String)>) -> Result<String> {
    let (user_id, friend) = path.into_inner();
    Ok(format!("Welcome {}, user_id {}!", friend, user_id))
}


#[get("/")]
async fn hello() -> impl Responder {
    HttpResponse::Ok().body("Hello world!")
}

#[post("/echo")]
async fn echo(req_body: String) -> impl Responder {
    HttpResponse::Ok().body(req_body)
}

// http://127.0.0.1:8080/echo1?name=sdf&sex=1
#[get("/echo1")]
async fn test1(info: web::Query<MyObj>) -> String {
    format!("Welcome {} {}!", info.name,info.sex)
}

async fn manual_hello() -> impl Responder {
    HttpResponse::Ok().body("iam here!")
}

#[derive(Deserialize)]
struct Info {
    username: String,
    pass:String,
}

/// deserialize `Info` from request's body
#[post("/submit")]
async fn submit(info: web::Json<Info>) ->String{

    let json_data = serde_json::json!({
        "name": info.username,
        "pass": info.pass
    });

    let json_string =serde_json::to_string(&json_data).unwrap();
    format!("Welcome {}!", json_string)
}

async fn index() -> String {
    let data ="Hello world!";
    let base64_str: String = base64::encode(&data);
    return format!("Base64 string: {}", base64_str);
}

use actix::{fut::ok, Actor, StreamHandler};
//use actix_web::{web, App, Error, HttpRequest, HttpResponse, HttpServer};
use actix_web_actors::ws;

/// Define HTTP actor
struct MyWs;

impl Actor for MyWs {
    type Context = ws::WebsocketContext<Self>;
}

/// Handler for ws::Message message
impl StreamHandler<Result<ws::Message, ws::ProtocolError>> for MyWs {
    fn handle(&mut self, msg: Result<ws::Message, ws::ProtocolError>, ctx: &mut Self::Context) {
        match msg {
            Ok(ws::Message::Ping(msg)) => ctx.pong(&msg),
            Ok(ws::Message::Text(text)) => ctx.text(text),
            Ok(ws::Message::Binary(bin)) => ctx.binary(bin),
            _ => (),
        }
    }
}

async fn wstest(req: HttpRequest, stream: web::Payload) -> Result<HttpResponse, Error> {
    let resp = ws::start(MyWs {}, &req, stream);
    println!("{:?}", resp);
    resp
}

use actix_web::middleware::Logger;
use env_logger::Env;


/************************************************************* */
use file_hashing::get_hash_file;
use md5::Md5;
use sha1::{Digest, Sha1};

use std::path::Path;

pub fn test_md5<P: AsRef<Path>>(path: P) -> Result<String, std::io::Error> {
    let mut hasher = Md5::new();
    get_hash_file(path, &mut hasher)
}

pub fn test_sha1<P: AsRef<Path>>(path: P) -> Result<String, std::io::Error> {
    let mut hasher = Sha1::new();
    get_hash_file(path, &mut hasher)
}




#[actix_web::main]
async fn main() -> std::io::Result<()> {


    let path = std::env::current_dir().unwrap().join("2.jpg");

    let actual = test_md5(path.clone());
    if let Ok(a)=actual{
        println!("md5 {}",a);
    }
   
    let actual = test_sha1(path).unwrap();
    println!("sha1 {}",actual);

    env_logger::init_from_env(Env::default().default_filter_or("info"));

    HttpServer::new(|| {
        App::new()
            .wrap(Logger::default())
            .wrap(Logger::new("%a i"))
            .service(hello)
            .service(echo)
            .service(submit)
            .service(test2)
            .service(test1)
            .service(test6)
            .service(test5)
            .service(fs::Files::new("/static", "./static")
            .show_files_listing()
            .use_last_modified(true))
            .route("/hi", web::get().to(manual_hello))
            .service(
                web::scope("/app")  
                .route("/index.html", web::get().to(index)),
            )
            .route("/ws/", web::get().to(wstest))
    })
    .bind(("127.0.0.1", 8080))?
    .run()
    .await
}

package

name = "hello-dioxus"

version = "0.1.0"

edition = "2021"

dependencies

reqwest = "0.12.5"

tokio = { version = "1.0.0", features = ["full"] }

actix-web = "4"

actix-files ="0.6.6"

serde = { version = "1.0", features = ["derive"] }

serde_json = "1.0"

env_logger ="0.11.3"

actix-web-actors ="4.3.0"

actix="0.13.5"

base64 = "=0.22.1"

file-hashing = "0.1.2"

md-5 = "0.10.6"

sha1 = "0.10.6"

相关推荐
DN金猿5 分钟前
使用npm install或cnpm install报错解决
前端·npm·node.js
丘山子5 分钟前
一些鲜为人知的 IP 地址怪异写法
前端·后端·tcp/ip
投笔丶从戎14 分钟前
Kotlin Multiplatform--01:项目结构基础
android·开发语言·kotlin
志存高远6618 分钟前
Kotlin 的 suspend 关键字
前端
www_pp_30 分钟前
# 构建词汇表:自然语言处理中的关键步骤
前端·javascript·自然语言处理·easyui
杜小暑1 小时前
动态内存管理
c语言·开发语言·动态内存管理
想不明白的过度思考者1 小时前
Java从入门到“放弃”(精通)之旅——JavaSE终篇(异常)
java·开发语言
天天扭码1 小时前
总所周知,JavaScript中有很多函数定义方式,如何“因地制宜”?(ˉ﹃ˉ)
前端·javascript·面试
一个专注写代码的程序媛1 小时前
为什么vue的key值,不用index?
前端·javascript·vue.js
我真的不会C1 小时前
QT窗口相关控件及其属性
开发语言·qt