@withwiz/toolkit 0.1.0

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 (380) hide show
  1. package/README.md +162 -0
  2. package/dist/auth/adapters/prisma/index.d.ts +43 -0
  3. package/dist/auth/adapters/prisma/index.js +284 -0
  4. package/dist/auth/core/email/token-generator.d.ts +43 -0
  5. package/dist/auth/core/email/token-generator.js +7 -0
  6. package/dist/auth/core/jwt/client.d.ts +87 -0
  7. package/dist/auth/core/jwt/client.js +36 -0
  8. package/dist/auth/core/jwt/index.d.ts +110 -0
  9. package/dist/auth/core/jwt/index.js +10 -0
  10. package/dist/auth/core/jwt/types.d.ts +6 -0
  11. package/dist/auth/core/jwt/types.js +13 -0
  12. package/dist/auth/core/oauth/index.d.ts +51 -0
  13. package/dist/auth/core/oauth/index.js +12 -0
  14. package/dist/auth/core/password/client-helper.d.ts +44 -0
  15. package/dist/auth/core/password/client-helper.js +28 -0
  16. package/dist/auth/core/password/index.d.ts +71 -0
  17. package/dist/auth/core/password/index.js +14 -0
  18. package/dist/auth/errors/index.d.ts +49 -0
  19. package/dist/auth/errors/index.js +17 -0
  20. package/dist/auth/index.d.ts +21 -0
  21. package/dist/auth/index.js +97 -0
  22. package/dist/auth/types/index.d.ts +213 -0
  23. package/dist/auth/types/index.js +13 -0
  24. package/dist/cache/cache-config.d.ts +73 -0
  25. package/dist/cache/cache-config.js +12 -0
  26. package/dist/cache/cache-defaults.d.ts +141 -0
  27. package/dist/cache/cache-defaults.js +33 -0
  28. package/dist/cache/cache-env.d.ts +75 -0
  29. package/dist/cache/cache-env.js +25 -0
  30. package/dist/cache/cache-factory.d.ts +34 -0
  31. package/dist/cache/cache-factory.js +28 -0
  32. package/dist/cache/cache-invalidation.d.ts +90 -0
  33. package/dist/cache/cache-invalidation.js +24 -0
  34. package/dist/cache/cache-keys-legacy.d.ts +35 -0
  35. package/dist/cache/cache-keys-legacy.js +7 -0
  36. package/dist/cache/cache-redis.d.ts +74 -0
  37. package/dist/cache/cache-redis.js +24 -0
  38. package/dist/cache/cache-types.d.ts +151 -0
  39. package/dist/cache/cache-types.js +9 -0
  40. package/dist/cache/cache-wrapper.d.ts +27 -0
  41. package/dist/cache/cache-wrapper.js +22 -0
  42. package/dist/cache/cache.d.ts +14 -0
  43. package/dist/cache/cache.js +112 -0
  44. package/dist/cache/hybrid-cache-manager.d.ts +148 -0
  45. package/dist/cache/hybrid-cache-manager.js +13 -0
  46. package/dist/cache/index.d.ts +21 -0
  47. package/dist/cache/index.js +112 -0
  48. package/dist/cache/inmemory-cache-manager.d.ts +163 -0
  49. package/dist/cache/inmemory-cache-manager.js +9 -0
  50. package/dist/cache/noop-cache-manager.d.ts +36 -0
  51. package/dist/cache/noop-cache-manager.js +11 -0
  52. package/dist/cache/redis-cache-manager.d.ts +34 -0
  53. package/dist/cache/redis-cache-manager.js +11 -0
  54. package/dist/chunk-26Y7VEYG.js +93 -0
  55. package/dist/chunk-2DVWSDST.js +119 -0
  56. package/dist/chunk-2KAPUVIS.js +155 -0
  57. package/dist/chunk-2TO7WUKK.js +93 -0
  58. package/dist/chunk-34WAGUT5.js +117 -0
  59. package/dist/chunk-3DZA6AGS.js +120 -0
  60. package/dist/chunk-4DPSCTX4.js +212 -0
  61. package/dist/chunk-4KJXENRM.js +64 -0
  62. package/dist/chunk-4NWJ3WCZ.js +28 -0
  63. package/dist/chunk-4ODT3Q4A.js +86 -0
  64. package/dist/chunk-5ATB5D6S.js +40 -0
  65. package/dist/chunk-62FLBG6B.js +34 -0
  66. package/dist/chunk-62Q7DN5G.js +25 -0
  67. package/dist/chunk-65LHDFU3.js +242 -0
  68. package/dist/chunk-6C7HQIX4.js +13 -0
  69. package/dist/chunk-6D3HHYER.js +32 -0
  70. package/dist/chunk-6LTZCXNC.js +326 -0
  71. package/dist/chunk-7VJNLGAS.js +110 -0
  72. package/dist/chunk-7XFHGAJP.js +0 -0
  73. package/dist/chunk-A6EAAWMK.js +50 -0
  74. package/dist/chunk-AHDPGRXS.js +51 -0
  75. package/dist/chunk-AIH3F7JV.js +76 -0
  76. package/dist/chunk-AIHQBQ3E.js +109 -0
  77. package/dist/chunk-BKGVSC6S.js +152 -0
  78. package/dist/chunk-COK4ZXNG.js +0 -0
  79. package/dist/chunk-DEEJBDJE.js +47 -0
  80. package/dist/chunk-DH2ZHGW2.js +53 -0
  81. package/dist/chunk-EBUEBEJX.js +0 -0
  82. package/dist/chunk-EEUBKZV4.js +54 -0
  83. package/dist/chunk-EQYTE7WD.js +139 -0
  84. package/dist/chunk-EUQATJLI.js +180 -0
  85. package/dist/chunk-EZC6ETFW.js +80 -0
  86. package/dist/chunk-EZR55KV2.js +249 -0
  87. package/dist/chunk-F6LCSFSU.js +31 -0
  88. package/dist/chunk-FOKAATUQ.js +62 -0
  89. package/dist/chunk-FW3IEJ7H.js +71 -0
  90. package/dist/chunk-G26T2PRQ.js +53 -0
  91. package/dist/chunk-G4NI37NN.js +257 -0
  92. package/dist/chunk-GCZOXUDV.js +132 -0
  93. package/dist/chunk-GDWEDUHO.js +55 -0
  94. package/dist/chunk-GL2NANFH.js +434 -0
  95. package/dist/chunk-GPBOMJSZ.js +136 -0
  96. package/dist/chunk-H5I5GWAA.js +94 -0
  97. package/dist/chunk-HGC4CCKB.js +29 -0
  98. package/dist/chunk-HV3DGSSH.js +447 -0
  99. package/dist/chunk-I47QEDTX.js +193 -0
  100. package/dist/chunk-IAJNC34M.js +102 -0
  101. package/dist/chunk-IHXRF3BH.js +215 -0
  102. package/dist/chunk-IJEZ7G7S.js +26 -0
  103. package/dist/chunk-IQQKKUAV.js +151 -0
  104. package/dist/chunk-JBCDEAMW.js +35 -0
  105. package/dist/chunk-JLLMTTQ4.js +75 -0
  106. package/dist/chunk-JS5VI3OW.js +143 -0
  107. package/dist/chunk-KAWVMIRJ.js +44 -0
  108. package/dist/chunk-KMCJIL57.js +214 -0
  109. package/dist/chunk-KWTBD4CM.js +145 -0
  110. package/dist/chunk-KXAWBFJN.js +310 -0
  111. package/dist/chunk-L25BNU3E.js +56 -0
  112. package/dist/chunk-L76O3X3D.js +197 -0
  113. package/dist/chunk-LNV2E4I6.js +63 -0
  114. package/dist/chunk-MLGO3HLS.js +329 -0
  115. package/dist/chunk-MRJE6OX5.js +22 -0
  116. package/dist/chunk-MYLGYX4K.js +57 -0
  117. package/dist/chunk-N4YGR5WH.js +310 -0
  118. package/dist/chunk-OIVXOT2X.js +80 -0
  119. package/dist/chunk-ORMEWXMH.js +37 -0
  120. package/dist/chunk-POKGHK3L.js +57 -0
  121. package/dist/chunk-Q7IP4JMW.js +69 -0
  122. package/dist/chunk-RJUVBBZG.js +27 -0
  123. package/dist/chunk-S73334QY.js +89 -0
  124. package/dist/chunk-SLG26KHZ.js +101 -0
  125. package/dist/chunk-SR65BF6X.js +82 -0
  126. package/dist/chunk-SS56XFLI.js +19 -0
  127. package/dist/chunk-T3LJYAMO.js +277 -0
  128. package/dist/chunk-TDZJ6SAI.js +34 -0
  129. package/dist/chunk-TEIYA7U4.js +72 -0
  130. package/dist/chunk-TMVS4F7E.js +88 -0
  131. package/dist/chunk-TRBKJ7JT.js +137 -0
  132. package/dist/chunk-TXGNSECL.js +84 -0
  133. package/dist/chunk-TZAP5T4N.js +188 -0
  134. package/dist/chunk-UCYQNHST.js +24 -0
  135. package/dist/chunk-ULF5RDDX.js +0 -0
  136. package/dist/chunk-UXQRU3EM.js +167 -0
  137. package/dist/chunk-V5K5FYU7.js +200 -0
  138. package/dist/chunk-VDXB5DCY.js +68 -0
  139. package/dist/chunk-VSGKVZB4.js +47 -0
  140. package/dist/chunk-VWODEQ5C.js +204 -0
  141. package/dist/chunk-WDUFQFDP.js +193 -0
  142. package/dist/chunk-WHR7HPWF.js +126 -0
  143. package/dist/chunk-WSQMXMTL.js +122 -0
  144. package/dist/chunk-XHZ5L4FO.js +103 -0
  145. package/dist/chunk-XPASCCUA.js +404 -0
  146. package/dist/chunk-XRRPEBKB.js +231 -0
  147. package/dist/chunk-Y2TUZFCP.js +0 -0
  148. package/dist/chunk-Y3OTJH2S.js +473 -0
  149. package/dist/chunk-YBSHN67U.js +161 -0
  150. package/dist/chunk-YJ3TLEW3.js +100 -0
  151. package/dist/chunk-YJWLWUFK.js +105 -0
  152. package/dist/chunk-Z4D4CMDA.js +488 -0
  153. package/dist/chunk-ZHVUK5OY.js +314 -0
  154. package/dist/chunk-ZTN4X5FN.js +29 -0
  155. package/dist/chunk-ZZIKRBJU.js +96 -0
  156. package/dist/components/ui/Alert.d.ts +12 -0
  157. package/dist/components/ui/Alert.js +10 -0
  158. package/dist/components/ui/Badge.d.ts +7 -0
  159. package/dist/components/ui/Badge.js +8 -0
  160. package/dist/components/ui/Button.d.ts +7 -0
  161. package/dist/components/ui/Button.js +8 -0
  162. package/dist/components/ui/DataTable.d.ts +103 -0
  163. package/dist/components/ui/DataTable.js +606 -0
  164. package/dist/components/ui/DomainDisplay.d.ts +12 -0
  165. package/dist/components/ui/DomainDisplay.js +31 -0
  166. package/dist/components/ui/Input.d.ts +5 -0
  167. package/dist/components/ui/Input.js +8 -0
  168. package/dist/components/ui/Label.d.ts +5 -0
  169. package/dist/components/ui/Label.js +8 -0
  170. package/dist/components/ui/Pagination.d.ts +42 -0
  171. package/dist/components/ui/Pagination.js +20 -0
  172. package/dist/components/ui/Select.d.ts +15 -0
  173. package/dist/components/ui/Select.js +27 -0
  174. package/dist/components/ui/Skeleton.d.ts +6 -0
  175. package/dist/components/ui/Skeleton.js +8 -0
  176. package/dist/components/ui/TimezoneDisplay.d.ts +22 -0
  177. package/dist/components/ui/TimezoneDisplay.js +83 -0
  178. package/dist/components/ui/Tooltip.d.ts +21 -0
  179. package/dist/components/ui/Tooltip.js +94 -0
  180. package/dist/components/ui/WorldMapChart.d.ts +17 -0
  181. package/dist/components/ui/WorldMapChart.js +250 -0
  182. package/dist/components/ui/loading-bar.d.ts +20 -0
  183. package/dist/components/ui/loading-bar.js +15 -0
  184. package/dist/constants/error-codes.d.ts +389 -0
  185. package/dist/constants/error-codes.js +27 -0
  186. package/dist/constants/index.d.ts +11 -0
  187. package/dist/constants/index.js +85 -0
  188. package/dist/constants/messages.d.ts +83 -0
  189. package/dist/constants/messages.js +13 -0
  190. package/dist/constants/pagination.d.ts +43 -0
  191. package/dist/constants/pagination.js +15 -0
  192. package/dist/constants/security.d.ts +66 -0
  193. package/dist/constants/security.js +23 -0
  194. package/dist/constants/validation.d.ts +60 -0
  195. package/dist/constants/validation.js +19 -0
  196. package/dist/error/ErrorBoundary.d.ts +47 -0
  197. package/dist/error/app-error.d.ts +144 -0
  198. package/dist/error/app-error.js +10 -0
  199. package/dist/error/components/EmptyState.d.ts +50 -0
  200. package/dist/error/components/ErrorAlert.d.ts +50 -0
  201. package/dist/error/components/ErrorPage.d.ts +39 -0
  202. package/dist/error/components/LoadingState.d.ts +37 -0
  203. package/dist/error/components/index.d.ts +13 -0
  204. package/dist/error/components/index.js +18 -0
  205. package/dist/error/core/locale-detector.d.ts +44 -0
  206. package/dist/error/core/locale-detector.js +9 -0
  207. package/dist/error/error-display.d.ts +55 -0
  208. package/dist/error/error-display.js +24 -0
  209. package/dist/error/error-handler.d.ts +118 -0
  210. package/dist/error/error-handler.js +18 -0
  211. package/dist/error/friendly-messages-v2.d.ts +46 -0
  212. package/dist/error/friendly-messages-v2.js +15 -0
  213. package/dist/error/friendly-messages.d.ts +22 -0
  214. package/dist/error/friendly-messages.js +12 -0
  215. package/dist/error/hooks/index.d.ts +7 -0
  216. package/dist/error/hooks/index.js +14 -0
  217. package/dist/error/hooks/useErrorHandler.d.ts +67 -0
  218. package/dist/error/hooks/useErrorHandler.js +14 -0
  219. package/dist/error/index.d.ts +26 -0
  220. package/dist/error/index.js +289 -0
  221. package/dist/error/logging/error-logger.d.ts +77 -0
  222. package/dist/error/logging/error-logger.js +10 -0
  223. package/dist/error/logging/index.d.ts +9 -0
  224. package/dist/error/logging/index.js +35 -0
  225. package/dist/error/logging/transports/base.d.ts +30 -0
  226. package/dist/error/logging/transports/base.js +7 -0
  227. package/dist/error/logging/transports/console.d.ts +40 -0
  228. package/dist/error/logging/transports/console.js +9 -0
  229. package/dist/error/logging/transports/file.d.ts +49 -0
  230. package/dist/error/logging/transports/file.js +8 -0
  231. package/dist/error/logging/transports/index.d.ts +12 -0
  232. package/dist/error/logging/transports/index.js +25 -0
  233. package/dist/error/logging/transports/sentry.d.ts +44 -0
  234. package/dist/error/logging/transports/sentry.js +9 -0
  235. package/dist/error/logging/transports/slack.d.ts +51 -0
  236. package/dist/error/logging/transports/slack.js +9 -0
  237. package/dist/error/logging/types.d.ts +83 -0
  238. package/dist/error/logging/types.js +7 -0
  239. package/dist/error/messages/en.d.ts +5 -0
  240. package/dist/error/messages/en.js +7 -0
  241. package/dist/error/messages/index.d.ts +40 -0
  242. package/dist/error/messages/index.js +17 -0
  243. package/dist/error/messages/ko.d.ts +5 -0
  244. package/dist/error/messages/ko.js +7 -0
  245. package/dist/error/messages/types.d.ts +30 -0
  246. package/dist/error/messages/types.js +0 -0
  247. package/dist/error/recovery/circuit-breaker.d.ts +85 -0
  248. package/dist/error/recovery/circuit-breaker.js +9 -0
  249. package/dist/error/recovery/degradation.d.ts +56 -0
  250. package/dist/error/recovery/degradation.js +7 -0
  251. package/dist/error/recovery/fallback.d.ts +55 -0
  252. package/dist/error/recovery/fallback.js +11 -0
  253. package/dist/error/recovery/index.d.ts +12 -0
  254. package/dist/error/recovery/index.js +26 -0
  255. package/dist/error/recovery/retry.d.ts +44 -0
  256. package/dist/error/recovery/retry.js +7 -0
  257. package/dist/geolocation/batch-processor.d.ts +33 -0
  258. package/dist/geolocation/batch-processor.js +10 -0
  259. package/dist/geolocation/index.d.ts +14 -0
  260. package/dist/geolocation/index.js +36 -0
  261. package/dist/geolocation/providers/base-provider.d.ts +33 -0
  262. package/dist/geolocation/providers/base-provider.js +9 -0
  263. package/dist/geolocation/providers/index.d.ts +54 -0
  264. package/dist/geolocation/providers/index.js +29 -0
  265. package/dist/geolocation/providers/ip-api-provider.d.ts +17 -0
  266. package/dist/geolocation/providers/ip-api-provider.js +8 -0
  267. package/dist/geolocation/providers/ipapi-co-provider.d.ts +17 -0
  268. package/dist/geolocation/providers/ipapi-co-provider.js +8 -0
  269. package/dist/geolocation/providers/ipgeolocation-provider.d.ts +18 -0
  270. package/dist/geolocation/providers/ipgeolocation-provider.js +8 -0
  271. package/dist/geolocation/providers/maxmind-provider.d.ts +18 -0
  272. package/dist/geolocation/providers/maxmind-provider.js +8 -0
  273. package/dist/hooks/useDataTable.d.ts +51 -0
  274. package/dist/hooks/useDataTable.js +149 -0
  275. package/dist/hooks/useDebounce.d.ts +7 -0
  276. package/dist/hooks/useDebounce.js +7 -0
  277. package/dist/hooks/useExitIntent.d.ts +35 -0
  278. package/dist/hooks/useExitIntent.js +72 -0
  279. package/dist/hooks/useTimezone.d.ts +19 -0
  280. package/dist/hooks/useTimezone.js +11 -0
  281. package/dist/logger/logger.d.ts +11 -0
  282. package/dist/logger/logger.js +17 -0
  283. package/dist/middleware/auth.d.ts +87 -0
  284. package/dist/middleware/auth.js +20 -0
  285. package/dist/middleware/cors.d.ts +30 -0
  286. package/dist/middleware/cors.js +10 -0
  287. package/dist/middleware/error-handler.d.ts +23 -0
  288. package/dist/middleware/error-handler.js +13 -0
  289. package/dist/middleware/index.d.ts +16 -0
  290. package/dist/middleware/index.js +72 -0
  291. package/dist/middleware/init-request.d.ts +18 -0
  292. package/dist/middleware/init-request.js +8 -0
  293. package/dist/middleware/middleware-chain.d.ts +53 -0
  294. package/dist/middleware/middleware-chain.js +8 -0
  295. package/dist/middleware/rate-limit.d.ts +82 -0
  296. package/dist/middleware/rate-limit.js +14 -0
  297. package/dist/middleware/response-logger.d.ts +22 -0
  298. package/dist/middleware/response-logger.js +8 -0
  299. package/dist/middleware/security.d.ts +31 -0
  300. package/dist/middleware/security.js +9 -0
  301. package/dist/middleware/types.d.ts +45 -0
  302. package/dist/middleware/types.js +0 -0
  303. package/dist/middleware/wrappers.d.ts +91 -0
  304. package/dist/middleware/wrappers.js +32 -0
  305. package/dist/storage/r2-storage.d.ts +38 -0
  306. package/dist/storage/r2-storage.js +105 -0
  307. package/dist/system/cpu.d.ts +2 -0
  308. package/dist/system/cpu.js +9 -0
  309. package/dist/system/disk.d.ts +2 -0
  310. package/dist/system/disk.js +9 -0
  311. package/dist/system/environment.d.ts +8 -0
  312. package/dist/system/environment.js +9 -0
  313. package/dist/system/health-check.d.ts +26 -0
  314. package/dist/system/health-check.js +10 -0
  315. package/dist/system/index.d.ts +51 -0
  316. package/dist/system/index.js +194 -0
  317. package/dist/system/memory.d.ts +2 -0
  318. package/dist/system/memory.js +9 -0
  319. package/dist/system/network.d.ts +2 -0
  320. package/dist/system/network.js +9 -0
  321. package/dist/system/types.d.ts +93 -0
  322. package/dist/system/types.js +0 -0
  323. package/dist/system/utils.d.ts +12 -0
  324. package/dist/system/utils.js +26 -0
  325. package/dist/types/api.d.ts +80 -0
  326. package/dist/types/api.js +0 -0
  327. package/dist/types/database.d.ts +38 -0
  328. package/dist/types/database.js +0 -0
  329. package/dist/types/env.d.ts +105 -0
  330. package/dist/types/env.js +0 -0
  331. package/dist/types/geoip.d.ts +152 -0
  332. package/dist/types/geoip.js +0 -0
  333. package/dist/types/i18n.d.ts +11 -0
  334. package/dist/types/i18n.js +0 -0
  335. package/dist/types/qr-code.d.ts +139 -0
  336. package/dist/types/qr-code.js +75 -0
  337. package/dist/types/user.d.ts +54 -0
  338. package/dist/types/user.js +0 -0
  339. package/dist/utils/api-helpers.d.ts +147 -0
  340. package/dist/utils/api-helpers.js +30 -0
  341. package/dist/utils/client/client-utils.d.ts +3 -0
  342. package/dist/utils/client/client-utils.js +9 -0
  343. package/dist/utils/client/qr-code.d.ts +16 -0
  344. package/dist/utils/client/qr-code.js +215 -0
  345. package/dist/utils/cors.d.ts +40 -0
  346. package/dist/utils/cors.js +21 -0
  347. package/dist/utils/csv-export.d.ts +97 -0
  348. package/dist/utils/csv-export.js +20 -0
  349. package/dist/utils/error-message-formatter.d.ts +17 -0
  350. package/dist/utils/error-message-formatter.js +11 -0
  351. package/dist/utils/error-processor.d.ts +70 -0
  352. package/dist/utils/error-processor.js +34 -0
  353. package/dist/utils/format-number.d.ts +17 -0
  354. package/dist/utils/format-number.js +9 -0
  355. package/dist/utils/index.d.ts +13 -0
  356. package/dist/utils/index.js +160 -0
  357. package/dist/utils/input-validation.d.ts +88 -0
  358. package/dist/utils/input-validation.js +223 -0
  359. package/dist/utils/ip-utils.d.ts +15 -0
  360. package/dist/utils/ip-utils.js +91 -0
  361. package/dist/utils/optimistic-lock.d.ts +27 -0
  362. package/dist/utils/optimistic-lock.js +16 -0
  363. package/dist/utils/sanitizer.d.ts +72 -0
  364. package/dist/utils/sanitizer.js +19 -0
  365. package/dist/utils/shared-utils.d.ts +25 -0
  366. package/dist/utils/shared-utils.js +43 -0
  367. package/dist/utils/short-code-generator.d.ts +24 -0
  368. package/dist/utils/short-code-generator.js +9 -0
  369. package/dist/utils/timezone.d.ts +56 -0
  370. package/dist/utils/timezone.js +29 -0
  371. package/dist/utils/type-guards.d.ts +164 -0
  372. package/dist/utils/type-guards.js +59 -0
  373. package/dist/utils/url-normalizer.d.ts +53 -0
  374. package/dist/utils/url-normalizer.js +21 -0
  375. package/dist/validators/index.d.ts +7 -0
  376. package/dist/validators/index.js +13 -0
  377. package/dist/validators/password-validator.d.ts +86 -0
  378. package/dist/validators/password-validator.js +13 -0
  379. package/dist/world_countries-C2WUL2CQ.js +279 -0
  380. package/package.json +129 -0
@@ -0,0 +1,200 @@
1
+ import {
2
+ OAuthError
3
+ } from "./chunk-AIH3F7JV.js";
4
+
5
+ // src/auth/core/oauth/index.ts
6
+ var OAuthManager = class {
7
+ constructor(config, logger) {
8
+ this.config = config;
9
+ this.logger = logger;
10
+ }
11
+ /**
12
+ * OAuth 로그인 URL 생성
13
+ */
14
+ getLoginUrl(provider, state) {
15
+ if (provider === "google" /* GOOGLE */) {
16
+ return this.getGoogleLoginUrl(state);
17
+ } else if (provider === "github" /* GITHUB */) {
18
+ return this.getGitHubLoginUrl(state);
19
+ }
20
+ throw new OAuthError(`Unsupported OAuth provider: ${provider}`, "UNSUPPORTED_PROVIDER");
21
+ }
22
+ /**
23
+ * Google OAuth 로그인 URL
24
+ */
25
+ getGoogleLoginUrl(state) {
26
+ if (!this.config.google) {
27
+ throw new OAuthError("Google OAuth not configured", "GOOGLE_NOT_CONFIGURED");
28
+ }
29
+ const params = new URLSearchParams({
30
+ client_id: this.config.google.clientId,
31
+ redirect_uri: this.config.google.redirectUri,
32
+ response_type: "code",
33
+ scope: "openid email profile",
34
+ state,
35
+ access_type: "offline",
36
+ prompt: "select_account consent"
37
+ });
38
+ return `https://accounts.google.com/o/oauth2/v2/auth?${params.toString()}`;
39
+ }
40
+ /**
41
+ * GitHub OAuth 로그인 URL
42
+ */
43
+ getGitHubLoginUrl(state) {
44
+ if (!this.config.github) {
45
+ throw new OAuthError("GitHub OAuth not configured", "GITHUB_NOT_CONFIGURED");
46
+ }
47
+ const params = new URLSearchParams({
48
+ client_id: this.config.github.clientId,
49
+ redirect_uri: this.config.github.redirectUri,
50
+ scope: "read:user user:email",
51
+ state
52
+ });
53
+ return `https://github.com/login/oauth/authorize?${params.toString()}`;
54
+ }
55
+ /**
56
+ * 인증 코드를 액세스 토큰으로 교환
57
+ */
58
+ async exchangeCodeForToken(provider, code) {
59
+ if (provider === "google" /* GOOGLE */) {
60
+ return this.exchangeGoogleCode(code);
61
+ } else if (provider === "github" /* GITHUB */) {
62
+ return this.exchangeGitHubCode(code);
63
+ }
64
+ throw new OAuthError(`Unsupported OAuth provider: ${provider}`, "UNSUPPORTED_PROVIDER");
65
+ }
66
+ /**
67
+ * Google 코드 교환
68
+ */
69
+ async exchangeGoogleCode(code) {
70
+ if (!this.config.google) {
71
+ throw new OAuthError("Google OAuth not configured", "GOOGLE_NOT_CONFIGURED");
72
+ }
73
+ try {
74
+ const response = await fetch("https://oauth2.googleapis.com/token", {
75
+ method: "POST",
76
+ headers: { "Content-Type": "application/x-www-form-urlencoded" },
77
+ body: new URLSearchParams({
78
+ client_id: this.config.google.clientId,
79
+ client_secret: this.config.google.clientSecret,
80
+ code,
81
+ grant_type: "authorization_code",
82
+ redirect_uri: this.config.google.redirectUri
83
+ })
84
+ });
85
+ if (!response.ok) {
86
+ const errorData = await response.text();
87
+ this.logger.error("Google token exchange failed", { status: response.status, errorData });
88
+ throw new OAuthError("Failed to exchange Google code for token", "TOKEN_EXCHANGE_FAILED");
89
+ }
90
+ const data = await response.json();
91
+ this.logger.debug("Google token exchange successful");
92
+ return data.access_token;
93
+ } catch (error) {
94
+ this.logger.error("Google token exchange error", { error: error.message });
95
+ throw new OAuthError("Google token exchange failed", "TOKEN_EXCHANGE_FAILED");
96
+ }
97
+ }
98
+ /**
99
+ * GitHub 코드 교환
100
+ */
101
+ async exchangeGitHubCode(code) {
102
+ if (!this.config.github) {
103
+ throw new OAuthError("GitHub OAuth not configured", "GITHUB_NOT_CONFIGURED");
104
+ }
105
+ try {
106
+ const response = await fetch("https://github.com/login/oauth/access_token", {
107
+ method: "POST",
108
+ headers: {
109
+ "Content-Type": "application/json",
110
+ Accept: "application/json"
111
+ },
112
+ body: JSON.stringify({
113
+ client_id: this.config.github.clientId,
114
+ client_secret: this.config.github.clientSecret,
115
+ code,
116
+ redirect_uri: this.config.github.redirectUri
117
+ })
118
+ });
119
+ if (!response.ok) {
120
+ const errorData = await response.text();
121
+ this.logger.error("GitHub token exchange failed", { status: response.status, errorData });
122
+ throw new OAuthError("Failed to exchange GitHub code for token", "TOKEN_EXCHANGE_FAILED");
123
+ }
124
+ const data = await response.json();
125
+ this.logger.debug("GitHub token exchange successful");
126
+ return data.access_token;
127
+ } catch (error) {
128
+ this.logger.error("GitHub token exchange error", { error: error.message });
129
+ throw new OAuthError("GitHub token exchange failed", "TOKEN_EXCHANGE_FAILED");
130
+ }
131
+ }
132
+ /**
133
+ * 사용자 정보 가져오기
134
+ */
135
+ async getUserInfo(provider, accessToken) {
136
+ if (provider === "google" /* GOOGLE */) {
137
+ return this.getGoogleUserInfo(accessToken);
138
+ } else if (provider === "github" /* GITHUB */) {
139
+ return this.getGitHubUserInfo(accessToken);
140
+ }
141
+ throw new OAuthError(`Unsupported OAuth provider: ${provider}`, "UNSUPPORTED_PROVIDER");
142
+ }
143
+ /**
144
+ * Google 사용자 정보
145
+ */
146
+ async getGoogleUserInfo(accessToken) {
147
+ try {
148
+ const response = await fetch("https://www.googleapis.com/oauth2/v2/userinfo", {
149
+ headers: { Authorization: `Bearer ${accessToken}` }
150
+ });
151
+ if (!response.ok) {
152
+ throw new OAuthError("Failed to get Google user info", "USER_INFO_FAILED");
153
+ }
154
+ const data = await response.json();
155
+ this.logger.debug("Google user info retrieved", { userId: data.id, email: data.email });
156
+ return {
157
+ id: data.id,
158
+ email: data.email,
159
+ name: data.name || null,
160
+ image: data.picture || null,
161
+ emailVerified: data.verified_email || false
162
+ };
163
+ } catch (error) {
164
+ this.logger.error("Google user info error", { error: error.message });
165
+ throw new OAuthError("Failed to retrieve Google user info", "USER_INFO_FAILED");
166
+ }
167
+ }
168
+ /**
169
+ * GitHub 사용자 정보
170
+ */
171
+ async getGitHubUserInfo(accessToken) {
172
+ try {
173
+ const response = await fetch("https://api.github.com/user", {
174
+ headers: {
175
+ Authorization: `Bearer ${accessToken}`,
176
+ "User-Agent": "Auth-Module"
177
+ }
178
+ });
179
+ if (!response.ok) {
180
+ throw new OAuthError("Failed to get GitHub user info", "USER_INFO_FAILED");
181
+ }
182
+ const data = await response.json();
183
+ this.logger.debug("GitHub user info retrieved", { userId: data.id, login: data.login });
184
+ return {
185
+ id: data.id.toString(),
186
+ email: data.email,
187
+ name: data.name || null,
188
+ image: data.avatar_url || null,
189
+ emailVerified: !!data.email
190
+ };
191
+ } catch (error) {
192
+ this.logger.error("GitHub user info error", { error: error.message });
193
+ throw new OAuthError("Failed to retrieve GitHub user info", "USER_INFO_FAILED");
194
+ }
195
+ }
196
+ };
197
+
198
+ export {
199
+ OAuthManager
200
+ };
@@ -0,0 +1,68 @@
1
+ // src/constants/pagination.ts
2
+ var PAGINATION = {
3
+ // 기본 페이지 크기
4
+ DEFAULT_PAGE_SIZE: 10,
5
+ // 최대 페이지 크기
6
+ MAX_PAGE_SIZE: 100,
7
+ // 최소 페이지 크기
8
+ MIN_PAGE_SIZE: 1,
9
+ // 기본 시작 페이지
10
+ DEFAULT_PAGE: 1
11
+ };
12
+ var PAGE_SIZES = {
13
+ // 링크 목록
14
+ LINKS: 10,
15
+ // 사용자 목록
16
+ USERS: 20,
17
+ // 예약어 목록
18
+ RESERVED_WORDS: 20,
19
+ // 공지사항 목록
20
+ NOTICES: 10,
21
+ // 태그 목록
22
+ TAGS: 50,
23
+ // 클릭 히스토리
24
+ CLICK_HISTORY: 50,
25
+ // 활동 내역
26
+ ACTIVITY: 20,
27
+ // 검색 결과
28
+ SEARCH_RESULTS: 10
29
+ };
30
+ var SORT_OPTIONS = {
31
+ // 기본 정렬 필드
32
+ DEFAULT_FIELD: "createdAt",
33
+ // 기본 정렬 방향
34
+ DEFAULT_ORDER: "desc",
35
+ // 허용되는 정렬 방향
36
+ ALLOWED_ORDERS: ["asc", "desc"]
37
+ };
38
+ var FILTER_OPTIONS = {
39
+ // 기본 필터
40
+ DEFAULT: "all",
41
+ // 활성 상태 필터
42
+ ACTIVE_FILTER: {
43
+ ALL: "all",
44
+ ACTIVE: "active",
45
+ INACTIVE: "inactive"
46
+ },
47
+ // 공개 상태 필터
48
+ PUBLIC_FILTER: {
49
+ ALL: "all",
50
+ PUBLIC: "public",
51
+ PRIVATE: "private"
52
+ }
53
+ };
54
+ var DATE_RANGE = {
55
+ // 최근 N일
56
+ LAST_7_DAYS: 7,
57
+ LAST_30_DAYS: 30,
58
+ LAST_90_DAYS: 90,
59
+ LAST_365_DAYS: 365
60
+ };
61
+
62
+ export {
63
+ PAGINATION,
64
+ PAGE_SIZES,
65
+ SORT_OPTIONS,
66
+ FILTER_OPTIONS,
67
+ DATE_RANGE
68
+ };
@@ -0,0 +1,47 @@
1
+ import {
2
+ BaseGeoIPProvider,
3
+ truncateString
4
+ } from "./chunk-AHDPGRXS.js";
5
+
6
+ // src/geolocation/providers/ipapi-co-provider.ts
7
+ var IPApiCoProvider = class extends BaseGeoIPProvider {
8
+ constructor() {
9
+ super(...arguments);
10
+ this.name = "ipapi.co";
11
+ this.rateLimit = 1e3;
12
+ // 분당 1000회 요청 제한
13
+ this.timeout = 5e3;
14
+ }
15
+ // 5초 타임아웃
16
+ url(ip) {
17
+ return `https://ipapi.co/${ip}/json/`;
18
+ }
19
+ parseResponse(data) {
20
+ if (data.country_code) {
21
+ return {
22
+ ipAddress: "",
23
+ // IP는 별도로 설정
24
+ country: truncateString(data.country_code, 2) || void 0,
25
+ countryName: truncateString(data.country_name, 100) || void 0,
26
+ region: truncateString(data.region, 100) || void 0,
27
+ regionCode: truncateString(data.region_code, 10) || void 0,
28
+ city: truncateString(data.city, 100) || void 0,
29
+ latitude: data.latitude,
30
+ longitude: data.longitude,
31
+ timezone: truncateString(data.timezone, 50) || void 0,
32
+ isp: truncateString(data.org, 500) || void 0,
33
+ organization: truncateString(data.org, 500) || void 0,
34
+ asn: truncateString(data.asn, 50) || void 0,
35
+ isPrivate: false,
36
+ isProxy: false,
37
+ accuracy: 1e3,
38
+ lastUpdated: /* @__PURE__ */ new Date()
39
+ };
40
+ }
41
+ return null;
42
+ }
43
+ };
44
+
45
+ export {
46
+ IPApiCoProvider
47
+ };
@@ -0,0 +1,204 @@
1
+ // src/utils/url-normalizer.ts
2
+ var SUPPORTED_SCHEMES = [
3
+ "http:",
4
+ "https:",
5
+ "mailto:",
6
+ "tel:",
7
+ "sms:",
8
+ "ftp:",
9
+ "ftps:",
10
+ // 'file:' - 보안상 제거 (로컬 파일 접근 방지)
11
+ // 'data:' - XSS 공격 벡터로 제거 (CVSS 7.5)
12
+ // Mobile app schemes
13
+ "intent:",
14
+ "market:",
15
+ "itms:",
16
+ "itms-apps:",
17
+ // Social media apps
18
+ "fb:",
19
+ "instagram:",
20
+ "twitter:",
21
+ "youtube:",
22
+ "linkedin:",
23
+ "tiktok:",
24
+ // Messaging apps
25
+ "whatsapp:",
26
+ "telegram:",
27
+ "line:",
28
+ "kakaotalk:",
29
+ "viber:",
30
+ "wechat:",
31
+ "slack:",
32
+ "discord:",
33
+ // Other apps
34
+ "spotify:",
35
+ "zoom:",
36
+ "skype:",
37
+ "maps:",
38
+ "geo:"
39
+ ];
40
+ var CUSTOM_SCHEME_PATTERN = /^[a-zA-Z][a-zA-Z0-9+.-]*:/;
41
+ function hasValidScheme(url) {
42
+ try {
43
+ const urlObj = new URL(url);
44
+ const protocol = urlObj.protocol;
45
+ if (SUPPORTED_SCHEMES.includes(protocol)) {
46
+ return true;
47
+ }
48
+ if (CUSTOM_SCHEME_PATTERN.test(url)) {
49
+ return true;
50
+ }
51
+ return false;
52
+ } catch (e) {
53
+ return false;
54
+ }
55
+ }
56
+ function extractScheme(url) {
57
+ const match = url.match(/^([a-zA-Z][a-zA-Z0-9+.-]*):\/?\/?/);
58
+ return match ? match[1] : null;
59
+ }
60
+ function normalizeUrl(url) {
61
+ if (!url) {
62
+ return "";
63
+ }
64
+ let normalized = url.trim();
65
+ if (!normalized) {
66
+ return "";
67
+ }
68
+ const scheme = extractScheme(normalized);
69
+ if (scheme) {
70
+ return normalized;
71
+ }
72
+ if (normalized.startsWith("//")) {
73
+ return `https:${normalized}`;
74
+ }
75
+ return `https://${normalized}`;
76
+ }
77
+ function validateUrl(url, options) {
78
+ if (!url || !url.trim()) {
79
+ return {
80
+ isValid: false,
81
+ message: "URL\uC744 \uC785\uB825\uD574\uC8FC\uC138\uC694",
82
+ messageKey: "urlRequired"
83
+ };
84
+ }
85
+ const normalized = (options == null ? void 0 : options.skipNormalization) ? url.trim() : normalizeUrl(url);
86
+ try {
87
+ const urlObj = new URL(normalized);
88
+ const protocol = urlObj.protocol;
89
+ const isSupported = SUPPORTED_SCHEMES.includes(protocol);
90
+ const isCustom = CUSTOM_SCHEME_PATTERN.test(normalized);
91
+ if (!isSupported && !isCustom) {
92
+ return {
93
+ isValid: false,
94
+ message: `\uC9C0\uC6D0\uD558\uC9C0 \uC54A\uB294 \uD504\uB85C\uD1A0\uCF5C\uC785\uB2C8\uB2E4: ${protocol}`,
95
+ messageKey: "unsupportedProtocol",
96
+ messageParams: { protocol }
97
+ };
98
+ }
99
+ if (protocol === "http:" || protocol === "https:") {
100
+ if (!urlObj.hostname || urlObj.hostname.length < 1) {
101
+ return {
102
+ isValid: false,
103
+ message: "\uC720\uD6A8\uD55C \uB3C4\uBA54\uC778\uC744 \uC785\uB825\uD574\uC8FC\uC138\uC694",
104
+ messageKey: "invalidDomain"
105
+ };
106
+ }
107
+ if (!urlObj.hostname.includes(".") && urlObj.hostname !== "localhost") {
108
+ return {
109
+ isValid: false,
110
+ message: "\uC720\uD6A8\uD55C \uB3C4\uBA54\uC778 \uD615\uC2DD\uC774 \uC544\uB2D9\uB2C8\uB2E4",
111
+ messageKey: "invalidDomainFormat"
112
+ };
113
+ }
114
+ }
115
+ if (protocol === "mailto:") {
116
+ const email = urlObj.pathname;
117
+ const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
118
+ if (!emailRegex.test(email)) {
119
+ return {
120
+ isValid: false,
121
+ message: "\uC720\uD6A8\uD55C \uC774\uBA54\uC77C \uC8FC\uC18C\uAC00 \uC544\uB2D9\uB2C8\uB2E4",
122
+ messageKey: "invalidEmail"
123
+ };
124
+ }
125
+ }
126
+ if (protocol === "tel:") {
127
+ const phone = urlObj.pathname;
128
+ if (!/\d/.test(phone)) {
129
+ return {
130
+ isValid: false,
131
+ message: "\uC720\uD6A8\uD55C \uC804\uD654\uBC88\uD638\uAC00 \uC544\uB2D9\uB2C8\uB2E4",
132
+ messageKey: "invalidPhone"
133
+ };
134
+ }
135
+ }
136
+ if (normalized.length > 2048) {
137
+ return {
138
+ isValid: false,
139
+ message: "URL\uC774 \uB108\uBB34 \uAE41\uB2C8\uB2E4 (\uCD5C\uB300 2048\uC790)",
140
+ messageKey: "urlTooLong"
141
+ };
142
+ }
143
+ return {
144
+ isValid: true,
145
+ message: "\uC720\uD6A8\uD55C URL\uC785\uB2C8\uB2E4",
146
+ messageKey: "validUrl",
147
+ normalizedUrl: normalized
148
+ };
149
+ } catch (error) {
150
+ return {
151
+ isValid: false,
152
+ message: "\uC720\uD6A8\uD55C URL \uD615\uC2DD\uC774 \uC544\uB2D9\uB2C8\uB2E4",
153
+ messageKey: "invalidUrlFormat"
154
+ };
155
+ }
156
+ }
157
+ function isWebUrl(url) {
158
+ try {
159
+ const urlObj = new URL(url);
160
+ return urlObj.protocol === "http:" || urlObj.protocol === "https:";
161
+ } catch (e) {
162
+ return false;
163
+ }
164
+ }
165
+ function isAppScheme(url) {
166
+ try {
167
+ const urlObj = new URL(url);
168
+ return !["http:", "https:", "ftp:", "ftps:", "file:"].includes(urlObj.protocol);
169
+ } catch (e) {
170
+ return false;
171
+ }
172
+ }
173
+ function getUrlType(url) {
174
+ try {
175
+ const urlObj = new URL(url);
176
+ const protocol = urlObj.protocol;
177
+ if (protocol === "http:" || protocol === "https:") {
178
+ return "web";
179
+ }
180
+ if (protocol === "mailto:") {
181
+ return "email";
182
+ }
183
+ if (protocol === "tel:" || protocol === "sms:") {
184
+ return "tel";
185
+ }
186
+ if (isAppScheme(url)) {
187
+ return "app";
188
+ }
189
+ return "other";
190
+ } catch (e) {
191
+ return "other";
192
+ }
193
+ }
194
+
195
+ export {
196
+ SUPPORTED_SCHEMES,
197
+ hasValidScheme,
198
+ extractScheme,
199
+ normalizeUrl,
200
+ validateUrl,
201
+ isWebUrl,
202
+ isAppScheme,
203
+ getUrlType
204
+ };