mirror of
https://github.com/docker/compose.git
synced 2026-06-28 04:03:48 +00:00
Providers can now send rawsetenv messages to inject environment variables into dependent services without the automatic service name prefix. This enables use cases where applications require exact variable names that cannot be altered. Closes #13727 Signed-off-by: Yohta Kimura <38206553+rajyan@users.noreply.github.com> Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
168 lines
4.4 KiB
Go
168 lines
4.4 KiB
Go
/*
|
|
Copyright 2020 Docker Compose CLI authors
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/pflag"
|
|
)
|
|
|
|
func main() {
|
|
cmd := &cobra.Command{
|
|
Short: "Compose Provider Example",
|
|
Use: "demo",
|
|
}
|
|
cmd.AddCommand(composeCommand())
|
|
err := cmd.Execute()
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
type options struct {
|
|
db string
|
|
size int
|
|
}
|
|
|
|
func composeCommand() *cobra.Command {
|
|
c := &cobra.Command{
|
|
Use: "compose EVENT",
|
|
TraverseChildren: true,
|
|
}
|
|
c.PersistentFlags().String("project-name", "", "compose project name") // unused
|
|
|
|
var options options
|
|
upCmd := &cobra.Command{
|
|
Use: "up",
|
|
Run: func(_ *cobra.Command, args []string) {
|
|
up(options, args)
|
|
},
|
|
Args: cobra.ExactArgs(1),
|
|
}
|
|
|
|
upCmd.Flags().StringVar(&options.db, "type", "", "Database type (mysql, postgres, etc.)")
|
|
_ = upCmd.MarkFlagRequired("type")
|
|
upCmd.Flags().IntVar(&options.size, "size", 10, "Database size in GB")
|
|
upCmd.Flags().String("name", "", "Name of the database to be created")
|
|
_ = upCmd.MarkFlagRequired("name")
|
|
|
|
downCmd := &cobra.Command{
|
|
Use: "down",
|
|
Run: down,
|
|
Args: cobra.ExactArgs(1),
|
|
}
|
|
downCmd.Flags().String("name", "", "Name of the database to be deleted")
|
|
_ = downCmd.MarkFlagRequired("name")
|
|
|
|
stopCmd := &cobra.Command{
|
|
Use: "stop",
|
|
Run: stop,
|
|
Args: cobra.ExactArgs(1),
|
|
}
|
|
|
|
c.AddCommand(upCmd, downCmd, stopCmd)
|
|
c.AddCommand(metadataCommand(upCmd, downCmd, stopCmd))
|
|
return c
|
|
}
|
|
|
|
const lineSeparator = "\n"
|
|
|
|
func up(options options, args []string) {
|
|
servicename := args[0]
|
|
fmt.Printf(`{ "type": "debug", "message": "Starting %s" }%s`, servicename, lineSeparator)
|
|
|
|
for i := 0; i < options.size; i += 10 {
|
|
time.Sleep(1 * time.Second)
|
|
fmt.Printf(`{ "type": "info", "message": "Processing ... %d%%" }%s`, i*100/options.size, lineSeparator)
|
|
}
|
|
fmt.Printf(`{ "type": "setenv", "message": "URL=https://magic.cloud/%s" }%s`, servicename, lineSeparator)
|
|
fmt.Printf(`{ "type": "rawsetenv", "message": "CLOUD_REGION=us-east-1" }%s`, lineSeparator)
|
|
}
|
|
|
|
func down(_ *cobra.Command, _ []string) {
|
|
fmt.Printf(`{ "type": "error", "message": "Permission error" }%s`, lineSeparator)
|
|
}
|
|
|
|
func stop(_ *cobra.Command, _ []string) {
|
|
if marker := os.Getenv("PROVIDER_STOP_MARKER"); marker != "" {
|
|
_ = os.WriteFile(marker, []byte("stopped"), 0o600)
|
|
}
|
|
}
|
|
|
|
func metadataCommand(upCmd, downCmd, stopCmd *cobra.Command) *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "metadata",
|
|
Run: func(cmd *cobra.Command, _ []string) {
|
|
metadata(upCmd, downCmd, stopCmd)
|
|
},
|
|
Args: cobra.NoArgs,
|
|
}
|
|
}
|
|
|
|
func metadata(upCmd, downCmd, stopCmd *cobra.Command) {
|
|
metadata := ProviderMetadata{}
|
|
metadata.Description = "Manage services on AwesomeCloud"
|
|
metadata.Up = commandParameters(upCmd)
|
|
metadata.Down = commandParameters(downCmd)
|
|
stopParams := commandParameters(stopCmd)
|
|
metadata.Stop = &stopParams
|
|
jsonMetadata, err := json.Marshal(metadata)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
fmt.Println(string(jsonMetadata))
|
|
}
|
|
|
|
func commandParameters(cmd *cobra.Command) CommandMetadata {
|
|
cmdMetadata := CommandMetadata{}
|
|
cmd.Flags().VisitAll(func(f *pflag.Flag) {
|
|
_, isRequired := f.Annotations[cobra.BashCompOneRequiredFlag]
|
|
cmdMetadata.Parameters = append(cmdMetadata.Parameters, Metadata{
|
|
Name: f.Name,
|
|
Description: f.Usage,
|
|
Required: isRequired,
|
|
Type: f.Value.Type(),
|
|
Default: f.DefValue,
|
|
})
|
|
})
|
|
return cmdMetadata
|
|
}
|
|
|
|
type ProviderMetadata struct {
|
|
Description string `json:"description"`
|
|
Up CommandMetadata `json:"up"`
|
|
Down CommandMetadata `json:"down"`
|
|
Stop *CommandMetadata `json:"stop,omitempty"`
|
|
}
|
|
|
|
type CommandMetadata struct {
|
|
Parameters []Metadata `json:"parameters"`
|
|
}
|
|
|
|
type Metadata struct {
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Required bool `json:"required"`
|
|
Type string `json:"type"`
|
|
Default string `json:"default,omitempty"`
|
|
}
|