save
This commit is contained in:
parent
ee1efbe8aa
commit
7d8bfbbb62
13
src/main.rs
13
src/main.rs
|
@ -23,8 +23,8 @@ use actix_web::http::{header, StatusCode};
|
||||||
use std::io;
|
use std::io;
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use std::io::{Read, BufRead, Write, ErrorKind};
|
use std::io::{Read, BufRead, Write, ErrorKind};
|
||||||
use futures::{StreamExt, TryStreamExt, future};
|
use futures::{StreamExt, TryStreamExt, future, stream};
|
||||||
use actix_web::web::Buf;
|
use actix_web::web::{Buf, Bytes};
|
||||||
use actix_web::http::header::IntoHeaderValue;
|
use actix_web::http::header::IntoHeaderValue;
|
||||||
|
|
||||||
#[derive(Template)]
|
#[derive(Template)]
|
||||||
|
@ -201,7 +201,16 @@ async fn git_proto(payload : web::Payload, web::Path((owner, reponame)): web::Pa
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
println!("Write body...");
|
||||||
let mut body = Vec::new();
|
let mut body = Vec::new();
|
||||||
|
//rdr.bytes()
|
||||||
|
let mut buff : [u8; 1024] = [0; 1024];
|
||||||
|
builder.streaming(stream::repeat_with(|| {
|
||||||
|
match rdr.read(&buff) {
|
||||||
|
Ok(l) => {Bytes::copy_from_slice(&buff[0..l])}
|
||||||
|
Err(_) => {}
|
||||||
|
}
|
||||||
|
}));
|
||||||
rdr.read_to_end(&mut body)?;
|
rdr.read_to_end(&mut body)?;
|
||||||
// println!("{}", String::from_utf8(body.clone()).expect("bad utf8"));
|
// println!("{}", String::from_utf8(body.clone()).expect("bad utf8"));
|
||||||
return Ok(builder.body(body));
|
return Ok(builder.body(body));
|
||||||
|
|
Loading…
Reference in New Issue