123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- package stream
- import (
- "fmt"
- "github.com/0xJacky/Nginx-UI/internal/helper"
- "github.com/0xJacky/Nginx-UI/internal/nginx"
- "github.com/0xJacky/Nginx-UI/internal/notification"
- "github.com/0xJacky/Nginx-UI/query"
- "github.com/go-resty/resty/v2"
- "github.com/uozi-tech/cosy/logger"
- "net/http"
- "os"
- "runtime"
- "sync"
- )
- func Rename(oldName string, newName string) (err error) {
- oldPath := nginx.GetConfPath("streams-available", oldName)
- newPath := nginx.GetConfPath("streams-available", newName)
- if oldPath == newPath {
- return
- }
- // check if dst file exists, do not rename
- if helper.FileExists(newPath) {
- return ErrDstFileExists
- }
- s := query.Site
- _, _ = s.Where(s.Path.Eq(oldPath)).Update(s.Path, newPath)
- err = os.Rename(oldPath, newPath)
- if err != nil {
- return
- }
- // recreate a soft link
- oldEnabledConfigFilePath := nginx.GetConfPath("streams-enabled", oldName)
- if helper.SymbolLinkExists(oldEnabledConfigFilePath) {
- _ = os.Remove(oldEnabledConfigFilePath)
- newEnabledConfigFilePath := nginx.GetConfPath("streams-enabled", newName)
- err = os.Symlink(newPath, newEnabledConfigFilePath)
- if err != nil {
- return
- }
- }
- // test nginx configuration
- output := nginx.TestConf()
- if nginx.GetLogLevel(output) > nginx.Warn {
- return fmt.Errorf("%s", output)
- }
- // reload nginx
- output = nginx.Reload()
- if nginx.GetLogLevel(output) > nginx.Warn {
- return fmt.Errorf("%s", output)
- }
- go syncRename(oldName, newName)
- return
- }
- func syncRename(oldName, newName string) {
- nodes := getSyncNodes(newName)
- wg := &sync.WaitGroup{}
- wg.Add(len(nodes))
- for _, node := range nodes {
- go func() {
- defer func() {
- if err := recover(); err != nil {
- buf := make([]byte, 1024)
- runtime.Stack(buf, false)
- logger.Error(err)
- }
- }()
- defer wg.Done()
- client := resty.New()
- client.SetBaseURL(node.URL)
- resp, err := client.R().
- SetHeader("X-Node-Secret", node.Token).
- SetBody(map[string]string{
- "new_name": newName,
- }).
- Post(fmt.Sprintf("/api/streams/%s/rename", oldName))
- if err != nil {
- notification.Error("Rename Remote Stream Error", err.Error(), nil)
- return
- }
- if resp.StatusCode() != http.StatusOK {
- notification.Error("Rename Remote Stream Error", "Rename stream %{name} to %{new_name} on %{node} failed",
- NewSyncResult(node.Name, oldName, resp).
- SetNewName(newName))
- return
- }
- notification.Success("Rename Remote Stream Success", "Rename stream %{name} to %{new_name} on %{node} successfully",
- NewSyncResult(node.Name, oldName, resp).
- SetNewName(newName))
- }()
- }
- wg.Wait()
- }
|