mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 02:15:48 +02:00
83 lines
1.9 KiB
Go
83 lines
1.9 KiB
Go
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 {
|
|
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
|
|
}
|