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

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/source/disk/disk.go')
-rw-r--r--internal/source/disk/disk.go56
1 files changed, 0 insertions, 56 deletions
diff --git a/internal/source/disk/disk.go b/internal/source/disk/disk.go
deleted file mode 100644
index 3596af29..00000000
--- a/internal/source/disk/disk.go
+++ /dev/null
@@ -1,56 +0,0 @@
-package disk
-
-import (
- "context"
- "strings"
- "sync"
- "time"
-
- "gitlab.com/gitlab-org/gitlab-pages/internal/domain"
-)
-
-// Disk struct represents a map of all domains supported by pages that are
-// stored on a disk with corresponding `config.json`.
-type Disk struct {
- dm Map
- lock *sync.RWMutex
-}
-
-// New is a factory method for the Disk source. It is initializing a mutex. It
-// should not initialize `dm` as we later check the readiness by comparing it
-// with a nil value.
-func New() *Disk {
- return &Disk{
- lock: &sync.RWMutex{},
- }
-}
-
-// GetDomain returns a domain from the domains map if it exists
-func (d *Disk) GetDomain(ctx context.Context, host string) (*domain.Domain, error) {
- host = strings.ToLower(host)
-
- d.lock.RLock()
- defer d.lock.RUnlock()
-
- return d.dm[host], nil
-}
-
-// IsReady checks if the domains source is ready for work. The disk source is
-// ready after traversing entire filesystem and reading all domains'
-// configuration files.
-func (d *Disk) IsReady() bool {
- return d.dm != nil
-}
-
-// Read starts the domain source, in this case it is reading domains from
-// groups on disk concurrently.
-func (d *Disk) Read(rootDomain string) {
- go Watch(rootDomain, d.updateDomains, time.Second)
-}
-
-func (d *Disk) updateDomains(dm Map) {
- d.lock.Lock()
- defer d.lock.Unlock()
-
- d.dm = dm
-}