Welcome to mirror list, hosted at ThFree Co, Russian Federation.

domains.go « source « internal - gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: efa613e191c7d9a81efbd5c460b8d61df387393f (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
package source

import (
	"context"

	"gitlab.com/gitlab-org/gitlab-pages/internal/config"
	"gitlab.com/gitlab-org/gitlab-pages/internal/domain"
	"gitlab.com/gitlab-org/gitlab-pages/internal/source/gitlab"
)

// Domains struct wraps the GitLab client to fetch a domain configuration
// TODO: remove/refactor this package https://gitlab.com/gitlab-org/gitlab-pages/-/issues/608
type Domains struct {
	gitlab Source
}

// NewDomains is a factory method for domains initializing a mutex. It should
// not initialize `dm` as we later check the readiness by comparing it with a
// nil value.
func NewDomains(cfg *config.GitLab) (*Domains, error) {
	domains := &Domains{}
	if err := domains.setConfigSource(cfg); err != nil {
		return nil, err
	}

	return domains, nil
}

// setConfigSource and initialize gitlab source
func (d *Domains) setConfigSource(cfg *config.GitLab) error {
	return d.setGitLabClient(cfg)
}

func (d *Domains) setGitLabClient(cfg *config.GitLab) error {
	// We want to notify users about any API issues
	// Creating a glClient will start polling connectivity in the background
	// and spam errors in log
	glClient, err := gitlab.New(cfg)
	if err != nil {
		return err
	}

	d.gitlab = glClient

	return nil
}

// GetDomain retrieves a domain information from a source. We are using two
// sources here because it allows us to switch behavior and the domain source
// for some subset of domains, to test / PoC the new GitLab Domains Source that
// we plan to use to replace the disk source.
func (d *Domains) GetDomain(ctx context.Context, name string) (*domain.Domain, error) {
	return d.gitlab.GetDomain(ctx, name)
}