gostart/tmp.go

50 lines
1.1 KiB
Go
Raw Normal View History

2022-11-29 19:55:00 -07:00
package main
import (
"database/sql"
"log"
"suah.dev/gostart/data"
)
func tmpDBPopulate(db *sql.DB) {
2022-12-02 20:53:05 -07:00
log.Println("CREATING TEMP DATABASE!")
2022-11-29 19:55:00 -07:00
if _, err := db.ExecContext(app.ctx, schema); err != nil {
2022-12-05 15:45:39 -07:00
log.Fatal("can't create schema in temp db: ", err)
2022-11-29 19:55:00 -07:00
}
ownerID := int64(57395170551826799)
_, err := app.queries.AddOwner(app.ctx, data.AddOwnerParams{
2022-11-29 19:55:00 -07:00
ID: 57395170551826799,
Name: "europa.humpback-trout.ts.net.",
})
if err != nil {
2022-12-05 15:45:39 -07:00
log.Fatal("can't add temp owner: ", err)
}
2022-11-29 19:55:00 -07:00
b, err := app.queries.AddLink(app.ctx, data.AddLinkParams{
OwnerID: ownerID,
Url: "https://tapenet.org",
Name: "Tape::Net",
2022-12-02 20:53:05 -07:00
LogoUrl: "https://git.tapenet.org/assets/img/logo.svg",
2022-11-29 19:55:00 -07:00
})
log.Println(b, err)
_, err = app.queries.AddPullRequest(app.ctx, data.AddPullRequestParams{
2022-12-02 20:53:05 -07:00
OwnerID: ownerID,
Number: 1234,
Repo: "NixOS/nixpkgs",
2022-11-29 19:55:00 -07:00
})
if err != nil {
2022-12-05 15:45:39 -07:00
log.Fatal("can't add temp PR: ", err)
}
_, err = app.queries.AddWatchItem(app.ctx, data.AddWatchItemParams{
2022-11-29 19:55:00 -07:00
Name: "tailscale",
Repo: "NixOS/nixpkgs",
2022-11-29 19:55:00 -07:00
OwnerID: ownerID,
})
if err != nil {
2022-12-05 15:45:39 -07:00
log.Fatal("can't add temp watch item: ", err)
}
2022-11-29 19:55:00 -07:00
}