mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-06 14:37:40 +03:00
Merge remote-tracking branch 'origin/pull/808'
This commit is contained in:
commit
f5b54197c4
6 changed files with 51 additions and 3 deletions
|
@ -7,10 +7,11 @@ use libflate::gzip;
|
|||
use once_cell::sync::Lazy;
|
||||
use percent_encoding::{percent_encode, CONTROLS};
|
||||
use serde_json::Value;
|
||||
use std::{io, result::Result};
|
||||
use std::{io, result::Result, sync::atomic::Ordering::SeqCst};
|
||||
|
||||
use crate::dbg_msg;
|
||||
use crate::instance_info::INSTANCE_INFO;
|
||||
use crate::server::RequestExt;
|
||||
use crate::{config, dbg_msg};
|
||||
|
||||
const REDDIT_URL_BASE: &str = "https://www.reddit.com";
|
||||
|
||||
|
@ -127,6 +128,10 @@ fn reddit_head(path: String, quarantine: bool) -> Boxed<Result<Response<Body>, S
|
|||
/// will recurse on the URL that Reddit provides in the Location HTTP header
|
||||
/// in its response.
|
||||
fn request(method: &'static Method, path: String, redirect: bool, quarantine: bool) -> Boxed<Result<Response<Body>, String>> {
|
||||
// Increment reddit request count. This will include head requests.
|
||||
if config::get_setting("LIBREDDIT_DISABLE_STATS_COLLECTION").is_none() {
|
||||
INSTANCE_INFO.reddit_requests.fetch_add(1, SeqCst);
|
||||
}
|
||||
// Build Reddit URL from path.
|
||||
let url = format!("{}{}", REDDIT_URL_BASE, path);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue