Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

classifier multiple classifier*.yml configurations #379

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions internal/classifier/classifier_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ package classifier
import (
"context"
"fmt"
"testing"

"github.com/bitmagnet-io/bitmagnet/internal/classifier/classification"
classifier_mocks "github.com/bitmagnet-io/bitmagnet/internal/classifier/mocks"
"github.com/bitmagnet-io/bitmagnet/internal/model"
"github.com/bitmagnet-io/bitmagnet/internal/tmdb"
tmdb_mocks "github.com/bitmagnet-io/bitmagnet/internal/tmdb/mocks"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"testing"
)

func TestClassifier(t *testing.T) {
Expand Down Expand Up @@ -195,7 +196,7 @@ func TestClassifier(t *testing.T) {
for _, tc := range testCases {
t.Run(fmt.Sprintf("torrent: %s", tc.torrent.Name), func(t *testing.T) {
mocks := newTestClassifierMocks(t)
source, sourceErr := yamlSourceProvider{rawSourceProvider: coreSourceProvider{}}.source()
source, sourceErr := coreSourceProvider{}.provider().source()
if sourceErr != nil {
t.Fatal(sourceErr)
return
Expand Down
5 changes: 3 additions & 2 deletions internal/classifier/json_schema_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ package classifier
import (
_ "embed"
"encoding/json"
"testing"

"github.com/stretchr/testify/assert"
"github.com/xeipuuv/gojsonschema"
"testing"
)

//go:embed json-schema.draft-07.json
Expand All @@ -24,7 +25,7 @@ func TestJsonSchema(t *testing.T) {
assert.NoError(t, err)
assert.True(t, metaResult.Valid())

coreClassifier, err := yamlSourceProvider{rawSourceProvider: coreSourceProvider{}}.source()
coreClassifier, err := coreSourceProvider{}.provider().source()
assert.NoError(t, err)
coreClassifierJson, err := json.Marshal(coreClassifier)
assert.NoError(t, err)
Expand Down
81 changes: 43 additions & 38 deletions internal/classifier/source_provider.go
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
package classifier

import (
"os"
"path/filepath"

"github.com/adrg/xdg"
"github.com/bitmagnet-io/bitmagnet/internal/tmdb"
"gopkg.in/yaml.v3"
"os"
)

func newSourceProvider(config Config, tmdbConfig tmdb.Config) sourceProvider {
return mergeSourceProvider{
providers: []sourceProvider{
yamlSourceProvider{rawSourceProvider: coreSourceProvider{}},
yamlSourceProvider{rawSourceProvider: xdgSourceProvider{}},
yamlSourceProvider{rawSourceProvider: cwdSourceProvider{}},
configSourceProvider{
config: config,
tmdbEnabled: tmdbConfig.Enabled,
},
},
}
var providers []sourceProvider
providers = append(providers, coreSourceProvider{}.provider())
providers = append(providers, xdgSourceProvider{}.providers()...)
providers = append(providers, cwdSourceProvider{}.providers()...)
providers = append(providers, configSourceProvider{
config: config,
tmdbEnabled: tmdbConfig.Enabled,
})
return mergeSourceProvider{providers: providers}
}

type sourceProvider interface {
Expand All @@ -45,21 +45,17 @@ func (m mergeSourceProvider) source() (Source, error) {
return source, nil
}

type rawSourceProvider interface {
source() ([]byte, error)
}

type yamlSourceProvider struct {
rawSourceProvider
raw []byte
err error
}

func (y yamlSourceProvider) source() (Source, error) {
raw, err := y.rawSourceProvider.source()
if err != nil {
return Source{}, err
if y.err != nil {
return Source{}, y.err
}
rawWorkflow := make(map[string]interface{})
parseErr := yaml.Unmarshal(raw, &rawWorkflow)
parseErr := yaml.Unmarshal(y.raw, &rawWorkflow)
if parseErr != nil {
return Source{}, parseErr
}
Expand All @@ -76,32 +72,41 @@ func (y yamlSourceProvider) source() (Source, error) {

type coreSourceProvider struct{}

func (c coreSourceProvider) source() ([]byte, error) {
return classifierCoreYaml, nil
func (c coreSourceProvider) provider() sourceProvider {
return yamlSourceProvider{raw: classifierCoreYaml}
}

type xdgSourceProvider struct{}

func (_ xdgSourceProvider) source() ([]byte, error) {
if path, pathErr := xdg.ConfigFile("bitmagnet/classifier.yml"); pathErr == nil {
if bytes, readErr := os.ReadFile(path); readErr == nil {
return bytes, nil
} else if !os.IsNotExist(readErr) {
return nil, readErr
}
func (yamlSourceProvider) providers(path string) []sourceProvider {
dir, fname := filepath.Split(path)
glob := dir + "classifier*" + filepath.Ext(fname)
paths, err := filepath.Glob(glob)
if err != nil {
return []sourceProvider{yamlSourceProvider{err: err}}
}
return []byte{'{', '}'}, nil
providers := make([]sourceProvider, len(paths))
for i, path := range paths {
bytes, readErr := os.ReadFile(path)
providers[i] = yamlSourceProvider{raw: bytes, err: readErr}
}

return providers

}

func (xdgSourceProvider) providers() []sourceProvider {
path, err := xdg.ConfigFile("bitmagnet/classifier.yml")
if err != nil {
return []sourceProvider{yamlSourceProvider{err: err}}
}
return yamlSourceProvider{}.providers(path)
}

type cwdSourceProvider struct{}

func (_ cwdSourceProvider) source() ([]byte, error) {
if bytes, readErr := os.ReadFile("./classifier.yml"); readErr == nil {
return bytes, nil
} else if !os.IsNotExist(readErr) {
return nil, readErr
}
return []byte{'{', '}'}, nil
func (cwdSourceProvider) providers() []sourceProvider {
return yamlSourceProvider{}.providers("./classifier.yml")
}

type configSourceProvider struct {
Expand Down