atuin/atuin-client/src/database.rs

321 lines
8.7 KiB
Rust
Raw Normal View History

use std::path::Path;
use std::str::FromStr;
use async_trait::async_trait;
2021-04-25 14:27:51 -06:00
use chrono::prelude::*;
use chrono::Utc;
use eyre::Result;
2021-04-25 14:27:51 -06:00
use sqlx::sqlite::{
SqliteConnectOptions, SqliteJournalMode, SqlitePool, SqlitePoolOptions, SqliteRow,
};
use sqlx::Row;
2021-02-14 10:18:02 -07:00
use super::history::History;
use super::settings::SearchMode;
#[async_trait]
pub trait Database {
async fn save(&mut self, h: &History) -> Result<()>;
async fn save_bulk(&mut self, h: &[History]) -> Result<()>;
2021-03-19 18:50:31 -06:00
async fn load(&self, id: &str) -> Result<History>;
async fn list(&self, max: Option<usize>, unique: bool) -> Result<Vec<History>>;
async fn range(
&self,
from: chrono::DateTime<Utc>,
to: chrono::DateTime<Utc>,
) -> Result<Vec<History>>;
2021-03-19 18:50:31 -06:00
async fn update(&self, h: &History) -> Result<()>;
async fn history_count(&self) -> Result<i64>;
2021-03-19 18:50:31 -06:00
async fn first(&self) -> Result<History>;
async fn last(&self) -> Result<History>;
async fn before(&self, timestamp: chrono::DateTime<Utc>, count: i64) -> Result<Vec<History>>;
async fn search(
&self,
limit: Option<i64>,
search_mode: SearchMode,
query: &str,
) -> Result<Vec<History>>;
async fn query_history(&self, query: &str) -> Result<Vec<History>>;
}
// Intended for use on a developer machine and not a sync server.
// TODO: implement IntoIterator
2021-02-14 08:15:26 -07:00
pub struct Sqlite {
pool: SqlitePool,
}
2021-02-14 08:15:26 -07:00
impl Sqlite {
pub async fn new(path: impl AsRef<Path>) -> Result<Self> {
let path = path.as_ref();
debug!("opening sqlite database at {:?}", path);
let create = !path.exists();
if create {
if let Some(dir) = path.parent() {
std::fs::create_dir_all(dir)?;
}
}
let opts = SqliteConnectOptions::from_str(path.as_os_str().to_str().unwrap())?
.journal_mode(SqliteJournalMode::Wal)
.create_if_missing(true);
let pool = SqlitePoolOptions::new().connect_with(opts).await?;
Self::setup_db(&pool).await?;
Ok(Self { pool })
}
async fn setup_db(pool: &SqlitePool) -> Result<()> {
debug!("running sqlite database setup");
sqlx::migrate!("./migrations").run(pool).await?;
Ok(())
}
2021-02-14 10:18:02 -07:00
async fn save_raw(tx: &mut sqlx::Transaction<'_, sqlx::Sqlite>, h: &History) -> Result<()> {
sqlx::query(
"insert or ignore into history(id, timestamp, duration, exit, command, cwd, session, hostname)
values(?1, ?2, ?3, ?4, ?5, ?6, ?7, ?8)",
)
.bind(h.id.as_str())
2021-04-25 14:27:51 -06:00
.bind(h.timestamp.timestamp_nanos())
.bind(h.duration)
.bind(h.exit)
.bind(h.command.as_str())
.bind(h.cwd.as_str())
.bind(h.session.as_str())
.bind(h.hostname.as_str())
.execute(tx)
.await?;
2021-02-14 10:18:02 -07:00
Ok(())
}
2021-04-25 14:27:51 -06:00
fn query_history(row: SqliteRow) -> History {
History {
id: row.get("id"),
timestamp: Utc.timestamp_nanos(row.get("timestamp")),
duration: row.get("duration"),
exit: row.get("exit"),
command: row.get("command"),
cwd: row.get("cwd"),
session: row.get("session"),
hostname: row.get("hostname"),
}
}
}
#[async_trait]
2021-02-14 08:15:26 -07:00
impl Database for Sqlite {
async fn save(&mut self, h: &History) -> Result<()> {
debug!("saving history to sqlite");
let mut tx = self.pool.begin().await?;
Self::save_raw(&mut tx, h).await?;
tx.commit().await?;
2021-02-14 10:18:02 -07:00
Ok(())
2021-02-13 10:02:52 -07:00
}
async fn save_bulk(&mut self, h: &[History]) -> Result<()> {
2021-02-13 12:37:00 -07:00
debug!("saving history to sqlite");
let mut tx = self.pool.begin().await?;
2021-02-13 12:37:00 -07:00
for i in h {
Self::save_raw(&mut tx, i).await?
2021-02-13 12:37:00 -07:00
}
tx.commit().await?;
2021-02-13 12:37:00 -07:00
Ok(())
}
async fn load(&self, id: &str) -> Result<History> {
debug!("loading history item {}", id);
2021-02-13 10:02:52 -07:00
2021-04-25 14:27:51 -06:00
let res = sqlx::query("select * from history where id = ?1")
.bind(id)
2021-04-25 14:27:51 -06:00
.map(Self::query_history)
.fetch_one(&self.pool)
.await?;
2021-02-13 10:02:52 -07:00
Ok(res)
2021-02-13 10:02:52 -07:00
}
async fn update(&self, h: &History) -> Result<()> {
2021-02-13 10:02:52 -07:00
debug!("updating sqlite history");
sqlx::query(
2021-02-13 10:02:52 -07:00
"update history
2021-02-13 13:21:49 -07:00
set timestamp = ?2, duration = ?3, exit = ?4, command = ?5, cwd = ?6, session = ?7, hostname = ?8
2021-02-13 10:02:52 -07:00
where id = ?1",
)
.bind(h.id.as_str())
2021-04-25 14:27:51 -06:00
.bind(h.timestamp.timestamp_nanos())
.bind(h.duration)
.bind(h.exit)
.bind(h.command.as_str())
.bind(h.cwd.as_str())
.bind(h.session.as_str())
.bind(h.hostname.as_str())
.execute(&self.pool)
.await?;
Ok(())
}
// make a unique list, that only shows the *newest* version of things
async fn list(&self, max: Option<usize>, unique: bool) -> Result<Vec<History>> {
debug!("listing history");
// very likely vulnerable to SQL injection
// however, this is client side, and only used by the client, on their
// own data. They can just open the db file...
// otherwise building the query is awkward
let query = format!(
"select * from history h
{}
order by timestamp desc
{}",
// inject the unique check
if unique {
"where timestamp = (
select max(timestamp) from history
where h.command = history.command
)"
} else {
""
},
// inject the limit
if let Some(max) = max {
format!("limit {}", max)
} else {
"".to_string()
}
);
2021-02-13 10:02:52 -07:00
2021-04-25 14:27:51 -06:00
let res = sqlx::query(query.as_str())
.map(Self::query_history)
.fetch_all(&self.pool)
.await?;
Ok(res)
}
async fn range(
&self,
from: chrono::DateTime<Utc>,
to: chrono::DateTime<Utc>,
) -> Result<Vec<History>> {
debug!("listing history from {:?} to {:?}", from, to);
2021-04-25 14:27:51 -06:00
let res = sqlx::query(
"select * from history where timestamp >= ?1 and timestamp <= ?2 order by timestamp asc",
)
.bind(from)
.bind(to)
2021-04-25 14:27:51 -06:00
.map(Self::query_history)
.fetch_all(&self.pool)
.await?;
Ok(res)
}
async fn first(&self) -> Result<History> {
2021-04-25 14:27:51 -06:00
let res =
sqlx::query("select * from history where duration >= 0 order by timestamp asc limit 1")
.map(Self::query_history)
.fetch_one(&self.pool)
.await?;
Ok(res)
}
async fn last(&self) -> Result<History> {
2021-04-25 14:27:51 -06:00
let res = sqlx::query(
"select * from history where duration >= 0 order by timestamp desc limit 1",
)
2021-04-25 14:27:51 -06:00
.map(Self::query_history)
.fetch_one(&self.pool)
.await?;
Ok(res)
}
async fn before(&self, timestamp: chrono::DateTime<Utc>, count: i64) -> Result<Vec<History>> {
2021-04-25 14:27:51 -06:00
let res = sqlx::query(
"select * from history where timestamp < ?1 order by timestamp desc limit ?2",
)
2021-04-25 14:27:51 -06:00
.bind(timestamp.timestamp_nanos())
.bind(count)
2021-04-25 14:27:51 -06:00
.map(Self::query_history)
.fetch_all(&self.pool)
.await?;
Ok(res)
}
async fn history_count(&self) -> Result<i64> {
let res: (i64,) = sqlx::query_as("select count(1) from history")
.fetch_one(&self.pool)
.await?;
Ok(res.0)
}
2021-03-19 18:50:31 -06:00
async fn search(
&self,
limit: Option<i64>,
search_mode: SearchMode,
query: &str,
) -> Result<Vec<History>> {
let query = query.to_string().replace("*", "%"); // allow wildcard char
let limit = limit.map_or("".to_owned(), |l| format!("limit {}", l));
let query = match search_mode {
SearchMode::Prefix => query,
SearchMode::FullText => format!("%{}", query),
};
2021-04-25 14:27:51 -06:00
let res = sqlx::query(
format!(
"select * from history h
where command like ?1 || '%'
and timestamp = (
select max(timestamp) from history
where h.command = history.command
)
order by timestamp desc {}",
limit.clone()
)
.as_str(),
2021-03-19 18:50:31 -06:00
)
.bind(query)
2021-04-25 14:27:51 -06:00
.map(Self::query_history)
.fetch_all(&self.pool)
.await?;
2021-03-19 18:50:31 -06:00
Ok(res)
}
async fn query_history(&self, query: &str) -> Result<Vec<History>> {
2021-04-25 14:27:51 -06:00
let res = sqlx::query(query)
.map(Self::query_history)
.fetch_all(&self.pool)
.await?;
2021-02-14 10:18:02 -07:00
Ok(res)
}
2021-02-14 10:18:02 -07:00
}