create-entity-app-server 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (675) hide show
  1. package/.env.example +68 -0
  2. package/.gitignore +8 -0
  3. package/LICENSE +66 -0
  4. package/README.md +36 -0
  5. package/bin/create.js +222 -0
  6. package/configs/cache.json +7 -0
  7. package/configs/cors.json +24 -0
  8. package/configs/database.json +30 -0
  9. package/configs/security.json +45 -0
  10. package/configs/server.json +31 -0
  11. package/docs/README.md +274 -0
  12. package/docs/architecture.md +295 -0
  13. package/docs/cache.md +217 -0
  14. package/docs/configs.md +261 -0
  15. package/docs/database.md +505 -0
  16. package/docs/design/board-api-design.md +2342 -0
  17. package/docs/flows.md +581 -0
  18. package/docs/getting-started.md +83 -0
  19. package/docs/hooks.md +600 -0
  20. package/docs/internals.md +60 -0
  21. package/docs/plugins/2fa.md +121 -0
  22. package/docs/plugins/alimtalk.md +212 -0
  23. package/docs/plugins/friendtalk.md +158 -0
  24. package/docs/plugins/holidays.md +98 -0
  25. package/docs/plugins/how-to-create.md +148 -0
  26. package/docs/plugins/identity.md +223 -0
  27. package/docs/plugins/llm.md +567 -0
  28. package/docs/plugins/oauth.md +121 -0
  29. package/docs/plugins/ocr.md +168 -0
  30. package/docs/plugins/pg.md +226 -0
  31. package/docs/plugins/push.md +178 -0
  32. package/docs/plugins/sms.md +228 -0
  33. package/docs/plugins/taxinvoice.md +197 -0
  34. package/docs/routes/README.md +247 -0
  35. package/docs/routes/account-routes.md +262 -0
  36. package/docs/routes/alimtalk-routes.md +187 -0
  37. package/docs/routes/board-routes.md +492 -0
  38. package/docs/routes/email-verification.md +269 -0
  39. package/docs/routes/friendtalk-routes.md +45 -0
  40. package/docs/routes/holidays-routes.md +170 -0
  41. package/docs/routes/how-to-create.md +150 -0
  42. package/docs/routes/identity-routes.md +310 -0
  43. package/docs/routes/llm-routes.md +921 -0
  44. package/docs/routes/ocr-routes.md +133 -0
  45. package/docs/routes/password-reset.md +234 -0
  46. package/docs/routes/pg-routes.md +144 -0
  47. package/docs/routes/push-routes.md +205 -0
  48. package/docs/routes/sms-routes.md +243 -0
  49. package/docs/routes/smtp-routes.md +155 -0
  50. package/docs/routes/tax-invoice-routes.md +109 -0
  51. package/docs/schedules/dormancy-and-retention.md +160 -0
  52. package/docs/schedules/how-to-create.md +255 -0
  53. package/docs/scripts-guide.md +310 -0
  54. package/docs/security.md +221 -0
  55. package/docs/system.md +297 -0
  56. package/package.json +111 -0
  57. package/scripts/_gen-table-type.ts +605 -0
  58. package/scripts/build-minify-plugins.mjs +124 -0
  59. package/scripts/build-obfuscate-system.mjs +38 -0
  60. package/scripts/build.sh +140 -0
  61. package/scripts/dist-tsconfig.json +18 -0
  62. package/scripts/entity.sh +224 -0
  63. package/scripts/gen-table-type.sh +169 -0
  64. package/scripts/push.sh +102 -0
  65. package/scripts/release.sh +51 -0
  66. package/scripts/reset-all.sh +208 -0
  67. package/scripts/run.sh +202 -0
  68. package/src/app/hooks/README.md +148 -0
  69. package/src/app/hooks/account.ts +26 -0
  70. package/src/app/hooks/index.ts +19 -0
  71. package/src/app/hooks/order.ts +230 -0
  72. package/src/app/hooks/post.ts +162 -0
  73. package/src/app/plugins/2fa/config.example.json +15 -0
  74. package/src/app/plugins/2fa/config.json +17 -0
  75. package/src/app/plugins/2fa/config.ts +44 -0
  76. package/src/app/plugins/2fa/docs/README.md +139 -0
  77. package/src/app/plugins/2fa/entities/account.json +30 -0
  78. package/src/app/plugins/2fa/handlers/disable.ts +114 -0
  79. package/src/app/plugins/2fa/handlers/index.ts +11 -0
  80. package/src/app/plugins/2fa/handlers/recovery.ts +98 -0
  81. package/src/app/plugins/2fa/handlers/regenerate.ts +99 -0
  82. package/src/app/plugins/2fa/handlers/setup-verify.ts +121 -0
  83. package/src/app/plugins/2fa/handlers/setup.ts +92 -0
  84. package/src/app/plugins/2fa/handlers/status.ts +47 -0
  85. package/src/app/plugins/2fa/handlers/utils.ts +222 -0
  86. package/src/app/plugins/2fa/handlers/verify.ts +92 -0
  87. package/src/app/plugins/2fa/index.ts +50 -0
  88. package/src/app/plugins/2fa/routes.ts +49 -0
  89. package/src/app/plugins/2fa/templates/auth/2fa_disabled.html +23 -0
  90. package/src/app/plugins/2fa/templates/auth/2fa_recovery_regenerated.html +31 -0
  91. package/src/app/plugins/2fa/templates/auth/2fa_setup_complete.html +43 -0
  92. package/src/app/plugins/2fa/totp-utils.ts +189 -0
  93. package/src/app/plugins/2fa/types.ts +95 -0
  94. package/src/app/plugins/README.md +118 -0
  95. package/src/app/plugins/ais/config.json +7 -0
  96. package/src/app/plugins/ais/config.ts +32 -0
  97. package/src/app/plugins/ais/docs/README.md +142 -0
  98. package/src/app/plugins/ais/docs/api.md +138 -0
  99. package/src/app/plugins/ais/entities/ais_vessel.json +64 -0
  100. package/src/app/plugins/ais/handlers.ts +88 -0
  101. package/src/app/plugins/ais/index.ts +21 -0
  102. package/src/app/plugins/ais/routes.ts +13 -0
  103. package/src/app/plugins/ais/service.ts +242 -0
  104. package/src/app/plugins/ais/types/index.ts +78 -0
  105. package/src/app/plugins/alimtalk/config.example.json +52 -0
  106. package/src/app/plugins/alimtalk/config.json +26 -0
  107. package/src/app/plugins/alimtalk/config.ts +75 -0
  108. package/src/app/plugins/alimtalk/docs/README.md +140 -0
  109. package/src/app/plugins/alimtalk/entities/alimtalk_log.json +65 -0
  110. package/src/app/plugins/alimtalk/entities/alimtalk_msg.json +53 -0
  111. package/src/app/plugins/alimtalk/entity-adapter.ts +196 -0
  112. package/src/app/plugins/alimtalk/handlers.ts +84 -0
  113. package/src/app/plugins/alimtalk/index.ts +80 -0
  114. package/src/app/plugins/alimtalk/providers/aligo.ts +151 -0
  115. package/src/app/plugins/alimtalk/providers/index.ts +29 -0
  116. package/src/app/plugins/alimtalk/providers/nhn.ts +254 -0
  117. package/src/app/plugins/alimtalk/providers/ppurio.ts +145 -0
  118. package/src/app/plugins/alimtalk/providers/solapi.ts +145 -0
  119. package/src/app/plugins/alimtalk/routes.ts +15 -0
  120. package/src/app/plugins/alimtalk/service.ts +423 -0
  121. package/src/app/plugins/alimtalk/template-cache.ts +42 -0
  122. package/src/app/plugins/alimtalk/templates/alimtalk.json +27 -0
  123. package/src/app/plugins/alimtalk/types/client.ts +48 -0
  124. package/src/app/plugins/alimtalk/types/config.ts +53 -0
  125. package/src/app/plugins/alimtalk/types/friendtalk.ts +90 -0
  126. package/src/app/plugins/alimtalk/types/index.ts +4 -0
  127. package/src/app/plugins/alimtalk/types/job.ts +56 -0
  128. package/src/app/plugins/alimtalk/webhook.ts +211 -0
  129. package/src/app/plugins/distance-server/config.json +6 -0
  130. package/src/app/plugins/distance-server/config.ts +50 -0
  131. package/src/app/plugins/distance-server/docs/README.md +114 -0
  132. package/src/app/plugins/distance-server/handlers.ts +104 -0
  133. package/src/app/plugins/distance-server/index.ts +23 -0
  134. package/src/app/plugins/distance-server/routes.ts +36 -0
  135. package/src/app/plugins/distance-server/service.ts +187 -0
  136. package/src/app/plugins/distance-server/types/index.ts +8 -0
  137. package/src/app/plugins/example/config.json +6 -0
  138. package/src/app/plugins/example/config.ts +46 -0
  139. package/src/app/plugins/example/docs/README.md +64 -0
  140. package/src/app/plugins/example/entity-adapter.ts +96 -0
  141. package/src/app/plugins/example/handlers.ts +94 -0
  142. package/src/app/plugins/example/index.ts +63 -0
  143. package/src/app/plugins/example/routes.ts +30 -0
  144. package/src/app/plugins/example/service.ts +31 -0
  145. package/src/app/plugins/example/types/config.ts +11 -0
  146. package/src/app/plugins/example/types/index.ts +1 -0
  147. package/src/app/plugins/friendtalk/config.example.json +35 -0
  148. package/src/app/plugins/friendtalk/config.json +11 -0
  149. package/src/app/plugins/friendtalk/config.ts +70 -0
  150. package/src/app/plugins/friendtalk/docs/README.md +110 -0
  151. package/src/app/plugins/friendtalk/entities/friendtalk_log.json +89 -0
  152. package/src/app/plugins/friendtalk/entities/friendtalk_msg.json +91 -0
  153. package/src/app/plugins/friendtalk/entity-adapter.ts +150 -0
  154. package/src/app/plugins/friendtalk/handlers.ts +56 -0
  155. package/src/app/plugins/friendtalk/routes.ts +12 -0
  156. package/src/app/plugins/friendtalk/templates/friendtalk.json +16 -0
  157. package/src/app/plugins/holidays/config.example.json +6 -0
  158. package/src/app/plugins/holidays/config.json +10 -0
  159. package/src/app/plugins/holidays/config.ts +44 -0
  160. package/src/app/plugins/holidays/docs/README.md +122 -0
  161. package/src/app/plugins/holidays/entities/holiday.json +22 -0
  162. package/src/app/plugins/holidays/handlers.ts +135 -0
  163. package/src/app/plugins/holidays/index.ts +78 -0
  164. package/src/app/plugins/holidays/routes.ts +18 -0
  165. package/src/app/plugins/holidays/service.ts +241 -0
  166. package/src/app/plugins/holidays/types/api.ts +49 -0
  167. package/src/app/plugins/holidays/types/config.ts +8 -0
  168. package/src/app/plugins/holidays/types/index.ts +2 -0
  169. package/src/app/plugins/identity/config.example.json +43 -0
  170. package/src/app/plugins/identity/config.json +30 -0
  171. package/src/app/plugins/identity/config.ts +138 -0
  172. package/src/app/plugins/identity/crypto.ts +51 -0
  173. package/src/app/plugins/identity/docs/README.md +164 -0
  174. package/src/app/plugins/identity/entities/account.json +27 -0
  175. package/src/app/plugins/identity/entities/identity_verification.json +113 -0
  176. package/src/app/plugins/identity/entity-adapter.ts +242 -0
  177. package/src/app/plugins/identity/handlers.ts +239 -0
  178. package/src/app/plugins/identity/index.ts +80 -0
  179. package/src/app/plugins/identity/providers/danal.ts +150 -0
  180. package/src/app/plugins/identity/providers/index.ts +38 -0
  181. package/src/app/plugins/identity/providers/kmc.ts +140 -0
  182. package/src/app/plugins/identity/providers/nice.ts +304 -0
  183. package/src/app/plugins/identity/routes.ts +22 -0
  184. package/src/app/plugins/identity/service.ts +361 -0
  185. package/src/app/plugins/identity/types/config.ts +35 -0
  186. package/src/app/plugins/identity/types/index.ts +2 -0
  187. package/src/app/plugins/identity/types/verification.ts +105 -0
  188. package/src/app/plugins/kobc_freight/config.json +6 -0
  189. package/src/app/plugins/kobc_freight/config.ts +28 -0
  190. package/src/app/plugins/kobc_freight/docs/README.md +316 -0
  191. package/src/app/plugins/kobc_freight/entities/kobc_freight_entry.json +31 -0
  192. package/src/app/plugins/kobc_freight/entities/kobc_kcci_entry.json +67 -0
  193. package/src/app/plugins/kobc_freight/entities/kobc_kpli_entry.json +27 -0
  194. package/src/app/plugins/kobc_freight/entities/kobc_ncfi_entry.json +99 -0
  195. package/src/app/plugins/kobc_freight/handlers.ts +283 -0
  196. package/src/app/plugins/kobc_freight/index.ts +21 -0
  197. package/src/app/plugins/kobc_freight/routes.ts +39 -0
  198. package/src/app/plugins/kobc_freight/service.ts +604 -0
  199. package/src/app/plugins/kobc_freight/types/index.ts +99 -0
  200. package/src/app/plugins/llm/cache.ts +138 -0
  201. package/src/app/plugins/llm/chatbot-store.ts +270 -0
  202. package/src/app/plugins/llm/chunker.ts +96 -0
  203. package/src/app/plugins/llm/config.example.json +260 -0
  204. package/src/app/plugins/llm/config.json +71 -0
  205. package/src/app/plugins/llm/config.ts +99 -0
  206. package/src/app/plugins/llm/conversation-store.ts +140 -0
  207. package/src/app/plugins/llm/docs/README.md +120 -0
  208. package/src/app/plugins/llm/docs/api.md +250 -0
  209. package/src/app/plugins/llm/document-store.ts +318 -0
  210. package/src/app/plugins/llm/entities/llm_chatbot.json +66 -0
  211. package/src/app/plugins/llm/entities/llm_conversation.json +61 -0
  212. package/src/app/plugins/llm/entities/llm_document.json +67 -0
  213. package/src/app/plugins/llm/entities/llm_usage.json +51 -0
  214. package/src/app/plugins/llm/entities/llm_user_profile.json +45 -0
  215. package/src/app/plugins/llm/handlers.ts +1114 -0
  216. package/src/app/plugins/llm/index.ts +90 -0
  217. package/src/app/plugins/llm/profile-store.ts +125 -0
  218. package/src/app/plugins/llm/providers/anthropic.ts +233 -0
  219. package/src/app/plugins/llm/providers/azure.ts +267 -0
  220. package/src/app/plugins/llm/providers/gemini.ts +252 -0
  221. package/src/app/plugins/llm/providers/index.ts +86 -0
  222. package/src/app/plugins/llm/providers/ollama.ts +237 -0
  223. package/src/app/plugins/llm/providers/openai.ts +244 -0
  224. package/src/app/plugins/llm/routes.ts +73 -0
  225. package/src/app/plugins/llm/service.ts +965 -0
  226. package/src/app/plugins/llm/template-loader.ts +135 -0
  227. package/src/app/plugins/llm/templates/prompts/extract_json.json +8 -0
  228. package/src/app/plugins/llm/templates/prompts/summarize.json +10 -0
  229. package/src/app/plugins/llm/templates/prompts/translate.json +10 -0
  230. package/src/app/plugins/llm/types/chat.ts +96 -0
  231. package/src/app/plugins/llm/types/chatbot.ts +143 -0
  232. package/src/app/plugins/llm/types/config.ts +47 -0
  233. package/src/app/plugins/llm/types/conversation.ts +116 -0
  234. package/src/app/plugins/llm/types/index.ts +7 -0
  235. package/src/app/plugins/llm/types/profile.ts +48 -0
  236. package/src/app/plugins/llm/types/store.ts +50 -0
  237. package/src/app/plugins/llm/types/usage.ts +27 -0
  238. package/src/app/plugins/llm/usage-store.ts +64 -0
  239. package/src/app/plugins/oauth/account/handlers/index.ts +4 -0
  240. package/src/app/plugins/oauth/account/handlers/link.ts +165 -0
  241. package/src/app/plugins/oauth/account/handlers/providers-list.ts +49 -0
  242. package/src/app/plugins/oauth/account/handlers/refresh.ts +92 -0
  243. package/src/app/plugins/oauth/account/handlers/unlink.ts +105 -0
  244. package/src/app/plugins/oauth/config.example.json +65 -0
  245. package/src/app/plugins/oauth/config.json +72 -0
  246. package/src/app/plugins/oauth/config.ts +182 -0
  247. package/src/app/plugins/oauth/docs/README.md +160 -0
  248. package/src/app/plugins/oauth/entities/account_oauth.json +74 -0
  249. package/src/app/plugins/oauth/handlers/callback.ts +314 -0
  250. package/src/app/plugins/oauth/handlers/index.ts +2 -0
  251. package/src/app/plugins/oauth/handlers/redirect.ts +47 -0
  252. package/src/app/plugins/oauth/index.ts +74 -0
  253. package/src/app/plugins/oauth/providers/index.ts +530 -0
  254. package/src/app/plugins/oauth/routes.ts +49 -0
  255. package/src/app/plugins/oauth/service.ts +14 -0
  256. package/src/app/plugins/oauth/state.ts +105 -0
  257. package/src/app/plugins/oauth/types/index.ts +52 -0
  258. package/src/app/plugins/oauth/upsert.ts +162 -0
  259. package/src/app/plugins/ocr/cache.ts +50 -0
  260. package/src/app/plugins/ocr/config.example.json +103 -0
  261. package/src/app/plugins/ocr/config.json +110 -0
  262. package/src/app/plugins/ocr/config.ts +126 -0
  263. package/src/app/plugins/ocr/direction.ts +48 -0
  264. package/src/app/plugins/ocr/dispatch.ts +130 -0
  265. package/src/app/plugins/ocr/docs/README.md +125 -0
  266. package/src/app/plugins/ocr/docs/api.md +159 -0
  267. package/src/app/plugins/ocr/entities/ocr_result.json +98 -0
  268. package/src/app/plugins/ocr/entities/ocr_usage.json +57 -0
  269. package/src/app/plugins/ocr/entity-adapter.ts +198 -0
  270. package/src/app/plugins/ocr/errors.ts +42 -0
  271. package/src/app/plugins/ocr/handlers.ts +250 -0
  272. package/src/app/plugins/ocr/index.ts +68 -0
  273. package/src/app/plugins/ocr/llm-parser.ts +164 -0
  274. package/src/app/plugins/ocr/parsing-pipeline.ts +87 -0
  275. package/src/app/plugins/ocr/pdf-converter.ts +136 -0
  276. package/src/app/plugins/ocr/preprocessor.ts +313 -0
  277. package/src/app/plugins/ocr/providers/aws.ts +200 -0
  278. package/src/app/plugins/ocr/providers/azure.ts +183 -0
  279. package/src/app/plugins/ocr/providers/google.ts +155 -0
  280. package/src/app/plugins/ocr/providers/index.ts +80 -0
  281. package/src/app/plugins/ocr/providers/naver.ts +186 -0
  282. package/src/app/plugins/ocr/providers/tesseract.ts +198 -0
  283. package/src/app/plugins/ocr/providers/upstage.ts +156 -0
  284. package/src/app/plugins/ocr/quota.ts +108 -0
  285. package/src/app/plugins/ocr/refiner.ts +112 -0
  286. package/src/app/plugins/ocr/routes.ts +19 -0
  287. package/src/app/plugins/ocr/service.ts +333 -0
  288. package/src/app/plugins/ocr/template-loader.ts +72 -0
  289. package/src/app/plugins/ocr/template-matcher.ts +422 -0
  290. package/src/app/plugins/ocr/templates/business_reg.json +145 -0
  291. package/src/app/plugins/ocr/templates/career_cert.json +93 -0
  292. package/src/app/plugins/ocr/templates/driver_license.json +89 -0
  293. package/src/app/plugins/ocr/templates/facility_card.json +82 -0
  294. package/src/app/plugins/ocr/templates/id_card.json +55 -0
  295. package/src/app/plugins/ocr/templates/invoice.json +92 -0
  296. package/src/app/plugins/ocr/templates/namecard.json +116 -0
  297. package/src/app/plugins/ocr/templates/prompts/business_reg.json +14 -0
  298. package/src/app/plugins/ocr/templates/prompts/career_cert.json +16 -0
  299. package/src/app/plugins/ocr/templates/prompts/driver_license.json +14 -0
  300. package/src/app/plugins/ocr/templates/prompts/facility_card.json +15 -0
  301. package/src/app/plugins/ocr/templates/prompts/general.json +13 -0
  302. package/src/app/plugins/ocr/templates/prompts/id_card.json +11 -0
  303. package/src/app/plugins/ocr/templates/prompts/invoice.json +17 -0
  304. package/src/app/plugins/ocr/templates/prompts/namecard.json +15 -0
  305. package/src/app/plugins/ocr/templates/prompts/receipt.json +14 -0
  306. package/src/app/plugins/ocr/templates/receipt.json +79 -0
  307. package/src/app/plugins/ocr/types/config.ts +60 -0
  308. package/src/app/plugins/ocr/types/driver.ts +71 -0
  309. package/src/app/plugins/ocr/types/index.ts +5 -0
  310. package/src/app/plugins/ocr/types/parsed.ts +101 -0
  311. package/src/app/plugins/ocr/types/store.ts +70 -0
  312. package/src/app/plugins/ocr/types/template.ts +89 -0
  313. package/src/app/plugins/ocr/utils.ts +18 -0
  314. package/src/app/plugins/pg/config.example.json +79 -0
  315. package/src/app/plugins/pg/config.json +35 -0
  316. package/src/app/plugins/pg/config.ts +58 -0
  317. package/src/app/plugins/pg/docs/README.md +176 -0
  318. package/src/app/plugins/pg/entities/pg_cancel.json +60 -0
  319. package/src/app/plugins/pg/entities/pg_order.json +115 -0
  320. package/src/app/plugins/pg/entities/pg_webhook_log.json +52 -0
  321. package/src/app/plugins/pg/entity-adapter.ts +144 -0
  322. package/src/app/plugins/pg/handlers.ts +240 -0
  323. package/src/app/plugins/pg/index.ts +98 -0
  324. package/src/app/plugins/pg/providers/danal.ts +178 -0
  325. package/src/app/plugins/pg/providers/hecto.ts +340 -0
  326. package/src/app/plugins/pg/providers/index.ts +53 -0
  327. package/src/app/plugins/pg/providers/inicis.ts +151 -0
  328. package/src/app/plugins/pg/providers/kakaopay.ts +242 -0
  329. package/src/app/plugins/pg/providers/kcp.ts +147 -0
  330. package/src/app/plugins/pg/providers/naverpay.ts +299 -0
  331. package/src/app/plugins/pg/providers/payco.ts +290 -0
  332. package/src/app/plugins/pg/providers/payletter.ts +377 -0
  333. package/src/app/plugins/pg/providers/paypal.ts +423 -0
  334. package/src/app/plugins/pg/providers/toss.ts +157 -0
  335. package/src/app/plugins/pg/providers/wanna.ts +163 -0
  336. package/src/app/plugins/pg/routes.ts +31 -0
  337. package/src/app/plugins/pg/service.ts +531 -0
  338. package/src/app/plugins/pg/types/client.ts +52 -0
  339. package/src/app/plugins/pg/types/config.ts +42 -0
  340. package/src/app/plugins/pg/types/error.ts +25 -0
  341. package/src/app/plugins/pg/types/index.ts +4 -0
  342. package/src/app/plugins/pg/types/payment.ts +145 -0
  343. package/src/app/plugins/providers/docs/README.md +32 -0
  344. package/src/app/plugins/providers/solapi-auth.ts +27 -0
  345. package/src/app/plugins/push/config.example.json +26 -0
  346. package/src/app/plugins/push/config.json +18 -0
  347. package/src/app/plugins/push/config.ts +119 -0
  348. package/src/app/plugins/push/docs/README.md +147 -0
  349. package/src/app/plugins/push/entities/push_log.json +86 -0
  350. package/src/app/plugins/push/entities/push_msg.json +56 -0
  351. package/src/app/plugins/push/entity-adapter.ts +326 -0
  352. package/src/app/plugins/push/handlers.ts +193 -0
  353. package/src/app/plugins/push/index.ts +85 -0
  354. package/src/app/plugins/push/providers/apns.ts +152 -0
  355. package/src/app/plugins/push/providers/fcm.ts +181 -0
  356. package/src/app/plugins/push/providers/index.ts +42 -0
  357. package/src/app/plugins/push/providers/utils.ts +30 -0
  358. package/src/app/plugins/push/routes.ts +24 -0
  359. package/src/app/plugins/push/service.ts +297 -0
  360. package/src/app/plugins/push/types/config.ts +32 -0
  361. package/src/app/plugins/push/types/index.ts +14 -0
  362. package/src/app/plugins/push/types/job.ts +79 -0
  363. package/src/app/plugins/shared/docs/README.md +11 -0
  364. package/src/app/plugins/sms/config.example.json +30 -0
  365. package/src/app/plugins/sms/config.json +33 -0
  366. package/src/app/plugins/sms/config.ts +158 -0
  367. package/src/app/plugins/sms/docs/README.md +236 -0
  368. package/src/app/plugins/sms/entities/sms_log.json +65 -0
  369. package/src/app/plugins/sms/entities/sms_msg.json +82 -0
  370. package/src/app/plugins/sms/entities/sms_verification.json +50 -0
  371. package/src/app/plugins/sms/entity-adapter.ts +213 -0
  372. package/src/app/plugins/sms/handlers.ts +149 -0
  373. package/src/app/plugins/sms/index.ts +93 -0
  374. package/src/app/plugins/sms/providers/aligo.ts +73 -0
  375. package/src/app/plugins/sms/providers/aws-sns.ts +182 -0
  376. package/src/app/plugins/sms/providers/index.ts +47 -0
  377. package/src/app/plugins/sms/providers/nhn.ts +82 -0
  378. package/src/app/plugins/sms/providers/ppurio.ts +76 -0
  379. package/src/app/plugins/sms/providers/solapi.ts +83 -0
  380. package/src/app/plugins/sms/routes.ts +23 -0
  381. package/src/app/plugins/sms/service.ts +239 -0
  382. package/src/app/plugins/sms/types/client.ts +41 -0
  383. package/src/app/plugins/sms/types/config.ts +46 -0
  384. package/src/app/plugins/sms/types/index.ts +3 -0
  385. package/src/app/plugins/sms/types/job.ts +51 -0
  386. package/src/app/plugins/sms/verification.ts +162 -0
  387. package/src/app/plugins/smtp/config.json +5 -0
  388. package/src/app/plugins/smtp/config.ts +41 -0
  389. package/src/app/plugins/smtp/docs/README.md +165 -0
  390. package/src/app/plugins/smtp/handlers.ts +52 -0
  391. package/src/app/plugins/smtp/index.ts +33 -0
  392. package/src/app/plugins/smtp/routes.ts +19 -0
  393. package/src/app/plugins/smtp/templates/layout.html +50 -0
  394. package/src/app/plugins/smtp/types/config.ts +8 -0
  395. package/src/app/plugins/smtp/types/index.ts +1 -0
  396. package/src/app/plugins/taxinvoice/config.example.json +60 -0
  397. package/src/app/plugins/taxinvoice/config.json +35 -0
  398. package/src/app/plugins/taxinvoice/config.ts +117 -0
  399. package/src/app/plugins/taxinvoice/docs/README.md +322 -0
  400. package/src/app/plugins/taxinvoice/entities/tax_invoice.json +229 -0
  401. package/src/app/plugins/taxinvoice/entities/tax_invoice_item.json +56 -0
  402. package/src/app/plugins/taxinvoice/entities/tax_invoice_log.json +50 -0
  403. package/src/app/plugins/taxinvoice/entities/tax_invoice_party.json +61 -0
  404. package/src/app/plugins/taxinvoice/entity-adapter.ts +285 -0
  405. package/src/app/plugins/taxinvoice/handlers.ts +120 -0
  406. package/src/app/plugins/taxinvoice/index.ts +74 -0
  407. package/src/app/plugins/taxinvoice/providers/barobill.ts +273 -0
  408. package/src/app/plugins/taxinvoice/providers/bolta.ts +193 -0
  409. package/src/app/plugins/taxinvoice/providers/esero.ts +201 -0
  410. package/src/app/plugins/taxinvoice/providers/index.ts +41 -0
  411. package/src/app/plugins/taxinvoice/providers/popbill.ts +258 -0
  412. package/src/app/plugins/taxinvoice/providers/sendbill.ts +443 -0
  413. package/src/app/plugins/taxinvoice/providers/smartbill.ts +234 -0
  414. package/src/app/plugins/taxinvoice/routes.ts +17 -0
  415. package/src/app/plugins/taxinvoice/service.ts +439 -0
  416. package/src/app/plugins/taxinvoice/types/client.ts +57 -0
  417. package/src/app/plugins/taxinvoice/types/config.ts +42 -0
  418. package/src/app/plugins/taxinvoice/types/index.ts +4 -0
  419. package/src/app/plugins/taxinvoice/types/invoice.ts +128 -0
  420. package/src/app/plugins/taxinvoice/types/queue.ts +22 -0
  421. package/src/app/plugins/vessel_kr/config.json +9 -0
  422. package/src/app/plugins/vessel_kr/config.ts +32 -0
  423. package/src/app/plugins/vessel_kr/docs/README.md +167 -0
  424. package/src/app/plugins/vessel_kr/entities/vessel_kr_entry.json +136 -0
  425. package/src/app/plugins/vessel_kr/handlers.ts +102 -0
  426. package/src/app/plugins/vessel_kr/index.ts +21 -0
  427. package/src/app/plugins/vessel_kr/routes.ts +15 -0
  428. package/src/app/plugins/vessel_kr/service.ts +264 -0
  429. package/src/app/plugins/vessel_kr/types/index.ts +100 -0
  430. package/src/app/routes/README.md +71 -0
  431. package/src/app/routes/account/change-password/config.json +5 -0
  432. package/src/app/routes/account/change-password/entities/password_history.json +18 -0
  433. package/src/app/routes/account/change-password/handlers.ts +204 -0
  434. package/src/app/routes/account/change-password/routes.ts +28 -0
  435. package/src/app/routes/account/config.json +5 -0
  436. package/src/app/routes/account/reactivate/config.json +5 -0
  437. package/src/app/routes/account/reactivate/handlers.ts +249 -0
  438. package/src/app/routes/account/reactivate/routes.ts +14 -0
  439. package/src/app/routes/account/register/config-loader.ts +34 -0
  440. package/src/app/routes/account/register/config.json +8 -0
  441. package/src/app/routes/account/register/handlers.ts +207 -0
  442. package/src/app/routes/account/register/routes.ts +25 -0
  443. package/src/app/routes/account/register/types/index.ts +50 -0
  444. package/src/app/routes/account/routes.ts +31 -0
  445. package/src/app/routes/account/templates/force_reset.html +18 -0
  446. package/src/app/routes/account/templates/welcome.html +14 -0
  447. package/src/app/routes/account/withdraw/handlers.ts +111 -0
  448. package/src/app/routes/account/withdraw/routes.ts +18 -0
  449. package/src/app/routes/approval/config.json +5 -0
  450. package/src/app/routes/approval/entities/approval.json +99 -0
  451. package/src/app/routes/approval/entities/comments.json +17 -0
  452. package/src/app/routes/approval/entities/reference.json +16 -0
  453. package/src/app/routes/approval/routes.ts +30 -0
  454. package/src/app/routes/auth/config.json +5 -0
  455. package/src/app/routes/auth/handlers.ts +245 -0
  456. package/src/app/routes/auth/routes.ts +16 -0
  457. package/src/app/routes/board/config.json +5 -0
  458. package/src/app/routes/board/entities/board_category.json +90 -0
  459. package/src/app/routes/board/entities/board_comment.json +83 -0
  460. package/src/app/routes/board/entities/board_like.json +51 -0
  461. package/src/app/routes/board/entities/board_mention.json +50 -0
  462. package/src/app/routes/board/entities/board_post.json +148 -0
  463. package/src/app/routes/board/entities/board_post_tag.json +41 -0
  464. package/src/app/routes/board/entities/board_rating.json +127 -0
  465. package/src/app/routes/board/entities/board_read_log.json +29 -0
  466. package/src/app/routes/board/entities/board_report.json +53 -0
  467. package/src/app/routes/board/entities/board_tag.json +21 -0
  468. package/src/app/routes/board/handlers/categories.ts +134 -0
  469. package/src/app/routes/board/handlers/comments.ts +207 -0
  470. package/src/app/routes/board/handlers/files.ts +104 -0
  471. package/src/app/routes/board/handlers/likes.ts +31 -0
  472. package/src/app/routes/board/handlers/mentions.ts +54 -0
  473. package/src/app/routes/board/handlers/posts.ts +577 -0
  474. package/src/app/routes/board/handlers/ratings.ts +60 -0
  475. package/src/app/routes/board/handlers/reports.ts +131 -0
  476. package/src/app/routes/board/handlers/tags.ts +81 -0
  477. package/src/app/routes/board/routes.ts +137 -0
  478. package/src/app/routes/calendar/config.json +5 -0
  479. package/src/app/routes/calendar/entities/calendar_attendees.json +23 -0
  480. package/src/app/routes/calendar/entities/calendar_comments.json +17 -0
  481. package/src/app/routes/calendar/entities/calendar_events.json +48 -0
  482. package/src/app/routes/calendar/entities/calendar_kind.json +11 -0
  483. package/src/app/routes/calendar/entities/calendar_method.json +11 -0
  484. package/src/app/routes/calendar/routes.ts +32 -0
  485. package/src/app/routes/email-verify/config-loader.ts +47 -0
  486. package/src/app/routes/email-verify/config.example.json +13 -0
  487. package/src/app/routes/email-verify/config.json +16 -0
  488. package/src/app/routes/email-verify/entities/account.json +23 -0
  489. package/src/app/routes/email-verify/handlers/activate.ts +103 -0
  490. package/src/app/routes/email-verify/handlers/change.ts +106 -0
  491. package/src/app/routes/email-verify/handlers/confirm.ts +87 -0
  492. package/src/app/routes/email-verify/handlers/index.ts +20 -0
  493. package/src/app/routes/email-verify/handlers/send.ts +157 -0
  494. package/src/app/routes/email-verify/handlers/status.ts +53 -0
  495. package/src/app/routes/email-verify/handlers/utils.ts +85 -0
  496. package/src/app/routes/email-verify/routes.ts +54 -0
  497. package/src/app/routes/email-verify/templates/verification.html +15 -0
  498. package/src/app/routes/email-verify/templates/verification_link.html +19 -0
  499. package/src/app/routes/email-verify/types/index.ts +77 -0
  500. package/src/app/routes/email-verify/verification-utils.ts +57 -0
  501. package/src/app/routes/example-db/config.json +5 -0
  502. package/src/app/routes/example-db/handlers.ts +220 -0
  503. package/src/app/routes/example-db/models/account-ext.ts +33 -0
  504. package/src/app/routes/example-db/models/users.ts +30 -0
  505. package/src/app/routes/example-db/routes.ts +23 -0
  506. package/src/app/routes/example-db/types/defaults.ts +21 -0
  507. package/src/app/routes/example-db/types/index.ts +4 -0
  508. package/src/app/routes/example-db/types/params.ts +3 -0
  509. package/src/app/routes/example-db/types/query.ts +6 -0
  510. package/src/app/routes/example-db/types/user.ts +11 -0
  511. package/src/app/routes/example-es/config.json +5 -0
  512. package/src/app/routes/example-es/handlers.ts +216 -0
  513. package/src/app/routes/example-es/routes.ts +24 -0
  514. package/src/app/routes/example-es/types/defaults.ts +30 -0
  515. package/src/app/routes/example-es/types/index.ts +4 -0
  516. package/src/app/routes/example-es/types/params.ts +3 -0
  517. package/src/app/routes/example-es/types/post.ts +12 -0
  518. package/src/app/routes/example-es/types/query.ts +14 -0
  519. package/src/app/routes/funeral/config.json +5 -0
  520. package/src/app/routes/funeral/entities/funeral.json +77 -0
  521. package/src/app/routes/funeral/entities/funeral_docs.json +36 -0
  522. package/src/app/routes/funeral/entities/funeral_mourner.json +31 -0
  523. package/src/app/routes/funeral/entities/funeral_order.json +48 -0
  524. package/src/app/routes/funeral/entities/funeral_room.json +61 -0
  525. package/src/app/routes/funeral/entities/funeral_schedule.json +39 -0
  526. package/src/app/routes/funeral/routes.ts +32 -0
  527. package/src/app/routes/health/config.json +5 -0
  528. package/src/app/routes/health/handlers.ts +69 -0
  529. package/src/app/routes/health/routes.ts +14 -0
  530. package/src/app/routes/hr/career/config.json +5 -0
  531. package/src/app/routes/hr/career/entities/employee_career.json +15 -0
  532. package/src/app/routes/hr/career/routes.ts +25 -0
  533. package/src/app/routes/hr/config.json +5 -0
  534. package/src/app/routes/hr/education/config.json +5 -0
  535. package/src/app/routes/hr/education/entities/employee_education.json +29 -0
  536. package/src/app/routes/hr/education/entities/employee_education_mans.json +25 -0
  537. package/src/app/routes/hr/education/entities/employee_school.json +19 -0
  538. package/src/app/routes/hr/education/routes.ts +28 -0
  539. package/src/app/routes/hr/employee/config.json +5 -0
  540. package/src/app/routes/hr/employee/entities/employee.json +59 -0
  541. package/src/app/routes/hr/employee/entities/employee_cert.json +19 -0
  542. package/src/app/routes/hr/employee/entities/employee_reward.json +21 -0
  543. package/src/app/routes/hr/employee/routes.ts +27 -0
  544. package/src/app/routes/hr/entities/hr_group.json +47 -0
  545. package/src/app/routes/hr/entities/hr_group_pv.json +20 -0
  546. package/src/app/routes/hr/entities/hr_role.json +43 -0
  547. package/src/app/routes/hr/entities/hr_role_pv.json +20 -0
  548. package/src/app/routes/hr/routes.ts +29 -0
  549. package/src/app/routes/messages/chat/config.json +5 -0
  550. package/src/app/routes/messages/chat/entities/user_chat.json +47 -0
  551. package/src/app/routes/messages/chat/entities/user_chat_room.json +38 -0
  552. package/src/app/routes/messages/chat/entities/user_chat_room_member.json +49 -0
  553. package/src/app/routes/messages/chat/routes.ts +28 -0
  554. package/src/app/routes/messages/msgbox/config.json +5 -0
  555. package/src/app/routes/messages/msgbox/entities/user_msgbox.json +73 -0
  556. package/src/app/routes/messages/msgbox/routes.ts +28 -0
  557. package/src/app/routes/password-reset/config.example.json +13 -0
  558. package/src/app/routes/password-reset/config.json +15 -0
  559. package/src/app/routes/password-reset/entities/account.json +13 -0
  560. package/src/app/routes/password-reset/handlers.ts +335 -0
  561. package/src/app/routes/password-reset/password-utils.ts +96 -0
  562. package/src/app/routes/password-reset/routes.ts +84 -0
  563. package/src/app/routes/password-reset/templates/password_reset.html +21 -0
  564. package/src/app/routes/password-reset/templates/password_reset_link.html +19 -0
  565. package/src/app/routes/password-reset/types/index.ts +95 -0
  566. package/src/app/routes/privilege/config.json +5 -0
  567. package/src/app/routes/privilege/entities/pv_group.json +29 -0
  568. package/src/app/routes/privilege/entities/pv_group_item.json +31 -0
  569. package/src/app/routes/privilege/entities/pv_item.json +176 -0
  570. package/src/app/routes/privilege/entities/user_pv_group.json +20 -0
  571. package/src/app/routes/privilege/entities/user_pv_item.json +20 -0
  572. package/src/app/routes/privilege/routes.ts +33 -0
  573. package/src/app/routes/user/config.json +5 -0
  574. package/src/app/routes/user/entities/user.json +64 -0
  575. package/src/app/routes/user/entities/user_biometric.json +28 -0
  576. package/src/app/routes/user/routes.ts +27 -0
  577. package/src/app/routes/vessel-tracking/config.json +3 -0
  578. package/src/app/routes/vessel-tracking/entities/tracked_vessel.json +261 -0
  579. package/src/app/routes/vessel-tracking/handlers.ts +134 -0
  580. package/src/app/routes/vessel-tracking/routes.ts +25 -0
  581. package/src/app/routes/vessel-tracking/types/index.ts +5 -0
  582. package/src/app/routes/vessel-tracking/types/vessel.ts +59 -0
  583. package/src/app/schedules/README.md +105 -0
  584. package/src/app/schedules/ais_sync/config.json +4 -0
  585. package/src/app/schedules/ais_sync/index.ts +69 -0
  586. package/src/app/schedules/data-retention/config.json +9 -0
  587. package/src/app/schedules/data-retention/index.ts +238 -0
  588. package/src/app/schedules/dormancy/config.json +15 -0
  589. package/src/app/schedules/dormancy/entities/account.json +14 -0
  590. package/src/app/schedules/dormancy/entities/privacy_cron_lock.json +23 -0
  591. package/src/app/schedules/dormancy/index.ts +289 -0
  592. package/src/app/schedules/dormancy/templates/dormancy_completed.html +21 -0
  593. package/src/app/schedules/dormancy/templates/dormancy_warning.html +20 -0
  594. package/src/app/schedules/kobc_freight_sync/config.json +4 -0
  595. package/src/app/schedules/kobc_freight_sync/index.ts +94 -0
  596. package/src/app/schedules/vessel_kr_sync/config.json +4 -0
  597. package/src/app/schedules/vessel_kr_sync/index.ts +72 -0
  598. package/src/system/app.ts +129 -0
  599. package/src/system/cache/_store-ref.ts +15 -0
  600. package/src/system/cache/config.ts +61 -0
  601. package/src/system/cache/drivers/memcached.ts +135 -0
  602. package/src/system/cache/drivers/memory.ts +92 -0
  603. package/src/system/cache/drivers/redis.ts +109 -0
  604. package/src/system/cache/index.ts +43 -0
  605. package/src/system/cache/namespaced.ts +79 -0
  606. package/src/system/cache/plugin.ts +59 -0
  607. package/src/system/cache/types.ts +81 -0
  608. package/src/system/config/config-path.ts +20 -0
  609. package/src/system/config/cors.ts +49 -0
  610. package/src/system/config/database.ts +190 -0
  611. package/src/system/config/entity-server.ts +8 -0
  612. package/src/system/config/env-substitution.ts +4 -0
  613. package/src/system/config/env.ts +30 -0
  614. package/src/system/config/json-config.ts +13 -0
  615. package/src/system/config/module-path.ts +16 -0
  616. package/src/system/config/packet-encrypt.ts +80 -0
  617. package/src/system/config/rate-limit.ts +4 -0
  618. package/src/system/config/security-loader.ts +25 -0
  619. package/src/system/config/security.ts +16 -0
  620. package/src/system/config/server.ts +81 -0
  621. package/src/system/crypto/cipher.ts +117 -0
  622. package/src/system/crypto/data-encrypt.ts +174 -0
  623. package/src/system/crypto/hash.ts +24 -0
  624. package/src/system/crypto/packet.test.ts +23 -0
  625. package/src/system/crypto/packet.ts +97 -0
  626. package/src/system/crypto/random.ts +19 -0
  627. package/src/system/email/sender.ts +85 -0
  628. package/src/system/email/template-engine.ts +147 -0
  629. package/src/system/entity-server/bootstrap.ts +270 -0
  630. package/src/system/entity-server/client.ts +64 -0
  631. package/src/system/hooks/loader.ts +32 -0
  632. package/src/system/hooks/runner.ts +159 -0
  633. package/src/system/hooks/types.ts +75 -0
  634. package/src/system/hooks/withdraw-hooks.ts +42 -0
  635. package/src/system/http/cookie.ts +62 -0
  636. package/src/system/http/response.ts +16 -0
  637. package/src/system/index.ts +48 -0
  638. package/src/system/logging/log-format.ts +50 -0
  639. package/src/system/logging/logger.ts +104 -0
  640. package/src/system/middleware/_db-ref.ts +26 -0
  641. package/src/system/middleware/_push-ref.ts +28 -0
  642. package/src/system/middleware/access-log.ts +34 -0
  643. package/src/system/middleware/auth.ts +67 -0
  644. package/src/system/middleware/csrf.ts +172 -0
  645. package/src/system/middleware/database.ts +44 -0
  646. package/src/system/middleware/error-handler.ts +51 -0
  647. package/src/system/middleware/extension-loader.ts +111 -0
  648. package/src/system/middleware/packet-encrypt.ts +281 -0
  649. package/src/system/middleware/request-id.ts +18 -0
  650. package/src/system/plugins/access-log.ts +34 -0
  651. package/src/system/plugins/packet-encrypt.ts +281 -0
  652. package/src/system/proxy/register.ts +37 -0
  653. package/src/system/public-api.ts +140 -0
  654. package/src/system/push/sender.ts +131 -0
  655. package/src/system/routes/entity-interceptor.ts +327 -0
  656. package/src/system/routes/loader.ts +215 -0
  657. package/src/system/scheduler/cron-utils.ts +150 -0
  658. package/src/system/scheduler/distributed-lock.ts +141 -0
  659. package/src/system/scheduler/schedule-loader.ts +105 -0
  660. package/src/system/security/anonymous-device-id.ts +41 -0
  661. package/src/system/security/anonymous-device.ts +98 -0
  662. package/src/system/security/anonymous-packet-token.ts +23 -0
  663. package/src/system/security/packet-bootstrap.ts +16 -0
  664. package/src/system/security/password-policy.ts +191 -0
  665. package/src/system/startup-banner.ts +191 -0
  666. package/src/system/types/fastify.d.ts +53 -0
  667. package/src/system/utils/app-path.ts +31 -0
  668. package/src/system/utils/coerce.ts +28 -0
  669. package/src/system/utils/date-prefixed-log-stream.ts +176 -0
  670. package/src/system/utils/errors.ts +66 -0
  671. package/src/system/utils/format.ts +45 -0
  672. package/src/system/utils/http-client.ts +79 -0
  673. package/src/system/utils/user-agent.ts +82 -0
  674. package/tsconfig.app.json +17 -0
  675. package/tsconfig.json +39 -0
@@ -0,0 +1,1114 @@
1
+ /**
2
+ * LLM 핸들러 구현
3
+ */
4
+
5
+ import type { FastifyRequest, FastifyReply } from "fastify";
6
+ import { ok, fail } from "@gateway/api";
7
+ import type {
8
+ Message,
9
+ RAGOptions,
10
+ ConversationFilter,
11
+ DocumentFilter,
12
+ UsageFilter,
13
+ UserProfileUpsertInput,
14
+ UserProfileFilter,
15
+ } from "./types/index.ts";
16
+ import type {
17
+ ChatbotCreateInput,
18
+ ChatbotUpdateInput,
19
+ ChatbotSessionFilter,
20
+ } from "./types/chatbot.ts";
21
+ import type { LlmService } from "./service.ts";
22
+
23
+ /** 요청에서 LlmService 인스턴스를 가져온다 */
24
+ const svc = (req: FastifyRequest): LlmService => req.server.llmService!;
25
+
26
+ // ─── 미들웨어 ───
27
+
28
+ export async function ensureService(
29
+ request: FastifyRequest,
30
+ reply: FastifyReply,
31
+ ) {
32
+ if (!request.server.llmService) {
33
+ reply.status(503).send(fail("LLM plugin is not enabled"));
34
+ }
35
+ }
36
+
37
+ // ═══════════════════════════════════════════════════════════════════════
38
+ // 1. 채팅
39
+ // ═══════════════════════════════════════════════════════════════════════
40
+ /** 채팅 완성 요청을 처리한다 */ export async function chat(
41
+ request: FastifyRequest,
42
+ reply: FastifyReply,
43
+ ) {
44
+ const body = request.body as {
45
+ provider?: string;
46
+ messages?: Message[];
47
+ system?: string;
48
+ max_tokens?: number;
49
+ temperature?: number;
50
+ json_mode?: boolean;
51
+ stop?: string[];
52
+ };
53
+
54
+ if (!body.messages?.length) {
55
+ return reply.status(400).send(fail("messages required"));
56
+ }
57
+
58
+ const resp = await svc(request).chat(body.provider, {
59
+ messages: body.messages,
60
+ system: body.system,
61
+ maxTokens: body.max_tokens,
62
+ temperature: body.temperature,
63
+ jsonMode: body.json_mode,
64
+ stop: body.stop,
65
+ });
66
+
67
+ return ok(resp);
68
+ }
69
+
70
+ /** 스트리밍 채팅 요청을 처리한다 */
71
+ export async function chatStream(request: FastifyRequest, reply: FastifyReply) {
72
+ const body = request.body as {
73
+ provider?: string;
74
+ messages?: Message[];
75
+ system?: string;
76
+ max_tokens?: number;
77
+ temperature?: number;
78
+ json_mode?: boolean;
79
+ stop?: string[];
80
+ };
81
+
82
+ if (!body.messages?.length) {
83
+ return reply.status(400).send(fail("messages required"));
84
+ }
85
+
86
+ reply.raw.writeHead(200, {
87
+ "Content-Type": "text/event-stream",
88
+ "Cache-Control": "no-cache",
89
+ Connection: "keep-alive",
90
+ });
91
+
92
+ const stream = svc(request).chatStream(body.provider, {
93
+ messages: body.messages,
94
+ system: body.system,
95
+ maxTokens: body.max_tokens,
96
+ temperature: body.temperature,
97
+ jsonMode: body.json_mode,
98
+ stop: body.stop,
99
+ });
100
+
101
+ for await (const chunk of stream) {
102
+ reply.raw.write(`data: ${JSON.stringify(chunk)}\n\n`);
103
+ if (chunk.done) break;
104
+ }
105
+
106
+ reply.raw.end();
107
+ }
108
+
109
+ // ═══════════════════════════════════════════════════════════════════════
110
+ // 2. 대화 세션
111
+ // ═══════════════════════════════════════════════════════════════════════
112
+
113
+ /** 새 대화를 생성한다 */
114
+ export async function createConversation(
115
+ request: FastifyRequest,
116
+ reply: FastifyReply,
117
+ ) {
118
+ if (!svc(request).convStore) {
119
+ return reply
120
+ .status(503)
121
+ .send(fail("Conversation store not configured"));
122
+ }
123
+
124
+ const body = request.body as {
125
+ provider?: string;
126
+ message?: string;
127
+ system?: string;
128
+ user_seq?: number;
129
+ };
130
+ if (!body.message) {
131
+ return reply.status(400).send(fail("message required"));
132
+ }
133
+
134
+ const userSeq = body.user_seq ? Number(body.user_seq) : undefined;
135
+
136
+ const resp = await svc(request).chatInSession(
137
+ body.provider,
138
+ 0,
139
+ body.message,
140
+ userSeq,
141
+ (req) => {
142
+ if (body.system) req.system = body.system;
143
+ },
144
+ );
145
+
146
+ return ok(resp);
147
+ }
148
+
149
+ /** 대화 컨텍스트로 채팅한다 */
150
+ export async function sendMessage(
151
+ request: FastifyRequest<{ Params: { seq: string } }>,
152
+ reply: FastifyReply,
153
+ ) {
154
+ if (!svc(request).convStore) {
155
+ return reply
156
+ .status(503)
157
+ .send(fail("Conversation store not configured"));
158
+ }
159
+
160
+ const seq = parseInt(request.params.seq, 10);
161
+ if (!seq || seq <= 0) {
162
+ return reply.status(400).send(fail("invalid seq"));
163
+ }
164
+
165
+ const body = request.body as {
166
+ message?: string;
167
+ provider?: string;
168
+ user_seq?: number;
169
+ };
170
+ if (!body.message) {
171
+ return reply.status(400).send(fail("message required"));
172
+ }
173
+
174
+ const resp = await svc(request).chatInSession(
175
+ body.provider,
176
+ seq,
177
+ body.message,
178
+ body.user_seq ? Number(body.user_seq) : undefined,
179
+ );
180
+ return ok(resp);
181
+ }
182
+
183
+ /** 대화 목록을 조회한다 */
184
+ export async function listConversations(
185
+ request: FastifyRequest,
186
+ reply: FastifyReply,
187
+ ) {
188
+ if (!svc(request).convStore) {
189
+ return reply
190
+ .status(503)
191
+ .send(fail("Conversation store not configured"));
192
+ }
193
+
194
+ const query = request.query as {
195
+ user_seq?: string;
196
+ provider?: string;
197
+ limit?: string;
198
+ offset?: string;
199
+ };
200
+
201
+ const filter: ConversationFilter = {
202
+ userSeq: parseInt(query.user_seq ?? "0", 10) || undefined,
203
+ providerName: query.provider,
204
+ limit: parseInt(query.limit ?? "20", 10),
205
+ offset: parseInt(query.offset ?? "0", 10),
206
+ };
207
+
208
+ const list = await svc(request).convStore!.listConversations(filter);
209
+ return ok(list);
210
+ }
211
+
212
+ /** 대화 상세를 조회한다 */
213
+ export async function getConversation(
214
+ request: FastifyRequest<{ Params: { seq: string } }>,
215
+ reply: FastifyReply,
216
+ ) {
217
+ if (!svc(request).convStore) {
218
+ return reply
219
+ .status(503)
220
+ .send(fail("Conversation store not configured"));
221
+ }
222
+
223
+ const seq = parseInt(request.params.seq, 10);
224
+ if (!seq || seq <= 0) {
225
+ return reply.status(400).send(fail("invalid seq"));
226
+ }
227
+
228
+ const conv = await svc(request).convStore!.getConversation(seq);
229
+ return ok(conv);
230
+ }
231
+
232
+ /** 대화 제목을 수정한다 */
233
+ export async function updateConversation(
234
+ request: FastifyRequest<{ Params: { seq: string } }>,
235
+ reply: FastifyReply,
236
+ ) {
237
+ if (!svc(request).convStore) {
238
+ return reply
239
+ .status(503)
240
+ .send(fail("Conversation store not configured"));
241
+ }
242
+
243
+ const seq = parseInt(request.params.seq, 10);
244
+ if (!seq || seq <= 0) {
245
+ return reply.status(400).send(fail("invalid seq"));
246
+ }
247
+
248
+ const body = request.body as { title?: string };
249
+ if (!body.title) {
250
+ return reply.status(400).send(fail("title required"));
251
+ }
252
+
253
+ await svc(request).convStore!.updateTitle(seq, body.title);
254
+ return ok({ seq, title: body.title });
255
+ }
256
+
257
+ /** 대화를 삭제한다 */
258
+ export async function deleteConversation(
259
+ request: FastifyRequest<{ Params: { seq: string } }>,
260
+ reply: FastifyReply,
261
+ ) {
262
+ if (!svc(request).convStore) {
263
+ return reply
264
+ .status(503)
265
+ .send(fail("Conversation store not configured"));
266
+ }
267
+
268
+ const seq = parseInt(request.params.seq, 10);
269
+ if (!seq || seq <= 0) {
270
+ return reply.status(400).send(fail("invalid seq"));
271
+ }
272
+
273
+ await svc(request).convStore!.deleteConversation(seq);
274
+ return ok({ deleted: true, seq });
275
+ }
276
+
277
+ // ═══════════════════════════════════════════════════════════════════════
278
+ // 3. RAG
279
+ // ═══════════════════════════════════════════════════════════════════════
280
+
281
+ /** RAG 문서를 인제스트한다 */
282
+ export async function ragUploadDocument(
283
+ request: FastifyRequest,
284
+ reply: FastifyReply,
285
+ ) {
286
+ if (!svc(request).docStore) {
287
+ return reply
288
+ .status(503)
289
+ .send(fail("RAG document store not configured"));
290
+ }
291
+
292
+ const body = request.body as {
293
+ document_id?: string;
294
+ title?: string;
295
+ content?: string;
296
+ content_type?: string;
297
+ metadata?: Record<string, string>;
298
+ provider_name?: string;
299
+ chunk_size?: number;
300
+ chunk_overlap?: number;
301
+ tenant_id?: string;
302
+ };
303
+
304
+ if (!body.content) return reply.status(400).send(fail("content required"));
305
+ if (!body.title) return reply.status(400).send(fail("title required"));
306
+ if (!body.document_id)
307
+ return reply.status(400).send(fail("document_id required"));
308
+
309
+ const result = await svc(request).docStore!.ingestDocument({
310
+ documentId: body.document_id,
311
+ title: body.title,
312
+ content: body.content,
313
+ contentType: body.content_type,
314
+ metadata: body.metadata,
315
+ providerName: body.provider_name,
316
+ chunkSize: body.chunk_size,
317
+ chunkOverlap: body.chunk_overlap,
318
+ tenantId: body.tenant_id,
319
+ });
320
+
321
+ return ok(result);
322
+ }
323
+
324
+ /** RAG 문서 목록을 조회한다 */
325
+ export async function ragListDocuments(
326
+ request: FastifyRequest,
327
+ reply: FastifyReply,
328
+ ) {
329
+ if (!svc(request).docStore) {
330
+ return reply
331
+ .status(503)
332
+ .send(fail("RAG document store not configured"));
333
+ }
334
+
335
+ const query = request.query as {
336
+ limit?: string;
337
+ offset?: string;
338
+ tenant_id?: string;
339
+ content_type?: string;
340
+ };
341
+
342
+ const filter: DocumentFilter = {
343
+ limit: parseInt(query.limit ?? "50", 10),
344
+ offset: parseInt(query.offset ?? "0", 10),
345
+ tenantId: query.tenant_id,
346
+ contentType: query.content_type,
347
+ };
348
+
349
+ const docs = await svc(request).docStore!.listDocuments(filter);
350
+ return ok(docs);
351
+ }
352
+
353
+ /** RAG 문서를 삭제한다 */
354
+ export async function ragDeleteDocument(
355
+ request: FastifyRequest<{ Params: { id: string } }>,
356
+ reply: FastifyReply,
357
+ ) {
358
+ if (!svc(request).docStore) {
359
+ return reply
360
+ .status(503)
361
+ .send(fail("RAG document store not configured"));
362
+ }
363
+
364
+ const docId = request.params.id;
365
+ if (!docId) return reply.status(400).send(fail("document id required"));
366
+
367
+ await svc(request).docStore!.deleteDocument(docId);
368
+ return ok({ deleted: true, document_id: docId });
369
+ }
370
+
371
+ /** 유사 문서를 검색한다 */
372
+ export async function ragSearch(request: FastifyRequest, reply: FastifyReply) {
373
+ if (!svc(request).docStore) {
374
+ return reply
375
+ .status(503)
376
+ .send(fail("RAG document store not configured"));
377
+ }
378
+
379
+ const body = request.body as {
380
+ query?: string;
381
+ provider_name?: string;
382
+ top_k?: number;
383
+ min_score?: number;
384
+ metadata?: Record<string, string>;
385
+ tenant_id?: string;
386
+ };
387
+
388
+ if (!body.query) return reply.status(400).send(fail("query required"));
389
+
390
+ const results = await svc(request).docStore!.searchSimilar({
391
+ query: body.query,
392
+ providerName: body.provider_name,
393
+ topK: body.top_k,
394
+ minScore: body.min_score,
395
+ metadata: body.metadata,
396
+ tenantId: body.tenant_id,
397
+ });
398
+
399
+ return ok(results);
400
+ }
401
+
402
+ /** RAG 기반 질의를 처리한다 */
403
+ export async function ragChat(request: FastifyRequest, reply: FastifyReply) {
404
+ if (!svc(request).docStore) {
405
+ return reply
406
+ .status(503)
407
+ .send(fail("RAG document store not configured"));
408
+ }
409
+
410
+ const body = request.body as {
411
+ provider?: string;
412
+ message?: string;
413
+ system_msg?: string;
414
+ embed_provider?: string;
415
+ top_k?: number;
416
+ min_score?: number;
417
+ metadata?: Record<string, string>;
418
+ tenant_id?: string;
419
+ };
420
+
421
+ if (!body.message) return reply.status(400).send(fail("message required"));
422
+
423
+ const opts: RAGOptions = {
424
+ systemMsg: body.system_msg,
425
+ embedProvider: body.embed_provider,
426
+ topK: body.top_k,
427
+ minScore: body.min_score,
428
+ metadata: body.metadata,
429
+ tenantId: body.tenant_id,
430
+ };
431
+
432
+ const resp = await svc(request).chatWithRAG(
433
+ body.provider,
434
+ body.message,
435
+ opts,
436
+ );
437
+ return ok(resp);
438
+ }
439
+
440
+ /** RAG 기반 스트리밍 채팅을 처리한다 */
441
+ export async function ragChatStream(
442
+ request: FastifyRequest,
443
+ reply: FastifyReply,
444
+ ) {
445
+ if (!svc(request).docStore) {
446
+ return reply
447
+ .status(503)
448
+ .send(fail("RAG document store not configured"));
449
+ }
450
+
451
+ const body = request.body as {
452
+ provider?: string;
453
+ message?: string;
454
+ system_msg?: string;
455
+ embed_provider?: string;
456
+ top_k?: number;
457
+ min_score?: number;
458
+ metadata?: Record<string, string>;
459
+ tenant_id?: string;
460
+ };
461
+
462
+ if (!body.message) return reply.status(400).send(fail("message required"));
463
+
464
+ const embedProvider = body.embed_provider || body.provider;
465
+ const topK = body.top_k || 5;
466
+ const minScore = body.min_score || 0.7;
467
+
468
+ const results = await svc(request).docStore!.searchSimilar({
469
+ query: body.message,
470
+ providerName: embedProvider,
471
+ topK,
472
+ minScore,
473
+ tenantId: body.tenant_id,
474
+ metadata: body.metadata,
475
+ });
476
+
477
+ let systemMsg =
478
+ body.system_msg ||
479
+ "당신은 제공된 참고 자료를 기반으로 정확하게 답변하는 AI 어시스턴트입니다.";
480
+ if (results.length > 0) {
481
+ systemMsg +=
482
+ "\n\n[참고 자료]\n" +
483
+ results
484
+ .map(
485
+ (r, i) =>
486
+ `--- 문서 ${i + 1}: ${r.title} (score: ${r.score.toFixed(2)}) ---\n${r.content}\n`,
487
+ )
488
+ .join("\n");
489
+ }
490
+
491
+ reply.raw.writeHead(200, {
492
+ "Content-Type": "text/event-stream",
493
+ "Cache-Control": "no-cache",
494
+ Connection: "keep-alive",
495
+ });
496
+
497
+ const stream = svc(request).chatStream(body.provider, {
498
+ system: systemMsg,
499
+ messages: [{ role: "user", content: body.message }],
500
+ });
501
+
502
+ for await (const chunk of stream) {
503
+ reply.raw.write(`data: ${JSON.stringify(chunk)}\n\n`);
504
+ if (chunk.done) break;
505
+ }
506
+
507
+ reply.raw.end();
508
+ }
509
+
510
+ /** RAG 인덱스를 재구축한다 */
511
+ export async function ragRebuildIndex(
512
+ request: FastifyRequest,
513
+ reply: FastifyReply,
514
+ ) {
515
+ if (!svc(request).docStore) {
516
+ return reply
517
+ .status(503)
518
+ .send(fail("RAG document store not configured"));
519
+ }
520
+
521
+ await svc(request).docStore!.rebuildIndex();
522
+ return ok({ rebuilt: true });
523
+ }
524
+
525
+ // ═══════════════════════════════════════════════════════════════════════
526
+ // 4. 프로바이더 / 사용량
527
+ // ═══════════════════════════════════════════════════════════════════════
528
+ /** 등록된 LLM 프로바이더 목록을 반환한다 */ export async function listProviders(
529
+ request: FastifyRequest,
530
+ ) {
531
+ const providers = svc(request).getProviders();
532
+ const result: Array<Record<string, unknown>> = [];
533
+ for (const [name, p] of providers) {
534
+ result.push({
535
+ name,
536
+ driver: p.config.driver,
537
+ model: p.config.model,
538
+ is_default: name === svc(request).defaultProviderName(),
539
+ });
540
+ }
541
+ return ok(result);
542
+ }
543
+
544
+ /** LLM 사용량 통계를 반환한다 */
545
+ export async function getUsage(request: FastifyRequest, reply: FastifyReply) {
546
+ if (!svc(request).usageQuerier) {
547
+ return reply.status(503).send(fail("Usage tracking not configured"));
548
+ }
549
+
550
+ const query = request.query as {
551
+ provider?: string;
552
+ caller?: string;
553
+ date_from?: string;
554
+ date_to?: string;
555
+ };
556
+
557
+ const filter: UsageFilter = {
558
+ providerName: query.provider,
559
+ callerService: query.caller,
560
+ dateFrom: query.date_from,
561
+ dateTo: query.date_to,
562
+ };
563
+
564
+ const summary = await svc(request).usageQuerier!.getUsageSummary(filter);
565
+ return ok(summary);
566
+ }
567
+
568
+ /** LLM 사용량 요약을 반환한다 */
569
+ export async function getUsageSummary(
570
+ request: FastifyRequest,
571
+ reply: FastifyReply,
572
+ ) {
573
+ if (!svc(request).usageQuerier) {
574
+ return reply.status(503).send(fail("Usage tracking not configured"));
575
+ }
576
+
577
+ const query = request.query as {
578
+ provider?: string;
579
+ caller?: string;
580
+ date_from?: string;
581
+ date_to?: string;
582
+ };
583
+
584
+ const summary = await svc(request).usageQuerier!.getUsageSummary({
585
+ providerName: query.provider,
586
+ callerService: query.caller,
587
+ dateFrom: query.date_from,
588
+ dateTo: query.date_to,
589
+ });
590
+
591
+ return ok(summary);
592
+ }
593
+
594
+ // ═══════════════════════════════════════════════════════════════════════
595
+ // 5. 캐시
596
+ // ═══════════════════════════════════════════════════════════════════════
597
+
598
+ /** 캐시 통계를 반환한다 */
599
+ export async function getCacheStats(request: FastifyRequest) {
600
+ return ok(svc(request).getCacheStats());
601
+ }
602
+
603
+ /** 캐시를 비운다 */
604
+ export async function clearCache(request: FastifyRequest) {
605
+ svc(request).clearCache();
606
+ return ok({ cleared: true });
607
+ }
608
+
609
+ // ═══════════════════════════════════════════════════════════════════════
610
+ // 6. 프롬프트 템플릿
611
+ // ═══════════════════════════════════════════════════════════════════════
612
+
613
+ /** 사용 가능한 프롬프트 템플릿 목록을 반환한다 */
614
+ export async function listPromptTemplates(request: FastifyRequest) {
615
+ return ok(svc(request).getTemplateList());
616
+ }
617
+
618
+ /**
619
+ * 프롬프트 템플릿 기반 채팅
620
+ *
621
+ * POST /llm/templates/:name/chat
622
+ * body: { variables?: Record<string,string>, message?: string, provider?: string }
623
+ */
624
+ export async function templateChat(
625
+ request: FastifyRequest<{ Params: { name: string } }>,
626
+ reply: FastifyReply,
627
+ ) {
628
+ const name = request.params.name;
629
+ const body = request.body as {
630
+ variables?: Record<string, string>;
631
+ message?: string;
632
+ provider?: string;
633
+ };
634
+
635
+ try {
636
+ const result = await svc(request).chatWithTemplate(
637
+ name,
638
+ body.variables ?? {},
639
+ body.provider,
640
+ body.message,
641
+ );
642
+ return ok(result);
643
+ } catch (err: unknown) {
644
+ const msg = err instanceof Error ? err.message : String(err);
645
+ if (msg.includes("not found")) {
646
+ return reply.status(404).send(fail(msg));
647
+ }
648
+ if (msg.includes("no user_msg") || msg.includes("provide")) {
649
+ return reply.status(400).send(fail(msg));
650
+ }
651
+ throw err;
652
+ }
653
+ }
654
+
655
+ /**
656
+ * 프롬프트 템플릿 기반 스트리밍 채팅
657
+ *
658
+ * POST /llm/templates/:name/chat/stream
659
+ * body: { variables?: Record<string,string>, message?: string, provider?: string }
660
+ */
661
+ export async function templateChatStream(
662
+ request: FastifyRequest<{ Params: { name: string } }>,
663
+ reply: FastifyReply,
664
+ ) {
665
+ const name = request.params.name;
666
+ const body = request.body as {
667
+ variables?: Record<string, string>;
668
+ message?: string;
669
+ provider?: string;
670
+ };
671
+
672
+ let stream: AsyncGenerator<import("./types/index.ts").StreamChunk>;
673
+ try {
674
+ stream = svc(request).chatStreamWithTemplate(
675
+ name,
676
+ body.variables ?? {},
677
+ body.provider,
678
+ body.message,
679
+ );
680
+ } catch (err: unknown) {
681
+ const msg = err instanceof Error ? err.message : String(err);
682
+ if (msg.includes("not found")) {
683
+ return reply.status(404).send(fail(msg));
684
+ }
685
+ return reply.status(400).send(fail(msg));
686
+ }
687
+
688
+ reply.raw.writeHead(200, {
689
+ "Content-Type": "text/event-stream",
690
+ "Cache-Control": "no-cache",
691
+ Connection: "keep-alive",
692
+ });
693
+
694
+ for await (const chunk of stream) {
695
+ reply.raw.write(`data: ${JSON.stringify(chunk)}\n\n`);
696
+ if (chunk.done) break;
697
+ }
698
+
699
+ reply.raw.end();
700
+ }
701
+
702
+ // ═══════════════════════════════════════════════════════════════════════
703
+ // 8. 챗봇 관리
704
+ // ═══════════════════════════════════════════════════════════════════════
705
+
706
+ /** 챗봇 목록을 반환한다 */
707
+ export async function listChatbots(
708
+ request: FastifyRequest,
709
+ reply: FastifyReply,
710
+ ) {
711
+ const store = svc(request).chatbotStore;
712
+ if (!store)
713
+ return reply.status(503).send(fail("Chatbot store not configured"));
714
+ const list = await store.listChatbots();
715
+ return ok(list);
716
+ }
717
+
718
+ /** 특정 챗봇을 조회한다 */
719
+ export async function getChatbot(
720
+ request: FastifyRequest<{ Params: { seq: string } }>,
721
+ reply: FastifyReply,
722
+ ) {
723
+ const store = svc(request).chatbotStore;
724
+ if (!store)
725
+ return reply.status(503).send(fail("Chatbot store not configured"));
726
+
727
+ const seq = Number(request.params.seq);
728
+ try {
729
+ const bot = await store.getChatbot(seq);
730
+ return ok(bot);
731
+ } catch (err: unknown) {
732
+ const msg = err instanceof Error ? err.message : String(err);
733
+ if (msg.includes("not found")) return reply.status(404).send(fail(msg));
734
+ throw err;
735
+ }
736
+ }
737
+
738
+ /** 챗봇을 생성한다 */
739
+ export async function createChatbot(
740
+ request: FastifyRequest,
741
+ reply: FastifyReply,
742
+ ) {
743
+ const store = svc(request).chatbotStore;
744
+ if (!store)
745
+ return reply.status(503).send(fail("Chatbot store not configured"));
746
+
747
+ const body = request.body as {
748
+ name?: string;
749
+ label?: string;
750
+ system_msg?: string;
751
+ welcome_message?: string;
752
+ provider_name?: string;
753
+ rag_enabled?: boolean;
754
+ rag_tenant_id?: string;
755
+ rag_top_k?: number;
756
+ rag_min_score?: number;
757
+ rag_metadata?: Record<string, unknown>;
758
+ };
759
+
760
+ if (!body.name) return reply.status(400).send(fail("name required"));
761
+
762
+ const input: ChatbotCreateInput = {
763
+ name: body.name,
764
+ label: body.label ?? body.name,
765
+ systemMsg: body.system_msg,
766
+ welcomeMessage: body.welcome_message,
767
+ providerName: body.provider_name,
768
+ ragEnabled: body.rag_enabled ?? false,
769
+ ragTenantId: body.rag_tenant_id,
770
+ ragTopK: body.rag_top_k,
771
+ ragMinScore: body.rag_min_score,
772
+ ragMetadata: body.rag_metadata as Record<string, string> | undefined,
773
+ };
774
+
775
+ const seq = await store.createChatbot(input);
776
+ return reply.status(201).send(ok({ seq }));
777
+ }
778
+
779
+ /** 챗봇을 수정한다 */
780
+ export async function updateChatbot(
781
+ request: FastifyRequest<{ Params: { seq: string } }>,
782
+ reply: FastifyReply,
783
+ ) {
784
+ const store = svc(request).chatbotStore;
785
+ if (!store)
786
+ return reply.status(503).send(fail("Chatbot store not configured"));
787
+
788
+ const seq = Number(request.params.seq);
789
+ const body = request.body as {
790
+ label?: string;
791
+ system_msg?: string;
792
+ welcome_message?: string;
793
+ provider_name?: string;
794
+ rag_enabled?: boolean;
795
+ rag_tenant_id?: string;
796
+ rag_top_k?: number;
797
+ rag_min_score?: number;
798
+ rag_metadata?: Record<string, unknown>;
799
+ status?: string;
800
+ };
801
+
802
+ const input: ChatbotUpdateInput = {};
803
+ if (body.label !== undefined) input.label = body.label;
804
+ if (body.system_msg !== undefined) input.systemMsg = body.system_msg;
805
+ if (body.welcome_message !== undefined)
806
+ input.welcomeMessage = body.welcome_message;
807
+ if (body.provider_name !== undefined)
808
+ input.providerName = body.provider_name;
809
+ if (body.rag_enabled !== undefined) input.ragEnabled = body.rag_enabled;
810
+ if (body.rag_tenant_id !== undefined)
811
+ input.ragTenantId = body.rag_tenant_id;
812
+ if (body.rag_top_k !== undefined) input.ragTopK = body.rag_top_k;
813
+ if (body.rag_min_score !== undefined)
814
+ input.ragMinScore = body.rag_min_score;
815
+ if (body.rag_metadata !== undefined)
816
+ input.ragMetadata = body.rag_metadata as Record<string, string>;
817
+ if (body.status !== undefined)
818
+ input.status = body.status as "active" | "inactive";
819
+
820
+ try {
821
+ await store.updateChatbot(seq, input);
822
+ return ok({ seq });
823
+ } catch (err: unknown) {
824
+ const msg = err instanceof Error ? err.message : String(err);
825
+ if (msg.includes("not found")) return reply.status(404).send(fail(msg));
826
+ throw err;
827
+ }
828
+ }
829
+
830
+ /** 챗봇을 삭제한다 */
831
+ export async function deleteChatbot(
832
+ request: FastifyRequest<{ Params: { seq: string } }>,
833
+ reply: FastifyReply,
834
+ ) {
835
+ const store = svc(request).chatbotStore;
836
+ if (!store)
837
+ return reply.status(503).send(fail("Chatbot store not configured"));
838
+
839
+ const seq = Number(request.params.seq);
840
+ try {
841
+ await store.deleteChatbot(seq);
842
+ return ok({ seq });
843
+ } catch (err: unknown) {
844
+ const msg = err instanceof Error ? err.message : String(err);
845
+ if (msg.includes("not found")) return reply.status(404).send(fail(msg));
846
+ throw err;
847
+ }
848
+ }
849
+
850
+ // ═══════════════════════════════════════════════════════════════════════
851
+ // 9. 챗봇 채팅
852
+ // ═══════════════════════════════════════════════════════════════════════
853
+
854
+ /**
855
+ * 챗봇 채팅 (RAG + 히스토리 통합)
856
+ *
857
+ * POST /chatbots/:seq/chat
858
+ * body: { message, session_seq?, session_id?, user_seq? }
859
+ */
860
+ export async function chatbotChat(
861
+ request: FastifyRequest<{ Params: { seq: string } }>,
862
+ reply: FastifyReply,
863
+ ) {
864
+ const chatbotSeq = Number(request.params.seq);
865
+ const body = request.body as {
866
+ message?: string;
867
+ session_seq?: number;
868
+ session_id?: string;
869
+ user_seq?: number;
870
+ };
871
+
872
+ if (!body.message) return reply.status(400).send(fail("message required"));
873
+
874
+ try {
875
+ const resp = await svc(request).chatWithBot(
876
+ chatbotSeq,
877
+ body.message,
878
+ body.session_seq ?? 0,
879
+ body.user_seq,
880
+ body.session_id,
881
+ );
882
+ return ok(resp);
883
+ } catch (err: unknown) {
884
+ const msg = err instanceof Error ? err.message : String(err);
885
+ if (msg.includes("not found")) return reply.status(404).send(fail(msg));
886
+ if (msg.includes("not active"))
887
+ return reply.status(409).send(fail(msg));
888
+ throw err;
889
+ }
890
+ }
891
+
892
+ /**
893
+ * 챗봇 스트리밍 채팅
894
+ *
895
+ * POST /chatbots/:seq/chat/stream
896
+ * body: { message, session_seq?, session_id?, user_seq? }
897
+ */
898
+ export async function chatbotChatStream(
899
+ request: FastifyRequest<{ Params: { seq: string } }>,
900
+ reply: FastifyReply,
901
+ ) {
902
+ const chatbotSeq = Number(request.params.seq);
903
+ const body = request.body as {
904
+ message?: string;
905
+ session_seq?: number;
906
+ session_id?: string;
907
+ user_seq?: number;
908
+ };
909
+
910
+ if (!body.message) return reply.status(400).send(fail("message required"));
911
+
912
+ let sessionSeq: number;
913
+ let stream: AsyncGenerator<import("./types/index.ts").StreamChunk>;
914
+
915
+ try {
916
+ const result = await svc(request).chatStreamWithBot(
917
+ chatbotSeq,
918
+ body.message,
919
+ body.session_seq ?? 0,
920
+ body.user_seq,
921
+ body.session_id,
922
+ );
923
+ sessionSeq = result.sessionSeq;
924
+ stream = result.stream;
925
+ } catch (err: unknown) {
926
+ const msg = err instanceof Error ? err.message : String(err);
927
+ if (msg.includes("not found")) return reply.status(404).send(fail(msg));
928
+ if (msg.includes("not active"))
929
+ return reply.status(409).send(fail(msg));
930
+ throw err;
931
+ }
932
+
933
+ reply.raw.writeHead(200, {
934
+ "Content-Type": "text/event-stream",
935
+ "Cache-Control": "no-cache",
936
+ Connection: "keep-alive",
937
+ "X-Session-Seq": String(sessionSeq),
938
+ });
939
+
940
+ for await (const chunk of stream) {
941
+ reply.raw.write(`data: ${JSON.stringify(chunk)}\n\n`);
942
+ if (chunk.done) break;
943
+ }
944
+
945
+ reply.raw.end();
946
+ }
947
+
948
+ // ═══════════════════════════════════════════════════════════════════════
949
+ // 10. 챗봇 세션 관리
950
+ // ═══════════════════════════════════════════════════════════════════════
951
+
952
+ /**
953
+ * 챗봇의 세션 목록을 반환한다
954
+ *
955
+ * GET /chatbots/:seq/sessions
956
+ * query: user_seq?, session_id?, limit?, offset?
957
+ */
958
+ export async function listChatbotSessions(
959
+ request: FastifyRequest<{ Params: { seq: string } }>,
960
+ reply: FastifyReply,
961
+ ) {
962
+ const store = svc(request).chatbotStore;
963
+ if (!store)
964
+ return reply.status(503).send(fail("Chatbot store not configured"));
965
+
966
+ const chatbotSeq = Number(request.params.seq);
967
+ const q = request.query as {
968
+ user_seq?: string;
969
+ session_id?: string;
970
+ limit?: string;
971
+ offset?: string;
972
+ };
973
+
974
+ const filter: ChatbotSessionFilter = {
975
+ chatbotSeq,
976
+ userSeq: q.user_seq ? Number(q.user_seq) : undefined,
977
+ sessionId: q.session_id,
978
+ limit: q.limit ? Number(q.limit) : 20,
979
+ offset: q.offset ? Number(q.offset) : 0,
980
+ };
981
+
982
+ const sessions = await store.listSessions(filter);
983
+ return ok(sessions);
984
+ }
985
+
986
+ /**
987
+ * 챗봇 세션을 삭제한다
988
+ *
989
+ * DELETE /chatbots/:seq/sessions/:sessionSeq
990
+ */
991
+ export async function deleteChatbotSession(
992
+ request: FastifyRequest<{ Params: { seq: string; sessionSeq: string } }>,
993
+ reply: FastifyReply,
994
+ ) {
995
+ const store = svc(request).chatbotStore;
996
+ if (!store)
997
+ return reply.status(503).send(fail("Chatbot store not configured"));
998
+
999
+ const sessionSeq = Number(request.params.sessionSeq);
1000
+ try {
1001
+ await store.deleteSession(sessionSeq);
1002
+ return ok({ seq: sessionSeq });
1003
+ } catch (err: unknown) {
1004
+ const msg = err instanceof Error ? err.message : String(err);
1005
+ if (msg.includes("not found")) return reply.status(404).send(fail(msg));
1006
+ throw err;
1007
+ }
1008
+ }
1009
+
1010
+ // ═══════════════════════════════════════════════════════════════════
1011
+ // 11. Profile Memory
1012
+ // ═══════════════════════════════════════════════════════════════════
1013
+
1014
+ /**
1015
+ * 사용자의 Profile Memory 목록을 반환한다
1016
+ *
1017
+ * GET /llm/profiles?user_seq=1&scope=global&chatbot_seq=2&include_inactive=false
1018
+ */
1019
+ export async function listProfiles(
1020
+ request: FastifyRequest,
1021
+ reply: FastifyReply,
1022
+ ) {
1023
+ const store = svc(request).profileStore;
1024
+ if (!store)
1025
+ return reply.status(503).send(fail("Profile store not configured"));
1026
+
1027
+ const q = request.query as {
1028
+ user_seq?: string;
1029
+ scope?: string;
1030
+ chatbot_seq?: string;
1031
+ include_inactive?: string;
1032
+ };
1033
+
1034
+ if (!q.user_seq) return reply.status(400).send(fail("user_seq required"));
1035
+
1036
+ const filter: UserProfileFilter = {
1037
+ userSeq: Number(q.user_seq),
1038
+ scope: q.scope,
1039
+ chatbotSeq: q.chatbot_seq ? Number(q.chatbot_seq) : undefined,
1040
+ includeInactive: q.include_inactive === "true",
1041
+ };
1042
+
1043
+ const entries = await store.getProfiles(filter);
1044
+ return ok(entries);
1045
+ }
1046
+
1047
+ /**
1048
+ * Profile Memory 항목을 upsert한다
1049
+ *
1050
+ * POST /llm/profiles
1051
+ * body: { user_seq, key, value, scope?, chatbot_seq?, source? }
1052
+ */
1053
+ export async function upsertProfile(
1054
+ request: FastifyRequest,
1055
+ reply: FastifyReply,
1056
+ ) {
1057
+ const store = svc(request).profileStore;
1058
+ if (!store)
1059
+ return reply.status(503).send(fail("Profile store not configured"));
1060
+
1061
+ const body = request.body as {
1062
+ user_seq?: number;
1063
+ key?: string;
1064
+ value?: string;
1065
+ scope?: string;
1066
+ chatbot_seq?: number;
1067
+ source?: string;
1068
+ };
1069
+
1070
+ if (!body.user_seq)
1071
+ return reply.status(400).send(fail("user_seq required"));
1072
+ if (!body.key) return reply.status(400).send(fail("key required"));
1073
+ if (body.value === undefined || body.value === null)
1074
+ return reply.status(400).send(fail("value required"));
1075
+
1076
+ const input: UserProfileUpsertInput = {
1077
+ userSeq: Number(body.user_seq),
1078
+ key: body.key,
1079
+ value: String(body.value),
1080
+ scope: body.scope,
1081
+ chatbotSeq: body.chatbot_seq ? Number(body.chatbot_seq) : undefined,
1082
+ source: (body.source as "manual" | "extracted") ?? "manual",
1083
+ };
1084
+
1085
+ const seq = await store.upsertProfile(input);
1086
+ return ok({ seq });
1087
+ }
1088
+
1089
+ /**
1090
+ * Profile Memory 항목을 비활성화한다
1091
+ *
1092
+ * DELETE /llm/profiles/:seq?user_seq=1
1093
+ */
1094
+ export async function deleteProfile(
1095
+ request: FastifyRequest<{ Params: { seq: string } }>,
1096
+ reply: FastifyReply,
1097
+ ) {
1098
+ const store = svc(request).profileStore;
1099
+ if (!store)
1100
+ return reply.status(503).send(fail("Profile store not configured"));
1101
+
1102
+ const seq = Number(request.params.seq);
1103
+ const q = request.query as { user_seq?: string };
1104
+ if (!q.user_seq) return reply.status(400).send(fail("user_seq required"));
1105
+
1106
+ try {
1107
+ await store.deleteProfile(seq, Number(q.user_seq));
1108
+ return ok({ deleted: true, seq });
1109
+ } catch (err: unknown) {
1110
+ const msg = err instanceof Error ? err.message : String(err);
1111
+ if (msg.includes("not found")) return reply.status(404).send(fail(msg));
1112
+ throw err;
1113
+ }
1114
+ }