194 lines
5.0 KiB
Go
194 lines
5.0 KiB
Go
package response
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/hashicorp/terraform-registry/api/models"
|
|
)
|
|
|
|
// Module is the response structure with the data for a single module version.
|
|
type Module struct {
|
|
ID string `json:"id"`
|
|
|
|
//---------------------------------------------------------------
|
|
// Metadata about the overall module.
|
|
|
|
Owner string `json:"owner"`
|
|
Namespace string `json:"namespace"`
|
|
Name string `json:"name"`
|
|
Version string `json:"version"`
|
|
Provider string `json:"provider"`
|
|
Description string `json:"description"`
|
|
Source string `json:"source"`
|
|
PublishedAt time.Time `json:"published_at"`
|
|
Downloads int `json:"downloads"`
|
|
Verified bool `json:"verified"`
|
|
}
|
|
|
|
// ModuleDetail represents a module in full detail.
|
|
type ModuleDetail struct {
|
|
Module
|
|
|
|
//---------------------------------------------------------------
|
|
// Metadata about the overall module. This is only available when
|
|
// requesting the specific module (not in list responses).
|
|
|
|
// Root is the root module.
|
|
Root *ModuleSubmodule `json:"root"`
|
|
|
|
// Submodules are the other submodules that are available within
|
|
// this module.
|
|
Submodules []*ModuleSubmodule `json:"submodules"`
|
|
|
|
//---------------------------------------------------------------
|
|
// The fields below are only set when requesting this specific
|
|
// module. They are available to easily know all available versions
|
|
// and providers without multiple API calls.
|
|
|
|
Providers []string `json:"providers"` // All available providers
|
|
Versions []string `json:"versions"` // All versions
|
|
}
|
|
|
|
// ModuleSubmodule is the metadata about a specific submodule within
|
|
// a module. This includes the root module as a special case.
|
|
type ModuleSubmodule struct {
|
|
Path string `json:"path"`
|
|
Readme string `json:"readme"`
|
|
Empty bool `json:"empty"`
|
|
|
|
Inputs []*ModuleInput `json:"inputs"`
|
|
Outputs []*ModuleOutput `json:"outputs"`
|
|
Dependencies []*ModuleDep `json:"dependencies"`
|
|
Resources []*ModuleResource `json:"resources"`
|
|
}
|
|
|
|
// ModuleInput is an input for a module.
|
|
type ModuleInput struct {
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Default string `json:"default"`
|
|
}
|
|
|
|
// ModuleOutput is an output for a module.
|
|
type ModuleOutput struct {
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
}
|
|
|
|
// ModuleDep is an output for a module.
|
|
type ModuleDep struct {
|
|
Name string `json:"name"`
|
|
Source string `json:"source"`
|
|
Version string `json:"version"`
|
|
}
|
|
|
|
// ModuleProviderDep is the output for a provider dependency
|
|
type ModuleProviderDep struct {
|
|
Name string `json:"name"`
|
|
Version string `json:"version"`
|
|
}
|
|
|
|
// ModuleResource is an output for a module.
|
|
type ModuleResource struct {
|
|
Name string `json:"name"`
|
|
Type string `json:"type"`
|
|
}
|
|
|
|
// NewModule creates a Module response object from a model.
|
|
func NewModule(mv *models.ModuleVersion) *Module {
|
|
m := mv.ModuleProvider.Module
|
|
mp := mv.ModuleProvider
|
|
|
|
// Build the full module
|
|
return &Module{
|
|
ID: fmt.Sprintf(
|
|
"%s/%s/%s/%s",
|
|
m.Namespace,
|
|
m.Name,
|
|
mp.Provider,
|
|
mv.Version),
|
|
|
|
// Base metadata
|
|
Owner: m.User.Username,
|
|
Namespace: m.Namespace,
|
|
Name: m.Name,
|
|
Version: mv.Version,
|
|
Provider: mv.ModuleProvider.Provider,
|
|
Description: mv.Description,
|
|
Source: mp.Source,
|
|
PublishedAt: mv.PublishedAt,
|
|
Downloads: int(mp.Downloads),
|
|
Verified: m.Verified,
|
|
}
|
|
}
|
|
|
|
// NewModuleDetail creates a ModuleDetail response object from a model.
|
|
func NewModuleDetail(mv *models.ModuleVersion) *ModuleDetail {
|
|
m := NewModule(mv)
|
|
|
|
// Build the submodule response objects
|
|
var submodules []*ModuleSubmodule
|
|
var submoduleRoot *ModuleSubmodule
|
|
for _, sub := range mv.Submodules {
|
|
resp := NewModuleSubmodule(&sub)
|
|
|
|
if sub.Root() {
|
|
submoduleRoot = resp
|
|
} else {
|
|
submodules = append(submodules, resp)
|
|
}
|
|
}
|
|
return &ModuleDetail{
|
|
Module: *m,
|
|
Root: submoduleRoot,
|
|
Submodules: submodules,
|
|
}
|
|
}
|
|
|
|
// NewModuleSubmodule creates a ModuleSubmodule response object from a model.
|
|
func NewModuleSubmodule(m *models.ModuleSubmodule) *ModuleSubmodule {
|
|
inputs := make([]*ModuleInput, 0, len(m.Variables))
|
|
for _, v := range m.Variables {
|
|
inputs = append(inputs, &ModuleInput{
|
|
Name: v.Name,
|
|
Description: v.Description.String,
|
|
Default: v.Default.String,
|
|
})
|
|
}
|
|
|
|
outputs := make([]*ModuleOutput, 0, len(m.Outputs))
|
|
for _, v := range m.Outputs {
|
|
outputs = append(outputs, &ModuleOutput{
|
|
Name: v.Name,
|
|
Description: v.Description.String,
|
|
})
|
|
}
|
|
|
|
deps := make([]*ModuleDep, 0, len(m.Dependencies))
|
|
for _, v := range m.Dependencies {
|
|
deps = append(deps, &ModuleDep{
|
|
Name: v.Name,
|
|
Source: v.Source,
|
|
})
|
|
}
|
|
|
|
resources := make([]*ModuleResource, 0, len(m.Resources))
|
|
for _, v := range m.Resources {
|
|
resources = append(resources, &ModuleResource{
|
|
Name: v.Name,
|
|
Type: v.Type,
|
|
})
|
|
}
|
|
|
|
return &ModuleSubmodule{
|
|
Path: m.Path,
|
|
Readme: m.Readme,
|
|
Empty: m.Empty,
|
|
Inputs: inputs,
|
|
Outputs: outputs,
|
|
Dependencies: deps,
|
|
Resources: resources,
|
|
}
|
|
}
|