Skip to content

Commit

Permalink
offline-update: Fetch apps from publish run if present
Browse files Browse the repository at this point in the history
- Fetch apps from the publish run if the download uri is specified in
  the target custom data.
- If not, then fallback to fetching apps from the assemble run. It
  requires fetching of the corresponding CI target json if the
  specified target is prod or wave target.

Signed-off-by: Mike Sul <[email protected]>
  • Loading branch information
mike-sul committed Feb 29, 2024
1 parent 68d8ca1 commit d81c4d1
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 4 deletions.
6 changes: 6 additions & 0 deletions client/foundries.go
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,11 @@ type DeltaStats struct {
Size int `json:"size"`
}

type FetchedApps struct {
Uri string `json:"uri"`
Shortlist string `json:"shortlist"`
}

type TufCustom struct {
HardwareIds []string `json:"hardwareIds,omitempty"`
Tags []string `json:"tags,omitempty"`
Expand All @@ -271,6 +276,7 @@ type TufCustom struct {
CreatedAt string `json:"createdAt,omitempty"`
UpdatedAt string `json:"updatedAt,omitempty"`
LmpVer string `json:"lmp-ver,omitempty"`
FetchedApps *FetchedApps `json:"fetched-apps,omitempty"`
}

type Target struct {
Expand Down
29 changes: 25 additions & 4 deletions subcommands/targets/offline-update.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import (
"errors"
"fmt"
"io"
"net/http"
"os"
"path"
"strconv"
Expand All @@ -27,6 +28,7 @@ type (
ostreeVersion int
hardwareID string
buildTag string
fetchedApps *client.FetchedApps
}
)

Expand Down Expand Up @@ -121,7 +123,7 @@ Notice that multiple targets in the same directory is only supported in LmP >= v
fmt.Printf("Downloading an ostree repo from the Target's OE build %d...\n", ti.ostreeVersion)
subcommands.DieNotNil(downloadOstree(factory, ti.ostreeVersion, ti.hardwareID, dstDir), "Failed to download Target's ostree repo:")
if !ouNoApps {
if len(ouWave) > 0 || ouProd {
if (len(ouWave) > 0 || ouProd) && ti.fetchedApps == nil {
// Get the specified target from the list of factory targets to obtain the "original" tag/branch that produced
// the target, so we can find out the correct app bundle fetch URL.
targetCustomData, targetGetErr = api.TargetGet(factory, targetName)
Expand All @@ -132,8 +134,13 @@ Notice that multiple targets in the same directory is only supported in LmP >= v
subcommands.DieNotNil(err)
}

fmt.Printf("Downloading Apps fetched by the `assemble-system-image` run; build number: %d, tag: %s...\n", ti.version, ti.buildTag)
err = downloadApps(factory, targetName, ti.version, ti.buildTag, path.Join(dstDir, "apps"))
if ti.fetchedApps == nil {
fmt.Printf("Downloading Apps fetched by the `assemble-system-image` run; build number: %d, tag: %s...\n", ti.version, ti.buildTag)
err = downloadApps(factory, targetName, ti.version, ti.buildTag, path.Join(dstDir, "apps"))
} else {
fmt.Printf("Downloading Apps fetched by the `publish-compose-apps` run; apps: %s, uri: %s...\n", ti.fetchedApps.Shortlist, ti.fetchedApps.Uri)
err = downloadAppsArchive(ti.fetchedApps.Uri, path.Join(dstDir, "apps"))
}
if herr := client.AsHttpError(err); herr != nil && herr.Response.StatusCode == 404 {
fmt.Println("WARNING: The Target Apps were not fetched by the `assemble` run, make sure that App preloading is enabled if needed. The update won't include any Apps!")
} else {
Expand Down Expand Up @@ -161,7 +168,10 @@ func getTargetInfo(targetFile *tuf.FileMeta) (*ouTargetInfo, error) {
return nil, err
}
info.hardwareID = custom.HardwareIds[0]
info.buildTag = custom.Tags[0] // See the assemble.py script in ci-scripts https://github.com/foundriesio/ci-scripts/blob/18b4fb154c37b6ad1bc6e7b7903a540b7a758f5d/assemble.py#L300
info.fetchedApps = custom.FetchedApps
if info.fetchedApps == nil {
info.buildTag = custom.Tags[0] // See the assemble.py script in ci-scripts https://github.com/foundriesio/ci-scripts/blob/18b4fb154c37b6ad1bc6e7b7903a540b7a758f5d/assemble.py#L300
}
info.ostreeVersion = info.version
if len(custom.OrigUri) > 0 {
indx := strings.LastIndexByte(custom.OrigUri, '/')
Expand Down Expand Up @@ -321,8 +331,19 @@ func downloadApps(factory string, targetName string, targetVer int, tag string,
})
}

func downloadAppsArchive(uri string, dstDir string) error {
resp, err := api.RawGet(uri, nil)
return processDownloadResponse(uri, resp, err, func(r io.Reader) error {
return untar(r, dstDir)
})
}

func downloadItem(factory string, targetVer int, runName string, artifactPath string, storeHandler func(r io.Reader) error) error {
resp, err := api.JobservRunArtifact(factory, targetVer, runName, artifactPath)
return processDownloadResponse(artifactPath, resp, err, storeHandler)
}

func processDownloadResponse(artifactPath string, resp *http.Response, err error, storeHandler func(r io.Reader) error) error {
if err != nil {
return err
}
Expand Down

0 comments on commit d81c4d1

Please sign in to comment.