1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- package nginx
- import (
- "bufio"
- "fmt"
- "strings"
- )
- func buildComments(orig string, indent int) (content string) {
- scanner := bufio.NewScanner(strings.NewReader(orig))
- for scanner.Scan() {
- content += strings.Repeat("\t", indent) + "# " + scanner.Text() + "\n"
- }
- content = strings.TrimLeft(content, "\n")
- return
- }
- func (c *NgxConfig) BuildConfig() (content string) {
- // Custom
- if c.Custom != "" {
- content += fmtCode(c.Custom)
- content += "\n\n"
- }
- // Upstreams
- for _, u := range c.Upstreams {
- upstream := ""
- var comments string
- for _, directive := range u.Directives {
- if directive.Comments != "" {
- comments = buildComments(directive.Comments, 1)
- }
- upstream += fmt.Sprintf("%s\t%s;\n", comments, directive.Orig())
- }
- comments = buildComments(u.Comments, 1)
- content += fmt.Sprintf("upstream %s {\n%s%s}\n\n", u.Name, comments, upstream)
- }
- // Servers
- for _, s := range c.Servers {
- server := ""
- // directives
- for _, directive := range s.Directives {
- var comments string
- if directive.Comments != "" {
- comments = buildComments(directive.Comments, 1)
- }
- if directive.Directive == If {
- server += fmt.Sprintf("%s%s\n", comments, fmtCodeWithIndent(directive.Params, 1))
- } else if directive.Params != "" {
- server += fmt.Sprintf("%s\t%s;\n", comments, directive.Orig())
- }
- }
- if len(s.Directives) > 0 {
- server += "\n"
- }
- // locations
- locations := ""
- for _, location := range s.Locations {
- locationContent := ""
- scanner := bufio.NewScanner(strings.NewReader(location.Content))
- for scanner.Scan() {
- locationContent += "\t\t" + scanner.Text() + "\n"
- }
- var comments string
- if location.Comments != "" {
- comments = buildComments(location.Comments, 1)
- }
- locations += fmt.Sprintf("%s\tlocation %s {\n%s\t}\n\n", comments, location.Path, locationContent)
- }
- server += locations
- content += fmt.Sprintf("server {\n%s}\n\n", server)
- }
- return
- }
|