main.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package main
  2. import (
  3. "fmt"
  4. "net/http"
  5. "os"
  6. "strconv"
  7. "strings"
  8. )
  9. func main() {
  10. serverPort := 12345
  11. path := ""
  12. if len(os.Args) > 1 {
  13. for k, v := range os.Args {
  14. if k == 0 {
  15. continue
  16. }
  17. arg := strings.TrimSpace(v)
  18. hasPortL := strings.HasPrefix(arg, "--port=")
  19. hasPortS := strings.HasPrefix(arg, "-p=")
  20. hasPath := strings.HasPrefix(arg, "--path=")
  21. if hasPortL {
  22. i, err := strconv.ParseInt(strings.ReplaceAll(arg, "--port=", ""), 10, 32)
  23. if err == nil {
  24. serverPort = int(i)
  25. break
  26. }
  27. }
  28. if hasPortS {
  29. i, err := strconv.ParseInt(strings.ReplaceAll(arg, "-p=", ""), 10, 32)
  30. if err == nil {
  31. serverPort = int(i)
  32. break
  33. }
  34. }
  35. if hasPath {
  36. path = strings.ReplaceAll(arg, "--path=", "")
  37. }
  38. }
  39. }
  40. if strings.HasSuffix(path, "/") {
  41. path = strings.TrimSuffix(path, "/")
  42. }
  43. if len(path) > 0 && !strings.HasPrefix(path, "/") {
  44. path = fmt.Sprintf("/%s", path)
  45. }
  46. http.HandleFunc(path, indexHandler)
  47. http.HandleFunc(fmt.Sprintf("%s/jrebel/leases", path), jrebelLeasesHandler)
  48. http.HandleFunc(fmt.Sprintf("%s/jrebel/leases/1", path), jrebelLeases1Handler)
  49. http.HandleFunc(fmt.Sprintf("%s/agent/leases", path), jrebelLeasesHandler)
  50. http.HandleFunc(fmt.Sprintf("%s/agent/leases/1", path), jrebelLeases1Handler)
  51. http.HandleFunc(fmt.Sprintf("%s/jrebel/validate-connection", path), jrebelValidateHandler)
  52. http.HandleFunc(fmt.Sprintf("%s/rpc/ping.action", path), pingHandler)
  53. http.HandleFunc(fmt.Sprintf("%s/rpc/obtainTicket.action", path), obtainTicketHandler)
  54. http.HandleFunc(fmt.Sprintf("%s/rpc/releaseTicket.action", path), releaseTicketHandler)
  55. fmt.Printf("start server with port = %d\n", serverPort)
  56. _ = http.ListenAndServe(":"+strconv.Itoa(serverPort), nil)
  57. }