aboutsummaryrefslogtreecommitdiff
path: root/cmd/app/importer/importer.go
blob: 0cc9bb762b278bb2a34cbdb8dbf405a2dd6009d7 (plain) (blame)
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
package importer

import (
	"encoding/json"
	"os"

	"github.com/urfave/cli/v2"
	"sh.org.ru/pkg/config"
	"sh.org.ru/pkg/db"
	"sh.org.ru/pkg/model"
)

func Run(c *cli.Context) error {
	configFile := c.String("config")
	cfg, err := config.New(configFile)
	if err != nil {
		return err
	}
	db := db.New(cfg.DB)

	file := c.Args().First()

	quotes := []string{}

	fp, err := os.Open(file)
	if err != nil {
		return err
	}
	defer fp.Close()

	if err := json.NewDecoder(fp).Decode(&quotes); err != nil {
		return err
	}

	for _, text := range quotes {
		q := &model.Quote{
			Quote:    text,
			Approved: true,
			Archive:  true,
		}
		if _, err := db.NewInsert().Model(q).Exec(c.Context); err != nil {
			return err
		}
	}

	return nil
}