-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathslug_builder_info.go
More file actions
63 lines (50 loc) · 2.53 KB
/
slug_builder_info.go
File metadata and controls
63 lines (50 loc) · 2.53 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package storage
import (
"fmt"
"github.com/deis/builder/pkg/gitreceive/git"
)
const (
slugTGZName = "slug.tgz"
)
// SlugBuilderInfo contains all of the object storage related information needed to pass to a
// slug builder.
type SlugBuilderInfo struct {
pushKey string
pushURL string
tarKey string
tarURL string
}
// NewSlugBuilderInfo creates and populates a new SlugBuilderInfo based on the given data.
func NewSlugBuilderInfo(s3Endpoint *Endpoint, bucket, appName, slugName string, gitSha *git.SHA) *SlugBuilderInfo {
tarKey := fmt.Sprintf("home/%s/tar", slugName)
// this is where the controller tells slugrunner to download the slug from, so we have to
// tell slugbuilder to upload it to here
pushKey := fmt.Sprintf("home/%s:git-%s/push", appName, gitSha.Short())
return &SlugBuilderInfo{
pushKey: pushKey,
pushURL: fmt.Sprintf("%s/%s/%s", s3Endpoint.FullURL(), bucket, pushKey),
tarKey: tarKey,
tarURL: fmt.Sprintf("%s/%s/%s", s3Endpoint.FullURL(), bucket, tarKey),
}
}
// PushKey returns the object storage key that the slug builder will store the slug in.
// The returned value only contains the path to the folder, not including the final filename.
func (s SlugBuilderInfo) PushKey() string { return s.pushKey }
// PushURL returns the complete object storage URL that the slug builder will store the slug in.
// The returned value only contains the URL to the folder, not including the final filename.
func (s SlugBuilderInfo) PushURL() string { return s.pushURL }
// TarKey returns the object storage key from which the slug builder will download for the tarball
// (from which it uses to build the slug). The returned value only contains the path to the
// folder, not including the final filename.
func (s SlugBuilderInfo) TarKey() string { return s.tarKey }
// TarURL returns the complete object storage URL that the slug builder will download the tarball
// from. The returned value only contains the URL to the folder, not including the final filename.
func (s SlugBuilderInfo) TarURL() string { return s.tarURL }
// AbsoluteSlugObjectKey returns the PushKey plus the final filename of the slug.
func (s SlugBuilderInfo) AbsoluteSlugObjectKey() string { return s.PushKey() + "/" + slugTGZName }
// AbsoluteProcfileKey returns the PushKey plus the standard procfile name.
func (s SlugBuilderInfo) AbsoluteProcfileKey() string { return s.PushKey() + "/Procfile" }
// AbsoluteSlugURL returns the PushURL plus the final filename of the slug.
func (s SlugBuilderInfo) AbsoluteSlugURL() string {
return s.PushURL() + "/" + slugTGZName
}