lure/fix.go

62 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-09-20 22:41:03 +00:00
"go.elara.ws/lure/internal/log"
2023-09-22 22:21:34 +00:00
"go.elara.ws/lure/internal/config"
"go.elara.ws/lure/internal/db"
2023-09-21 23:18:18 +00:00
"go.elara.ws/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 {
db.Close()
paths := config.GetPaths()
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-09-19 21:28:05 +00:00
err = repos.Pull(c.Context, config.Config().Repos)
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
}