summaryrefslogtreecommitdiff
path: root/plugins/jobs/oooold/dispatcher.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jobs/oooold/dispatcher.go')
-rw-r--r--plugins/jobs/oooold/dispatcher.go47
1 files changed, 0 insertions, 47 deletions
diff --git a/plugins/jobs/oooold/dispatcher.go b/plugins/jobs/oooold/dispatcher.go
deleted file mode 100644
index 801e1973..00000000
--- a/plugins/jobs/oooold/dispatcher.go
+++ /dev/null
@@ -1,47 +0,0 @@
-package oooold
-
-import (
- "strings"
-)
-
-var separators = []string{"/", "-", "\\"}
-
-// Dispatcher provides ability to automatically locate the pipeline for the specific job
-// and update job options (if none set).
-type Dispatcher map[string]*Options
-
-// pre-compile patterns
-func initDispatcher(routes map[string]*Options) Dispatcher {
- dispatcher := make(Dispatcher)
- for pattern, opts := range routes {
- pattern = strings.ToLower(pattern)
- pattern = strings.Trim(pattern, "-.*")
-
- for _, s := range separators {
- pattern = strings.Replace(pattern, s, ".", -1)
- }
-
- dispatcher[pattern] = opts
- }
-
- return dispatcher
-}
-
-// match clarifies target job pipeline and other job options. Can return nil.
-func (dispatcher Dispatcher) match(job *Job) (found *Options) {
- var best = 0
-
- jobName := strings.ToLower(job.Job)
- for pattern, opts := range dispatcher {
- if strings.HasPrefix(jobName, pattern) && len(pattern) > best {
- found = opts
- best = len(pattern)
- }
- }
-
- if best == 0 {
- return nil
- }
-
- return found
-}