rails_com 1.2.9 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (526) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +20 -165
  3. data/README.md +45 -22
  4. data/Rakefile +2 -1
  5. data/app/apis/ali_dns.rb +66 -0
  6. data/app/assets/images/avatar.png +0 -0
  7. data/app/channels/com/session_channel.rb +16 -0
  8. data/app/channels/rails_com/connection.rb +31 -0
  9. data/app/controllers/admin_controller.rb +4 -0
  10. data/app/controllers/application_controller.rb +7 -0
  11. data/app/controllers/base_controller.rb +2 -0
  12. data/app/controllers/board/base_controller.rb +3 -0
  13. data/app/controllers/board/home_controller.rb +6 -0
  14. data/app/controllers/board_controller.rb +3 -0
  15. data/app/controllers/com/audios_controller.rb +27 -0
  16. data/app/controllers/com/base_controller.rb +4 -0
  17. data/app/controllers/com/common_controller.rb +69 -0
  18. data/app/controllers/com/controller/admin.rb +114 -0
  19. data/app/controllers/com/controller/err_handler.rb +13 -0
  20. data/app/controllers/com/direct_uploads_controller.rb +11 -0
  21. data/app/controllers/com/log_controller.rb +30 -0
  22. data/app/controllers/com/nodes_controller.rb +22 -0
  23. data/app/controllers/com/panel/acme_accounts_controller.rb +12 -0
  24. data/app/controllers/com/panel/acme_identifiers_controller.rb +31 -0
  25. data/app/controllers/com/panel/acme_orders_controller.rb +64 -0
  26. data/app/controllers/com/panel/attachments_controller.rb +31 -0
  27. data/app/controllers/com/panel/base_controller.rb +5 -0
  28. data/app/controllers/com/panel/blob_defaults_controller.rb +13 -0
  29. data/app/controllers/com/panel/blobs_controller.rb +52 -0
  30. data/app/controllers/com/panel/cache_lists_controller.rb +5 -0
  31. data/app/controllers/com/panel/csps_controller.rb +18 -0
  32. data/app/controllers/com/panel/errs_controller.rb +18 -0
  33. data/app/controllers/com/panel/inbound_emails_controller.rb +15 -0
  34. data/app/controllers/com/panel/infos_controller.rb +9 -0
  35. data/app/controllers/com/panel/meta_actions_controller.rb +46 -0
  36. data/app/controllers/com/panel/meta_businesses_controller.rb +21 -0
  37. data/app/controllers/com/panel/meta_columns_controller.rb +47 -0
  38. data/app/controllers/com/panel/meta_controllers_controller.rb +46 -0
  39. data/app/controllers/com/panel/meta_models_controller.rb +32 -0
  40. data/app/controllers/com/panel/meta_namespaces_controller.rb +29 -0
  41. data/app/controllers/com/pdfs_controller.rb +37 -0
  42. data/app/controllers/com/videos_controller.rb +28 -0
  43. data/app/controllers/home_controller.rb +6 -0
  44. data/app/controllers/my/base_controller.rb +4 -0
  45. data/app/controllers/my/home_controller.rb +8 -0
  46. data/app/controllers/my_controller.rb +3 -0
  47. data/app/controllers/panel/base_controller.rb +4 -0
  48. data/app/controllers/panel/home_controller.rb +8 -0
  49. data/app/controllers/panel_controller.rb +5 -0
  50. data/app/controllers/rails_com/application.rb +113 -0
  51. data/app/helpers/rails_com/active_helper.rb +35 -39
  52. data/app/helpers/rails_com/form_helper.rb +21 -0
  53. data/app/helpers/rails_com/format_helper.rb +13 -0
  54. data/app/helpers/rails_com/frame_helper.rb +13 -0
  55. data/app/helpers/rails_com/kaminari_helper.rb +9 -0
  56. data/app/helpers/rails_com/time_helper.rb +23 -0
  57. data/app/helpers/rails_com/url_helper.rb +12 -0
  58. data/app/jobs/active_storage/identify_job.rb +9 -0
  59. data/app/jobs/application_job.rb +2 -0
  60. data/app/jobs/com/acme_job.rb +9 -0
  61. data/app/jobs/com/err_job.rb +10 -0
  62. data/app/mailboxes/application_mailbox.rb +2 -0
  63. data/app/mailers/application_mailer.rb +3 -0
  64. data/app/models/com/acme_account.rb +5 -0
  65. data/app/models/com/acme_identifier.rb +5 -0
  66. data/app/models/com/acme_order.rb +5 -0
  67. data/app/models/com/application_record.rb +5 -0
  68. data/app/models/com/blob_default.rb +5 -0
  69. data/app/models/com/cache_list.rb +5 -0
  70. data/app/models/com/csp.rb +5 -0
  71. data/app/models/com/err.rb +5 -0
  72. data/app/models/com/ext/debug.rb +71 -0
  73. data/app/models/com/ext/extra.rb +20 -0
  74. data/app/models/com/ext/parameter.rb +19 -0
  75. data/app/models/com/ext/sequence.rb +36 -0
  76. data/app/models/com/ext/state_machine.rb +82 -0
  77. data/app/models/com/ext/taxon.rb +81 -0
  78. data/app/models/com/ext/taxon_prepend.rb +21 -0
  79. data/app/models/com/info.rb +5 -0
  80. data/app/models/com/meta_action.rb +5 -0
  81. data/app/models/com/meta_business.rb +5 -0
  82. data/app/models/com/meta_column.rb +5 -0
  83. data/app/models/com/meta_controller.rb +5 -0
  84. data/app/models/com/meta_model.rb +5 -0
  85. data/app/models/com/meta_namespace.rb +5 -0
  86. data/app/models/com/meta_operation.rb +5 -0
  87. data/app/models/com/meta_route.rb +5 -0
  88. data/app/models/com/model/acme_account.rb +70 -0
  89. data/app/models/com/model/acme_identifier.rb +132 -0
  90. data/app/models/com/model/acme_order.rb +139 -0
  91. data/app/models/com/model/blob_default.rb +36 -0
  92. data/app/models/com/model/cache_list.rb +15 -0
  93. data/app/models/com/model/csp.rb +23 -0
  94. data/app/models/com/model/err.rb +108 -0
  95. data/app/models/com/model/info.rb +31 -0
  96. data/app/models/com/model/meta_action.rb +70 -0
  97. data/app/models/com/model/meta_business.rb +66 -0
  98. data/app/models/com/model/meta_column.rb +36 -0
  99. data/app/models/com/model/meta_controller.rb +115 -0
  100. data/app/models/com/model/meta_model.rb +58 -0
  101. data/app/models/com/model/meta_namespace.rb +61 -0
  102. data/app/models/com/model/meta_operation.rb +18 -0
  103. data/app/models/com/model/meta_permission.rb +10 -0
  104. data/app/models/com/model/meta_relation.rb +6 -0
  105. data/app/models/com/model/meta_route.rb +10 -0
  106. data/app/models/com.rb +11 -0
  107. data/app/models/concerns/feishu_bot.rb +15 -0
  108. data/app/models/concerns/log_record_bot.rb +40 -0
  109. data/app/models/concerns/work_wechat_bot.rb +18 -0
  110. data/app/stores/com/env_yaml.rb +96 -0
  111. data/app/stores/com/yaml.rb +89 -0
  112. data/app/views/admin/_breadcrumb.html.erb +5 -0
  113. data/app/views/application/_actionsheet.html.erb +20 -0
  114. data/app/views/application/_alert.html+phone.erb +6 -0
  115. data/app/views/application/_alert.html.erb +9 -0
  116. data/app/views/application/_auth_navbar.html.erb +18 -0
  117. data/app/views/application/_breadcrumb.html.erb +0 -0
  118. data/app/views/application/_button.html+phone.erb +3 -0
  119. data/app/views/application/_button.html.erb +3 -0
  120. data/app/views/application/_edit_form.html+phone.erb +10 -0
  121. data/app/views/application/_edit_form.html.erb +4 -0
  122. data/app/views/application/_error_messages.html.erb +11 -0
  123. data/app/views/application/_filter_form.html+phone.erb +14 -0
  124. data/app/views/application/_filter_form.html.erb +9 -0
  125. data/app/views/application/_filter_table.html.erb +0 -0
  126. data/app/views/application/_footer.html.erb +8 -0
  127. data/app/views/application/_form.html.erb +4 -0
  128. data/app/views/application/_index_sortable_table.html.erb +22 -0
  129. data/app/views/application/_index_table.html+phone.erb +13 -0
  130. data/app/views/application/_index_table.html.erb +22 -0
  131. data/app/views/application/_index_tbody.html.erb +3 -0
  132. data/app/views/application/_index_thead.html.erb +4 -0
  133. data/app/views/application/_index_tr.html+phone.erb +4 -0
  134. data/app/views/application/_index_tr.html.erb +16 -0
  135. data/app/views/application/_index_tree_table.html.erb +18 -0
  136. data/app/views/application/_locales.html.erb +11 -0
  137. data/app/views/application/_modal.html+phone.erb +14 -0
  138. data/app/views/application/_modal.html.erb +14 -0
  139. data/app/views/application/_nav.html.erb +0 -0
  140. data/app/views/application/_nav_bar.html+phone.erb +0 -0
  141. data/app/views/application/_nav_bar.html.erb +25 -0
  142. data/app/views/application/_nav_brand.html.erb +3 -0
  143. data/app/views/application/_nav_with_login.html.erb +0 -0
  144. data/app/views/application/_nav_without_login.html.erb +0 -0
  145. data/app/views/application/_new_form.html+phone.erb +10 -0
  146. data/app/views/application/_new_form.html.erb +4 -0
  147. data/app/views/application/_pagination.json.jbuilder +7 -0
  148. data/app/views/application/_show.html+phone.erb +20 -0
  149. data/app/views/application/_show.html.erb +13 -0
  150. data/app/views/application/_show_table.html.erb +0 -0
  151. data/app/views/application/_tab_bar.html.erb +3 -0
  152. data/app/views/application/_tab_bar_item.erb +4 -0
  153. data/app/views/application/alert.turbo_stream.erb +1 -0
  154. data/app/views/application/controller_not_found.json.jbuilder +4 -0
  155. data/app/views/application/create.json.jbuilder +1 -0
  156. data/app/views/application/create.turbo_stream.erb +3 -0
  157. data/app/views/application/destroy.json.jbuilder +0 -0
  158. data/app/views/application/destroy.turbo_stream.erb +3 -0
  159. data/app/views/application/edit.html.erb +7 -0
  160. data/app/views/application/edit.json.jbuilder +2 -0
  161. data/app/views/{shared/_error_messages.html.erb → application/err.turbo_stream.erb} +4 -4
  162. data/app/views/application/index.html.erb +5 -0
  163. data/app/views/application/index.json.jbuilder +1 -0
  164. data/app/views/application/move_higher.turbo_stream.erb +3 -0
  165. data/app/views/application/move_lower.turbo_stream.erb +3 -0
  166. data/app/views/application/new.html.erb +7 -0
  167. data/app/views/application/new.json.jbuilder +2 -0
  168. data/app/views/application/show.html.erb +3 -0
  169. data/app/views/application/show.json.jbuilder +1 -0
  170. data/app/views/application/update.json.jbuilder +1 -0
  171. data/app/views/application/update.turbo_stream.erb +3 -0
  172. data/app/views/board/home/index.html.erb +0 -0
  173. data/app/views/com/attachments/_file_upload.html.erb +19 -0
  174. data/app/views/com/attachments/_image_preview.html.erb +9 -0
  175. data/app/views/com/attachments/_list.html.erb +31 -0
  176. data/app/views/com/attachments/_list_edit.html.erb +28 -0
  177. data/app/views/com/attachments/_list_field.html.erb +6 -0
  178. data/app/views/com/attachments/_list_many.html.erb +17 -0
  179. data/app/views/com/attachments/_video_item.html.erb +6 -0
  180. data/app/views/com/audios/show.html.erb +3 -0
  181. data/app/views/com/common/deploy.html.erb +0 -0
  182. data/app/views/com/common/info.json.jbuilder +1 -0
  183. data/app/views/com/extra/_extra_form.html.erb +5 -0
  184. data/app/views/com/extra/_item.html.erb +15 -0
  185. data/app/views/com/nodes/_children_options.html.erb +4 -0
  186. data/app/views/com/nodes/_children_select.html.erb +15 -0
  187. data/app/views/com/nodes/_outer_children_options.html.erb +4 -0
  188. data/app/views/com/nodes/_outer_options.html+phone.erb +2 -0
  189. data/app/views/com/nodes/_outer_options.html.erb +4 -0
  190. data/app/views/com/nodes/_outer_select.html.erb +12 -0
  191. data/app/views/com/nodes/_self_and_siblings_options.html.erb +4 -0
  192. data/app/views/com/nodes/_siblings_options.html.erb +4 -0
  193. data/app/views/com/nodes/_siblings_select.html.erb +14 -0
  194. data/app/views/com/nodes/children.turbo_stream.erb +3 -0
  195. data/app/views/com/nodes/outer.turbo_stream.erb +3 -0
  196. data/app/views/com/panel/acme_accounts/_filter_form.html.erb +9 -0
  197. data/app/views/com/panel/acme_accounts/_index_tbody.html.erb +7 -0
  198. data/app/views/com/panel/acme_accounts/_index_thead.html.erb +4 -0
  199. data/app/views/com/panel/acme_accounts/_index_tr.html.erb +16 -0
  200. data/app/views/com/panel/acme_identifiers/_breadcrumb.html.erb +7 -0
  201. data/app/views/com/panel/acme_identifiers/_button.html.erb +0 -0
  202. data/app/views/com/panel/acme_identifiers/_filter_form.html.erb +9 -0
  203. data/app/views/com/panel/acme_identifiers/_form.html.erb +2 -0
  204. data/app/views/com/panel/acme_identifiers/_index_tbody.html.erb +16 -0
  205. data/app/views/com/panel/acme_identifiers/_index_thead.html.erb +17 -0
  206. data/app/views/com/panel/acme_identifiers/_show_table.html.erb +24 -0
  207. data/app/views/com/panel/acme_identifiers/index.html.erb +3 -0
  208. data/app/views/com/panel/acme_orders/_breadcrumb.html.erb +6 -0
  209. data/app/views/com/panel/acme_orders/_filter_form.html.erb +9 -0
  210. data/app/views/com/panel/acme_orders/_form.html.erb +4 -0
  211. data/app/views/com/panel/acme_orders/_index_tbody.html.erb +11 -0
  212. data/app/views/com/panel/acme_orders/_index_thead.html.erb +8 -0
  213. data/app/views/com/panel/acme_orders/_index_tr.html.erb +25 -0
  214. data/app/views/com/panel/acme_orders/_item_form.html.erb +14 -0
  215. data/app/views/com/panel/acme_orders/_new_form.html.erb +7 -0
  216. data/app/views/com/panel/acme_orders/_show_table.html.erb +4 -0
  217. data/app/views/com/panel/attachments/_breadcrumb.html.erb +10 -0
  218. data/app/views/com/panel/attachments/_button.html.erb +0 -0
  219. data/app/views/com/panel/attachments/_filter_form.html.erb +13 -0
  220. data/app/views/com/panel/attachments/_index_tbody.html.erb +6 -0
  221. data/app/views/com/panel/attachments/_index_thead.html.erb +7 -0
  222. data/app/views/com/panel/attachments/_index_tr.html.erb +10 -0
  223. data/app/views/com/panel/attachments/index.html.erb +5 -0
  224. data/app/views/com/panel/base/_index_meta_action.html.erb +14 -0
  225. data/app/views/com/panel/base/_nav.html.erb +3 -0
  226. data/app/views/com/panel/blob_defaults/_add_form.html.erb +7 -0
  227. data/app/views/com/panel/blob_defaults/_filter_form.html.erb +10 -0
  228. data/app/views/com/panel/blob_defaults/_form.html.erb +4 -0
  229. data/app/views/com/panel/blob_defaults/_index_tbody.html.erb +7 -0
  230. data/app/views/com/panel/blob_defaults/_index_thead.html.erb +5 -0
  231. data/app/views/com/panel/blob_defaults/_index_tr.html.erb +13 -0
  232. data/app/views/com/panel/blob_defaults/add.turbo_stream.erb +1 -0
  233. data/app/views/com/panel/blobs/_breadcrumb.html.erb +6 -0
  234. data/app/views/com/panel/blobs/_filter_form.html.erb +13 -0
  235. data/app/views/com/panel/blobs/_index_tbody.html.erb +22 -0
  236. data/app/views/com/panel/blobs/_index_thead.html.erb +12 -0
  237. data/app/views/com/panel/blobs/_index_tr.html.erb +13 -0
  238. data/app/views/com/panel/blobs/_new_form.html.erb +5 -0
  239. data/app/views/com/panel/blobs/index.html.erb +5 -0
  240. data/app/views/com/panel/cache_lists/_index_tbody.html.erb +4 -0
  241. data/app/views/com/panel/cache_lists/_index_thead.html.erb +5 -0
  242. data/app/views/com/panel/cache_lists/_show_table.html.erb +8 -0
  243. data/app/views/com/panel/csps/_button.html.erb +0 -0
  244. data/app/views/com/panel/csps/_filter_form.html.erb +8 -0
  245. data/app/views/com/panel/csps/_index_tbody.html.erb +11 -0
  246. data/app/views/com/panel/csps/_index_thead.html.erb +12 -0
  247. data/app/views/com/panel/csps/_index_tr.html.erb +13 -0
  248. data/app/views/com/panel/csps/_show/_breadcrumb.html.erb +6 -0
  249. data/app/views/com/panel/csps/_show_table.html.erb +48 -0
  250. data/app/views/com/panel/csps/show.html.erb +7 -0
  251. data/app/views/com/panel/errs/_button.html.erb +0 -0
  252. data/app/views/com/panel/errs/_filter_form.html.erb +11 -0
  253. data/app/views/com/panel/errs/_index_tbody.html.erb +16 -0
  254. data/app/views/com/panel/errs/_index_thead.html.erb +11 -0
  255. data/app/views/com/panel/errs/_index_tr.html.erb +13 -0
  256. data/app/views/com/panel/errs/_show/_breadcrumb.html.erb +6 -0
  257. data/app/views/com/panel/errs/_show_table.html.erb +44 -0
  258. data/app/views/com/panel/errs/show.html.erb +7 -0
  259. data/app/views/com/panel/inbound_emails/_button.html.erb +0 -0
  260. data/app/views/com/panel/inbound_emails/_filter_form.html.erb +9 -0
  261. data/app/views/com/panel/inbound_emails/_index_tbody.html.erb +5 -0
  262. data/app/views/com/panel/inbound_emails/_index_thead.html.erb +6 -0
  263. data/app/views/com/panel/inbound_emails/_show_table.html.erb +10 -0
  264. data/app/views/com/panel/inbound_emails/index.html.erb +5 -0
  265. data/app/views/com/panel/infos/_filter_form.html.erb +9 -0
  266. data/app/views/com/panel/infos/_index_tbody.html.erb +4 -0
  267. data/app/views/com/panel/infos/_index_thead.html.erb +5 -0
  268. data/app/views/com/panel/infos/index.json.jbuilder +1 -0
  269. data/app/views/com/panel/meta_actions/_breadcrumb.html.erb +6 -0
  270. data/app/views/com/panel/meta_actions/_form.html.erb +1 -0
  271. data/app/views/com/panel/meta_actions/_index_tbody.html.erb +4 -0
  272. data/app/views/com/panel/meta_actions/_index_thead.html.erb +5 -0
  273. data/app/views/com/panel/meta_actions/_roles.html.erb +9 -0
  274. data/app/views/com/panel/meta_actions/index.html.erb +3 -0
  275. data/app/views/com/panel/meta_actions/roles.js.erb +6 -0
  276. data/app/views/com/panel/meta_actions/update.turbo_stream.erb +1 -0
  277. data/app/views/com/panel/meta_businesses/_breadcrumb.html.erb +10 -0
  278. data/app/views/com/panel/meta_businesses/_button.html.erb +3 -0
  279. data/app/views/com/panel/meta_businesses/_form.html.erb +3 -0
  280. data/app/views/com/panel/meta_businesses/_index_tbody.html.erb +12 -0
  281. data/app/views/com/panel/meta_businesses/_index_thead.html.erb +2 -0
  282. data/app/views/com/panel/meta_businesses/_index_tr.html.erb +16 -0
  283. data/app/views/com/panel/meta_businesses/_show_table.html.erb +8 -0
  284. data/app/views/com/panel/meta_businesses/sync.turbo_stream.erb +3 -0
  285. data/app/views/com/panel/meta_columns/_breadcrumb.html.erb +6 -0
  286. data/app/views/com/panel/meta_columns/_form.html.erb +6 -0
  287. data/app/views/com/panel/meta_columns/_index_tbody.html.erb +20 -0
  288. data/app/views/com/panel/meta_columns/_index_thead.html.erb +12 -0
  289. data/app/views/com/panel/meta_columns/_index_tr.html.erb +22 -0
  290. data/app/views/com/panel/meta_columns/_show_table.html.erb +20 -0
  291. data/app/views/com/panel/meta_columns/sync.turbo_stream.erb +3 -0
  292. data/app/views/com/panel/meta_columns/test.turbo_stream.erb +3 -0
  293. data/app/views/com/panel/meta_controllers/_button.html.erb +3 -0
  294. data/app/views/com/panel/meta_controllers/_filter_form.html.erb +8 -0
  295. data/app/views/com/panel/meta_controllers/_filter_tablex.html.erb +8 -0
  296. data/app/views/com/panel/meta_controllers/_form.html.erb +2 -0
  297. data/app/views/com/panel/meta_controllers/_index_meta_business.html.erb +10 -0
  298. data/app/views/com/panel/meta_controllers/_index_meta_controller.html.erb +15 -0
  299. data/app/views/com/panel/meta_controllers/_index_meta_namespace.html.erb +12 -0
  300. data/app/views/com/panel/meta_controllers/_index_tbody.html.erb +28 -0
  301. data/app/views/com/panel/meta_controllers/_index_thead.html.erb +2 -0
  302. data/app/views/com/panel/meta_controllers/index.html.erb +3 -0
  303. data/app/views/com/panel/meta_controllers/meta_actions.turbo_stream.erb +1 -0
  304. data/app/views/com/panel/meta_controllers/meta_controllers.turbo_stream.erb +1 -0
  305. data/app/views/com/panel/meta_controllers/meta_namespaces.turbo_stream.erb +1 -0
  306. data/app/views/com/panel/meta_controllers/sync.turbo_stream.erb +3 -0
  307. data/app/views/com/panel/meta_models/_button.html.erb +6 -0
  308. data/app/views/com/panel/meta_models/_form.html.erb +4 -0
  309. data/app/views/com/panel/meta_models/_index_tbody.html.erb +3 -0
  310. data/app/views/com/panel/meta_models/_index_thead.html.erb +4 -0
  311. data/app/views/com/panel/meta_models/_index_tr.html.erb +19 -0
  312. data/app/views/com/panel/meta_models/_show_table.html.erb +12 -0
  313. data/app/views/com/panel/meta_models/sync.turbo_stream.erb +3 -0
  314. data/app/views/com/panel/meta_namespaces/_breadcrumb.html.erb +10 -0
  315. data/app/views/com/panel/meta_namespaces/_button.html.erb +3 -0
  316. data/app/views/com/panel/meta_namespaces/_form.html.erb +5 -0
  317. data/app/views/com/panel/meta_namespaces/_index_tbody.html.erb +20 -0
  318. data/app/views/com/panel/meta_namespaces/_index_thead.html.erb +6 -0
  319. data/app/views/com/panel/meta_namespaces/_show_table.html.erb +20 -0
  320. data/app/views/com/panel/meta_namespaces/sync.turbo_stream.erb +3 -0
  321. data/app/views/com/videos/show.html.erb +9 -0
  322. data/app/{assets/javascripts/controllers/active_storage_ext/videos/show.ready.js → views/com/videos/show.js} +0 -0
  323. data/app/views/default_form/_date_field.html.erb +1 -0
  324. data/app/views/default_form/_datetime_field.html.erb +1 -0
  325. data/app/views/default_form/_number_field.html.erb +1 -0
  326. data/app/views/default_form/_outer_select.html.erb +14 -0
  327. data/app/views/default_form/_select_enum.html.erb +1 -0
  328. data/app/views/default_form/_text_field.html.erb +1 -0
  329. data/app/views/default_form/_time_field.html.erb +1 -0
  330. data/app/views/extra_form/_number_field.html.erb +1 -0
  331. data/app/views/extra_form/_outer_select.html.erb +14 -0
  332. data/app/views/extra_form/_text_field.html.erb +1 -0
  333. data/app/views/home/index.html.erb +0 -0
  334. data/app/views/kaminari/com/_first_page.html.erb +3 -0
  335. data/app/views/kaminari/{_gap.html.erb → com/_gap.html.erb} +1 -1
  336. data/app/views/kaminari/com/_last_page.html.erb +3 -0
  337. data/app/views/kaminari/com/_next_page.html.erb +3 -0
  338. data/app/views/kaminari/com/_page.html.erb +1 -0
  339. data/app/views/kaminari/{_paginator.html.erb → com/_paginator.html+phone.erb} +3 -3
  340. data/app/views/kaminari/com/_paginator.html.erb +17 -0
  341. data/app/views/kaminari/com/_prev_page.html.erb +3 -0
  342. data/app/views/layouts/_admin_head.html.erb +22 -0
  343. data/app/views/layouts/_application_head.html.erb +26 -0
  344. data/app/views/layouts/_phone_head.html.erb +28 -0
  345. data/app/views/layouts/admin.html.erb +12 -0
  346. data/app/views/layouts/application.html+phone.erb +12 -0
  347. data/app/views/layouts/application.html.erb +11 -0
  348. data/app/views/layouts/application.json.jbuilder +2 -0
  349. data/app/views/layouts/board.html+phone.erb +10 -0
  350. data/app/views/layouts/board.html.erb +12 -0
  351. data/app/views/layouts/mailer.html.erb +14 -0
  352. data/app/views/layouts/mailer.text.erb +1 -0
  353. data/app/views/layouts/my.html+phone.erb +11 -0
  354. data/app/views/layouts/my.html.erb +13 -0
  355. data/app/views/layouts/panel.html.erb +12 -0
  356. data/app/views/my/home/index.html.erb +0 -0
  357. data/app/views/panel/_breadcrumb.html.erb +0 -0
  358. data/app/views/panel/_com_nav.html.erb +19 -0
  359. data/app/views/panel/_nav.html.erb +6 -0
  360. data/app/views/panel/_nav_without_login.html.erb +3 -0
  361. data/app/views/panel/destroy.turbo_stream.erb +1 -0
  362. data/app/views/panel/home/index.html.erb +0 -0
  363. data/config/default_form.yml +74 -0
  364. data/config/locales/en.controller.yml +46 -0
  365. data/config/locales/en.yml +2 -2
  366. data/config/locales/zh.attributes.yml +9 -0
  367. data/config/locales/zh.controller.yml +65 -0
  368. data/config/locales/zh.enum.yml +11 -0
  369. data/config/locales/zh.helper.yml +10 -0
  370. data/config/locales/zh.rb +34 -0
  371. data/config/locales/zh.yml +66 -10
  372. data/config/routes.rb +140 -8
  373. data/lib/active_storage/service/disc_service.rb +41 -0
  374. data/lib/default_form/active_record/extend.rb +38 -0
  375. data/lib/default_form/builder/default.rb +88 -0
  376. data/lib/default_form/builder/helper.rb +212 -0
  377. data/lib/default_form/builder/wrap.rb +58 -0
  378. data/lib/default_form/config.rb +50 -0
  379. data/lib/default_form/controller_helper.rb +14 -0
  380. data/lib/default_form/form_builder.rb +61 -0
  381. data/lib/default_form/override/action_view/helpers/tags/collection_check_boxes.rb +23 -0
  382. data/lib/default_form/override/action_view/helpers/tags/collection_radio_buttons.rb +23 -0
  383. data/lib/default_form/view_helper.rb +39 -0
  384. data/lib/generators/jbuilder_generator.rb +22 -0
  385. data/lib/generators/scaffold_generator.rb +27 -0
  386. data/lib/generators/templates/jbuilder/_show.json.jbuilder.tt +1 -0
  387. data/lib/generators/templates/jbuilder/index.json.jbuilder.tt +1 -0
  388. data/lib/generators/templates/jbuilder/partial.json.jbuilder.tt +17 -0
  389. data/lib/generators/templates/scaffold_erb/_edit_form.html.erb.tt +4 -0
  390. data/lib/generators/templates/scaffold_erb/_filter_form.html.erb.tt +9 -0
  391. data/lib/generators/templates/scaffold_erb/_form.html.erb.tt +4 -0
  392. data/lib/generators/templates/scaffold_erb/_index_tbody.html.erb.tt +3 -0
  393. data/lib/generators/templates/scaffold_erb/_index_thead.html.erb.tt +4 -0
  394. data/lib/generators/templates/scaffold_erb/_new_form.html.erb.tt +4 -0
  395. data/lib/generators/templates/scaffold_erb/_show_table.html.erb.tt +6 -0
  396. data/lib/generators/templates/scaffold_erb/index.html.erb.tt +5 -0
  397. data/lib/rails_com/action_controller/errors.rb +9 -2
  398. data/lib/rails_com/action_controller/extend.rb +20 -0
  399. data/lib/rails_com/action_controller/include.rb +31 -0
  400. data/lib/rails_com/action_controller/parameters.rb +3 -0
  401. data/lib/rails_com/action_controller/public_exceptions.rb +31 -0
  402. data/lib/rails_com/action_controller/subscriber.rb +32 -0
  403. data/lib/rails_com/action_controller.rb +9 -3
  404. data/lib/rails_com/action_mailbox/inbound_email.rb +23 -0
  405. data/lib/rails_com/action_mailbox/mail_ext.rb +34 -0
  406. data/lib/rails_com/action_mailbox.rb +4 -0
  407. data/lib/rails_com/action_text/rich_text.rb +16 -0
  408. data/lib/rails_com/action_text.rb +3 -0
  409. data/lib/rails_com/action_view/partial_renderer.rb +22 -0
  410. data/lib/rails_com/action_view/template_renderer.rb +27 -28
  411. data/lib/rails_com/action_view/translation_helper.rb +7 -4
  412. data/lib/rails_com/action_view.rb +5 -2
  413. data/lib/rails_com/active_storage/activestorage_attached.rb +7 -4
  414. data/lib/rails_com/active_storage/attached_macros.rb +17 -5
  415. data/lib/rails_com/active_storage/attachment_prepend.rb +14 -0
  416. data/lib/rails_com/active_storage/attachment_transfer.rb +12 -5
  417. data/lib/rails_com/active_storage/video_response.rb +5 -1
  418. data/lib/rails_com/active_storage.rb +9 -4
  419. data/lib/rails_com/all.rb +23 -0
  420. data/lib/rails_com/api.rb +24 -0
  421. data/lib/rails_com/config.rb +22 -14
  422. data/lib/rails_com/engine.rb +41 -25
  423. data/lib/rails_com/utils/hex_helper.rb +12 -0
  424. data/lib/rails_com/utils/jobber.rb +3 -1
  425. data/lib/rails_com/utils/num_helper.rb +7 -5
  426. data/lib/rails_com/utils/qrcode_helper.rb +35 -0
  427. data/lib/rails_com/utils/setting.rb +5 -5
  428. data/lib/rails_com/utils/time_helper.rb +2 -0
  429. data/lib/rails_com/utils/uid_helper.rb +18 -15
  430. data/lib/rails_com.rb +25 -17
  431. data/lib/templates/rails/scaffold_controller/api_controller.rb.tt +20 -19
  432. data/lib/templates/rails/scaffold_controller/controller.rb.tt +1 -52
  433. data/lib/templates/test_unit/scaffold/functional_test.rb.tt +64 -0
  434. metadata +511 -120
  435. data/app/assets/config/rails_com_manifest.js +0 -6
  436. data/app/assets/images/image-square.png +0 -0
  437. data/app/assets/images/verification.jpg +0 -0
  438. data/app/assets/javascripts/rails_com/application.js +0 -29
  439. data/app/assets/javascripts/rails_com/attachment.js +0 -421
  440. data/app/assets/javascripts/rails_com/checkbox.js +0 -59
  441. data/app/assets/javascripts/rails_com/fetch_xhr_script.js +0 -31
  442. data/app/assets/javascripts/rails_com/footer.js +0 -9
  443. data/app/assets/javascripts/rails_com/picture.js +0 -18
  444. data/app/assets/javascripts/rails_com/sidebar.js +0 -40
  445. data/app/assets/javascripts/rails_com/time_local.js +0 -9
  446. data/app/assets/stylesheets/controllers/active_storage_ext/videos/show.css +0 -7
  447. data/app/assets/stylesheets/controllers/active_storage_ext/videos/transfer.css +0 -4
  448. data/app/assets/stylesheets/rails_com/application.css +0 -3
  449. data/app/controllers/active_storage_ext/admin/attachments_controller.rb +0 -13
  450. data/app/controllers/active_storage_ext/admin/base_controller.rb +0 -4
  451. data/app/controllers/active_storage_ext/admin/blob_defaults_controller.rb +0 -55
  452. data/app/controllers/active_storage_ext/admin/blobs_controller.rb +0 -48
  453. data/app/controllers/active_storage_ext/audios_controller.rb +0 -24
  454. data/app/controllers/active_storage_ext/videos_controller.rb +0 -25
  455. data/app/controllers/concerns/rails_common_api.rb +0 -60
  456. data/app/controllers/concerns/rails_common_controller.rb +0 -46
  457. data/app/controllers/concerns/rails_common_xhr.rb +0 -15
  458. data/app/helpers/rails_com/assets_helper.rb +0 -109
  459. data/app/models/active_storage/blob_default.rb +0 -24
  460. data/app/models/concerns/state_machine.rb +0 -79
  461. data/app/views/active_storage_ext/admin/attachments/destroy.js.erb +0 -1
  462. data/app/views/active_storage_ext/admin/blob_defaults/_form.html.erb +0 -8
  463. data/app/views/active_storage_ext/admin/blob_defaults/_search_form.html.erb +0 -7
  464. data/app/views/active_storage_ext/admin/blob_defaults/edit.html.erb +0 -9
  465. data/app/views/active_storage_ext/admin/blob_defaults/index.html.erb +0 -49
  466. data/app/views/active_storage_ext/admin/blob_defaults/new.html.erb +0 -9
  467. data/app/views/active_storage_ext/admin/blob_defaults/show.html.erb +0 -10
  468. data/app/views/active_storage_ext/admin/blobs/_search_form.html.erb +0 -9
  469. data/app/views/active_storage_ext/admin/blobs/destroy.js.erb +0 -1
  470. data/app/views/active_storage_ext/admin/blobs/index.html.erb +0 -51
  471. data/app/views/active_storage_ext/admin/blobs/new.html.erb +0 -13
  472. data/app/views/active_storage_ext/admin/blobs/show.html.erb +0 -10
  473. data/app/views/active_storage_ext/attachments/_default_image_item.html.erb +0 -14
  474. data/app/views/active_storage_ext/attachments/_image_item.html.erb +0 -6
  475. data/app/views/active_storage_ext/attachments/_list.html.erb +0 -25
  476. data/app/views/active_storage_ext/attachments/_list_edit.html.erb +0 -27
  477. data/app/views/active_storage_ext/attachments/_list_field.html.erb +0 -6
  478. data/app/views/active_storage_ext/attachments/_video_item.html.erb +0 -6
  479. data/app/views/active_storage_ext/audios/show.html.erb +0 -5
  480. data/app/views/active_storage_ext/videos/show.html.erb +0 -6
  481. data/app/views/kaminari/_first_page.html.erb +0 -3
  482. data/app/views/kaminari/_last_page.html.erb +0 -3
  483. data/app/views/kaminari/_next_page.html.erb +0 -3
  484. data/app/views/kaminari/_page.html.erb +0 -1
  485. data/app/views/kaminari/_prev_page.html.erb +0 -3
  486. data/app/views/layouts/rails_com/application.html.erb +0 -17
  487. data/app/views/shared/_alert.html.erb +0 -8
  488. data/app/views/shared/_locales.html.erb +0 -8
  489. data/config/locales/zh.datetime.yml +0 -44
  490. data/db/migrate/20181012025833_rails_com_init.rb +0 -14
  491. data/lib/active_record/type/i18n.rb +0 -19
  492. data/lib/generators/doc_model_generator.rb +0 -37
  493. data/lib/generators/doc_models_generator.rb +0 -11
  494. data/lib/generators/templates/model.erb +0 -6
  495. data/lib/mina/git2.rb +0 -59
  496. data/lib/mina/puma.rb +0 -64
  497. data/lib/mina/sidekiq.rb +0 -67
  498. data/lib/mina/whenever.rb +0 -27
  499. data/lib/rails_com/action_controller/controller_helper.rb +0 -29
  500. data/lib/rails_com/active_record/model_helper.rb +0 -107
  501. data/lib/rails_com/active_record/persistence_sneakily.rb +0 -11
  502. data/lib/rails_com/active_record/translation.rb +0 -66
  503. data/lib/rails_com/active_record.rb +0 -3
  504. data/lib/rails_com/active_storage/blob_ext.rb +0 -34
  505. data/lib/rails_com/core/array.rb +0 -72
  506. data/lib/rails_com/core/date.rb +0 -25
  507. data/lib/rails_com/core/hash.rb +0 -38
  508. data/lib/rails_com/core/nil.rb +0 -7
  509. data/lib/rails_com/core/numeric.rb +0 -11
  510. data/lib/rails_com/core/string.rb +0 -15
  511. data/lib/rails_com/core.rb +0 -7
  512. data/lib/rails_com/generators/named_base.rb +0 -10
  513. data/lib/rails_com/generators/scaffold_generator.rb +0 -15
  514. data/lib/rails_com/meta/controllers.rb +0 -8
  515. data/lib/rails_com/meta/models.rb +0 -21
  516. data/lib/rails_com/meta/routes.rb +0 -53
  517. data/lib/rails_com/sprockets/non_digest_assets.rb +0 -16
  518. data/lib/rails_com/utils/babel.rb +0 -38
  519. data/lib/rails_com/version.rb +0 -3
  520. data/lib/tasks/rails_com_tasks.rake +0 -4
  521. data/lib/templates/erb/scaffold/_filter.html.erb.tt +0 -10
  522. data/lib/templates/erb/scaffold/_form.html.erb.tt +0 -12
  523. data/lib/templates/erb/scaffold/edit.html.erb.tt +0 -9
  524. data/lib/templates/erb/scaffold/index.html.erb.tt +0 -45
  525. data/lib/templates/erb/scaffold/new.html.erb.tt +0 -9
  526. data/lib/templates/erb/scaffold/show.html.erb.tt +0 -16
@@ -0,0 +1,108 @@
1
+ module Com
2
+ module Model::Err
3
+ extend ActiveSupport::Concern
4
+
5
+ included do
6
+ attribute :path, :string
7
+ attribute :controller_name, :string
8
+ attribute :action_name, :string
9
+ attribute :exception, :string
10
+ attribute :exception_object, :string
11
+ attribute :exception_backtrace, :string, array: true, default: []
12
+ attribute :params, :json, default: {}
13
+ attribute :headers, :json, default: {}
14
+ attribute :cookie, :json, default: {}
15
+ attribute :session, :json, default: {}
16
+ attribute :ip, :string
17
+
18
+ default_scope -> { order(id: :desc) }
19
+
20
+ after_create_commit :send_message
21
+ end
22
+
23
+ def send_message
24
+ RailsCom.config.notify_bot.constantize.new(self).send_message
25
+ end
26
+
27
+ def user_info
28
+ token = session.dig('auth_token') || headers.dig('AUTH_TOKEN')
29
+ return {} unless defined? Auth::AuthorizedToken
30
+ at = Auth::AuthorizedToken.find_by token: token
31
+ if at&.user
32
+ at.user.as_json(only: [:id, :name], methods: [:account_identities])
33
+ elsif at&.account
34
+ at.account.as_json(only: [:id, :identity])
35
+ else
36
+ {}
37
+ end
38
+ end
39
+
40
+ def process_job
41
+ ErrJob.perform_later(self)
42
+ end
43
+
44
+ def record(payload)
45
+ self.path = payload[:path]
46
+ self.controller_name = payload[:controller]
47
+ self.action_name = payload[:action]
48
+ self.exception = payload[:exception].join("\r\n")[0..self.class.columns_limit['exception']]
49
+ self.exception_object = payload[:exception_object].class.to_s
50
+ self.exception_backtrace = payload[:exception_object].backtrace
51
+ self.params = self.class.filter_params(payload[:params])
52
+
53
+ raw_headers = payload.fetch(:headers, {})
54
+ self.headers = self.class.request_headers(raw_headers)
55
+ self.ip = raw_headers['action_dispatch.remote_ip'].to_s
56
+ self.cookie = raw_headers['rack.request.cookie_hash']
57
+ self.session = raw_headers['rack.session'].to_h
58
+ end
59
+
60
+ def record!(payload)
61
+ record(payload)
62
+ save
63
+ self
64
+ end
65
+
66
+ class_methods do
67
+ def record_to_log(controller, exp)
68
+ return if Rails.env.development? && RailsCom.config.disable_debug
69
+ request = controller.request
70
+
71
+ lc = self.new
72
+ payload = {
73
+ path: request.fullpath,
74
+ controller: controller.class.name,
75
+ action: controller.action_name,
76
+ params: request.filtered_parameters,
77
+ headers: request.headers,
78
+ exception: [exp.class.name, exp.message],
79
+ exception_object: exp
80
+ }
81
+ lc.record!(payload)
82
+ end
83
+
84
+ def request_headers(headers)
85
+ result = headers.select { |k, _| k.start_with?('HTTP_') && k != 'HTTP_COOKIE' }
86
+ result = result.collect { |pair| [pair[0].sub(/^HTTP_/, ''), pair[1]] }
87
+ result.sort.to_h
88
+ end
89
+
90
+ def filter_params(params)
91
+ params.deep_transform_values(&:to_s).except('controller', 'action')
92
+ end
93
+
94
+ def columns_limit
95
+ @columns_limit ||= self.columns_hash.slice(
96
+ 'params',
97
+ 'headers',
98
+ 'cookie',
99
+ 'session',
100
+ 'exception',
101
+ 'exception_object',
102
+ 'exception_backtrace'
103
+ ).transform_values { |i| i.limit.nil? ? -1 : i.limit - 1 }
104
+ end
105
+ end
106
+
107
+ end
108
+ end
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+ module Com
3
+ module Model::Info
4
+ extend ActiveSupport::Concern
5
+
6
+ included do
7
+ attribute :code, :string
8
+ attribute :value, :string
9
+ attribute :version, :string
10
+
11
+ enum platform: {
12
+ ios: 'ios',
13
+ android: 'android'
14
+ }
15
+
16
+ validates :code, presence: true
17
+ end
18
+
19
+ class_methods do
20
+
21
+ def verbose(q_params = nil)
22
+ r = Info.default_where(q_params).as_json(only: [:code, :value])
23
+ result = {}
24
+ r.map { |i| result[i['code']] = i['value'] }
25
+ result
26
+ end
27
+
28
+ end
29
+
30
+ end
31
+ end
@@ -0,0 +1,70 @@
1
+ module Com
2
+ module Model::MetaAction
3
+ extend ActiveSupport::Concern
4
+
5
+ included do
6
+ attribute :namespace_identifier, :string, default: '', null: false, index: true
7
+ attribute :business_identifier, :string, default: '', null: false, index: true
8
+ attribute :controller_path, :string, null: false, index: true
9
+ attribute :controller_name, :string, null: false
10
+ attribute :action_name, :string
11
+ attribute :path, :string
12
+ attribute :verb, :string
13
+ attribute :required_parts, :string, array: true
14
+ attribute :position, :integer
15
+ attribute :landmark, :boolean
16
+
17
+ belongs_to :meta_business, foreign_key: :business_identifier, primary_key: :identifier
18
+ belongs_to :meta_namespace, foreign_key: :namespace_identifier, primary_key: :identifier
19
+ belongs_to :meta_controller, foreign_key: :controller_path, primary_key: :controller_path
20
+
21
+ enum operation: {
22
+ list: 'list',
23
+ read: 'read',
24
+ add: 'add',
25
+ edit: 'edit',
26
+ remove: 'remove'
27
+ }, _default: 'read'
28
+
29
+ default_scope -> { order(position: :asc, id: :asc) }
30
+
31
+ acts_as_list scope: [:business_identifier, :namespace_identifier, :controller_path]
32
+
33
+ before_validation :sync_from_controller, if: -> { meta_controller && (controller_path_changed? || meta_controller.new_record?) }
34
+ end
35
+
36
+ def role_path
37
+ {
38
+ business_identifier.to_s => {
39
+ namespace_identifier.to_s => {
40
+ controller_path => { action_name => role_hash }
41
+ }
42
+ }
43
+ }
44
+ end
45
+
46
+ def role_hash
47
+ id
48
+ end
49
+
50
+ def identifier
51
+ [business_identifier, namespace_identifier, controller_path, (action_name.blank? ? '_' : action_name)].join('_')
52
+ end
53
+
54
+ def name
55
+ t1 = I18n.t "#{[business_identifier, namespace_identifier, controller_name, action_name].join('.')}.title", default: nil
56
+ return t1 if t1
57
+
58
+ t2 = self.class.enum_i18n :action_name, self.action_name
59
+ return t2 if t2
60
+
61
+ identifier
62
+ end
63
+
64
+ def sync_from_controller
65
+ self.business_identifier = meta_controller.business_identifier
66
+ self.namespace_identifier = meta_controller.namespace_identifier
67
+ end
68
+
69
+ end
70
+ end
@@ -0,0 +1,66 @@
1
+ module Com
2
+ module Model::MetaBusiness
3
+ extend ActiveSupport::Concern
4
+
5
+ included do
6
+ attribute :name, :string
7
+ attribute :identifier, :string, default: '', null: false, index: true
8
+ attribute :position, :integer
9
+
10
+ has_many :meta_controllers, foreign_key: :business_identifier, primary_key: :identifier
11
+ has_many :meta_actions, foreign_key: :business_identifier, primary_key: :identifier
12
+
13
+ has_one_attached :logo
14
+
15
+ validates :identifier, uniqueness: true
16
+
17
+ acts_as_list
18
+ end
19
+
20
+ def name
21
+ return super if super.present?
22
+
23
+ t = I18n.t "#{identifier}.title", default: nil
24
+ return t if t
25
+
26
+ identifier
27
+ end
28
+
29
+ def tr_id
30
+ "tr_#{identifier.blank? ? '_' : identifier}"
31
+ end
32
+
33
+ def meta_namespaces
34
+ MetaNamespace.where(identifier: MetaController.unscope(:order).select(:namespace_identifier).where(business_identifier: identifier).distinct.pluck(:namespace_identifier)).order(id: :asc)
35
+ end
36
+
37
+ def role_path
38
+ {
39
+ identifier => role_hash
40
+ }
41
+ end
42
+
43
+ def role_hash
44
+ meta_namespaces.each_with_object({}) { |i, h| h.merge! i.identifier => i.role_hash(identifier) }
45
+ end
46
+
47
+ class_methods do
48
+
49
+ def sync
50
+ existing = self.select(:identifier).distinct.pluck(:identifier)
51
+ business_keys = RailsExtend::Routes.businesses.keys
52
+
53
+ (business_keys - existing).each do |business|
54
+ b = self.find_or_initialize_by(identifier: business)
55
+ b.save
56
+ end
57
+
58
+ (existing - business_keys).each do |business|
59
+ self.find_by(identifier: business).destroy
60
+ end
61
+ end
62
+
63
+ end
64
+
65
+ end
66
+ end
@@ -0,0 +1,36 @@
1
+ module Com
2
+ module Model::MetaColumn
3
+ extend ActiveSupport::Concern
4
+
5
+ included do
6
+ attribute :record_name, :string, index: true
7
+ attribute :column_name, :string
8
+ attribute :sql_type, :string
9
+ attribute :column_type, :string
10
+ attribute :column_limit, :integer
11
+ attribute :comment, :string
12
+ attribute :defined_db, :boolean, default: false
13
+ attribute :defined_model, :boolean, default: false
14
+ attribute :belongs_enable, :boolean, default: false
15
+ attribute :belongs_table, :string
16
+
17
+ belongs_to :meta_model, foreign_key: :record_name, primary_key: :record_name
18
+ end
19
+
20
+ def sync
21
+ unless record_class.column_names.include?(self.column_name)
22
+ record_class.connection.add_column(record_class.table_name, column_name, column_type)
23
+ record_class.reset_column_information
24
+ end
25
+ end
26
+
27
+ def test
28
+ record_class.update self.column_name => 'ss'
29
+ end
30
+
31
+ def record_class
32
+ record_name.constantize
33
+ end
34
+
35
+ end
36
+ end
@@ -0,0 +1,115 @@
1
+ module Com
2
+ module Model::MetaController
3
+ extend ActiveSupport::Concern
4
+
5
+ included do
6
+ attribute :namespace_identifier, :string, default: '', null: false, index: true
7
+ attribute :business_identifier, :string, default: '', null: false, index: true
8
+ attribute :controller_path, :string, null: false, index: true
9
+ attribute :controller_name, :string, null: false
10
+ attribute :position, :integer
11
+
12
+ belongs_to :meta_namespace, foreign_key: :namespace_identifier, primary_key: :identifier, optional: true
13
+ belongs_to :meta_business, foreign_key: :business_identifier, primary_key: :identifier, optional: true
14
+
15
+ has_many(
16
+ :meta_actions,
17
+ -> { order(position: :asc) },
18
+ foreign_key: :controller_path,
19
+ primary_key: :controller_path,
20
+ dependent: :destroy_async,
21
+ inverse_of: :meta_controller
22
+ )
23
+ accepts_nested_attributes_for :meta_actions, allow_destroy: true
24
+
25
+ default_scope -> { order(position: :asc, id: :asc) }
26
+
27
+ validates :controller_path, uniqueness: { scope: [:business_identifier, :namespace_identifier] }
28
+
29
+ acts_as_list scope: [:namespace_identifier, :business_identifier]
30
+ end
31
+
32
+ def identifier
33
+ [business_identifier, namespace_identifier, (controller_path.blank? ? '_' : controller_path)].join('_')
34
+ end
35
+
36
+ def business_name
37
+ t = I18n.t "#{business_identifier}.title", default: nil
38
+ return t if t
39
+
40
+ business_identifier
41
+ end
42
+
43
+ def namespace_name
44
+ t = I18n.t "#{business_identifier}.#{namespace_identifier}.title", default: nil
45
+ return t if t
46
+
47
+ namespace_identifier
48
+ end
49
+
50
+ def name
51
+ t = I18n.t "#{controller_path.to_s.split('/').join('.')}.index.title", default: nil
52
+ return t if t
53
+
54
+ controller_path
55
+ end
56
+
57
+ def role_path
58
+ {
59
+ business_identifier => {
60
+ namespace_identifier => { controller_path => role_hash }
61
+ }
62
+ }
63
+ end
64
+
65
+ def role_hash
66
+ meta_actions.each_with_object({}) { |i, h| h.merge! i.action_name => i.role_hash }
67
+ end
68
+
69
+ class_methods do
70
+
71
+ def actions
72
+ result = {}
73
+ MetaBusiness.all.includes(meta_controllers: :meta_actions).each do |meta_business|
74
+ result.merge! meta_business.identifier => meta_business.meta_controllers.group_by(&:namespace_identifier).transform_values!(&->(meta_controllers){
75
+ meta_controllers.each_with_object({}) { |meta_controller, h| h.merge! meta_controller.controller_name => meta_controller.meta_actions.pluck(:action_name) }
76
+ })
77
+ end
78
+ result
79
+ end
80
+
81
+ def sync
82
+ RailsExtend::Routes.actions.each do |business, namespaces|
83
+ namespaces.each do |namespace, controllers|
84
+ controllers.each do |controller, actions|
85
+ meta_controller = MetaController.find_or_initialize_by(business_identifier: business, namespace_identifier: namespace, controller_path: controller)
86
+ meta_controller.controller_name = controller.to_s.split('/')[-1]
87
+
88
+ actions.each do |action_name, action|
89
+ meta_action = meta_controller.meta_actions.find_or_initialize_by(action_name: action_name)
90
+ meta_action.controller_name = meta_controller.controller_name
91
+ meta_action.path = action[:path]
92
+ meta_action.verb = action[:verb]
93
+ meta_action.required_parts = action[:required_parts]
94
+ end
95
+
96
+ present_meta_actions = meta_controller.meta_actions.pluck(:action_name)
97
+ meta_controller.meta_actions.select(&->(i){ (present_meta_actions - actions.keys).include?(i.action_name) }).each do |meta_action|
98
+ meta_action.mark_for_destruction
99
+ end
100
+
101
+ meta_controller.save if meta_controller.meta_actions.length > 0
102
+ end
103
+
104
+ present_controllers = MetaController.where(business_identifier: business, namespace_identifier: namespace).pluck(:controller_path)
105
+ MetaController.where(business_identifier: business, namespace_identifier: namespace, controller_path: (present_controllers - controllers.keys)).each do |meta_controller|
106
+ meta_controller.destroy
107
+ end
108
+ end
109
+ end
110
+ end
111
+
112
+ end
113
+
114
+ end
115
+ end
@@ -0,0 +1,58 @@
1
+ module Com
2
+ module Model::MetaModel
3
+ extend ActiveSupport::Concern
4
+
5
+ included do
6
+ attribute :name, :string
7
+ attribute :record_name, :string, index: true
8
+ attribute :description, :string
9
+ attribute :defined_db, :boolean, default: false
10
+ attribute :customizable, :boolean, default: false, comment: '是否允许用户定制'
11
+
12
+ has_many :meta_columns, foreign_key: :record_name, primary_key: :record_name, inverse_of: :meta_model
13
+ end
14
+
15
+ def record_class
16
+ record_name.constantize
17
+ end
18
+
19
+ class_methods do
20
+
21
+ def sync
22
+ RailsExtend::Models.models.each do |model|
23
+ next unless model.table_exists?
24
+ meta_model = self.find_or_initialize_by(record_name: model.name)
25
+ meta_model.defined_db = true
26
+
27
+ model.columns.each do |column|
28
+ meta_column = meta_model.meta_columns.find_or_initialize_by(column_name: column.name)
29
+ meta_column.column_type = column.type
30
+ meta_column.sql_type = column.sql_type
31
+ meta_column.column_limit = column.limit
32
+ meta_column.comment = column.comment
33
+ meta_column.defined_db = true
34
+ meta_column.defined_model = true if model.attributes_to_define_after_schema_loads.keys.include?(column.name)
35
+
36
+ present_meta_columns = meta_model.meta_columns.pluck(:column_name)
37
+ meta_model.meta_columns.select(&->(i){ (present_meta_columns - model.column_names).include?(i.column_name) }).each do |needless_column|
38
+ needless_column.mark_for_destruction
39
+ end
40
+ end
41
+ meta_model.save if meta_model.meta_columns.length > 0
42
+
43
+ present_models = self.pluck(:record_name)
44
+ self.where(record_name: (present_models - RailsExtend::Models.model_names)).each do |needless_model|
45
+ needless_model.destroy
46
+ end
47
+ end
48
+ end
49
+
50
+ # todo 导出为 json 配置
51
+ def dump
52
+
53
+ end
54
+
55
+ end
56
+
57
+ end
58
+ end
@@ -0,0 +1,61 @@
1
+ module Com
2
+ module Model::MetaNamespace
3
+ extend ActiveSupport::Concern
4
+
5
+ included do
6
+ attribute :name, :string
7
+ attribute :identifier, :string, default: '', null: false, index: true
8
+ attribute :verify_organ, :boolean, default: false
9
+ attribute :verify_member, :boolean, default: false
10
+ attribute :verify_user, :boolean, default: false
11
+
12
+ has_many :meta_controllers, foreign_key: :namespace_identifier, primary_key: :identifier
13
+ has_many :meta_actions, foreign_key: :namespace_identifier, primary_key: :identifier
14
+
15
+ validates :identifier, uniqueness: true
16
+ end
17
+
18
+ def name
19
+ if super.present?
20
+ super
21
+ else
22
+ identifier
23
+ end
24
+ end
25
+
26
+ def tr_id(business_identifier)
27
+ "tr_#{business_identifier}_#{identifier.blank? ? '_' : identifier}"
28
+ end
29
+
30
+ def role_path(business_identifier = '')
31
+ {
32
+ business_identifier.to_s => {
33
+ identifier => role_hash(business_identifier)
34
+ }
35
+ }
36
+ end
37
+
38
+ def role_hash(business_identifier = '')
39
+ meta_controllers = MetaController.includes(:meta_actions).where(business_identifier: business_identifier.to_s, namespace_identifier: identifier)
40
+ meta_controllers.each_with_object({}) { |i, h| h.merge! i.controller_path => i.role_hash }
41
+ end
42
+
43
+ class_methods do
44
+
45
+ def sync
46
+ existing = self.select(:identifier).distinct.pluck(:identifier)
47
+ namespace_keys = RailsExtend::Routes.namespaces.keys
48
+ (namespace_keys - existing).each do |namespace|
49
+ n = self.find_or_initialize_by(identifier: namespace)
50
+ n.save
51
+ end
52
+
53
+ (existing - namespace_keys).each do |namespace|
54
+ self.find_by(identifier: namespace).destroy
55
+ end
56
+ end
57
+
58
+ end
59
+
60
+ end
61
+ end
@@ -0,0 +1,18 @@
1
+ module Com
2
+ module Model::MetaOperation
3
+ extend ActiveSupport::Concern
4
+
5
+ included do
6
+ attribute :action_name, :string
7
+
8
+ enum operation: {
9
+ list: 'list',
10
+ read: 'read',
11
+ add: 'add',
12
+ edit: 'edit',
13
+ remove: 'remove'
14
+ }, _default: 'read'
15
+ end
16
+
17
+ end
18
+ end
@@ -0,0 +1,10 @@
1
+ module Com
2
+ module Model::MetaPermission
3
+ extend ActiveSupport::Concern
4
+
5
+ included do
6
+
7
+ end
8
+
9
+ end
10
+ end
@@ -0,0 +1,6 @@
1
+ module Com
2
+ module Model::MetaRelation
3
+ extend ActiveSupport::Concern
4
+
5
+ end
6
+ end
@@ -0,0 +1,10 @@
1
+ module Com
2
+ module Model::MetaRoute
3
+ extend ActiveSupport::Concern
4
+
5
+ included do
6
+
7
+ end
8
+
9
+ end
10
+ end
data/app/models/com.rb ADDED
@@ -0,0 +1,11 @@
1
+ module Com
2
+
3
+ def self.use_relative_model_naming?
4
+ true
5
+ end
6
+
7
+ def self.table_name_prefix
8
+ 'com_'
9
+ end
10
+
11
+ end
@@ -0,0 +1,15 @@
1
+ class FeishuBot < LogRecordBot
2
+
3
+ def send_message
4
+ url = "https://open.feishu.cn/open-apis/bot/hook/#{RailsCom.config.notify_key}"
5
+ HTTPX.post(url, json: body)
6
+ end
7
+
8
+ def body
9
+ {
10
+ title: '收到错误通知',
11
+ text: content
12
+ }
13
+ end
14
+
15
+ end
@@ -0,0 +1,40 @@
1
+ class LogRecordBot
2
+ attr_reader :content
3
+
4
+ def initialize(log_record)
5
+ @log_record = log_record
6
+ @content = ''
7
+ set_content
8
+ end
9
+
10
+ def set_content
11
+ @log_record.as_json(only: [:path, :controller_name, :action_name, :params, :session, :headers, :ip]).each do |k, v|
12
+ add_column @log_record.class.human_attribute_name(k), v unless v.blank?
13
+ end
14
+ add_column '用户信息', @log_record.user_info.inspect
15
+ add_paragraph(@log_record.exception)
16
+ add_paragraph(@log_record.exception_backtrace[0])
17
+ link_more('详细点击', Rails.application.routes.url_for(controller: 'com/panel/errs', action: 'show', id: @log_record.id))
18
+ end
19
+
20
+ def add_paragraph(content)
21
+ @content << "#{content}\n"
22
+ end
23
+
24
+ def add_section(header, paragraph, level: 3)
25
+ @content << "#{'#' * level} #{header}\n"
26
+ @content << "#{paragraph}\n"
27
+ end
28
+
29
+ def add_column(title, content)
30
+ @content << "**#{title}:**#{content}\n"
31
+ end
32
+
33
+ def link_more(name, url)
34
+ text = "\n[#{name}](#{url})"
35
+ truncate_length = 4096 - text.bytesize
36
+
37
+ @content = @content.truncate_bytes(truncate_length) + text
38
+ end
39
+
40
+ end
@@ -0,0 +1,18 @@
1
+ class WorkWechatBot < LogRecordBot
2
+
3
+ def send_message
4
+ url = "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=#{RailsCom.config.notify_key}"
5
+
6
+ HTTPX.post(url, json: body)
7
+ end
8
+
9
+ def body
10
+ {
11
+ msgtype: 'markdown',
12
+ markdown: {
13
+ content: content
14
+ }
15
+ }
16
+ end
17
+
18
+ end