2016-08-31 02:18:33 +03:00
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2018-09-07 05:06:09 +03:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 21:20:29 +03:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-08-31 02:18:33 +03:00
|
|
|
|
2021-12-10 04:27:50 +03:00
|
|
|
package repo
|
2016-08-31 02:18:33 +03:00
|
|
|
|
|
|
|
import (
|
2022-03-27 17:40:17 +03:00
|
|
|
"context"
|
2016-08-31 02:18:33 +03:00
|
|
|
"time"
|
|
|
|
|
2021-09-19 14:49:59 +03:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2016-11-10 19:24:48 +03:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2019-08-15 17:46:21 +03:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2022-12-31 14:49:37 +03:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2016-08-31 02:18:33 +03:00
|
|
|
)
|
|
|
|
|
2022-01-20 20:46:10 +03:00
|
|
|
// ErrMirrorNotExist mirror does not exist error
|
2022-12-31 14:49:37 +03:00
|
|
|
var ErrMirrorNotExist = util.NewNotExistErrorf("Mirror does not exist")
|
2021-12-10 04:27:50 +03:00
|
|
|
|
2016-08-31 02:18:33 +03:00
|
|
|
// Mirror represents mirror information of a repository.
|
|
|
|
type Mirror struct {
|
2017-01-06 18:14:33 +03:00
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
RepoID int64 `xorm:"INDEX"`
|
2016-08-31 02:18:33 +03:00
|
|
|
Repo *Repository `xorm:"-"`
|
2017-04-08 18:27:26 +03:00
|
|
|
Interval time.Duration
|
|
|
|
EnablePrune bool `xorm:"NOT NULL DEFAULT true"`
|
2016-08-31 02:18:33 +03:00
|
|
|
|
2019-08-15 17:46:21 +03:00
|
|
|
UpdatedUnix timeutil.TimeStamp `xorm:"INDEX"`
|
|
|
|
NextUpdateUnix timeutil.TimeStamp `xorm:"INDEX"`
|
2016-08-31 02:18:33 +03:00
|
|
|
|
2021-04-09 01:25:57 +03:00
|
|
|
LFS bool `xorm:"lfs_enabled NOT NULL DEFAULT false"`
|
|
|
|
LFSEndpoint string `xorm:"lfs_endpoint TEXT"`
|
|
|
|
|
2023-09-16 19:03:02 +03:00
|
|
|
RemoteAddress string `xorm:"VARCHAR(2048)"`
|
2016-08-31 02:18:33 +03:00
|
|
|
}
|
|
|
|
|
2021-09-19 14:49:59 +03:00
|
|
|
func init() {
|
|
|
|
db.RegisterModel(new(Mirror))
|
|
|
|
}
|
|
|
|
|
2016-11-26 03:30:21 +03:00
|
|
|
// BeforeInsert will be invoked by XORM before inserting a record
|
2016-08-31 02:18:33 +03:00
|
|
|
func (m *Mirror) BeforeInsert() {
|
2017-09-13 08:18:22 +03:00
|
|
|
if m != nil {
|
2019-08-15 17:46:21 +03:00
|
|
|
m.UpdatedUnix = timeutil.TimeStampNow()
|
|
|
|
m.NextUpdateUnix = timeutil.TimeStampNow()
|
2017-09-13 08:18:22 +03:00
|
|
|
}
|
2016-08-31 02:18:33 +03:00
|
|
|
}
|
|
|
|
|
2022-05-20 17:08:52 +03:00
|
|
|
// GetRepository returns the repository.
|
2023-09-29 15:12:54 +03:00
|
|
|
func (m *Mirror) GetRepository(ctx context.Context) *Repository {
|
2022-05-20 17:08:52 +03:00
|
|
|
if m.Repo != nil {
|
|
|
|
return m.Repo
|
2017-09-13 08:18:22 +03:00
|
|
|
}
|
2016-08-31 02:18:33 +03:00
|
|
|
var err error
|
2023-09-29 15:12:54 +03:00
|
|
|
m.Repo, err = GetRepositoryByID(ctx, m.RepoID)
|
2017-10-01 19:52:35 +03:00
|
|
|
if err != nil {
|
2019-04-02 10:48:31 +03:00
|
|
|
log.Error("getRepositoryByID[%d]: %v", m.ID, err)
|
2016-08-31 02:18:33 +03:00
|
|
|
}
|
2021-06-14 20:20:43 +03:00
|
|
|
return m.Repo
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetRemoteName returns the name of the remote.
|
|
|
|
func (m *Mirror) GetRemoteName() string {
|
|
|
|
return "origin"
|
|
|
|
}
|
|
|
|
|
2016-08-31 02:18:33 +03:00
|
|
|
// ScheduleNextUpdate calculates and sets next update time.
|
|
|
|
func (m *Mirror) ScheduleNextUpdate() {
|
2018-11-09 02:58:02 +03:00
|
|
|
if m.Interval != 0 {
|
2019-08-15 17:46:21 +03:00
|
|
|
m.NextUpdateUnix = timeutil.TimeStampNow().AddDuration(m.Interval)
|
2018-11-09 02:58:02 +03:00
|
|
|
} else {
|
|
|
|
m.NextUpdateUnix = 0
|
|
|
|
}
|
2016-08-31 02:18:33 +03:00
|
|
|
}
|
|
|
|
|
2022-05-20 17:08:52 +03:00
|
|
|
// GetMirrorByRepoID returns mirror information of a repository.
|
|
|
|
func GetMirrorByRepoID(ctx context.Context, repoID int64) (*Mirror, error) {
|
2016-08-31 02:18:33 +03:00
|
|
|
m := &Mirror{RepoID: repoID}
|
2022-05-20 17:08:52 +03:00
|
|
|
has, err := db.GetEngine(ctx).Get(m)
|
2016-08-31 02:18:33 +03:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if !has {
|
|
|
|
return nil, ErrMirrorNotExist
|
|
|
|
}
|
|
|
|
return m, nil
|
|
|
|
}
|
|
|
|
|
2016-11-26 03:30:21 +03:00
|
|
|
// UpdateMirror updates the mirror
|
2022-05-20 17:08:52 +03:00
|
|
|
func UpdateMirror(ctx context.Context, m *Mirror) error {
|
|
|
|
_, err := db.GetEngine(ctx).ID(m.ID).AllCols().Update(m)
|
|
|
|
return err
|
2016-08-31 02:18:33 +03:00
|
|
|
}
|
|
|
|
|
2022-03-27 17:40:17 +03:00
|
|
|
// TouchMirror updates the mirror updatedUnix
|
|
|
|
func TouchMirror(ctx context.Context, m *Mirror) error {
|
|
|
|
m.UpdatedUnix = timeutil.TimeStampNow()
|
|
|
|
_, err := db.GetEngine(ctx).ID(m.ID).Cols("updated_unix").Update(m)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-11-26 03:30:21 +03:00
|
|
|
// DeleteMirrorByRepoID deletes a mirror by repoID
|
2023-09-29 15:12:54 +03:00
|
|
|
func DeleteMirrorByRepoID(ctx context.Context, repoID int64) error {
|
|
|
|
_, err := db.GetEngine(ctx).Delete(&Mirror{RepoID: repoID})
|
2016-08-31 02:18:33 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-10-01 16:40:17 +03:00
|
|
|
// MirrorsIterate iterates all mirror repositories.
|
2023-09-29 15:12:54 +03:00
|
|
|
func MirrorsIterate(ctx context.Context, limit int, f func(idx int, bean any) error) error {
|
|
|
|
sess := db.GetEngine(ctx).
|
2016-11-10 18:16:32 +03:00
|
|
|
Where("next_update_unix<=?", time.Now().Unix()).
|
2018-11-09 02:58:02 +03:00
|
|
|
And("next_update_unix!=0").
|
2022-08-19 05:12:00 +03:00
|
|
|
OrderBy("updated_unix ASC")
|
|
|
|
if limit > 0 {
|
|
|
|
sess = sess.Limit(limit)
|
|
|
|
}
|
|
|
|
return sess.Iterate(new(Mirror), f)
|
2016-08-31 02:18:33 +03:00
|
|
|
}
|
2019-12-14 20:30:01 +03:00
|
|
|
|
|
|
|
// InsertMirror inserts a mirror to database
|
2022-06-06 11:01:49 +03:00
|
|
|
func InsertMirror(ctx context.Context, mirror *Mirror) error {
|
|
|
|
_, err := db.GetEngine(ctx).Insert(mirror)
|
2019-12-14 20:30:01 +03:00
|
|
|
return err
|
|
|
|
}
|