Use std::fs over actix-files

This commit is contained in:
spikecodes 2020-11-18 16:31:46 -08:00
parent 4f379754f7
commit f455e2095d
8 changed files with 11 additions and 74 deletions

View file

@ -1,6 +1,6 @@
// Import Crates
use actix_files::NamedFile;
use actix_web::{get, App, HttpResponse, HttpServer, Result};
use actix_web::{get, App, HttpResponse, HttpServer};
use std::fs;
// Reference local files
mod popular;
@ -10,9 +10,9 @@ mod user;
// Create Services
#[get("/style.css")]
async fn style() -> Result<NamedFile> {
let file = NamedFile::open("static/style.css");
Ok(file?)
async fn style() -> HttpResponse {
let file = fs::read_to_string("static/style.css").expect("ERROR: Could not read style.css");
HttpResponse::Ok().body(file)
}
#[get("/favicon.ico")]

View file

@ -8,7 +8,7 @@ use subreddit::{posts, Post};
#[path = "utils.rs"]
mod utils;
use utils::{Params};
use utils::Params;
// STRUCTS
#[derive(Template)]

View file

@ -6,7 +6,7 @@ use pulldown_cmark::{html, Options, Parser};
#[path = "utils.rs"]
mod utils;
use utils::{Params, Comment, Flair, Post, val};
use utils::{val, Comment, Flair, Params, Post};
// STRUCTS
#[derive(Template)]

View file

@ -5,7 +5,7 @@ use chrono::{TimeZone, Utc};
#[path = "utils.rs"]
mod utils;
pub use utils::{Params, Flair, Post, Subreddit, val};
pub use utils::{val, Flair, Params, Post, Subreddit};
// STRUCTS
#[derive(Template)]

View file

@ -5,7 +5,7 @@ use chrono::{TimeZone, Utc};
#[path = "utils.rs"]
mod utils;
use utils::{Params, Flair, Post, User, val, nested_val};
use utils::{nested_val, val, Flair, Params, Post, User};
// STRUCTS
#[derive(Template)]
@ -70,7 +70,7 @@ async fn posts(sub: String, sort: &String) -> Vec<Post> {
let title = val(post, "title").await;
posts.push(Post {
title: if title.is_empty() {"Comment".to_string()} else {title},
title: if title.is_empty() { "Comment".to_string() } else { title },
community: val(post, "subreddit").await,
body: String::new(),
author: val(post, "author").await,

View file

@ -60,4 +60,4 @@ pub async fn nested_val(j: &serde_json::Value, n: &str, k: &str) -> String {
#[derive(serde::Deserialize)]
pub struct Params {
pub sort: Option<String>,
}
}