Compare commits
30 Commits
Author | SHA1 | Date | |
---|---|---|---|
6f98001d8e | |||
6790061e22 | |||
50606bb69e | |||
5850f19cab | |||
2c8546e30a | |||
4e619d0ebc | |||
647c4cd324 | |||
7fab961d76 | |||
d3fff194f4 | |||
3497312fd4 | |||
0fd76b1734 | |||
9bfa8f9108 | |||
bdb1094a30 | |||
9aa2d9ce22 | |||
4b557a923c | |||
c08a20ac00 | |||
94912e9125 | |||
a9465dda6e | |||
add6f00ed6 | |||
4a433a1a77 | |||
03cbcd9ae0 | |||
6fc71c7a78 | |||
96a3ca092a | |||
b750d88d48 | |||
808790a7c3 | |||
2de01b2a0e | |||
be0fd5505b | |||
a23429104c | |||
66581cc453 | |||
7df19a480f |
1
.gitignore
vendored
1
.gitignore
vendored
@ -5,3 +5,4 @@ perf.data
|
|||||||
flamegraph.svg
|
flamegraph.svg
|
||||||
perf.data.old
|
perf.data.old
|
||||||
/docker/logs/*
|
/docker/logs/*
|
||||||
|
/downloaded
|
19
.vscode/launch.json
vendored
19
.vscode/launch.json
vendored
@ -7,18 +7,15 @@
|
|||||||
{
|
{
|
||||||
"type": "lldb",
|
"type": "lldb",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "Debug executable 'surreal_spider'",
|
"name": "Debug executable 'internet_mapper'",
|
||||||
"env": {
|
|
||||||
"RUST_LOG": "surreal_spider=trace,reqwest=info",
|
|
||||||
},
|
|
||||||
"cargo": {
|
"cargo": {
|
||||||
"args": [
|
"args": [
|
||||||
"build",
|
"build",
|
||||||
"--bin=surreal_spider",
|
"--bin=internet_mapper",
|
||||||
"--package=surreal_spider"
|
"--package=internet_mapper"
|
||||||
],
|
],
|
||||||
"filter": {
|
"filter": {
|
||||||
"name": "surreal_spider",
|
"name": "internet_mapper",
|
||||||
"kind": "bin"
|
"kind": "bin"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -28,16 +25,16 @@
|
|||||||
{
|
{
|
||||||
"type": "lldb",
|
"type": "lldb",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "Debug unit tests in executable 'surreal_spider'",
|
"name": "Debug unit tests in executable 'internet_mapper'",
|
||||||
"cargo": {
|
"cargo": {
|
||||||
"args": [
|
"args": [
|
||||||
"test",
|
"test",
|
||||||
"--no-run",
|
"--no-run",
|
||||||
"--bin=surreal_spider",
|
"--bin=internet_mapper",
|
||||||
"--package=surreal_spider"
|
"--package=internet_mapper"
|
||||||
],
|
],
|
||||||
"filter": {
|
"filter": {
|
||||||
"name": "surreal_spider",
|
"name": "internet_mapper",
|
||||||
"kind": "bin"
|
"kind": "bin"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
@ -3,6 +3,6 @@
|
|||||||
"creds",
|
"creds",
|
||||||
"reqwest",
|
"reqwest",
|
||||||
"rustls",
|
"rustls",
|
||||||
"surql"
|
"surql",
|
||||||
]
|
]
|
||||||
}
|
}
|
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -1966,6 +1966,7 @@ name = "internet_mapper"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64 0.22.1",
|
"base64 0.22.1",
|
||||||
|
"futures-util",
|
||||||
"html5ever 0.29.1",
|
"html5ever 0.29.1",
|
||||||
"metrics",
|
"metrics",
|
||||||
"metrics-exporter-prometheus",
|
"metrics-exporter-prometheus",
|
||||||
|
@ -5,12 +5,13 @@ edition = "2021"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
base64 = "0.22.1"
|
base64 = "0.22.1"
|
||||||
|
futures-util = "0.3.31"
|
||||||
html5ever = "0.29"
|
html5ever = "0.29"
|
||||||
metrics = "0.24.1"
|
metrics = "0.24.1"
|
||||||
metrics-exporter-prometheus = { version = "0.16.2", features=["http-listener"]}
|
metrics-exporter-prometheus = { version = "0.16.2", features=["http-listener"]}
|
||||||
# minio = "0.1.0"
|
# minio = "0.1.0"
|
||||||
minio = {git="https://github.com/minio/minio-rs.git", rev = "c28f576"}
|
minio = {git="https://github.com/minio/minio-rs.git", rev = "c28f576"}
|
||||||
reqwest = { version = "0.12", features = ["gzip", "default", "rustls-tls"] }
|
reqwest = { version = "0.12", features = ["gzip", "default", "rustls-tls", "stream"] }
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
surrealdb = "2.2"
|
surrealdb = "2.2"
|
||||||
tokio = { version="1.41.0", features = ["full"] }
|
tokio = { version="1.41.0", features = ["full"] }
|
||||||
|
14
Crawler.toml
14
Crawler.toml
@ -3,14 +3,12 @@ surreal_url = "localhost:8000"
|
|||||||
surreal_username = "root"
|
surreal_username = "root"
|
||||||
surreal_password = "root"
|
surreal_password = "root"
|
||||||
surreal_ns = "test"
|
surreal_ns = "test"
|
||||||
surreal_db = "v1.16"
|
surreal_db = "v1.21.1"
|
||||||
|
|
||||||
# Minio config
|
|
||||||
s3_bucket = "v1.16"
|
|
||||||
s3_url = "http://localhost:9000"
|
|
||||||
s3_access_key = "DwJfDDVIbmCmfAblwSqp"
|
|
||||||
s3_secret_key = "V4UqvC1Vm4AwLE5FAhu2gxlMfvexTBQnDxuy8uZx"
|
|
||||||
|
|
||||||
# Crawler config
|
# Crawler config
|
||||||
crawl_filter = "en.wikipedia.com"
|
# crawl_filter = "https://ftpgeoinfo.msl.mt.gov/Data/Spatial/MSDI/Imagery/2023_NAIP/UTM_County_Mosaics/"
|
||||||
|
crawl_filter = "https://oliveratkinson.net"
|
||||||
|
# start_url = "https://ftpgeoinfo.msl.mt.gov/Data/Spatial/MSDI/Imagery/2023_NAIP/UTM_County_Mosaics/"
|
||||||
|
start_url = "https://oliveratkinson.net"
|
||||||
budget = 1000
|
budget = 1000
|
||||||
|
batch_size = 500
|
||||||
|
48
README.md
48
README.md
@ -2,14 +2,54 @@
|
|||||||
|
|
||||||
Crawls sites saving all the found links to a surrealdb database. It then proceeds to take batches of 100 uncrawled links untill the crawl budget is reached. It saves the data of each site in a minio database.
|
Crawls sites saving all the found links to a surrealdb database. It then proceeds to take batches of 100 uncrawled links untill the crawl budget is reached. It saves the data of each site in a minio database.
|
||||||
|
|
||||||
|
## How to use
|
||||||
|
|
||||||
|
1. Clone the repo and `cd` into it.
|
||||||
|
2. Build the repo with `cargo build -r`
|
||||||
|
3. Start the docker conatiners
|
||||||
|
1. cd into the docker folder `cd docker`
|
||||||
|
2. Bring up the docker containers `docker compose up -d`
|
||||||
|
4. From the project's root, edit the `Crawler.toml` file to your liking.
|
||||||
|
5. Run with `./target/release/internet_mapper`
|
||||||
|
|
||||||
|
You can view stats of the project at `http://<your-ip>:3000/dashboards`
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Untested script but probably works
|
||||||
|
git clone https://git.oliveratkinson.net/Oliver/internet_mapper.git
|
||||||
|
cd internet_mapper
|
||||||
|
|
||||||
|
cargo build -r
|
||||||
|
|
||||||
|
cd docker
|
||||||
|
docker compose up -d
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
$EDITOR Crawler.toml
|
||||||
|
|
||||||
|
./target/release/internet_mapper
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
- [ ] Domain filtering - prevent the crawler from going on alternate versions of wikipedia.
|
- [x] Domain filtering - prevent the crawler from going on alternate versions of wikipedia.
|
||||||
- [ ] Conditionally save content - based on filename or file contents
|
- [ ] Conditionally save content - based on filename or file contents
|
||||||
- [x] GUI / TUI ? - Graphana
|
- [x] GUI / TUI ? - Graphana
|
||||||
- [x] Better asynchronous getting of the sites. Currently it all happens serially.
|
- [x] Better asynchronous getting of the sites. Currently it all happens serially.
|
||||||
- [ ] Allow for storing asynchronously
|
- [x] Allow for storing asynchronously - dropping the "links to" logic fixes this need
|
||||||
|
- [x] Control crawler via config file (no recompliation needed)
|
||||||
|
|
||||||
|
3/17/25: Took >1hr to crawl 100 pages
|
||||||
|
|
||||||
|
3/19/25: Took 20min to crawl 1000 pages
|
||||||
|
This ment we stored 1000 pages, 142,997 urls, and 1,425,798 links between the two.
|
||||||
|
|
||||||
|
3/20/25: Took 5min to crawl 1000 pages
|
||||||
|
|
||||||
|
3/21/25: Took 3min to crawl 1000 pages
|
||||||
|
|
||||||
|
# About
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
3/19/25: Took 20min to crawl 100 pages
|
|
||||||
This ment we stored 100 pages, 142,997 urls, and 1,425,798 links between the two.
|
|
||||||
|
@ -14,22 +14,6 @@ services:
|
|||||||
- --pass
|
- --pass
|
||||||
- root
|
- root
|
||||||
- rocksdb:/mydata/database.db
|
- rocksdb:/mydata/database.db
|
||||||
minio:
|
|
||||||
image: quay.io/minio/minio
|
|
||||||
ports:
|
|
||||||
- 9000:9000
|
|
||||||
- 9001:9001
|
|
||||||
environment:
|
|
||||||
- MINIO_ROOT_USER=root
|
|
||||||
- MINIO_ROOT_PASSWORD=an8charpassword
|
|
||||||
- MINIO_PROMETHEUS_AUTH_TYPE=public
|
|
||||||
volumes:
|
|
||||||
- minio_storage:/data
|
|
||||||
command:
|
|
||||||
- server
|
|
||||||
- /data
|
|
||||||
- --console-address
|
|
||||||
- ":9001"
|
|
||||||
|
|
||||||
alloy:
|
alloy:
|
||||||
image: grafana/alloy:latest
|
image: grafana/alloy:latest
|
||||||
@ -82,4 +66,3 @@ volumes:
|
|||||||
grafana_storage:
|
grafana_storage:
|
||||||
alloy_storage:
|
alloy_storage:
|
||||||
surrealdb_storage:
|
surrealdb_storage:
|
||||||
minio_storage:
|
|
||||||
|
@ -8,13 +8,10 @@ scrape_configs:
|
|||||||
# change this your machine's ip, localhost won't work
|
# change this your machine's ip, localhost won't work
|
||||||
# because localhost refers to the docker container.
|
# because localhost refers to the docker container.
|
||||||
- targets: ['172.20.239.48:2500']
|
- targets: ['172.20.239.48:2500']
|
||||||
|
#- targets: ['192.168.8.209:2500']
|
||||||
- job_name: loki
|
- job_name: loki
|
||||||
static_configs:
|
static_configs:
|
||||||
- targets: ['loki:3100']
|
- targets: ['loki:3100']
|
||||||
- job_name: prometheus
|
- job_name: prometheus
|
||||||
static_configs:
|
static_configs:
|
||||||
- targets: ['localhost:9090']
|
- targets: ['localhost:9090']
|
||||||
- job_name: minio
|
|
||||||
metrics_path: /minio/v2/metrics/cluster
|
|
||||||
static_configs:
|
|
||||||
- targets: ['minio:9000']
|
|
||||||
|
BIN
pngs/graphana.png
Normal file
BIN
pngs/graphana.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 264 KiB |
182
src/db.rs
182
src/db.rs
@ -1,59 +1,37 @@
|
|||||||
use base64::{
|
|
||||||
alphabet,
|
|
||||||
engine::{self, general_purpose},
|
|
||||||
Engine,
|
|
||||||
};
|
|
||||||
use metrics::counter;
|
use metrics::counter;
|
||||||
use serde::{ser::SerializeStruct, Deserialize, Serialize};
|
use std::fmt::Debug;
|
||||||
use std::{collections::HashSet, fmt::Debug, sync::LazyLock, time::Instant};
|
use serde::{Deserialize, Serialize};
|
||||||
use surrealdb::{
|
use surrealdb::{
|
||||||
engine::remote::ws::{Client, Ws},
|
engine::remote::ws::{Client, Ws},
|
||||||
opt::auth::Root,
|
opt::auth::Root,
|
||||||
sql::Thing,
|
sql::Thing,
|
||||||
Error::Api,
|
Surreal,
|
||||||
Response, Surreal,
|
|
||||||
};
|
};
|
||||||
use tokio::sync::Mutex;
|
use tracing::{error, instrument, trace};
|
||||||
use tracing::{error, instrument, trace, warn};
|
|
||||||
use url::Url;
|
use url::Url;
|
||||||
|
|
||||||
use crate::{Config, Timer};
|
use crate::Config;
|
||||||
|
|
||||||
// static LOCK: LazyLock<Arc<Mutex<bool>>> = LazyLock::new(|| Arc::new(Mutex::new(true)));
|
const STORE: &str = "surql_store_calls";
|
||||||
static LOCK: LazyLock<Mutex<bool>> = LazyLock::new(|| Mutex::new(true));
|
|
||||||
|
|
||||||
const CUSTOM_ENGINE: engine::GeneralPurpose =
|
#[derive(Serialize, Deserialize, Clone, Eq, PartialEq, Hash)]
|
||||||
engine::GeneralPurpose::new(&alphabet::URL_SAFE, general_purpose::NO_PAD);
|
|
||||||
|
|
||||||
const TIME_SPENT_ON_LOCK: &'static str = "surql_lock_waiting_ms";
|
|
||||||
const STORE: &'static str = "surql_store_calls";
|
|
||||||
const LINK: &'static str = "surql_link_calls";
|
|
||||||
|
|
||||||
#[derive(Deserialize, Clone, Hash, Eq, PartialEq)]
|
|
||||||
pub struct Website {
|
pub struct Website {
|
||||||
/// The url that this data is found at
|
/// The url that this data is found at
|
||||||
pub site: Url,
|
pub site: Url,
|
||||||
/// Wether or not this link has been crawled yet
|
/// Wether or not this link has been crawled yet
|
||||||
pub crawled: bool,
|
pub crawled: bool,
|
||||||
}
|
/// 200, 404, etc
|
||||||
|
pub status_code: u16,
|
||||||
impl Serialize for Website {
|
|
||||||
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
|
|
||||||
where
|
|
||||||
S: serde::Serializer,
|
|
||||||
{
|
|
||||||
let mut state = serializer.serialize_struct("Website", 2)?;
|
|
||||||
state.serialize_field("crawled", &self.crawled)?;
|
|
||||||
// to_string() calls the correct naming of site
|
|
||||||
state.serialize_field("site", &self.site.to_string())?;
|
|
||||||
state.end()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// manual impl to make tracing look nicer
|
// manual impl to make tracing look nicer
|
||||||
impl Debug for Website {
|
impl Debug for Website {
|
||||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
f.debug_struct("Website").field("site", &self.site).finish()
|
f.debug_struct("Website")
|
||||||
|
.field("host", &self.site.host())
|
||||||
|
.field("path", &self.site.path())
|
||||||
|
.field("status_code", &self.status_code)
|
||||||
|
.finish()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -64,141 +42,43 @@ impl Website {
|
|||||||
Ok(a) => a,
|
Ok(a) => a,
|
||||||
Err(_) => todo!(),
|
Err(_) => todo!(),
|
||||||
};
|
};
|
||||||
Self { crawled, site }
|
Self {
|
||||||
|
crawled,
|
||||||
|
site,
|
||||||
|
status_code: 0,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn set_crawled(&mut self) {
|
|
||||||
trace!("Set crawled to true");
|
|
||||||
self.crawled = true
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn get_url_as_string(site: &Url) -> String {
|
|
||||||
let domain = match site.domain() {
|
|
||||||
Some(s) => s.to_string(),
|
|
||||||
None => {
|
|
||||||
warn!(
|
|
||||||
"Failed to get domain of URL: {}, falling back to 'localhost'",
|
|
||||||
site.to_string()
|
|
||||||
);
|
|
||||||
"localhost".to_string()
|
|
||||||
}
|
|
||||||
};
|
|
||||||
let path = site.path();
|
|
||||||
|
|
||||||
domain + path
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn get_url_as_b64_path(site: &Url) -> String {
|
|
||||||
let domain = site.domain().unwrap_or("DOMAIN").to_string();
|
|
||||||
let path = &CUSTOM_ENGINE.encode(site.path());
|
|
||||||
|
|
||||||
domain + path
|
|
||||||
}
|
|
||||||
|
|
||||||
#[instrument(skip_all)]
|
|
||||||
pub async fn links_to(&self, other: Vec<Thing>, db: &Surreal<Client>) {
|
|
||||||
let len = other.len();
|
|
||||||
if len == 0 {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
let from = &self.site;
|
|
||||||
|
|
||||||
// let to = other.site.to_string();
|
|
||||||
trace!("Linking {} pages to {from}", other.len());
|
|
||||||
let msg = format!("Linked {len} pages to {from}");
|
|
||||||
let timer = Timer::start(&msg);
|
|
||||||
// prevent the timer from being dropped instantly.
|
|
||||||
let _ = timer;
|
|
||||||
counter!(LINK).increment(1);
|
|
||||||
match db
|
|
||||||
.query("COUNT(RELATE (SELECT id FROM website WHERE site = $in) -> links_to -> $out)")
|
|
||||||
.bind(("in", from.clone()))
|
|
||||||
.bind(("out", other))
|
|
||||||
.await
|
|
||||||
{
|
|
||||||
Ok(mut e) => {
|
|
||||||
// The relate could technically "fail" (not relate anything), this just means that
|
|
||||||
// the query was ok.
|
|
||||||
let _: Response = e;
|
|
||||||
if let Ok(vec) = e.take(0) {
|
|
||||||
let _: Vec<usize> = vec;
|
|
||||||
if let Some(num) = vec.get(0) {
|
|
||||||
if *num == len {
|
|
||||||
trace!("Link for {from} OK - {num}/{len}");
|
|
||||||
return;
|
|
||||||
} else {
|
|
||||||
error!(
|
|
||||||
"Didn't link all the records. {num}/{len}. Surreal response: {:?}",
|
|
||||||
e
|
|
||||||
);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
error!("Linking request succeeded but couldn't verify the results.");
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
error!("{}", e.to_string());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn store_self(&self, db: &Surreal<Client>) {
|
|
||||||
counter!(STORE).increment(1);
|
|
||||||
|
|
||||||
db.query(
|
|
||||||
"INSERT INTO website $self
|
|
||||||
ON DUPLICATE KEY UPDATE
|
|
||||||
crawled = crawled OR $input.crawled
|
|
||||||
RETURN VALUE id;
|
|
||||||
",
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
.expect("Failed to store self");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Insert ever item in the vec into surreal, crawled state will be preserved as TRUE
|
// Insert ever item in the vec into surreal, crawled state will be preserved as TRUE
|
||||||
// if already in the database as such or incoming data is TRUE.
|
// if already in the database as such or incoming data is TRUE.
|
||||||
pub async fn store_all(all: HashSet<Self>, db: &Surreal<Client>) -> Vec<Thing> {
|
#[instrument(skip(db))]
|
||||||
// NOTES:
|
pub async fn store_all(all: Vec<Self>, db: &Surreal<Client>) -> Vec<Thing> {
|
||||||
// * all incoming Websites come in as !crawled
|
|
||||||
// * there are potentially duplicates in all
|
|
||||||
|
|
||||||
counter!(STORE).increment(1);
|
counter!(STORE).increment(1);
|
||||||
|
let mut things = Vec::with_capacity(all.len());
|
||||||
|
|
||||||
let now = Instant::now();
|
// FIXME failes *sometimes* because "Resource Busy"
|
||||||
let lock = LOCK.lock().await;
|
|
||||||
counter!(TIME_SPENT_ON_LOCK).increment(now.elapsed().as_millis() as u64);
|
|
||||||
|
|
||||||
let mut results = Vec::with_capacity(all.len());
|
|
||||||
match db
|
match db
|
||||||
.query(
|
.query(
|
||||||
// TODO making this an upsert would make sense, but
|
|
||||||
// upserts seem to be broken.
|
|
||||||
//
|
|
||||||
// Doesn't look like upsert can take in an array, so insert
|
|
||||||
// it is...
|
|
||||||
//
|
|
||||||
"INSERT INTO website $array
|
"INSERT INTO website $array
|
||||||
ON DUPLICATE KEY UPDATE
|
ON DUPLICATE KEY UPDATE
|
||||||
last_write = time::now()
|
accessed_at = time::now(),
|
||||||
RETURN VALUE id;"
|
status_code = $input.status_code,
|
||||||
,
|
crawled = crawled OR $input.crawled
|
||||||
|
RETURN VALUE id;
|
||||||
|
",
|
||||||
)
|
)
|
||||||
.bind(("array", all))
|
.bind(("array", all))
|
||||||
.await
|
.await
|
||||||
{
|
{
|
||||||
Ok(mut id) => match id.take::<Vec<Thing>>(0) {
|
Ok(mut id) => match id.take::<Vec<Thing>>(0) {
|
||||||
Ok(mut x) => results.append(&mut x),
|
Ok(mut x) => things.append(&mut x),
|
||||||
|
Err(err) => error!("{:?}", err),
|
||||||
|
},
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
error!("{:?}", err);
|
error!("{:?}", err);
|
||||||
}
|
}
|
||||||
},
|
|
||||||
Err(err) => error!("{:?}", err),
|
|
||||||
}
|
}
|
||||||
drop(lock);
|
things
|
||||||
results
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
66
src/filesystem.rs
Normal file
66
src/filesystem.rs
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
use std::{io::ErrorKind, path::PathBuf};
|
||||||
|
|
||||||
|
use reqwest::header::HeaderValue;
|
||||||
|
use tokio::fs;
|
||||||
|
use tracing::{error, trace, warn};
|
||||||
|
use url::Url;
|
||||||
|
|
||||||
|
pub fn as_path(url: &Url, content_type: &HeaderValue) -> PathBuf {
|
||||||
|
// extract data from url to save it accurately
|
||||||
|
let mut url_path = PathBuf::from("./downloaded/".to_string() + url.domain().unwrap_or("UnknownDomain") + url.path());
|
||||||
|
|
||||||
|
if let Ok(header) = content_type.to_str() {
|
||||||
|
// text/html; charset=UTF-8; option=value
|
||||||
|
let ttype = if let Some((t, _)) = header.split_once(';') {
|
||||||
|
t
|
||||||
|
} else {
|
||||||
|
header
|
||||||
|
};
|
||||||
|
|
||||||
|
if let Some((ttype, subtype)) = ttype.split_once('/') {
|
||||||
|
trace!("Found Content-Type to be: {ttype}/{subtype} for {}", url.to_string());
|
||||||
|
// If the Content-Type header is "*/html" (most likely "text/html") and the path's
|
||||||
|
// extension is anything but html:
|
||||||
|
if subtype=="html" && !url_path.extension().is_some_and(|f| f=="html" || f=="htm" ) {
|
||||||
|
// time to slap a index.html to the end of that path there!
|
||||||
|
url_path = url_path.join("index.html");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
warn!("Header: {:?} couldn't be parsed into a string!", content_type);
|
||||||
|
}
|
||||||
|
trace!("Final path for {} is: {:?}", url, url_path);
|
||||||
|
|
||||||
|
url_path
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn init(filename: &PathBuf) -> Option<fs::File> {
|
||||||
|
let file = async || tokio::fs::OpenOptions::new()
|
||||||
|
.append(true)
|
||||||
|
.create(true)
|
||||||
|
.open(&filename).await;
|
||||||
|
|
||||||
|
match file().await {
|
||||||
|
Ok(ok) => Some(ok),
|
||||||
|
Err(err) => {
|
||||||
|
// the file/folder isn't found
|
||||||
|
if err.kind() == ErrorKind::NotFound {
|
||||||
|
if let Some(parent ) = &filename.parent() {
|
||||||
|
// create the folders
|
||||||
|
if let Err(err) = fs::create_dir_all(&parent).await {
|
||||||
|
error!("Dir creation: {err} {:?}", filename);
|
||||||
|
eprintln!("{}", err)
|
||||||
|
} else if let Ok(ok) = file().await {
|
||||||
|
return Some(ok);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
error!("Couldn't get file's parents: {:?}", &filename);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
error!("File open error: {err} {:?}", filename);
|
||||||
|
}
|
||||||
|
// we don't care about other errors, we can't/shouldn't fix them
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
235
src/main.rs
235
src/main.rs
@ -1,29 +1,35 @@
|
|||||||
#![feature(ip_from)]
|
#![feature(ip_from)]
|
||||||
|
#![warn(clippy::expect_used)]
|
||||||
|
#![deny(clippy::unwrap_used)]
|
||||||
|
|
||||||
extern crate html5ever;
|
extern crate html5ever;
|
||||||
|
|
||||||
|
use futures_util::StreamExt;
|
||||||
|
|
||||||
use std::{
|
use std::{
|
||||||
collections::HashSet, fs::File, io::Read, net::{IpAddr, Ipv4Addr}, time::Instant
|
collections::HashSet,
|
||||||
|
fs::File,
|
||||||
|
io::Read,
|
||||||
|
net::{IpAddr, Ipv4Addr},
|
||||||
};
|
};
|
||||||
|
|
||||||
use db::{connect, Website};
|
use db::{connect, Website};
|
||||||
use metrics::{counter, gauge};
|
use metrics::{counter, gauge};
|
||||||
use metrics_exporter_prometheus::PrometheusBuilder;
|
use metrics_exporter_prometheus::PrometheusBuilder;
|
||||||
use s3::S3;
|
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
use surrealdb::{engine::remote::ws::Client, Surreal};
|
use surrealdb::{engine::remote::ws::Client, Surreal};
|
||||||
use tokio::task::JoinSet;
|
use tokio::{io::{AsyncWriteExt, BufWriter}, task::JoinSet};
|
||||||
use tracing::{debug, error, info, instrument, trace, trace_span, warn};
|
use tracing::{debug, debug_span, error, info, instrument, level_filters::LevelFilter, trace, trace_span, warn};
|
||||||
use tracing_subscriber::{fmt, layer::SubscriberExt, EnvFilter, Layer, Registry};
|
use tracing_subscriber::{fmt, layer::SubscriberExt, EnvFilter, Layer, Registry};
|
||||||
|
|
||||||
mod db;
|
mod db;
|
||||||
|
mod filesystem;
|
||||||
mod parser;
|
mod parser;
|
||||||
mod s3;
|
|
||||||
|
|
||||||
const GET_METRIC: &'static str = "total_gets";
|
const GET_METRIC: &str = "total_gets";
|
||||||
const GET_IN_FLIGHT: &'static str = "gets_in_flight";
|
const GET_IN_FLIGHT: &str = "gets_in_flight";
|
||||||
const SITES_CRAWLED: &'static str = "pages_crawled";
|
const SITES_CRAWLED: &str = "pages_crawled";
|
||||||
const BEING_PROCESSED: &'static str = "pages_being_processed";
|
const BEING_PROCESSED: &str = "pages_being_processed";
|
||||||
|
|
||||||
#[derive(Deserialize)]
|
#[derive(Deserialize)]
|
||||||
struct Config {
|
struct Config {
|
||||||
@ -33,18 +39,15 @@ struct Config {
|
|||||||
surreal_username: String,
|
surreal_username: String,
|
||||||
surreal_password: String,
|
surreal_password: String,
|
||||||
|
|
||||||
s3_url: String,
|
|
||||||
s3_bucket: String,
|
|
||||||
s3_access_key: String,
|
|
||||||
s3_secret_key: String,
|
|
||||||
|
|
||||||
crawl_filter: String,
|
crawl_filter: String,
|
||||||
|
start_url: String,
|
||||||
budget: usize,
|
budget: usize,
|
||||||
|
batch_size: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
async fn main() {
|
async fn main() {
|
||||||
let total_runtime = Timer::start("Completed");
|
println!("Logs and metrics are provided to the Grafana dashboard");
|
||||||
|
|
||||||
let writer = std::fs::OpenOptions::new()
|
let writer = std::fs::OpenOptions::new()
|
||||||
.append(true)
|
.append(true)
|
||||||
@ -52,7 +55,9 @@ async fn main() {
|
|||||||
.open("./docker/logs/tracing.log")
|
.open("./docker/logs/tracing.log")
|
||||||
.expect("Couldn't make log file!");
|
.expect("Couldn't make log file!");
|
||||||
|
|
||||||
let filter = EnvFilter::from_default_env();
|
let filter = EnvFilter::builder()
|
||||||
|
.with_default_directive(LevelFilter::DEBUG.into())
|
||||||
|
.from_env_lossy();
|
||||||
|
|
||||||
let registry = Registry::default().with(
|
let registry = Registry::default().with(
|
||||||
fmt::layer()
|
fmt::layer()
|
||||||
@ -75,9 +80,8 @@ async fn main() {
|
|||||||
.install()
|
.install()
|
||||||
.expect("failed to install recorder/exporter");
|
.expect("failed to install recorder/exporter");
|
||||||
|
|
||||||
debug!("Starting...");
|
info!("Starting...");
|
||||||
// Would probably take these in as parameters from a cli
|
|
||||||
let starting_url = "https://en.wikipedia.org/";
|
|
||||||
// When getting uncrawled pages, name must contain this variable. "" will effectively get ignored.
|
// When getting uncrawled pages, name must contain this variable. "" will effectively get ignored.
|
||||||
// let crawl_filter = "en.wikipedia.org/";
|
// let crawl_filter = "en.wikipedia.org/";
|
||||||
// let budget = 50;
|
// let budget = 50;
|
||||||
@ -88,13 +92,11 @@ async fn main() {
|
|||||||
let _ = file.read_to_string(&mut buf);
|
let _ = file.read_to_string(&mut buf);
|
||||||
|
|
||||||
let config: Config = toml::from_str(&buf).expect("Failed to parse Crawler.toml");
|
let config: Config = toml::from_str(&buf).expect("Failed to parse Crawler.toml");
|
||||||
|
let starting_url = &config.start_url;
|
||||||
|
|
||||||
let db = connect(&config)
|
let db = connect(&config)
|
||||||
.await
|
.await
|
||||||
.expect("Failed to connect to surreal, aborting.");
|
.expect("Failed to connect to surreal, aborting.");
|
||||||
let s3 = S3::connect(&config)
|
|
||||||
.await
|
|
||||||
.expect("Failed to connect to minio, aborting.\n\nThis probably means you need to login to the minio console and get a new access key!\n\n(Probably here) http://localhost:9001/access-keys/new-account\n\n");
|
|
||||||
|
|
||||||
let reqwest = reqwest::Client::builder()
|
let reqwest = reqwest::Client::builder()
|
||||||
// .use_rustls_tls()
|
// .use_rustls_tls()
|
||||||
@ -107,43 +109,33 @@ async fn main() {
|
|||||||
let span = trace_span!("Pre-Loop");
|
let span = trace_span!("Pre-Loop");
|
||||||
let pre_loop_span = span.enter();
|
let pre_loop_span = span.enter();
|
||||||
// Download the site
|
// Download the site
|
||||||
let site = Website::new(&starting_url, false);
|
let site = Website::new(starting_url, false);
|
||||||
process(site, db.clone(), reqwest.clone(), s3.clone()).await;
|
process(site, db.clone(), reqwest.clone()).await;
|
||||||
|
|
||||||
drop(pre_loop_span);
|
drop(pre_loop_span);
|
||||||
|
|
||||||
let span = trace_span!("Loop");
|
let span = trace_span!("Loop");
|
||||||
let span = span.enter();
|
let span = span.enter();
|
||||||
while crawled < config.budget {
|
while crawled < config.budget {
|
||||||
let get_num = if config.budget - crawled < 100 {
|
let uncrawled =
|
||||||
config.budget - crawled
|
get_uncrawled_links(&db, config.budget - crawled, config.crawl_filter.clone(), &config).await;
|
||||||
} else {
|
if uncrawled.is_empty() {
|
||||||
100
|
|
||||||
};
|
|
||||||
|
|
||||||
let uncrawled = get_uncrawled_links(&db, get_num, config.crawl_filter.clone()).await;
|
|
||||||
if uncrawled.len() == 0 {
|
|
||||||
info!("Had more budget but finished crawling everything.");
|
info!("Had more budget but finished crawling everything.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
debug!("Crawling {} pages...", uncrawled.len());
|
|
||||||
|
|
||||||
let span = trace_span!("Crawling");
|
|
||||||
let _ = span.enter();
|
|
||||||
|
|
||||||
{
|
{
|
||||||
let mut futures = JoinSet::new();
|
let mut futures = JoinSet::new();
|
||||||
for site in uncrawled {
|
for site in uncrawled {
|
||||||
gauge!(BEING_PROCESSED).increment(1);
|
gauge!(BEING_PROCESSED).increment(1);
|
||||||
futures.spawn(process(site, db.clone(), reqwest.clone(), s3.clone()));
|
futures.spawn(process(site, db.clone(), reqwest.clone()));
|
||||||
// let percent = format!("{:.2}%", (crawled as f32 / budget as f32) * 100f32);
|
// let percent = format!("{:.2}%", (crawled as f32 / budget as f32) * 100f32);
|
||||||
// info!("Crawled {crawled} out of {budget} pages. ({percent})");
|
// info!("Crawled {crawled} out of {budget} pages. ({percent})");
|
||||||
}
|
}
|
||||||
debug!("Joining {} futures...", futures.len());
|
|
||||||
|
|
||||||
let c = counter!(SITES_CRAWLED);
|
let c = counter!(SITES_CRAWLED);
|
||||||
// As futures complete runs code in while block
|
// As futures complete runs code in while block
|
||||||
while let Some(_) = futures.join_next().await {
|
while futures.join_next().await.is_some() {
|
||||||
c.increment(1);
|
c.increment(1);
|
||||||
gauge!(BEING_PROCESSED).decrement(1);
|
gauge!(BEING_PROCESSED).decrement(1);
|
||||||
crawled += 1;
|
crawled += 1;
|
||||||
@ -152,79 +144,137 @@ async fn main() {
|
|||||||
}
|
}
|
||||||
drop(span);
|
drop(span);
|
||||||
|
|
||||||
debug!("Done");
|
if let Ok(mut ok) = db
|
||||||
drop(total_runtime);
|
.query("count(select id from website where crawled = true)")
|
||||||
|
.await
|
||||||
|
{
|
||||||
|
let res = ok.take::<Option<usize>>(0);
|
||||||
|
if let Ok(Some(n)) = res {
|
||||||
|
info!("Total crawled pages now equals {n}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
info!("Done");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[instrument(skip(db, s3, reqwest))]
|
#[instrument(skip(db, reqwest))]
|
||||||
/// Downloads and crawls and stores a webpage.
|
/// Downloads and crawls and stores a webpage.
|
||||||
/// It is acceptable to clone `db`, `reqwest`, and `s3` because they all use `Arc`s internally. - Noted by Oliver
|
/// It is acceptable to clone `db`, `reqwest`, and `s3` because they all use `Arc`s internally. - Noted by Oliver
|
||||||
async fn process(mut site: Website, db: Surreal<Client>, reqwest: reqwest::Client, s3: S3) {
|
async fn process(mut site: Website, db: Surreal<Client>, reqwest: reqwest::Client) {
|
||||||
|
|
||||||
// METRICS
|
// METRICS
|
||||||
trace!("Process: {}", &site.site);
|
trace!("Process: {}", &site.site);
|
||||||
let timer = Timer::start("Built request");
|
|
||||||
// Build the request
|
// Build the request
|
||||||
let request_builder = reqwest.get(&site.site.to_string());
|
let request_builder = reqwest.get(site.site.to_string());
|
||||||
// METRICS
|
|
||||||
timer.stop();
|
|
||||||
|
|
||||||
// METRICS
|
// METRICS
|
||||||
let g = gauge!(GET_IN_FLIGHT);
|
let g = gauge!(GET_IN_FLIGHT);
|
||||||
g.increment(1);
|
g.increment(1);
|
||||||
counter!(GET_METRIC).increment(1);
|
|
||||||
let timer = Timer::start("Got page");
|
|
||||||
|
|
||||||
// Send the http request (get)
|
// Send the http request (get)
|
||||||
if let Ok(response) = request_builder.send().await {
|
if let Ok(response) = request_builder.send().await {
|
||||||
|
let headers = response.headers();
|
||||||
|
let code = response.status();
|
||||||
|
|
||||||
// METRICS
|
#[allow(non_snake_case)]
|
||||||
timer.stop();
|
let CT = headers.get("Content-Type");
|
||||||
g.decrement(1);
|
let ct = headers.get("content-type");
|
||||||
|
|
||||||
|
let ct = match (CT,ct) {
|
||||||
|
(None, None) => {
|
||||||
|
warn!("Server did not respond with Content-Type header. Url: {} Headers: ({:?})", site.site.to_string(), headers);
|
||||||
|
return
|
||||||
|
},
|
||||||
|
(None, Some(a)) => a,
|
||||||
|
(Some(a), None) => a,
|
||||||
|
(Some(a), Some(_)) => a,
|
||||||
|
};
|
||||||
|
|
||||||
|
// create filepath (handles / -> /index.html)
|
||||||
|
let path = filesystem::as_path(&site.site, ct);
|
||||||
|
|
||||||
|
// make sure that the file is good to go
|
||||||
|
if let Some(file) = filesystem::init(&path).await {
|
||||||
// Get body from response
|
// Get body from response
|
||||||
let data = response
|
// stream the response onto the disk
|
||||||
.text()
|
let mut stream = response.bytes_stream();
|
||||||
.await
|
|
||||||
.expect("Failed to read http response's body!");
|
let should_parse = path.to_string_lossy().ends_with(".html");
|
||||||
// Store document
|
let mut writer = BufWriter::new(file);
|
||||||
s3.store(&data, &site.site).await;
|
let mut buf: Vec<u8> = Vec::new();
|
||||||
|
|
||||||
|
// Write file to disk
|
||||||
|
info!("Writing at: {:?}", path);
|
||||||
|
while let Some(data) = stream.next().await {
|
||||||
|
match data {
|
||||||
|
Ok(data) => {
|
||||||
|
let _ = writer.write_all(&data).await;
|
||||||
|
// If we are going to parse this file later, we will save it
|
||||||
|
// into memory as well as the disk.
|
||||||
|
// We do this because the data here might be incomplete
|
||||||
|
if should_parse {
|
||||||
|
data.iter().for_each(|f| buf.push(*f));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
Err(err) => {
|
||||||
|
eprintln!("{}", err)
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
let _ = writer.flush();
|
||||||
|
|
||||||
|
|
||||||
|
// (If needed) Parse the file
|
||||||
|
if should_parse {
|
||||||
|
let span = debug_span!("Should Parse");
|
||||||
|
let enter = span.enter();
|
||||||
|
|
||||||
// Parse document and get relationships
|
// Parse document and get relationships
|
||||||
let sites = parser::parse(&site, &data).await;
|
let sites = parser::parse(&site, &buf).await;
|
||||||
|
// De-duplicate this list
|
||||||
// update self in db
|
let prev_len = sites.len();
|
||||||
site.set_crawled();
|
let set = sites.into_iter().fold(HashSet::new(), |mut set, item| {
|
||||||
site.store_self(&db).await;
|
set.insert(item);
|
||||||
|
|
||||||
// de duplicate this list
|
|
||||||
let set = sites.iter().fold(HashSet::new(), |mut set, item| {
|
|
||||||
// TODO seems kinda dumb to clone everything.
|
|
||||||
set.insert(item.clone());
|
|
||||||
set
|
set
|
||||||
});
|
});
|
||||||
trace!("Shrunk items to store from {} to {}", sites.len(), set.len());
|
let de_dupe_sites: Vec<Website> = set.into_iter().collect();
|
||||||
|
let diff = prev_len - de_dupe_sites.len();
|
||||||
|
trace!("Saved {diff} from being entered into the db by de-duping");
|
||||||
// Store all the other sites so that we can link to them.
|
// Store all the other sites so that we can link to them.
|
||||||
let others = Website::store_all(set, &db).await;
|
let _ = Website::store_all(de_dupe_sites, &db).await;
|
||||||
|
|
||||||
// Make the database's links reflect the html links between sites
|
drop(enter);
|
||||||
site.links_to(others, &db).await;
|
}
|
||||||
|
|
||||||
|
// METRICS
|
||||||
|
g.decrement(1);
|
||||||
|
counter!(GET_METRIC).increment(1);
|
||||||
|
|
||||||
|
// update self in db
|
||||||
|
site.crawled = true;
|
||||||
|
site.status_code = code.as_u16();
|
||||||
|
Website::store_all(vec![site.clone()], &db).await;
|
||||||
|
} else {
|
||||||
|
error!("File failed to cooperate: {:?}", path);
|
||||||
|
}
|
||||||
|
|
||||||
|
trace!("Done processing: {}", &site.site);
|
||||||
} else {
|
} else {
|
||||||
error!("Failed to get: {}", &site.site);
|
error!("Failed to get: {}", &site.site);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns uncrawled links
|
/// Returns uncrawled links
|
||||||
#[instrument(skip(db))]
|
#[instrument(skip(db, config))]
|
||||||
async fn get_uncrawled_links(
|
async fn get_uncrawled_links(
|
||||||
db: &Surreal<Client>,
|
db: &Surreal<Client>,
|
||||||
mut count: usize,
|
mut count: usize,
|
||||||
filter: String,
|
filter: String,
|
||||||
|
config: &Config,
|
||||||
) -> Vec<Website> {
|
) -> Vec<Website> {
|
||||||
if count > 100 {
|
if count > config.batch_size {
|
||||||
count = 100
|
count = config.batch_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
debug!("Getting uncrawled links");
|
debug!("Getting uncrawled links");
|
||||||
|
|
||||||
let mut response = db
|
let mut response = db
|
||||||
@ -237,34 +287,3 @@ async fn get_uncrawled_links(
|
|||||||
.take(0)
|
.take(0)
|
||||||
.expect("Returned websites couldn't be parsed")
|
.expect("Returned websites couldn't be parsed")
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Timer<'a> {
|
|
||||||
start: Instant,
|
|
||||||
msg: &'a str,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'a> Timer<'a> {
|
|
||||||
#[inline]
|
|
||||||
pub fn start(msg: &'a str) -> Self {
|
|
||||||
Self {
|
|
||||||
start: Instant::now(),
|
|
||||||
msg,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
pub fn stop(&self) -> f64 {
|
|
||||||
let dif = self.start.elapsed().as_micros();
|
|
||||||
let ms = dif as f64 / 1000.;
|
|
||||||
|
|
||||||
if ms > 200. {
|
|
||||||
warn!("{}", format!("{} in {:.3}ms", self.msg, ms));
|
|
||||||
}
|
|
||||||
|
|
||||||
ms
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Drop for Timer<'_> {
|
|
||||||
fn drop(&mut self) {
|
|
||||||
self.stop();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
100
src/parser.rs
100
src/parser.rs
@ -1,23 +1,24 @@
|
|||||||
use std::default::Default;
|
use std::default::Default;
|
||||||
use std::str::FromStr;
|
|
||||||
|
|
||||||
use html5ever::tokenizer::{BufferQueue, TokenizerResult};
|
use html5ever::tokenizer::{BufferQueue, TokenizerResult};
|
||||||
use html5ever::tokenizer::{StartTag, TagToken};
|
use html5ever::tokenizer::{StartTag, TagToken};
|
||||||
use html5ever::tokenizer::{Token, TokenSink, TokenSinkResult, Tokenizer, TokenizerOpts};
|
use html5ever::tokenizer::{Token, TokenSink, TokenSinkResult, Tokenizer, TokenizerOpts};
|
||||||
use html5ever::{local_name, tendril::*};
|
use html5ever::{local_name, tendril::*};
|
||||||
use tracing::instrument;
|
use tracing::{debug, error, instrument, trace, warn};
|
||||||
|
use url::Url;
|
||||||
|
|
||||||
use crate::db::Website;
|
use crate::db::Website;
|
||||||
use crate::Timer;
|
|
||||||
|
|
||||||
impl TokenSink for Website {
|
impl TokenSink for Website {
|
||||||
type Handle = Vec<Website>;
|
type Handle = Vec<Website>;
|
||||||
|
|
||||||
|
#[instrument(skip(token, _line_number))]
|
||||||
fn process_token(&self, token: Token, _line_number: u64) -> TokenSinkResult<Self::Handle> {
|
fn process_token(&self, token: Token, _line_number: u64) -> TokenSinkResult<Self::Handle> {
|
||||||
match token {
|
match token {
|
||||||
TagToken(tag) => {
|
TagToken(tag) => {
|
||||||
if tag.kind == StartTag {
|
if tag.kind == StartTag {
|
||||||
match tag.name {
|
match tag.name {
|
||||||
|
// this should be all the html elements that have links
|
||||||
local_name!("a")
|
local_name!("a")
|
||||||
| local_name!("audio")
|
| local_name!("audio")
|
||||||
| local_name!("area")
|
| local_name!("area")
|
||||||
@ -32,23 +33,18 @@ impl TokenSink for Website {
|
|||||||
let attr_name = attr.name.local.to_string();
|
let attr_name = attr.name.local.to_string();
|
||||||
if attr_name == "src" || attr_name == "href" || attr_name == "data"
|
if attr_name == "src" || attr_name == "href" || attr_name == "data"
|
||||||
{
|
{
|
||||||
// Get clone of the current site object
|
trace!("Found `{}` in html `{}` tag", &attr.value, tag.name);
|
||||||
let mut web = self.clone();
|
let url = try_get_url(&self.site, &attr.value);
|
||||||
|
|
||||||
// Set url
|
|
||||||
let mut url = web.site;
|
|
||||||
url.set_fragment(None); // removes #xyz
|
|
||||||
let joined = url
|
|
||||||
.join(&attr.value)
|
|
||||||
.expect("Failed to join url during parsing!");
|
|
||||||
web.site = joined;
|
|
||||||
|
|
||||||
web.crawled = false;
|
|
||||||
|
|
||||||
|
if let Some(mut parsed) = url {
|
||||||
|
parsed.set_query(None);
|
||||||
|
parsed.set_fragment(None);
|
||||||
|
trace!("Final cleaned URL: `{}`", parsed.to_string());
|
||||||
|
let web = Website::new(&parsed.to_string(), false);
|
||||||
links.push(web);
|
links.push(web);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return TokenSinkResult::Script(links);
|
return TokenSinkResult::Script(links);
|
||||||
}
|
}
|
||||||
local_name!("button") | local_name!("meta") | local_name!("iframe") => {
|
local_name!("button") | local_name!("meta") | local_name!("iframe") => {
|
||||||
@ -66,30 +62,90 @@ impl TokenSink for Website {
|
|||||||
|
|
||||||
#[instrument(skip_all)]
|
#[instrument(skip_all)]
|
||||||
/// Parses the passed site and returns all the sites it links to.
|
/// Parses the passed site and returns all the sites it links to.
|
||||||
pub async fn parse(site: &Website, data: &str) -> Vec<Website> {
|
pub async fn parse(site: &Website, data: &[u8]) -> Vec<Website> {
|
||||||
|
debug!("Parsing {}", site.site.to_string());
|
||||||
// prep work
|
// prep work
|
||||||
let mut other_sites: Vec<Website> = Vec::new();
|
let mut other_sites: Vec<Website> = Vec::new();
|
||||||
let _t = Timer::start("Parsed page");
|
|
||||||
|
|
||||||
// change data into something that can be tokenized
|
// change data into something that can be tokenized
|
||||||
let chunk = Tendril::from_str(&data).expect("Failed to parse string into Tendril!");
|
let s: Result<Tendril<fmt::UTF8>, ()> = Tendril::try_from_byte_slice(data);
|
||||||
|
if let Ok(chunk) = s {
|
||||||
// create buffer of tokens and push our input into it
|
// create buffer of tokens and push our input into it
|
||||||
let mut token_buffer = BufferQueue::default();
|
let token_buffer = BufferQueue::default();
|
||||||
token_buffer.push_back(
|
token_buffer.push_back(
|
||||||
chunk
|
chunk
|
||||||
.try_reinterpret::<fmt::UTF8>()
|
.try_reinterpret::<fmt::UTF8>()
|
||||||
.expect("Failed to reinterprt chunk!"),
|
.expect("Failed to reinterpret chunk!"),
|
||||||
);
|
);
|
||||||
// create the tokenizer
|
// create the tokenizer
|
||||||
let tokenizer = Tokenizer::new(site.clone(), TokenizerOpts::default());
|
let tokenizer = Tokenizer::new(site.clone(), TokenizerOpts::default());
|
||||||
|
|
||||||
// go thru buffer
|
// go thru buffer
|
||||||
while let TokenizerResult::Script(mut sites) = tokenizer.feed(&mut token_buffer) {
|
while let TokenizerResult::Script(mut sites) = tokenizer.feed(&token_buffer) {
|
||||||
other_sites.append(&mut sites);
|
other_sites.append(&mut sites);
|
||||||
// other_sites.push(sites);
|
// other_sites.push(sites);
|
||||||
}
|
}
|
||||||
assert!(token_buffer.is_empty());
|
assert!(token_buffer.is_empty());
|
||||||
tokenizer.end();
|
tokenizer.end();
|
||||||
|
} else {
|
||||||
|
warn!("Tendril failed to parse on: {}", site.site.to_string());
|
||||||
|
}
|
||||||
|
|
||||||
other_sites
|
other_sites
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[instrument]
|
||||||
|
fn try_get_url(parent: &Url, link: &str) -> Option<Url> {
|
||||||
|
match Url::parse(link) {
|
||||||
|
Ok(ok) => Some(ok),
|
||||||
|
Err(e) => {
|
||||||
|
if link.starts_with('#') {
|
||||||
|
trace!("Rejecting # url");
|
||||||
|
None
|
||||||
|
} else if link.starts_with("//") {
|
||||||
|
// if a url starts with "//" is assumed that it will adopt
|
||||||
|
// the same scheme as it's parent
|
||||||
|
// https://stackoverflow.com/questions/9646407/two-forward-slashes-in-a-url-src-href-attribute
|
||||||
|
let scheme = parent.scheme();
|
||||||
|
|
||||||
|
match Url::parse(&format!("{scheme}://{}", link)) {
|
||||||
|
Ok(url) => Some(url),
|
||||||
|
Err(err) => {
|
||||||
|
error!("Failed parsing relative scheme url: {}", err);
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// # This is some sort of realative url, gonna try patching it up into an absolute
|
||||||
|
// url
|
||||||
|
match e {
|
||||||
|
url::ParseError::RelativeUrlWithoutBase => {
|
||||||
|
// Is: scheme://host:port
|
||||||
|
let mut origin = parent.origin().ascii_serialization();
|
||||||
|
if !origin.ends_with('/') && !link.starts_with('/') {
|
||||||
|
origin += "/";
|
||||||
|
}
|
||||||
|
let url = origin.clone() + link;
|
||||||
|
|
||||||
|
if let Ok(url) = Url::parse(&url) {
|
||||||
|
trace!("Built `{url}` from `{origin} + `{}`", link.to_string());
|
||||||
|
Some(url)
|
||||||
|
} else {
|
||||||
|
error!(
|
||||||
|
"Failed to reconstruct a url from relative url: `{}` on site: `{}`. Failed url was: {}",
|
||||||
|
link,
|
||||||
|
parent.to_string(),
|
||||||
|
url
|
||||||
|
);
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_ => {
|
||||||
|
error!("MISC error: {:?} {:?}", e, link);
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
101
src/s3.rs
101
src/s3.rs
@ -1,101 +0,0 @@
|
|||||||
use metrics::counter;
|
|
||||||
use minio::s3::{
|
|
||||||
args::{BucketExistsArgs, MakeBucketArgs},
|
|
||||||
client::ClientBuilder,
|
|
||||||
creds::StaticProvider,
|
|
||||||
error::Error,
|
|
||||||
http::BaseUrl,
|
|
||||||
Client,
|
|
||||||
};
|
|
||||||
use tracing::{instrument, trace, warn};
|
|
||||||
use url::Url;
|
|
||||||
|
|
||||||
use crate::{db::Website, Config, Timer};
|
|
||||||
|
|
||||||
const S3_ROUND_TRIP_METRIC: &'static str = "s3_trips";
|
|
||||||
|
|
||||||
#[derive(Clone)]
|
|
||||||
pub struct S3 {
|
|
||||||
bucket_name: String,
|
|
||||||
client: Client,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl S3 {
|
|
||||||
#[instrument(skip_all, name = "S3")]
|
|
||||||
pub async fn connect(config: &Config) -> Result<Self, Error> {
|
|
||||||
let base_url = config
|
|
||||||
.s3_url
|
|
||||||
.parse::<BaseUrl>()
|
|
||||||
.expect("Failed to parse url into BaseUrl");
|
|
||||||
|
|
||||||
let static_provider =
|
|
||||||
StaticProvider::new(&config.s3_access_key, &config.s3_secret_key, None);
|
|
||||||
|
|
||||||
let client = ClientBuilder::new(base_url)
|
|
||||||
.provider(Some(Box::new(static_provider)))
|
|
||||||
.build()?;
|
|
||||||
|
|
||||||
trace!("Checking bucket...");
|
|
||||||
let exists = client
|
|
||||||
.bucket_exists(
|
|
||||||
&BucketExistsArgs::new(&config.s3_bucket)
|
|
||||||
.expect("Failed to check if bucket exists"),
|
|
||||||
)
|
|
||||||
.await?;
|
|
||||||
counter!(S3_ROUND_TRIP_METRIC).increment(1);
|
|
||||||
|
|
||||||
if !exists {
|
|
||||||
trace!("Creating bucket...");
|
|
||||||
client
|
|
||||||
.make_bucket(
|
|
||||||
&MakeBucketArgs::new(&config.s3_bucket).expect("Failed to create bucket!"),
|
|
||||||
)
|
|
||||||
.await?;
|
|
||||||
}
|
|
||||||
counter!(S3_ROUND_TRIP_METRIC).increment(1);
|
|
||||||
|
|
||||||
trace!("Connection successful");
|
|
||||||
|
|
||||||
Ok(Self {
|
|
||||||
bucket_name: config.s3_bucket.to_owned(),
|
|
||||||
client,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
#[instrument(name = "s3_store", skip_all)]
|
|
||||||
pub async fn store(&self, data: &str, url: &Url) {
|
|
||||||
let counter = counter!(S3_ROUND_TRIP_METRIC);
|
|
||||||
let t = Timer::start("Stored page");
|
|
||||||
let _ = t; // prevent compiler drop
|
|
||||||
|
|
||||||
let filename = Website::get_url_as_string(url);
|
|
||||||
trace!("Storing {} as {filename}", url.to_string());
|
|
||||||
|
|
||||||
counter.increment(1);
|
|
||||||
let _ = match &self
|
|
||||||
.client
|
|
||||||
.put_object_content(&self.bucket_name, &filename, data.to_owned())
|
|
||||||
.send()
|
|
||||||
.await
|
|
||||||
{
|
|
||||||
Ok(_) => {}
|
|
||||||
Err(err) => match err {
|
|
||||||
Error::InvalidObjectName(_) => {
|
|
||||||
// This code will really only run if the url has non-english chars
|
|
||||||
warn!("Tried storing invalid object name, retrying with Base64 encoding. Last try.");
|
|
||||||
|
|
||||||
let filename: String = Website::get_url_as_b64_path(url);
|
|
||||||
|
|
||||||
counter.increment(1);
|
|
||||||
let _ = &self
|
|
||||||
.client
|
|
||||||
.put_object_content(&self.bucket_name, &filename, data.to_owned())
|
|
||||||
.send()
|
|
||||||
.await
|
|
||||||
.unwrap();
|
|
||||||
}
|
|
||||||
_ => {}
|
|
||||||
},
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
@ -5,4 +5,5 @@ DEFINE INDEX IF NOT EXISTS idx ON TABLE website COLUMNS site UNIQUE;
|
|||||||
|
|
||||||
DEFINE FIELD IF NOT EXISTS crawled ON TABLE website TYPE bool;
|
DEFINE FIELD IF NOT EXISTS crawled ON TABLE website TYPE bool;
|
||||||
|
|
||||||
DEFINE FIELD IF NOT EXISTS created ON TABLE website VALUE time::now();
|
DEFINE FIELD IF NOT EXISTS accessed_at ON TABLE website VALUE time::now();
|
||||||
|
DEFINE FIELD IF NOT EXISTS first_accessed_at ON TABLE website VALUE time::now();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user