aboutsummaryrefslogtreecommitdiff
path: root/internal/db/watches.go
blob: e93a4ab665627ff7761b4e4dd1630420876f2eed (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
// Copyright 2020 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 db

import (
	"context"

	"gorm.io/gorm"
)

// WatchesStore is the persistent interface for watches.
//
// NOTE: All methods are sorted in alphabetical order.
type WatchesStore interface {
	// ListByRepo returns all watches of the given repository.
	ListByRepo(ctx context.Context, repoID int64) ([]*Watch, error)
}

var Watches WatchesStore

var _ WatchesStore = (*watches)(nil)

type watches struct {
	*gorm.DB
}

// NewWatchesStore returns a persistent interface for watches with given
// database connection.
func NewWatchesStore(db *gorm.DB) WatchesStore {
	return &watches{DB: db}
}

func (db *watches) ListByRepo(ctx context.Context, repoID int64) ([]*Watch, error) {
	var watches []*Watch
	return watches, db.WithContext(ctx).Where("repo_id = ?", repoID).Find(&watches).Error
}