aboutsummaryrefslogtreecommitdiff
path: root/server/database/database.go
blob: 8b7c7f63ce7911a9dbfdc217a8f4a3b3e71c176f (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
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
/*
 * OpenBills - Self hosted browser app to generate and keep track of simple invoices
 * Version - 0
 * Licensed under the MIT license - https://opensource.org/licenses/MIT
 *
 * Copyright (c) 2021 Vidhu Kant Sharma
*/

// Idk how databases work this package is supposed to handle the sqlite database
// will figure that out

package database

import (
  "database/sql"
  _ "github.com/mattn/go-sqlite3"
)

type Item struct {
  Model  string
  Desc   string `json:"Description"`
  Price  float64
  HSN    int
}

var myDatabase *sql.DB
var registered_items *sql.Stmt
var register_item *sql.Stmt
func init() {
  myDatabase, _ = sql.Open("sqlite3", "./openbills.db")

  registered_items, _ = myDatabase.Prepare(
    `CREATE TABLE IF NOT EXISTS registered_items
    (id INTEGER PRIMARY KEY AUTOINCREMENT,
    model TEXT NOT NULL,
    desc TEXT,
    price REAL,
    hsn BLOB)`,
  )
  registered_items.Exec()

  register_item, _ = myDatabase.Prepare(
    `INSERT INTO registered_items
    (model, desc, price, hsn) 
    VALUES (?, ?, ?, ?)`,
  )
}

func GetAllItems() []Item {
  var allItems []Item
  rows, _ := myDatabase.Query(
    `SELECT model, desc, price, hsn FROM registered_items`,
  )

  var (
    model, desc string
    price float64
    HSN int
  )

  for rows.Next() {
    rows.Scan(&model, &desc, &price, &HSN)
    allItems = append(allItems, Item{model, desc, price, HSN})
  }

  return allItems
}

func RegisterItem(model string, desc string, price float64, HSN int) {
  /*
  var item Item = Item{
    model, desc, price, HSN,
  }

  register_item.Exec(item.Model, item.Desc, item.Price, item.HSN)
  */
  register_item.Exec(model, desc, price, HSN)
}