github.com/prudhvitella/terraform@v0.6.7-0.20151120205041-cf87ede5ddc5/command/version.go (about)

     1  package command
     2  
     3  import (
     4  	"bytes"
     5  	"fmt"
     6  )
     7  
     8  // VersionCommand is a Command implementation prints the version.
     9  type VersionCommand struct {
    10  	Meta
    11  
    12  	Revision          string
    13  	Version           string
    14  	VersionPrerelease string
    15  	CheckFunc         VersionCheckFunc
    16  }
    17  
    18  // VersionCheckFunc is the callback called by the Version command to
    19  // check if there is a new version of Terraform.
    20  type VersionCheckFunc func() (VersionCheckInfo, error)
    21  
    22  // VersionCheckInfo is the return value for the VersionCheckFunc callback
    23  // and tells the Version command information about the latest version
    24  // of Terraform.
    25  type VersionCheckInfo struct {
    26  	Outdated bool
    27  	Latest   string
    28  	Alerts   []string
    29  }
    30  
    31  func (c *VersionCommand) Help() string {
    32  	return ""
    33  }
    34  
    35  func (c *VersionCommand) Run(args []string) int {
    36  	var versionString bytes.Buffer
    37  	args = c.Meta.process(args, false)
    38  
    39  	fmt.Fprintf(&versionString, "Terraform v%s", c.Version)
    40  	if c.VersionPrerelease != "" {
    41  		fmt.Fprintf(&versionString, "-%s", c.VersionPrerelease)
    42  
    43  		if c.Revision != "" {
    44  			fmt.Fprintf(&versionString, " (%s)", c.Revision)
    45  		}
    46  	}
    47  
    48  	c.Ui.Output(versionString.String())
    49  
    50  	// If we have a version check function, then let's check for
    51  	// the latest version as well.
    52  	if c.CheckFunc != nil {
    53  		// Separate the prior output with a newline
    54  		c.Ui.Output("")
    55  
    56  		// Check the latest version
    57  		info, err := c.CheckFunc()
    58  		if err != nil {
    59  			c.Ui.Error(fmt.Sprintf(
    60  				"Error checking latest version: %s", err))
    61  		}
    62  		if info.Outdated {
    63  			c.Ui.Output(fmt.Sprintf(
    64  				"Your version of Terraform is out of date! The latest version\n"+
    65  					"is %s. You can update by downloading from www.terraform.io",
    66  				info.Latest))
    67  		}
    68  	}
    69  
    70  	return 0
    71  }
    72  
    73  func (c *VersionCommand) Synopsis() string {
    74  	return "Prints the Terraform version"
    75  }