gitea/cmd/dump.go

75 lines
2.0 KiB
Go
Raw Normal View History

2014-05-02 03:21:46 +02:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package cmd
import (
2014-05-05 19:08:01 +02:00
"fmt"
2014-05-02 03:21:46 +02:00
"log"
"os"
"path"
2014-05-05 19:08:01 +02:00
"time"
2014-05-02 03:21:46 +02:00
"github.com/Unknwon/cae/zip"
"github.com/codegangsta/cli"
2014-05-05 06:55:17 +02:00
"github.com/gogits/gogs/models"
2014-05-26 02:11:25 +02:00
"github.com/gogits/gogs/modules/setting"
2014-05-02 03:21:46 +02:00
)
var CmdDump = cli.Command{
Name: "dump",
2014-05-05 06:55:17 +02:00
Usage: "Dump Gogs files and database",
Description: `Dump compresses all related files and database into zip file.
It can be used for backup and capture Gogs server image to send to maintainer`,
2014-05-02 03:21:46 +02:00
Action: runDump,
2014-09-08 01:39:26 +02:00
Flags: []cli.Flag{
cli.StringFlag{"config, c", "custom/conf/app.ini", "Custom configuration file path", ""},
2014-09-08 01:39:26 +02:00
cli.BoolFlag{"verbose, v", "show process details", ""},
},
2014-05-02 03:21:46 +02:00
}
2014-09-08 01:39:26 +02:00
func runDump(ctx *cli.Context) {
if ctx.IsSet("config") {
setting.CustomConf = ctx.String("config")
}
2014-05-26 02:11:25 +02:00
setting.NewConfigContext()
2014-05-05 06:55:17 +02:00
models.LoadModelsConfig()
models.SetEngine()
2014-05-02 03:21:46 +02:00
2014-05-26 02:11:25 +02:00
log.Printf("Dumping local repositories...%s", setting.RepoRootPath)
2014-09-08 01:39:26 +02:00
zip.Verbose = ctx.Bool("verbose")
2014-05-02 03:21:46 +02:00
defer os.Remove("gogs-repo.zip")
2014-05-26 02:11:25 +02:00
if err := zip.PackTo(setting.RepoRootPath, "gogs-repo.zip", true); err != nil {
2014-05-02 03:21:46 +02:00
log.Fatalf("Fail to dump local repositories: %v", err)
}
2014-05-05 06:55:17 +02:00
log.Printf("Dumping database...")
defer os.Remove("gogs-db.sql")
if err := models.DumpDatabase("gogs-db.sql"); err != nil {
log.Fatalf("Fail to dump database: %v", err)
}
2014-05-05 19:08:01 +02:00
fileName := fmt.Sprintf("gogs-dump-%d.zip", time.Now().Unix())
2014-05-05 06:55:17 +02:00
log.Printf("Packing dump files...")
2014-05-05 19:08:01 +02:00
z, err := zip.Create(fileName)
2014-05-02 03:21:46 +02:00
if err != nil {
2014-05-05 19:08:01 +02:00
os.Remove(fileName)
log.Fatalf("Fail to create %s: %v", fileName, err)
2014-05-02 03:21:46 +02:00
}
2014-05-26 02:11:25 +02:00
workDir, _ := setting.WorkDir()
z.AddFile("gogs-repo.zip", path.Join(workDir, "gogs-repo.zip"))
z.AddFile("gogs-db.sql", path.Join(workDir, "gogs-db.sql"))
2014-11-24 03:58:39 +01:00
z.AddDir("custom", path.Join(workDir, "custom"))
2014-05-26 02:11:25 +02:00
z.AddDir("log", path.Join(workDir, "log"))
2014-10-11 03:40:51 +02:00
// FIXME: SSH key file.
2014-05-05 06:55:17 +02:00
if err = z.Close(); err != nil {
2014-05-05 19:08:01 +02:00
os.Remove(fileName)
log.Fatalf("Fail to save %s: %v", fileName, err)
2014-05-05 06:55:17 +02:00
}
2014-05-02 03:21:46 +02:00
log.Println("Finish dumping!")
}