package worker // SPDX-License-Identifier: GPL-3.0-or-later import ( "context" "errors" "fmt" "net/url" "strings" "sync" "time" "github.com/rs/zerolog/log" "projects.blender.org/studio/flamenco/internal/upnp_ssdp" "projects.blender.org/studio/flamenco/pkg/api" ) // maybeAutodiscoverManager starts Manager auto-discovery if there is no Manager URL configured yet. func MaybeAutodiscoverManager(ctx context.Context, configWrangler *FileConfigWrangler) error { cfg, err := configWrangler.WorkerConfig() if err != nil { return fmt.Errorf("loading configuration: %w", err) } if cfg.ManagerURL != "" { // Manager URL is already known, don't bother with auto-discovery. return nil } foundManager, err := AutodiscoverManager(ctx) if err != nil { return err } configWrangler.SetManagerURL(foundManager) return nil } // AutodiscoverManager uses UPnP/SSDP to find a Manager, and returns its URL if found. func AutodiscoverManager(ctx context.Context) (string, error) { c, err := upnp_ssdp.NewClient(log.Logger) if err != nil { return "", fmt.Errorf("unable to create UPnP/SSDP client: %w", err) } logger := log.Logger if deadline, ok := ctx.Deadline(); ok { timeout := deadline.Sub(time.Now()).Round(1 * time.Second) logger = logger.With().Str("timeout", timeout.String()).Logger() } logger.Info().Msg("auto-discovering Manager via UPnP/SSDP") urls, err := c.Run(ctx) if err != nil { return "", fmt.Errorf("unable to find Manager: %w", err) } if len(urls) == 0 { return "", errors.New("no Manager could be found") } // Try out the URLs to see which one responds. usableURLs := pingManagers(ctx, urls) switch len(usableURLs) { case 0: urlsAsString := strings.Join(urls, ", ") return "", fmt.Errorf("autodetected %d URLs (%s), but none were usable", len(urls), urlsAsString) case 1: log.Info().Str("url", usableURLs[0]).Msg("found Manager") default: log.Info(). Strs("urls", urls). Str("url", usableURLs[0]). Msg("found multiple usable URLs, using the first one") } return usableURLs[0], nil } // pingManager connects to a Manager and returns the service URL if it responds. func pingManager(ctx context.Context, descriptionURL string) string { var err error parsedURL, err := url.Parse(descriptionURL) if err != nil { log.Warn(). Str("description", descriptionURL). Err(err). Msg("received invalid URL from autodiscovery, ignoring") return "" } // TODO: actually get the description XML from Flamenco Manager and use the path in there. // For now, just assume it's on the root. parsedURL.Path = "/" serviceURL := parsedURL.String() logger := log.With().Str("url", serviceURL).Logger() client, err := api.NewClientWithResponses(serviceURL) if err != nil { logger.Warn().Err(err).Msg("unable to create API client with this URL") return "" } resp, err := client.GetVersionWithResponse(ctx) if err != nil { // It is expected that some URLs will not work. Showing the error message at // info/warn level will likely confuse people, so leave it at debug level. logger.Debug().Err(err).Msg("unable to get Flamenco version from Manager") return "" } if resp.JSON200 == nil { logger.Warn(). Int("httpStatus", resp.StatusCode()). Msg("unable to get Flamenco version, unexpected reply") return "" } logger.Info(). Str("version", resp.JSON200.Version). Str("name", resp.JSON200.Name). Msg("found Flamenco Manager") return serviceURL } // pingManagers pings all URLs in parallel, returning only those that responded. func pingManagers(ctx context.Context, urls []string) []string { startTime := time.Now() wg := new(sync.WaitGroup) wg.Add(len(urls)) mutex := new(sync.Mutex) pingURL := func(idx int, descriptionURL string) { defer wg.Done() serviceURL := pingManager(ctx, descriptionURL) mutex.Lock() defer mutex.Unlock() // This is either the actual service URL, or an empty string if the // description URL couldn't be reached/parsed. urls[idx] = serviceURL } for idx, url := range urls { go pingURL(idx, url) } wg.Wait() log.Debug().Str("pingTime", time.Since(startTime).String()).Msg("pinging all Manager URLs done") // Find the usable URLs. usableURLs := make([]string, 0) for _, url := range urls { if url != "" { usableURLs = append(usableURLs, url) } } return usableURLs }