mirror-chhoto-url/actix/src/database.rs

72 lines
1.9 KiB
Rust
Raw Normal View History

2023-04-03 20:46:22 +00:00
use rusqlite::Connection;
2023-04-03 03:26:23 +00:00
2023-04-03 23:52:17 +00:00
pub fn find_url(shortlink: &str, db: &Connection) -> String {
2023-04-03 20:46:22 +00:00
let mut statement = db
.prepare_cached("SELECT long_url FROM urls WHERE short_url = ?1")
.unwrap();
let links = statement
2023-04-26 19:40:54 +00:00
.query_map([shortlink], |row| row.get("long_url"))
2023-04-03 20:46:22 +00:00
.unwrap();
let mut longlink = String::new();
2023-04-03 20:46:22 +00:00
for link in links {
longlink = link.unwrap();
2023-04-03 03:26:23 +00:00
}
2023-04-03 20:46:22 +00:00
longlink
2023-04-03 03:26:23 +00:00
}
2023-04-03 16:55:27 +00:00
2023-04-03 23:52:17 +00:00
pub fn getall(db: &Connection) -> Vec<String> {
2023-04-03 20:46:22 +00:00
let mut statement = db.prepare_cached("SELECT * FROM urls").unwrap();
2023-04-03 16:55:27 +00:00
2023-04-03 20:46:22 +00:00
let mut data = statement.query([]).unwrap();
2023-04-03 16:55:27 +00:00
let mut links: Vec<String> = Vec::new();
2023-04-03 20:46:22 +00:00
while let Some(row) = data.next().unwrap() {
let short_url: String = row.get("short_url").unwrap();
let long_url: String = row.get("long_url").unwrap();
let hits: i64 = row.get("hits").unwrap();
2023-04-03 16:55:27 +00:00
links.push(format!("{short_url},{long_url},{hits}"));
}
links
}
2023-04-03 20:46:22 +00:00
2023-04-26 19:40:54 +00:00
pub fn add_hit(shortlink: &str, db: &Connection) {
2023-04-03 20:46:22 +00:00
db.execute(
"UPDATE urls SET hits = hits + 1 WHERE short_url = ?1",
[shortlink],
)
.unwrap();
}
2023-04-03 22:40:37 +00:00
2023-04-03 23:52:17 +00:00
pub fn add_link(shortlink: String, longlink: String, db: &Connection) -> bool {
2023-04-26 19:40:54 +00:00
db.execute(
2023-04-03 22:40:37 +00:00
"INSERT INTO urls (long_url, short_url, hits) VALUES (?1, ?2, ?3)",
(longlink, shortlink, 0),
2023-04-26 19:40:54 +00:00
)
.is_ok()
2023-04-03 22:40:37 +00:00
}
2023-04-03 22:58:19 +00:00
pub fn delete_link(shortlink: String, db: &Connection) -> bool {
let out = db.execute("DELETE FROM urls WHERE short_url = ?1", [shortlink]);
out.is_ok() && (out.unwrap() > 0)
2023-04-03 22:58:19 +00:00
}
2023-04-03 23:52:17 +00:00
pub fn open_db(path: String) -> Connection {
let db = Connection::open(path).expect("Unable to open database!");
2023-04-08 20:36:33 +00:00
// Create table if it doesn't exist
2023-04-03 23:52:17 +00:00
db.execute(
"CREATE TABLE IF NOT EXISTS urls (
id INTEGER PRIMARY KEY AUTOINCREMENT,
long_url TEXT NOT NULL,
short_url TEXT NOT NULL,
hits INTEGER NOT NULL
)",
[],
)
.unwrap();
db
}