gateway.js 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. const Mock = require('mockjs')
  2. const PROTOCOLS = ['http', 'https', 'MQ', 'FTP']
  3. const APITYPE = ['post', 'get', 'head', 'put', 'delete', 'options', 'trace', 'connect']
  4. const DATATYPE = ['number', 'string', 'boolean', 'array', 'object']
  5. module.exports = [
  6. {
  7. url: '/vue-admin-template/gateway/interface/list',
  8. type: 'get',
  9. response: config => {
  10. const data = Mock.mock({
  11. 'items|11': [{
  12. 'id|+1': 1,
  13. title: '@word(4, 10)',
  14. description: '/api/@word(10,20)/@word(5,10)',
  15. 'protocol|1': PROTOCOLS,
  16. flag: '@boolean'
  17. }]
  18. })
  19. const items = data.items
  20. return {
  21. code: 20000,
  22. data: {
  23. items: items
  24. }
  25. }
  26. }
  27. },
  28. {
  29. url: '/vue-admin-template/gateway/limit/list',
  30. type: 'get',
  31. response: config => {
  32. const data = Mock.mock({
  33. 'items|11': [{
  34. 'id|+1': 1,
  35. title: '@word(4, 10)',
  36. visitTimes: '@natural(0, 30000)',
  37. visitDuration: '@natural(0, 100)',
  38. inBlacklist: '@boolean',
  39. flag: '@boolean'
  40. }]
  41. })
  42. const items = data.items
  43. return {
  44. code: 20000,
  45. data: {
  46. items: items
  47. }
  48. }
  49. }
  50. },
  51. {
  52. url: '/vue-admin-template/gateway/circuit-break/list',
  53. type: 'get',
  54. response: config => {
  55. const data = Mock.mock({
  56. 'items|11': [{
  57. 'id|+1': 1,
  58. title: '@word(4, 10)',
  59. circuitBreakDuration: '@natural(1, 100)',
  60. timeoutPeriod: '@natural(1, 100)',
  61. circuitBreakStandard: '@natural(1, 10)',
  62. interfaceBinding: '@natural(0, 10)',
  63. flag: '@boolean'
  64. }]
  65. })
  66. const items = data.items
  67. return {
  68. code: 20000,
  69. data: {
  70. items: items
  71. }
  72. }
  73. }
  74. },
  75. {
  76. url: '/vue-admin-template/gateway/document/list',
  77. type: 'get',
  78. response: config => {
  79. const data = Mock.mock({
  80. 'items|11': [{
  81. 'id|+1': 265912187337729,
  82. name: '/api/@word(10,20)/@word(5,10)',
  83. 'protocol|1': PROTOCOLS,
  84. 'type|1': APITYPE,
  85. time: '@datetime("yyyy/MM/dd HH:mm:ss")',
  86. method() {
  87. return this.name
  88. },
  89. description() {
  90. return this.name
  91. },
  92. params: {
  93. 'input|0-2': [
  94. {
  95. name: '@word(4,10)',
  96. 'type|1': DATATYPE,
  97. length: '@natural(1,100)',
  98. default() {
  99. switch (this.type) {
  100. case 'number':
  101. return 1
  102. case 'string':
  103. return 'AAA'
  104. case 'boolean':
  105. return 'true'
  106. case 'array':
  107. return '[]'
  108. case 'object':
  109. return '{}'
  110. }
  111. },
  112. reference: '无',
  113. required: '@boolean',
  114. superior: '',
  115. description: '@csentence'
  116. }
  117. ],
  118. 'output|0-2': [
  119. {
  120. name: '@word(4,10)',
  121. 'type|1': DATATYPE,
  122. length: '@natural(1,100)',
  123. default() {
  124. switch (this.type) {
  125. case 'number':
  126. return 1
  127. case 'string':
  128. return 'AAA'
  129. case 'boolean':
  130. return 'true'
  131. case 'array':
  132. return '[]'
  133. case 'object':
  134. return '{}'
  135. }
  136. },
  137. reference: '无',
  138. superior: '',
  139. description: '@csentence'
  140. }
  141. ]
  142. }
  143. }]
  144. })
  145. const items = data.items
  146. return {
  147. code: 20000,
  148. data: {
  149. items: items
  150. }
  151. }
  152. }
  153. }
  154. ]