mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-27 13:47:58 +01:00
Run cargo fmt
This commit is contained in:
parent
7312c647a8
commit
5fab189f82
2 changed files with 18 additions and 9 deletions
|
@ -1,8 +1,8 @@
|
|||
use base64::engine::general_purpose::URL_SAFE_NO_PAD;
|
||||
use base64::Engine;
|
||||
use ring::hmac;
|
||||
use std::env;
|
||||
use url::Url;
|
||||
use base64::Engine;
|
||||
use base64::engine::general_purpose::URL_SAFE_NO_PAD;
|
||||
|
||||
fn trusted_host(mut url: Url) -> Option<String> {
|
||||
url.set_port(Some(443)).ok()?;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use comrak::ComrakOptions;
|
||||
use crate::camo;
|
||||
use comrak::ComrakOptions;
|
||||
use rustler::{MapIterator, Term};
|
||||
use std::collections::HashMap;
|
||||
use std::env;
|
||||
|
@ -19,19 +19,28 @@ fn common_options() -> ComrakOptions {
|
|||
options.extension.camoifier = Some(|s| camo::image_url(s).unwrap_or_else(|| String::from("")));
|
||||
|
||||
if let Ok(domains) = env::var("SITE_DOMAINS") {
|
||||
options.extension.philomena_domains = Some(domains.split(',').map(|s| s.to_string()).collect::<Vec<String>>());
|
||||
options.extension.philomena_domains = Some(
|
||||
domains
|
||||
.split(',')
|
||||
.map(|s| s.to_string())
|
||||
.collect::<Vec<String>>(),
|
||||
);
|
||||
}
|
||||
|
||||
options
|
||||
}
|
||||
|
||||
fn map_to_hashmap(map: Term) -> Option<HashMap<String, String>> {
|
||||
Some(MapIterator::new(map)?.map(|(key, value)| {
|
||||
let key: String = key.decode().unwrap_or_else(|_| String::from(""));
|
||||
let value: String = value.decode().unwrap_or_else(|_| String::from(""));
|
||||
Some(
|
||||
MapIterator::new(map)?
|
||||
.map(|(key, value)| {
|
||||
let key: String = key.decode().unwrap_or_else(|_| String::from(""));
|
||||
let value: String = value.decode().unwrap_or_else(|_| String::from(""));
|
||||
|
||||
(key, value)
|
||||
}).collect())
|
||||
(key, value)
|
||||
})
|
||||
.collect(),
|
||||
)
|
||||
}
|
||||
|
||||
pub fn to_html(input: String, reps: Term) -> String {
|
||||
|
|
Loading…
Reference in a new issue