main.go 1.9 KB

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