edit.html 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <div class="row tile">
  2. <div class="col-md-12 col-md-auto">
  3. <div class="ibox float-e-margins">
  4. <h3 class="ibox-title">编辑</h3>
  5. <div class="ibox-content">
  6. <form class="form-horizontal">
  7. <input type="hidden" name="id" value="{{.t.Id}}">
  8. <div class="form-group">
  9. <label class="col-sm-2 control-label" langtag="info-mode">类型 </label>
  10. <div class="col-sm-10">
  11. <select class="form-control" name="type" id="type">
  12. <option {{if eq "tcp" .t.Mode}}selected{{end}} value="tcp">tcp</option>
  13. <option {{if eq "udp" .t.Mode}}selected{{end}} value="udp">udp</option>
  14. <option {{if eq "socks5" .t.Mode}}selected{{end}} value="socks5">socks5
  15. </option>
  16. <option {{if eq "httpProxy" .t.Mode}}selected{{end}} value="httpProxy">http</option>
  17. <option {{if eq "secret" .t.Mode}}selected{{end}} value="secret">secret</option>
  18. <option {{if eq "p2p" .t.Mode}}selected{{end}} value="p2p">p2p</option>
  19. <option {{if eq "file" .t.Mode}}selected{{end}} value="file">file</option>
  20. </select>
  21. </div>
  22. </div>
  23. <div class="form-group">
  24. <label class="col-sm-2 control-label" langtag="info-remark">备注</label>
  25. <div class="col-sm-10">
  26. <input value="{{.t.Remark}}" class="form-control" type="text" name="remark"
  27. placeholder="empty means to be unrestricted">
  28. </div>
  29. </div>
  30. <div class="form-group" id="server_ip">
  31. <label class="col-sm-2 control-label" langtag="info-server-ip">服务端ip</label>
  32. <div class="col-sm-10">
  33. <input class="form-control" type="text" value="{{.t.ServerIp}}" name="server_ip"
  34. placeholder="such as 0.0.0.0">
  35. </div>
  36. </div>
  37. <div class="form-group" id="port">
  38. <label class="col-sm-2 control-label" langtag="info-server-port">服务端端口</label>
  39. <div class="col-sm-10">
  40. <input value="{{.t.Port}}" class="form-control" type="text" name="port"
  41. placeholder="such as 8024">
  42. </div>
  43. </div>
  44. <div class="form-group" id="target">
  45. <label class="col-sm-2 control-label" langtag="info-target">内网目标(ip:端口)</label>
  46. <div class="col-sm-10">
  47. <textarea class="form-control" name="target" rows="4" placeholder="10.1.50.203:22
  48. 10.1.50.202:22">{{.t.Target.TargetStr}}</textarea>
  49. <span class="help-block m-b-none">can only fill in ports if it is local machine proxy, only tcp supports load balancing
  50. </span></div>
  51. </div>
  52. <div class="form-group" id="client_id">
  53. <label class="col-sm-2 control-label" langtag="info-client-id">客户端id</label>
  54. <div class="col-sm-10">
  55. <input value="{{.t.Client.Id}}" value="{{.client_id}}" class="form-control" type="text"
  56. name="client_id"
  57. placeholder="id of client">
  58. </div>
  59. </div>
  60. <div class="form-group" id="local_path">
  61. <label class="col-sm-2 control-label" langtag="info-local-path">本地路径</label>
  62. <div class="col-sm-10">
  63. <input value="{{.t.LocalPath}}" class="form-control" type="text" name="local_path"
  64. placeholder="such as /tmp">
  65. </div>
  66. </div>
  67. <div class="form-group" id="strip_pre">
  68. <label class="col-sm-2 control-label" langtag="info-strip-pre">访问前缀</label>
  69. <div class="col-sm-10">
  70. <input value="{{.t.StripPre}}" class="form-control" type="text" name="strip_pre"
  71. placeholder="such as static">
  72. </div>
  73. </div>
  74. <div class="form-group" id="password">
  75. <label class="col-sm-2 control-label" langtag="info-unique-vkey">唯一验证密钥</label>
  76. <div class="col-sm-10">
  77. <input value="{{.t.Password}}" class="form-control" type="text" name="password"
  78. placeholder="unique identification key">
  79. <span class="help-block m-b-none">when p2p or secret</span>
  80. </div>
  81. </div>
  82. <div class="hr-line-dashed"></div>
  83. <div class="form-group">
  84. <div class="col-sm-4 col-sm-offset-2">
  85. <button class="btn btn-success" href="#" id="add"><i
  86. class="fa fa-fw fa-lg fa-eye"></i><span langtag="info-save">保存</span>
  87. </button>
  88. </div>
  89. </div>
  90. </form>
  91. </div>
  92. </div>
  93. </div>
  94. </div>
  95. <script>
  96. var arr = []
  97. arr["all"] = ["type", "port", "compress", "u", "p", "target", "password", "local_path", "strip_pre"]
  98. arr["tcp"] = ["type", "port", "target", "u", "p", "compress"]
  99. arr["udp"] = ["type", "port", "target", "compress"]
  100. arr["socks5"] = ["type", "port", "compress", "u", "p"]
  101. arr["httpProxy"] = ["type", "port", "compress", "u", "p"]
  102. arr["secret"] = ["type", "target", "compress", "u", "p", "password"]
  103. arr["p2p"] = ["type", "password"]
  104. arr["file"] = ["type", "port", "local_path", "strip_pre"]
  105. arrClientHide = ["compress", "u", "p", "crypt", "mux"]
  106. function resetForm() {
  107. for (var i = 0; i < arr["all"].length; i++) {
  108. $("#" + arr["all"][i]).css("display", "none")
  109. }
  110. o = $("#type option:selected").val()
  111. for (var i = 0; i < arr[o].length; i++) {
  112. $("#" + arr[o][i]).css("display", "block")
  113. }
  114. }
  115. function resetClientCnf() {
  116. for (var i = 0; i < arrClientHide.length; i++) {
  117. $("#" + arrClientHide[i]).css("display", "block")
  118. }
  119. op = $("#use_client option:selected").val()
  120. if (op == 1) {
  121. for (var i = 0; i < arrClientHide.length; i++) {
  122. $("#" + arrClientHide[i]).css("display", "none")
  123. }
  124. }
  125. }
  126. $(function () {
  127. resetForm()
  128. resetClientCnf()
  129. $("#type").on("change", function () {
  130. resetForm()
  131. resetClientCnf()
  132. })
  133. $("#use_client").on("change", function () {
  134. resetForm()
  135. resetClientCnf()
  136. })
  137. $("#add").on("click", function () {
  138. $.ajax({
  139. type: "POST",
  140. url: "/index/edit",
  141. data: $("form").serializeArray(),
  142. success: function (res) {
  143. alert(res.msg)
  144. if (res.status) {
  145. history.back(-1)
  146. }
  147. }
  148. })
  149. })
  150. })
  151. </script>