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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
pub mod json;
pub mod models;
pub mod schema;

#[macro_use]
extern crate diesel;
extern crate dotenv;

use diesel::pg::PgConnection;
use diesel::prelude::*;
use dotenv::dotenv;
use std::env;

use self::models::schools::{
    NewSchools,
    Schools,
};
use self::models::spell::{
    NewSpell,
    Spell,
};
use diesel::r2d2::{ Pool, PooledConnection, ConnectionManager, PoolError };

pub type PgPool = Pool<ConnectionManager<PgConnection>>;
pub type PgPooledConnection = PooledConnection<ConnectionManager<PgConnection>>;

fn init_pool(database_url: &str) -> Result<PgPool, PoolError> {
    let manager = ConnectionManager::<PgConnection>::new(database_url);
    Pool::builder().build(manager)
}

pub fn establish_connection() -> PgPool {
    dotenv().ok();

    let database_url = env::var("DATABASE_URL")
        .expect("DATABASE_URL must be set");
    init_pool(&database_url).expect("Failed to create pool")
}

//pub fn establish_connection() -> PgConnection {
//    dotenv().ok();
//
//    let database_url = env::var("DATABASE_URL").expect("DATABASE_URL must be set");
//    PgConnection::establish(&database_url).expect(&format!("Error connecting to {}", database_url))
//}

pub fn get_spell_by_name(_name: &str, conn: &PgConnection) -> Option<(Spell, Schools)> {
    use self::schema::schools;
    use self::schema::spells::dsl::*;

    let results = spells
        .filter(name.eq(_name))
        .limit(1)
        .inner_join(schools::table)
        .load::<(Spell, Schools)>(conn)
        .expect("Error retrieving spell");

    match results.len() {
        0 => None,
        _ => Some(results[0].clone()),
    }
}

pub fn get_spell_like_name(_name: &str, conn: &PgConnection) -> Vec<(Spell, Schools)> {
    use self::schema::schools;
    use self::schema::spells::dsl::*;

    let query = format!("{}", _name);
    spells
        .filter(name.ilike(query))
        .inner_join(schools::table)
        .load::<(Spell, Schools)>(conn)
        .expect("Error finding spell like")
}

pub fn read_spells(conn: &PgConnection) {
    use self::schema::spells::dsl::*;
    let results = spells
        .limit(5)
        .load::<Spell>(conn)
        .expect("Error loading spells");

    println!("Displaying {} spells", results.len());
    for spell in results {
        println!("==========================================================");
        println!("{}", spell.name);
        println!("----------");
        println!("{}\n", spell.effect);
    }
}