blob: ec5559b7bd3fd40f02a67a78f6b95f026d168973 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
use crate::db::get_client;
use crate::errors::AppError;
use chrono::NaiveDateTime;
use deadpool_postgres::Pool;
use serde::{Deserialize, Serialize};
use tokio_pg_mapper::FromTokioPostgresRow;
use tokio_pg_mapper_derive::PostgresMapper;
use uuid::Uuid;
#[derive(Serialize, Deserialize, PostgresMapper)]
#[pg_mapper(table = "repository")]
pub struct Repository {
pub id: Uuid,
pub url: String,
pub created_at: NaiveDateTime,
pub updated_at: NaiveDateTime,
pub uploader_ip: String,
}
impl Repository {
pub async fn find_all(pool: Pool) -> Result<Vec<Repository>, AppError> {
let client = get_client(pool.clone()).await.unwrap();
let statement = client
.prepare("SELECT * FROM repository ORDER BY updated_at DESC")
.await?;
let repos = client
.query(&statement, &[])
.await?
.iter()
.map(|row| Repository::from_row_ref(row).unwrap())
.collect::<Vec<Repository>>();
Ok(repos)
}
}
|