File: fcosinternals.go

package info (click to toggle)
golang-github-coreos-stream-metadata-go 0.4.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 248 kB
  • sloc: makefile: 17
file content (33 lines) | stat: -rw-r--r-- 914 bytes parent folder | download | duplicates (2)
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
// Package internals contains functions for accessing
// the underlying "releases" and coreos-assembler builds
// backing streams.  General user code should avoid
// this package and use streams.
package internals

import (
	"fmt"
	"net/url"
)

// GetBaseURL returns the base URL
func GetBaseURL() url.URL {
	return url.URL{
		Scheme: "https",
		Host:   "builds.coreos.fedoraproject.org",
	}
}

// GetReleaseIndexURL returns the URL for the release index of a given stream.
// Avoid this unless you have a specific need to test a specific release.
func GetReleaseIndexURL(stream string) url.URL {
	u := GetBaseURL()
	u.Path = fmt.Sprintf("prod/streams/%s/releases.json", stream)
	return u
}

// GetCosaBuild returns the coreos-assembler build URL
func GetCosaBuild(stream, buildID, arch string) url.URL {
	u := GetBaseURL()
	u.Path = fmt.Sprintf("prod/streams/%s/builds/%s/%s/", stream, buildID, arch)
	return u
}