mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
| package commands
 | |
| 
 | |
| import (
 | |
| 	"encoding/json"
 | |
| 	"errors"
 | |
| 	"fmt"
 | |
| 	"io/ioutil"
 | |
| 
 | |
| 	"github.com/go-openapi/loads"
 | |
| 	"github.com/go-openapi/spec"
 | |
| 	"github.com/go-openapi/swag"
 | |
| 	flags "github.com/jessevdk/go-flags"
 | |
| 	yaml "gopkg.in/yaml.v2"
 | |
| )
 | |
| 
 | |
| // ExpandSpec is a command that expands the $refs in a swagger document.
 | |
| //
 | |
| // There are no specific options for this expansion.
 | |
| type ExpandSpec struct {
 | |
| 	Compact bool           `long:"compact" description:"applies to JSON formatted specs. When present, doesn't prettify the json"`
 | |
| 	Output  flags.Filename `long:"output" short:"o" description:"the file to write to"`
 | |
| 	Format  string         `long:"format" description:"the format for the spec document" default:"json" choice:"yaml" choice:"json"`
 | |
| }
 | |
| 
 | |
| // Execute expands the spec
 | |
| func (c *ExpandSpec) Execute(args []string) error {
 | |
| 	if len(args) != 1 {
 | |
| 		return errors.New("expand command requires the single swagger document url to be specified")
 | |
| 	}
 | |
| 
 | |
| 	swaggerDoc := args[0]
 | |
| 	specDoc, err := loads.Spec(swaggerDoc)
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	exp, err := specDoc.Expanded()
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	return writeToFile(exp.Spec(), !c.Compact, c.Format, string(c.Output))
 | |
| }
 | |
| 
 | |
| func writeToFile(swspec *spec.Swagger, pretty bool, format string, output string) error {
 | |
| 	var b []byte
 | |
| 	var err error
 | |
| 	asJSON := format == "json"
 | |
| 
 | |
| 	if pretty && asJSON {
 | |
| 		b, err = json.MarshalIndent(swspec, "", "  ")
 | |
| 	} else if asJSON {
 | |
| 		b, err = json.Marshal(swspec)
 | |
| 	} else {
 | |
| 		// marshals as YAML
 | |
| 		b, err = json.Marshal(swspec)
 | |
| 		if err == nil {
 | |
| 			d, ery := swag.BytesToYAMLDoc(b)
 | |
| 			if ery != nil {
 | |
| 				return ery
 | |
| 			}
 | |
| 			b, err = yaml.Marshal(d)
 | |
| 		}
 | |
| 	}
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	if output == "" {
 | |
| 		fmt.Println(string(b))
 | |
| 		return nil
 | |
| 	}
 | |
| 	return ioutil.WriteFile(output, b, 0644) // #nosec
 | |
| }
 |