summaryrefslogtreecommitdiffstats
path: root/models/migrations/v27.go
blob: e87c7ab68f58295d2954435bcf3870d275590692 (plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// Copyright 2017 Gitea. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

package migrations

import (
	"fmt"
	"time"

	"code.gitea.io/gitea/modules/log"
	"code.gitea.io/gitea/modules/setting"

	"github.com/go-xorm/xorm"
)

func convertIntervalToDuration(x *xorm.Engine) (err error) {
	type Repository struct {
		ID      int64
		OwnerID int64
		Name    string
	}
	type Mirror struct {
		ID       int64       `xorm:"pk autoincr"`
		RepoID   int64       `xorm:"INDEX"`
		Repo     *Repository `xorm:"-"`
		Interval time.Duration
	}

	sess := x.NewSession()
	defer sess.Close()

	if err := sess.Begin(); err != nil {
		return err
	}

	dialect := x.Dialect().DriverName()

	switch dialect {
	case "mysql":
		_, err = sess.Exec("ALTER TABLE mirror MODIFY `interval` BIGINT")
	case "postgres":
		_, err = sess.Exec("ALTER TABLE mirror ALTER COLUMN \"interval\" SET DATA TYPE bigint")
	case "tidb":
		_, err = sess.Exec("ALTER TABLE mirror MODIFY `interval` BIGINT")
	case "mssql":
		_, err = sess.Exec("ALTER TABLE mirror ALTER COLUMN \"interval\" BIGINT")
	case "sqlite3":
	}

	if err != nil {
		return fmt.Errorf("Error changing mirror interval column type: %v", err)
	}

	var mirrors []Mirror
	err = sess.Table("mirror").Select("*").Find(&mirrors)
	if err != nil {
		return fmt.Errorf("Query repositories: %v", err)
	}
	for _, mirror := range mirrors {
		mirror.Interval *= time.Hour
		if mirror.Interval < setting.Mirror.MinInterval {
			log.Info("Mirror interval less than Mirror.MinInterval, setting default interval: repo id %v", mirror.RepoID)
			mirror.Interval = setting.Mirror.DefaultInterval
		}
		log.Debug("Mirror interval set to %v for repo id %v", mirror.Interval, mirror.RepoID)
		_, err := sess.ID(mirror.ID).Cols("interval").Update(mirror)
		if err != nil {
			return fmt.Errorf("update mirror interval failed: %v", err)
		}
	}

	return sess.Commit()
}