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
91
///! Implementation of PostgreSQL data handler

use postgres::{Client,error::Error};

pub mod asset_handler;
pub mod quote_handler;
pub mod transaction_handler;

/// Struct to handle connections to sqlite3 databases
pub struct PostgresDB<'a> {
    /// conn is made public to allow extending this struct outside of the library
    pub conn: &'a mut Client,
}

impl PostgresDB<'_> {
    /// Clean database by dropping all tables and than run init
    pub fn clean(&mut self) -> Result<(), Error> {
        self.conn
            .execute("DROP TABLE IF EXISTS transactions", &[])?;
        self.conn.execute("DROP TABLE IF EXISTS quotes", &[])?;
        self.conn.execute("DROP TABLE IF EXISTS ticker", &[])?;
        self.conn
            .execute("DROP TYPE IF EXISTS market_data_source", &[])?;
        self.conn.execute("DROP TABLE IF EXISTS assets", &[])?;
        self.conn
            .execute("DROP TABLE IF EXISTS rounding_digits", &[])?;
        self.init()
    }

    /// Initialize new database by creating table
    pub fn init(&mut self) -> Result<(), Error> {
        self.conn.execute(
            "CREATE TABLE IF NOT EXISTS assets (
                id SERIAL PRIMARY KEY,
                name TEXT NOT NULL UNIQUE,
                wkn TEXT UNIQUE,
                isin TEXT UNIQUE,
                note TEXT
            )",
            &[],
        )?;
        self.conn.execute(
            "CREATE TABLE IF NOT EXISTS transactions (
                id SERIAL PRIMARY KEY,
                trans_type TEXT NOT NULL,
                asset_id INTEGER,
                cash_amount FLOAT8 NOT NULL,
                cash_currency TEXT NOT NULL,
                cash_date DATE NOT NULL,
                related_trans INTEGER,
                position FLOAT8,
                note TEXT,
                FOREIGN KEY(asset_id) REFERENCES assets(id),
                FOREIGN KEY(related_trans) REFERENCES transactions(id)
            );",
            &[],
        )?;
        self.conn.execute(
            "CREATE TABLE IF NOT EXISTS ticker (
                id SERIAL PRIMARY KEY,
                name TEXT NOT NULL,
                asset_id INTEGER NOT NULL,
                source TEXT NOT NULL,
                priority INTEGER NOT NULL,
                currency TEXT NOT NULL,
                factor FLOAT8 NOT NULL DEFAULT 1.0,
                FOREIGN KEY(asset_id) REFERENCES assets(id) 
            );",
            &[],
        )?;
        self.conn.execute(
            "CREATE TABLE IF NOT EXISTS quotes (
                id SERIAL PRIMARY KEY,
                ticker_id INTEGER NOT NULL,
                price FLOAT8 NOT NULL,
                time TIMESTAMP WITH TIME ZONE NOT NULL,
                volume FLOAT8,
                FOREIGN KEY(ticker_id) REFERENCES ticker(id) );",
            &[],
        )?;
        self.conn.execute(
            "CREATE TABLE IF NOT EXISTS rounding_digits (
                id SERIAL PRIMARY KEY,
                currency TEXT NOT NULL UNIQUE,
                digits INT NOT NULL);",
            &[],
        )?;

        Ok(())
    }
}