lure/fix.go

65 lines
1.6 KiB
Go
Raw Normal View History

/*
* LURE - Linux User REpository
2023-09-20 22:38:22 +00:00
* Copyright (C) 2023 Elara Musayelyan
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2022-12-02 20:43:00 +00:00
package main
import (
"os"
"github.com/urfave/cli/v2"
2023-10-08 00:34:39 +00:00
"lure.sh/lure/internal/config"
"lure.sh/lure/internal/db"
"lure.sh/lure/pkg/loggerctx"
"lure.sh/lure/pkg/repos"
2022-12-02 20:43:00 +00:00
)
2023-09-19 21:28:05 +00:00
var fixCmd = &cli.Command{
Name: "fix",
Usage: "Attempt to fix problems with LURE",
Action: func(c *cli.Context) error {
2023-10-06 21:21:12 +00:00
ctx := c.Context
log := loggerctx.From(ctx)
2023-09-19 21:28:05 +00:00
db.Close()
2023-10-06 21:21:12 +00:00
paths := config.GetPaths(ctx)
2022-12-02 20:43:00 +00:00
2023-09-19 21:28:05 +00:00
log.Info("Removing cache directory").Send()
2022-12-02 20:45:34 +00:00
2023-09-19 21:28:05 +00:00
err := os.RemoveAll(paths.CacheDir)
if err != nil {
log.Fatal("Unable to remove cache directory").Err(err).Send()
}
2022-12-02 20:43:00 +00:00
2023-09-19 21:28:05 +00:00
log.Info("Rebuilding cache").Send()
2022-12-02 20:45:34 +00:00
2023-09-19 21:28:05 +00:00
err = os.MkdirAll(paths.CacheDir, 0o755)
if err != nil {
log.Fatal("Unable to create new cache directory").Err(err).Send()
}
2022-12-02 20:43:00 +00:00
2023-10-06 21:21:12 +00:00
err = repos.Pull(ctx, config.Config(ctx).Repos)
2023-09-19 21:28:05 +00:00
if err != nil {
log.Fatal("Error pulling repos").Err(err).Send()
}
2022-12-02 20:43:00 +00:00
2023-09-19 21:28:05 +00:00
log.Info("Done").Send()
2022-12-02 20:43:00 +00:00
2023-09-19 21:28:05 +00:00
return nil
},
2022-12-02 20:43:00 +00:00
}