aboutsummaryrefslogtreecommitdiff
path: root/server/database/people.go
blob: 0ff3acbe34e76d77babbf480611eed94f7a39730 (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
/*
 * 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
*/

// handles all People related database functions

package database

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

type Person struct {
  Name  string
  Phone string
  Email string
}

func GetAllPeople() []Person {
  var allPeople []Person
  rows, _ := myDatabase.Query(
    `SELECT Name, Phone, Email FROM People`,
  )

  var (
    name, phone, email string
  )

  for rows.Next() {
    rows.Scan(&name, &phone, &email)
    allPeople = append(allPeople, Person{name, phone, email})
  }

  return allPeople
}

func RegisterPerson(person Person) bool {
  personNames, _ := myDatabase.Query("SELECT Name FROM People")

  // check if already exists
  // probs shouldnt make it
  // make front end handle it
  for personNames.Next() {
    var rPerson string
    if rPerson == person.Name {
      fmt.Println(person.Name, "already exists")
      return false
    }
  }

  register_person, _ := myDatabase.Prepare(
    `INSERT INTO People
    (Name, Phone, Email)
    VALUES (?, ?, ?)`,
  )

  register_person.Exec(
    person.Name, person.Phone, person.Email,
  )

  return true
}