Remove all the internal package that are now in the github.com/osbuild/images package and vendor it. A new function in internal/blueprint/ converts from an osbuild-composer blueprint to an images blueprint. This is necessary for keeping the blueprint implementation in both packages. In the future, the images package will change the blueprint (and most likely rename it) and it will only be part of the osbuild-composer internals and interface. The Convert() function will be responsible for converting the blueprint into the new configuration object.
70 lines
2.1 KiB
Go
70 lines
2.1 KiB
Go
// Package client - projects contains functions for the projects API
|
|
// Copyright (C) 2020 by Red Hat, Inc.
|
|
package client
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
// "strings"
|
|
|
|
"github.com/osbuild/images/pkg/rpmmd"
|
|
"github.com/osbuild/osbuild-composer/internal/weldr"
|
|
)
|
|
|
|
// ListAllProjectsV0 returns a list of all the available project names
|
|
func ListAllProjectsV0(socket *http.Client) ([]rpmmd.PackageInfo, *APIResponse, error) {
|
|
body, resp, err := GetJSONAll(socket, "/api/v0/projects/list")
|
|
if resp != nil || err != nil {
|
|
return nil, resp, err
|
|
}
|
|
var list weldr.ProjectsListV0
|
|
err = json.Unmarshal(body, &list)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
return list.Projects, nil, nil
|
|
}
|
|
|
|
// ListSomeProjectsV0 returns a list of all the available project names
|
|
func ListSomeProjectsV0(socket *http.Client, offset, limit int) ([]rpmmd.PackageInfo, *APIResponse, error) {
|
|
path := fmt.Sprintf("/api/v0/projects/list?offset=%d&limit=%d", offset, limit)
|
|
body, resp, err := GetRaw(socket, "GET", path)
|
|
if resp != nil || err != nil {
|
|
return nil, resp, err
|
|
}
|
|
var list weldr.ProjectsListV0
|
|
err = json.Unmarshal(body, &list)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
return list.Projects, nil, nil
|
|
}
|
|
|
|
// GetProjectsInfoV0 returns detailed project info on the named projects
|
|
func GetProjectsInfoV0(socket *http.Client, projNames string) ([]rpmmd.PackageInfo, *APIResponse, error) {
|
|
body, resp, err := GetRaw(socket, "GET", "/api/v0/projects/info/"+projNames)
|
|
if resp != nil || err != nil {
|
|
return nil, resp, err
|
|
}
|
|
var list weldr.ProjectsInfoV0
|
|
err = json.Unmarshal(body, &list)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
return list.Projects, nil, nil
|
|
}
|
|
|
|
//DepsolveProjectsV0 returns the dependencies of the names projects
|
|
func DepsolveProjectsV0(socket *http.Client, projNames string) ([]rpmmd.PackageSpec, *APIResponse, error) {
|
|
body, resp, err := GetRaw(socket, "GET", "/api/v0/projects/depsolve/"+projNames)
|
|
if resp != nil || err != nil {
|
|
return nil, resp, err
|
|
}
|
|
var deps weldr.ProjectsDependenciesV0
|
|
err = json.Unmarshal(body, &deps)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
return deps.Projects, nil, nil
|
|
}
|