2021-07-09 06:11:11 +00:00
|
|
|
package database
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"log"
|
|
|
|
|
|
|
|
"github.com/aldy505/bob"
|
|
|
|
)
|
|
|
|
|
2021-07-17 10:34:02 +00:00
|
|
|
// Setup the table connection, create table if not exists
|
2021-07-09 06:11:11 +00:00
|
|
|
func Setup() error {
|
|
|
|
db := New()
|
|
|
|
|
2021-07-23 15:02:39 +00:00
|
|
|
// administrators table
|
|
|
|
var tableAuthExists bool
|
2021-07-14 18:17:01 +00:00
|
|
|
err := db.QueryRow(context.Background(), `SELECT EXISTS (
|
|
|
|
SELECT FROM information_schema.tables
|
|
|
|
WHERE table_schema = 'public'
|
2021-07-23 15:02:39 +00:00
|
|
|
AND table_name = 'administrators'
|
|
|
|
);`).Scan(&tableAuthExists)
|
2021-07-09 06:11:11 +00:00
|
|
|
if err != nil {
|
2021-07-23 15:02:39 +00:00
|
|
|
log.Fatalln("16 - failed on checking table: ", err)
|
2021-07-14 18:17:01 +00:00
|
|
|
return err
|
2021-07-09 06:11:11 +00:00
|
|
|
}
|
|
|
|
|
2021-07-23 15:02:39 +00:00
|
|
|
if !tableAuthExists {
|
|
|
|
sql, _, err := bob.
|
|
|
|
CreateTable("administrators").
|
|
|
|
AddColumn(bob.ColumnDef{Name: "id", Type: "SERIAL", Extras: []string{"PRIMARY KEY"}}).
|
|
|
|
StringColumn("key", "UNIQUE").
|
|
|
|
TextColumn("token").
|
|
|
|
StringColumn("last_used").
|
2021-07-14 18:17:01 +00:00
|
|
|
ToSql()
|
2021-07-09 06:11:11 +00:00
|
|
|
if err != nil {
|
2021-07-23 15:02:39 +00:00
|
|
|
log.Fatalln("17 - failed on table creation: ", err)
|
2021-07-09 06:11:11 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-08-04 05:56:14 +00:00
|
|
|
|
2021-07-14 18:17:01 +00:00
|
|
|
_, err = db.Query(context.Background(), sql)
|
|
|
|
if err != nil {
|
2021-07-23 15:02:39 +00:00
|
|
|
log.Fatalln("18 - failed on table creation: ", err)
|
2021-07-14 18:17:01 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-07-09 06:11:11 +00:00
|
|
|
}
|
|
|
|
|
2021-07-23 15:02:39 +00:00
|
|
|
// Jokesbapak2 table
|
|
|
|
|
|
|
|
// Check if table exists
|
|
|
|
var tableJokesExists bool
|
2021-07-14 18:17:01 +00:00
|
|
|
err = db.QueryRow(context.Background(), `SELECT EXISTS (
|
|
|
|
SELECT FROM information_schema.tables
|
|
|
|
WHERE table_schema = 'public'
|
2021-07-23 15:02:39 +00:00
|
|
|
AND table_name = 'jokesbapak2'
|
|
|
|
);`).Scan(&tableJokesExists)
|
2021-07-09 06:11:11 +00:00
|
|
|
if err != nil {
|
2021-07-23 15:02:39 +00:00
|
|
|
log.Fatalln("10 - failed on checking table: ", err)
|
2021-07-09 12:13:19 +00:00
|
|
|
return err
|
2021-07-09 06:11:11 +00:00
|
|
|
}
|
|
|
|
|
2021-07-23 15:02:39 +00:00
|
|
|
if !tableJokesExists {
|
|
|
|
sql, _, err := bob.
|
|
|
|
CreateTable("jokesbapak2").
|
|
|
|
AddColumn(bob.ColumnDef{Name: "id", Type: "SERIAL", Extras: []string{"PRIMARY KEY"}}).
|
|
|
|
TextColumn("link", "UNIQUE").
|
|
|
|
AddColumn(bob.ColumnDef{Name: "creator", Type: "INT", Extras: []string{"NOT NULL", "REFERENCES \"administrators\" (\"id\")"}}).
|
2021-07-14 18:17:01 +00:00
|
|
|
ToSql()
|
2021-07-09 06:11:11 +00:00
|
|
|
if err != nil {
|
2021-07-23 15:02:39 +00:00
|
|
|
log.Fatalln("11 - failed on table creation: ", err)
|
2021-07-09 06:11:11 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-07-14 18:17:01 +00:00
|
|
|
_, err = db.Query(context.Background(), sql)
|
|
|
|
if err != nil {
|
2021-07-23 15:02:39 +00:00
|
|
|
log.Fatalln("12 - failed on table creation: ", err)
|
2021-07-14 18:17:01 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-07-09 12:13:19 +00:00
|
|
|
}
|
2021-07-23 15:02:39 +00:00
|
|
|
|
2021-08-04 05:56:14 +00:00
|
|
|
// Submission table
|
|
|
|
|
|
|
|
//Check if table exists
|
|
|
|
var tableSubmissionExists bool
|
|
|
|
err = db.QueryRow(context.Background(), `SELECT EXISTS (
|
|
|
|
SELECT FROM information_schema.tables
|
|
|
|
WHERE table_schema = 'public'
|
|
|
|
AND table_name = 'submission'
|
|
|
|
);`).Scan(&tableJokesExists)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalln("13 - failed on checking table: ", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !tableSubmissionExists {
|
|
|
|
sql, _, err := bob.
|
|
|
|
CreateTable("submission").
|
|
|
|
AddColumn(bob.ColumnDef{Name: "id", Type: "SERIAL", Extras: []string{"PRIMARY KEY"}}).
|
|
|
|
TextColumn("link", "UNIQUE", "NOT NULL").
|
|
|
|
StringColumn("created_at").
|
|
|
|
StringColumn("author", "NOT NULL").
|
|
|
|
AddColumn(bob.ColumnDef{Name: "status", Type: "SMALLINT", Extras: []string{"DEFAULT 0"}}).
|
|
|
|
ToSql()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalln("14 - failed on table creation: ", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = db.Query(context.Background(), sql)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalln("15 - failed on table creation: ", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-09 06:11:11 +00:00
|
|
|
return nil
|
|
|
|
}
|