@idevconn/create-icore 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 (241) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +56 -0
  3. package/dist/cli.js +300 -0
  4. package/dist/index.cjs +303 -0
  5. package/dist/index.d.cts +26 -0
  6. package/dist/index.d.ts +26 -0
  7. package/dist/index.js +265 -0
  8. package/package.json +72 -0
  9. package/templates/.husky/pre-commit +56 -0
  10. package/templates/.nvmrc +1 -0
  11. package/templates/.prettierignore +7 -0
  12. package/templates/.prettierrc +7 -0
  13. package/templates/.yarnrc.yml +7 -0
  14. package/templates/apps/api/.env.example +19 -0
  15. package/templates/apps/api/eslint.config.mjs +23 -0
  16. package/templates/apps/api/package.json +20 -0
  17. package/templates/apps/api/project.json +76 -0
  18. package/templates/apps/api/src/app/abilities/__tests__/ability.guard.unit.test.ts +49 -0
  19. package/templates/apps/api/src/app/abilities/abilities.module.ts +10 -0
  20. package/templates/apps/api/src/app/abilities/ability.factory.ts +13 -0
  21. package/templates/apps/api/src/app/abilities/ability.guard.ts +29 -0
  22. package/templates/apps/api/src/app/abilities/check-ability.decorator.ts +12 -0
  23. package/templates/apps/api/src/app/app.module.ts +19 -0
  24. package/templates/apps/api/src/app/auth/__tests__/auth.guard.unit.test.ts +66 -0
  25. package/templates/apps/api/src/app/auth/auth.controller.ts +62 -0
  26. package/templates/apps/api/src/app/auth/auth.guard.ts +42 -0
  27. package/templates/apps/api/src/app/auth/auth.module.ts +17 -0
  28. package/templates/apps/api/src/app/auth/public.decorator.ts +4 -0
  29. package/templates/apps/api/src/app/profile/profile.controller.ts +15 -0
  30. package/templates/apps/api/src/app/profile/profile.module.ts +5 -0
  31. package/templates/apps/api/src/app/storage/__tests__/assert-ownership.unit.test.ts +28 -0
  32. package/templates/apps/api/src/app/storage/assert-ownership.ts +8 -0
  33. package/templates/apps/api/src/app/storage/storage.controller.ts +108 -0
  34. package/templates/apps/api/src/app/storage/storage.module.ts +10 -0
  35. package/templates/apps/api/src/assets/.gitkeep +0 -0
  36. package/templates/apps/api/src/main.ts +43 -0
  37. package/templates/apps/api/tsconfig.app.json +13 -0
  38. package/templates/apps/api/tsconfig.json +16 -0
  39. package/templates/apps/api/tsconfig.spec.json +16 -0
  40. package/templates/apps/api/vitest.config.mts +21 -0
  41. package/templates/apps/api/webpack.config.js +25 -0
  42. package/templates/apps/microservices/auth/.env.example +38 -0
  43. package/templates/apps/microservices/auth/package.json +19 -0
  44. package/templates/apps/microservices/auth/project.json +65 -0
  45. package/templates/apps/microservices/auth/src/app/__tests__/auth.controller.firebase.integration.unit.test.ts +53 -0
  46. package/templates/apps/microservices/auth/src/app/__tests__/auth.controller.supabase.integration.unit.test.ts +47 -0
  47. package/templates/apps/microservices/auth/src/app/__tests__/auth.controller.unit.test.ts +87 -0
  48. package/templates/apps/microservices/auth/src/app/app.module.ts +66 -0
  49. package/templates/apps/microservices/auth/src/app/auth.controller.ts +60 -0
  50. package/templates/apps/microservices/auth/src/assets/.gitkeep +0 -0
  51. package/templates/apps/microservices/auth/src/main.ts +28 -0
  52. package/templates/apps/microservices/auth/tsconfig.app.json +13 -0
  53. package/templates/apps/microservices/auth/tsconfig.json +16 -0
  54. package/templates/apps/microservices/auth/tsconfig.spec.json +16 -0
  55. package/templates/apps/microservices/auth/vitest.config.mts +21 -0
  56. package/templates/apps/microservices/auth/webpack.config.js +25 -0
  57. package/templates/apps/microservices/upload/.env.example +30 -0
  58. package/templates/apps/microservices/upload/package.json +21 -0
  59. package/templates/apps/microservices/upload/project.json +65 -0
  60. package/templates/apps/microservices/upload/src/app/__tests__/storage.controller.unit.test.ts +49 -0
  61. package/templates/apps/microservices/upload/src/app/app.module.ts +117 -0
  62. package/templates/apps/microservices/upload/src/app/storage.controller.ts +51 -0
  63. package/templates/apps/microservices/upload/src/assets/.gitkeep +0 -0
  64. package/templates/apps/microservices/upload/src/main.ts +28 -0
  65. package/templates/apps/microservices/upload/tsconfig.app.json +13 -0
  66. package/templates/apps/microservices/upload/tsconfig.json +16 -0
  67. package/templates/apps/microservices/upload/tsconfig.spec.json +16 -0
  68. package/templates/apps/microservices/upload/vitest.config.mts +22 -0
  69. package/templates/apps/microservices/upload/webpack.config.js +25 -0
  70. package/templates/apps/templates/client-shadcn/.env.example +2 -0
  71. package/templates/apps/templates/client-shadcn/eslint.config.mjs +10 -0
  72. package/templates/apps/templates/client-shadcn/index.html +17 -0
  73. package/templates/apps/templates/client-shadcn/project.json +9 -0
  74. package/templates/apps/templates/client-shadcn/public/favicon.ico +0 -0
  75. package/templates/apps/templates/client-shadcn/src/app/app.module.css +1 -0
  76. package/templates/apps/templates/client-shadcn/src/app/app.spec.tsx +9 -0
  77. package/templates/apps/templates/client-shadcn/src/app/app.tsx +7 -0
  78. package/templates/apps/templates/client-shadcn/src/assets/.gitkeep +0 -0
  79. package/templates/apps/templates/client-shadcn/src/components/AccessDeniedPage.tsx +15 -0
  80. package/templates/apps/templates/client-shadcn/src/components/PageLayout.tsx +55 -0
  81. package/templates/apps/templates/client-shadcn/src/components/layout/LayoutFooter.tsx +8 -0
  82. package/templates/apps/templates/client-shadcn/src/components/layout/LayoutHeader.tsx +57 -0
  83. package/templates/apps/templates/client-shadcn/src/components/layout/LayoutSider.tsx +44 -0
  84. package/templates/apps/templates/client-shadcn/src/components/ui/button.tsx +50 -0
  85. package/templates/apps/templates/client-shadcn/src/components/ui/card.tsx +63 -0
  86. package/templates/apps/templates/client-shadcn/src/components/ui/input.tsx +23 -0
  87. package/templates/apps/templates/client-shadcn/src/components/ui/label.tsx +18 -0
  88. package/templates/apps/templates/client-shadcn/src/globals.css +27 -0
  89. package/templates/apps/templates/client-shadcn/src/layouts/MainLayout.tsx +17 -0
  90. package/templates/apps/templates/client-shadcn/src/lib/notify.ts +15 -0
  91. package/templates/apps/templates/client-shadcn/src/lib/utils.ts +6 -0
  92. package/templates/apps/templates/client-shadcn/src/main.tsx +50 -0
  93. package/templates/apps/templates/client-shadcn/src/routeTree.gen.ts +136 -0
  94. package/templates/apps/templates/client-shadcn/src/routes/__root.tsx +5 -0
  95. package/templates/apps/templates/client-shadcn/src/routes/_dashboard/dashboard.tsx +33 -0
  96. package/templates/apps/templates/client-shadcn/src/routes/_dashboard/profile.tsx +88 -0
  97. package/templates/apps/templates/client-shadcn/src/routes/_dashboard.tsx +16 -0
  98. package/templates/apps/templates/client-shadcn/src/routes/index.tsx +33 -0
  99. package/templates/apps/templates/client-shadcn/src/routes/login.tsx +93 -0
  100. package/templates/apps/templates/client-shadcn/src/styles.css +1 -0
  101. package/templates/apps/templates/client-shadcn/tsconfig.app.json +27 -0
  102. package/templates/apps/templates/client-shadcn/tsconfig.json +21 -0
  103. package/templates/apps/templates/client-shadcn/tsconfig.spec.json +30 -0
  104. package/templates/apps/templates/client-shadcn/vite.config.mts +92 -0
  105. package/templates/apps/templates/client-shadcn-e2e/eslint.config.mjs +12 -0
  106. package/templates/apps/templates/client-shadcn-e2e/playwright.config.ts +69 -0
  107. package/templates/apps/templates/client-shadcn-e2e/project.json +10 -0
  108. package/templates/apps/templates/client-shadcn-e2e/src/icore.spec.ts +27 -0
  109. package/templates/apps/templates/client-shadcn-e2e/tsconfig.json +19 -0
  110. package/templates/eslint.config.mjs +20 -0
  111. package/templates/libs/auth-client/README.md +11 -0
  112. package/templates/libs/auth-client/eslint.config.mjs +22 -0
  113. package/templates/libs/auth-client/package.json +15 -0
  114. package/templates/libs/auth-client/project.json +19 -0
  115. package/templates/libs/auth-client/src/index.ts +2 -0
  116. package/templates/libs/auth-client/src/lib/auth-client.module.ts +25 -0
  117. package/templates/libs/auth-client/src/lib/auth-client.service.ts +30 -0
  118. package/templates/libs/auth-client/tsconfig.json +24 -0
  119. package/templates/libs/auth-client/tsconfig.lib.json +26 -0
  120. package/templates/libs/auth-client/tsconfig.spec.json +22 -0
  121. package/templates/libs/auth-client/vitest.config.mts +22 -0
  122. package/templates/libs/auth-strategies/firebase/README.md +11 -0
  123. package/templates/libs/auth-strategies/firebase/eslint.config.mjs +22 -0
  124. package/templates/libs/auth-strategies/firebase/package.json +15 -0
  125. package/templates/libs/auth-strategies/firebase/project.json +19 -0
  126. package/templates/libs/auth-strategies/firebase/src/index.ts +4 -0
  127. package/templates/libs/auth-strategies/firebase/src/lib/__tests__/firebase-auth.contract.unit.test.ts +13 -0
  128. package/templates/libs/auth-strategies/firebase/src/lib/firebase-auth.strategy.ts +77 -0
  129. package/templates/libs/auth-strategies/firebase/src/lib/identity-toolkit.client.ts +72 -0
  130. package/templates/libs/auth-strategies/firebase/src/lib/testing/mock-admin-auth.ts +41 -0
  131. package/templates/libs/auth-strategies/firebase/src/lib/testing/mock-identity-toolkit.ts +76 -0
  132. package/templates/libs/auth-strategies/firebase/tsconfig.json +24 -0
  133. package/templates/libs/auth-strategies/firebase/tsconfig.lib.json +23 -0
  134. package/templates/libs/auth-strategies/firebase/tsconfig.spec.json +22 -0
  135. package/templates/libs/auth-strategies/firebase/vitest.config.mts +22 -0
  136. package/templates/libs/auth-strategies/supabase/README.md +11 -0
  137. package/templates/libs/auth-strategies/supabase/eslint.config.mjs +22 -0
  138. package/templates/libs/auth-strategies/supabase/package.json +16 -0
  139. package/templates/libs/auth-strategies/supabase/project.json +19 -0
  140. package/templates/libs/auth-strategies/supabase/src/index.ts +2 -0
  141. package/templates/libs/auth-strategies/supabase/src/lib/__tests__/supabase-auth.contract.unit.test.ts +8 -0
  142. package/templates/libs/auth-strategies/supabase/src/lib/supabase-auth.strategy.ts +79 -0
  143. package/templates/libs/auth-strategies/supabase/src/lib/testing/mock-supabase.ts +107 -0
  144. package/templates/libs/auth-strategies/supabase/tsconfig.json +24 -0
  145. package/templates/libs/auth-strategies/supabase/tsconfig.lib.json +23 -0
  146. package/templates/libs/auth-strategies/supabase/tsconfig.spec.json +22 -0
  147. package/templates/libs/auth-strategies/supabase/vitest.config.mts +22 -0
  148. package/templates/libs/shared/README.md +11 -0
  149. package/templates/libs/shared/eslint.config.mjs +24 -0
  150. package/templates/libs/shared/package.json +14 -0
  151. package/templates/libs/shared/project.json +19 -0
  152. package/templates/libs/shared/src/__tests__/transport.unit.test.ts +58 -0
  153. package/templates/libs/shared/src/abilities/__tests__/ability.unit.test.ts +28 -0
  154. package/templates/libs/shared/src/abilities/ability.ts +21 -0
  155. package/templates/libs/shared/src/abilities/index.ts +2 -0
  156. package/templates/libs/shared/src/abilities/subjects.ts +2 -0
  157. package/templates/libs/shared/src/index.ts +3 -0
  158. package/templates/libs/shared/src/strategies/__tests__/fake-auth.contract.unit.test.ts +4 -0
  159. package/templates/libs/shared/src/strategies/__tests__/fake-storage.contract.unit.test.ts +4 -0
  160. package/templates/libs/shared/src/strategies/auth.ts +21 -0
  161. package/templates/libs/shared/src/strategies/contract/auth-contract.ts +66 -0
  162. package/templates/libs/shared/src/strategies/contract/storage-contract.ts +58 -0
  163. package/templates/libs/shared/src/strategies/fakes/fake-auth.ts +73 -0
  164. package/templates/libs/shared/src/strategies/fakes/fake-storage.ts +51 -0
  165. package/templates/libs/shared/src/strategies/fakes/index.ts +2 -0
  166. package/templates/libs/shared/src/strategies/index.ts +5 -0
  167. package/templates/libs/shared/src/strategies/storage.ts +17 -0
  168. package/templates/libs/shared/src/transport.ts +55 -0
  169. package/templates/libs/shared/tsconfig.json +24 -0
  170. package/templates/libs/shared/tsconfig.lib.json +23 -0
  171. package/templates/libs/shared/tsconfig.spec.json +22 -0
  172. package/templates/libs/shared/vitest.config.mts +21 -0
  173. package/templates/libs/storage-strategies/cloudinary/README.md +11 -0
  174. package/templates/libs/storage-strategies/cloudinary/eslint.config.mjs +23 -0
  175. package/templates/libs/storage-strategies/cloudinary/package.json +15 -0
  176. package/templates/libs/storage-strategies/cloudinary/project.json +19 -0
  177. package/templates/libs/storage-strategies/cloudinary/src/index.ts +2 -0
  178. package/templates/libs/storage-strategies/cloudinary/src/lib/__tests__/cloudinary-storage.contract.unit.test.ts +8 -0
  179. package/templates/libs/storage-strategies/cloudinary/src/lib/cloudinary-storage.strategy.ts +75 -0
  180. package/templates/libs/storage-strategies/cloudinary/src/lib/testing/mock-cloudinary.ts +36 -0
  181. package/templates/libs/storage-strategies/cloudinary/tsconfig.json +24 -0
  182. package/templates/libs/storage-strategies/cloudinary/tsconfig.lib.json +23 -0
  183. package/templates/libs/storage-strategies/cloudinary/tsconfig.spec.json +22 -0
  184. package/templates/libs/storage-strategies/cloudinary/vitest.config.mts +22 -0
  185. package/templates/libs/storage-strategies/firebase/README.md +11 -0
  186. package/templates/libs/storage-strategies/firebase/eslint.config.mjs +23 -0
  187. package/templates/libs/storage-strategies/firebase/package.json +15 -0
  188. package/templates/libs/storage-strategies/firebase/project.json +19 -0
  189. package/templates/libs/storage-strategies/firebase/src/index.ts +2 -0
  190. package/templates/libs/storage-strategies/firebase/src/lib/__tests__/firebase-storage.contract.unit.test.ts +8 -0
  191. package/templates/libs/storage-strategies/firebase/src/lib/firebase-storage.strategy.ts +63 -0
  192. package/templates/libs/storage-strategies/firebase/src/lib/testing/mock-firebase-storage.ts +43 -0
  193. package/templates/libs/storage-strategies/firebase/tsconfig.json +24 -0
  194. package/templates/libs/storage-strategies/firebase/tsconfig.lib.json +23 -0
  195. package/templates/libs/storage-strategies/firebase/tsconfig.spec.json +22 -0
  196. package/templates/libs/storage-strategies/firebase/vitest.config.mts +22 -0
  197. package/templates/libs/storage-strategies/supabase/README.md +11 -0
  198. package/templates/libs/storage-strategies/supabase/eslint.config.mjs +22 -0
  199. package/templates/libs/storage-strategies/supabase/package.json +16 -0
  200. package/templates/libs/storage-strategies/supabase/project.json +19 -0
  201. package/templates/libs/storage-strategies/supabase/src/index.ts +2 -0
  202. package/templates/libs/storage-strategies/supabase/src/lib/__tests__/supabase-storage.contract.unit.test.ts +8 -0
  203. package/templates/libs/storage-strategies/supabase/src/lib/supabase-storage.strategy.ts +53 -0
  204. package/templates/libs/storage-strategies/supabase/src/lib/testing/mock-supabase-storage.ts +78 -0
  205. package/templates/libs/storage-strategies/supabase/tsconfig.json +24 -0
  206. package/templates/libs/storage-strategies/supabase/tsconfig.lib.json +23 -0
  207. package/templates/libs/storage-strategies/supabase/tsconfig.spec.json +22 -0
  208. package/templates/libs/storage-strategies/supabase/vitest.config.mts +22 -0
  209. package/templates/libs/template-shared/README.md +11 -0
  210. package/templates/libs/template-shared/eslint.config.mjs +23 -0
  211. package/templates/libs/template-shared/package.json +22 -0
  212. package/templates/libs/template-shared/project.json +19 -0
  213. package/templates/libs/template-shared/src/index.ts +9 -0
  214. package/templates/libs/template-shared/src/lib/abilities/ability-provider.tsx +19 -0
  215. package/templates/libs/template-shared/src/lib/api/create-api.ts +20 -0
  216. package/templates/libs/template-shared/src/lib/draft/index.ts +1 -0
  217. package/templates/libs/template-shared/src/lib/i18n/create-i18n.ts +42 -0
  218. package/templates/libs/template-shared/src/lib/i18n/keys.ts +30 -0
  219. package/templates/libs/template-shared/src/lib/landing/LandingPage.tsx +68 -0
  220. package/templates/libs/template-shared/src/lib/notify/use-notify.ts +26 -0
  221. package/templates/libs/template-shared/src/lib/stores/auth.store.ts +29 -0
  222. package/templates/libs/template-shared/src/lib/stores/loading.store.ts +13 -0
  223. package/templates/libs/template-shared/tsconfig.json +24 -0
  224. package/templates/libs/template-shared/tsconfig.lib.json +25 -0
  225. package/templates/libs/template-shared/tsconfig.spec.json +22 -0
  226. package/templates/libs/template-shared/vitest.config.mts +22 -0
  227. package/templates/libs/upload-client/README.md +11 -0
  228. package/templates/libs/upload-client/eslint.config.mjs +22 -0
  229. package/templates/libs/upload-client/package.json +15 -0
  230. package/templates/libs/upload-client/project.json +19 -0
  231. package/templates/libs/upload-client/src/index.ts +2 -0
  232. package/templates/libs/upload-client/src/lib/upload-client.module.ts +25 -0
  233. package/templates/libs/upload-client/src/lib/upload-client.service.ts +38 -0
  234. package/templates/libs/upload-client/tsconfig.json +24 -0
  235. package/templates/libs/upload-client/tsconfig.lib.json +26 -0
  236. package/templates/libs/upload-client/tsconfig.spec.json +22 -0
  237. package/templates/libs/upload-client/vitest.config.mts +22 -0
  238. package/templates/nx.json +113 -0
  239. package/templates/package.json +24 -0
  240. package/templates/tools/create-icore/_template-shell/package.json +24 -0
  241. package/templates/tsconfig.base.json +29 -0
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "auth-client",
3
+ "$schema": "../../node_modules/nx/schemas/project-schema.json",
4
+ "sourceRoot": "libs/auth-client/src",
5
+ "projectType": "library",
6
+ "tags": [],
7
+ "targets": {
8
+ "build": {
9
+ "executor": "@nx/js:tsc",
10
+ "outputs": ["{options.outputPath}"],
11
+ "options": {
12
+ "outputPath": "dist/libs/auth-client",
13
+ "main": "libs/auth-client/src/index.ts",
14
+ "tsConfig": "libs/auth-client/tsconfig.lib.json",
15
+ "assets": ["libs/auth-client/*.md"]
16
+ }
17
+ }
18
+ }
19
+ }
@@ -0,0 +1,2 @@
1
+ export * from './lib/auth-client.module';
2
+ export * from './lib/auth-client.service';
@@ -0,0 +1,25 @@
1
+ import { DynamicModule, Module } from '@nestjs/common';
2
+ import { ClientsModule } from '@nestjs/microservices';
3
+ import { buildTransport } from '@icore/shared';
4
+ import { AuthClientService } from './auth-client.service';
5
+
6
+ export const AUTH_CLIENT = 'AUTH_CLIENT';
7
+
8
+ @Module({})
9
+ export class AuthClientModule {
10
+ static forRoot(): DynamicModule {
11
+ return {
12
+ module: AuthClientModule,
13
+ imports: [
14
+ ClientsModule.registerAsync([
15
+ {
16
+ name: AUTH_CLIENT,
17
+ useFactory: () => buildTransport('AUTH'),
18
+ },
19
+ ]),
20
+ ],
21
+ providers: [AuthClientService],
22
+ exports: [AuthClientService],
23
+ };
24
+ }
25
+ }
@@ -0,0 +1,30 @@
1
+ import { Inject, Injectable } from '@nestjs/common';
2
+ import { ClientProxy } from '@nestjs/microservices';
3
+ import { firstValueFrom } from 'rxjs';
4
+ import type { AuthSession, VerifiedToken } from '@icore/shared';
5
+ import { AUTH_CLIENT } from './auth-client.module';
6
+
7
+ @Injectable()
8
+ export class AuthClientService {
9
+ constructor(@Inject(AUTH_CLIENT) private readonly client: ClientProxy) {}
10
+
11
+ verify(token: string): Promise<VerifiedToken> {
12
+ return firstValueFrom(this.client.send<VerifiedToken>('auth.verify', { token }));
13
+ }
14
+
15
+ login(email: string, password: string): Promise<AuthSession> {
16
+ return firstValueFrom(this.client.send<AuthSession>('auth.login', { email, password }));
17
+ }
18
+
19
+ signup(email: string, password: string): Promise<AuthSession> {
20
+ return firstValueFrom(this.client.send<AuthSession>('auth.signup', { email, password }));
21
+ }
22
+
23
+ refresh(refreshToken: string): Promise<AuthSession> {
24
+ return firstValueFrom(this.client.send<AuthSession>('auth.refresh', { refreshToken }));
25
+ }
26
+
27
+ setRole(uid: string, role: string): Promise<void> {
28
+ return firstValueFrom(this.client.send<void>('auth.setRole', { uid, role }));
29
+ }
30
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "extends": "../../tsconfig.base.json",
3
+ "compilerOptions": {
4
+ "module": "node16",
5
+ "moduleResolution": "node16",
6
+ "forceConsistentCasingInFileNames": true,
7
+ "strict": true,
8
+ "importHelpers": true,
9
+ "noImplicitOverride": true,
10
+ "noImplicitReturns": true,
11
+ "noFallthroughCasesInSwitch": true,
12
+ "noPropertyAccessFromIndexSignature": true
13
+ },
14
+ "files": [],
15
+ "include": [],
16
+ "references": [
17
+ {
18
+ "path": "./tsconfig.lib.json"
19
+ },
20
+ {
21
+ "path": "./tsconfig.spec.json"
22
+ }
23
+ ]
24
+ }
@@ -0,0 +1,26 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "../../dist/out-tsc",
5
+ "declaration": true,
6
+ "types": ["node"],
7
+ "experimentalDecorators": true,
8
+ "emitDecoratorMetadata": true,
9
+ "target": "es2021"
10
+ },
11
+ "include": ["src/**/*.ts"],
12
+ "exclude": [
13
+ "vite.config.ts",
14
+ "vite.config.mts",
15
+ "vitest.config.ts",
16
+ "vitest.config.mts",
17
+ "src/**/*.test.ts",
18
+ "src/**/*.spec.ts",
19
+ "src/**/*.test.tsx",
20
+ "src/**/*.spec.tsx",
21
+ "src/**/*.test.js",
22
+ "src/**/*.spec.js",
23
+ "src/**/*.test.jsx",
24
+ "src/**/*.spec.jsx"
25
+ ]
26
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "../../dist/out-tsc",
5
+ "types": ["vitest/globals", "vitest/importMeta", "vite/client", "node", "vitest"]
6
+ },
7
+ "include": [
8
+ "vite.config.ts",
9
+ "vite.config.mts",
10
+ "vitest.config.ts",
11
+ "vitest.config.mts",
12
+ "src/**/*.test.ts",
13
+ "src/**/*.spec.ts",
14
+ "src/**/*.test.tsx",
15
+ "src/**/*.spec.tsx",
16
+ "src/**/*.test.js",
17
+ "src/**/*.spec.js",
18
+ "src/**/*.test.jsx",
19
+ "src/**/*.spec.jsx",
20
+ "src/**/*.d.ts"
21
+ ]
22
+ }
@@ -0,0 +1,22 @@
1
+ import { defineConfig } from 'vitest/config';
2
+ import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
3
+ import { nxCopyAssetsPlugin } from '@nx/vite/plugins/nx-copy-assets.plugin';
4
+
5
+ export default defineConfig(() => ({
6
+ root: __dirname,
7
+ cacheDir: '../../node_modules/.vite/libs/auth-client',
8
+ plugins: [nxViteTsPaths(), nxCopyAssetsPlugin(['*.md'])],
9
+ test: {
10
+ name: 'auth-client',
11
+ watch: false,
12
+ globals: true,
13
+ environment: 'node',
14
+ include: ['{src,tests}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
15
+ passWithNoTests: true,
16
+ reporters: ['default'],
17
+ coverage: {
18
+ reportsDirectory: '../../coverage/libs/auth-client',
19
+ provider: 'v8' as const,
20
+ },
21
+ },
22
+ }));
@@ -0,0 +1,11 @@
1
+ # auth-firebase
2
+
3
+ This library was generated with [Nx](https://nx.dev).
4
+
5
+ ## Building
6
+
7
+ Run `nx build auth-firebase` to build the library.
8
+
9
+ ## Running unit tests
10
+
11
+ Run `nx test auth-firebase` to execute the unit tests via [Vitest](https://vitest.dev/).
@@ -0,0 +1,22 @@
1
+ import baseConfig from '../../../eslint.config.mjs';
2
+
3
+ export default [
4
+ ...baseConfig,
5
+ {
6
+ files: ['**/*.json'],
7
+ rules: {
8
+ '@nx/dependency-checks': [
9
+ 'error',
10
+ {
11
+ ignoredFiles: [
12
+ '{projectRoot}/eslint.config.{js,cjs,mjs,ts,cts,mts}',
13
+ '{projectRoot}/vitest.config.{js,ts,mjs,mts}',
14
+ ],
15
+ },
16
+ ],
17
+ },
18
+ languageOptions: {
19
+ parser: await import('jsonc-eslint-parser'),
20
+ },
21
+ },
22
+ ];
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "@icore/auth-firebase",
3
+ "version": "0.0.1",
4
+ "private": true,
5
+ "type": "commonjs",
6
+ "main": "./src/index.js",
7
+ "types": "./src/index.d.ts",
8
+ "dependencies": {
9
+ "@icore/shared": "*",
10
+ "tslib": "^2.3.0"
11
+ },
12
+ "devDependencies": {
13
+ "vitest": "^4.0.0"
14
+ }
15
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "auth-firebase",
3
+ "$schema": "../../../node_modules/nx/schemas/project-schema.json",
4
+ "sourceRoot": "libs/auth-strategies/firebase/src",
5
+ "projectType": "library",
6
+ "tags": [],
7
+ "targets": {
8
+ "build": {
9
+ "executor": "@nx/js:tsc",
10
+ "outputs": ["{options.outputPath}"],
11
+ "options": {
12
+ "outputPath": "dist/libs/auth-strategies/firebase",
13
+ "main": "libs/auth-strategies/firebase/src/index.ts",
14
+ "tsConfig": "libs/auth-strategies/firebase/tsconfig.lib.json",
15
+ "assets": ["libs/auth-strategies/firebase/*.md"]
16
+ }
17
+ }
18
+ }
19
+ }
@@ -0,0 +1,4 @@
1
+ export * from './lib/firebase-auth.strategy';
2
+ export * from './lib/identity-toolkit.client';
3
+ export * from './lib/testing/mock-identity-toolkit';
4
+ export * from './lib/testing/mock-admin-auth';
@@ -0,0 +1,13 @@
1
+ import { runAuthContract } from '@icore/shared';
2
+ import { FirebaseAuthStrategy } from '../firebase-auth.strategy';
3
+ import { createMockIdentityToolkit } from '../testing/mock-identity-toolkit';
4
+ import { createMockAdminAuth } from '../testing/mock-admin-auth';
5
+
6
+ runAuthContract('FirebaseAuthStrategy', () => {
7
+ const toolkit = createMockIdentityToolkit();
8
+ const adminAuth = createMockAdminAuth({ identityToolkit: toolkit });
9
+ return new FirebaseAuthStrategy({
10
+ identityToolkit: toolkit.client,
11
+ adminAuth,
12
+ });
13
+ });
@@ -0,0 +1,77 @@
1
+ import type { AuthSession, AuthStrategy, VerifiedToken } from '@icore/shared';
2
+ import type { IdentityToolkitClient } from './identity-toolkit.client';
3
+
4
+ export interface FirebaseAdminAuthLike {
5
+ verifyIdToken(idToken: string): Promise<{ uid: string; email?: string; role?: string }>;
6
+ setCustomUserClaims(uid: string, claims: Record<string, unknown>): Promise<void>;
7
+ getUser(
8
+ uid: string,
9
+ ): Promise<{ uid: string; email?: string; customClaims?: Record<string, unknown> }>;
10
+ }
11
+
12
+ export interface FirebaseAuthStrategyOptions {
13
+ identityToolkit: IdentityToolkitClient;
14
+ adminAuth: FirebaseAdminAuthLike;
15
+ }
16
+
17
+ export class FirebaseAuthStrategy implements AuthStrategy {
18
+ private readonly identityToolkit: IdentityToolkitClient;
19
+ private readonly adminAuth: FirebaseAdminAuthLike;
20
+
21
+ constructor(opts: FirebaseAuthStrategyOptions) {
22
+ this.identityToolkit = opts.identityToolkit;
23
+ this.adminAuth = opts.adminAuth;
24
+ }
25
+
26
+ async signUp(email: string, password: string): Promise<AuthSession> {
27
+ const res = await this.identityToolkit.signUp(email, password);
28
+ return {
29
+ accessToken: res.idToken,
30
+ refreshToken: res.refreshToken,
31
+ expiresIn: Number(res.expiresIn),
32
+ user: { id: res.localId, email: res.email },
33
+ };
34
+ }
35
+
36
+ async signIn(email: string, password: string): Promise<AuthSession> {
37
+ const res = await this.identityToolkit.signIn(email, password);
38
+ return {
39
+ accessToken: res.idToken,
40
+ refreshToken: res.refreshToken,
41
+ expiresIn: Number(res.expiresIn),
42
+ user: { id: res.localId, email: res.email },
43
+ };
44
+ }
45
+
46
+ async refresh(refreshToken: string): Promise<AuthSession> {
47
+ const res = await this.identityToolkit.refresh(refreshToken);
48
+ // Firebase doesn't return email on the refresh endpoint; backfill via verifyIdToken
49
+ const verified = await this.adminAuth.verifyIdToken(res.id_token);
50
+ return {
51
+ accessToken: res.id_token,
52
+ refreshToken: res.refresh_token,
53
+ expiresIn: Number(res.expires_in),
54
+ user: { id: res.user_id, email: verified.email ?? '' },
55
+ };
56
+ }
57
+
58
+ async verifyToken(token: string): Promise<VerifiedToken> {
59
+ const decoded = await this.adminAuth.verifyIdToken(token);
60
+ return {
61
+ uid: decoded.uid,
62
+ email: decoded.email,
63
+ role: decoded.role,
64
+ };
65
+ }
66
+
67
+ async setRole(uid: string, role: string): Promise<void> {
68
+ await this.adminAuth.setCustomUserClaims(uid, { role });
69
+ }
70
+
71
+ async getRole(uid: string): Promise<string | null> {
72
+ const user = await this.adminAuth.getUser(uid);
73
+ const claims = user.customClaims ?? {};
74
+ const role = claims['role'];
75
+ return typeof role === 'string' ? role : null;
76
+ }
77
+ }
@@ -0,0 +1,72 @@
1
+ export interface IdentityToolkitSignUpResponse {
2
+ localId: string;
3
+ email: string;
4
+ idToken: string;
5
+ refreshToken: string;
6
+ expiresIn: string;
7
+ }
8
+
9
+ export interface IdentityToolkitSignInResponse extends IdentityToolkitSignUpResponse {
10
+ registered: boolean;
11
+ }
12
+
13
+ export interface IdentityToolkitRefreshResponse {
14
+ id_token: string;
15
+ refresh_token: string;
16
+ expires_in: string;
17
+ user_id: string;
18
+ }
19
+
20
+ export interface IdentityToolkitClient {
21
+ signUp(email: string, password: string): Promise<IdentityToolkitSignUpResponse>;
22
+ signIn(email: string, password: string): Promise<IdentityToolkitSignInResponse>;
23
+ refresh(refreshToken: string): Promise<IdentityToolkitRefreshResponse>;
24
+ }
25
+
26
+ interface IdentityToolkitError {
27
+ error?: { message?: string; code?: number };
28
+ }
29
+
30
+ export class HttpIdentityToolkitClient implements IdentityToolkitClient {
31
+ constructor(private readonly apiKey: string) {}
32
+
33
+ async signUp(email: string, password: string): Promise<IdentityToolkitSignUpResponse> {
34
+ return this.post<IdentityToolkitSignUpResponse>(
35
+ 'https://identitytoolkit.googleapis.com/v1/accounts:signUp',
36
+ { email, password, returnSecureToken: true },
37
+ );
38
+ }
39
+
40
+ async signIn(email: string, password: string): Promise<IdentityToolkitSignInResponse> {
41
+ return this.post<IdentityToolkitSignInResponse>(
42
+ 'https://identitytoolkit.googleapis.com/v1/accounts:signInWithPassword',
43
+ { email, password, returnSecureToken: true },
44
+ );
45
+ }
46
+
47
+ async refresh(refreshToken: string): Promise<IdentityToolkitRefreshResponse> {
48
+ const res = await fetch(`https://securetoken.googleapis.com/v1/token?key=${this.apiKey}`, {
49
+ method: 'POST',
50
+ headers: { 'content-type': 'application/x-www-form-urlencoded' },
51
+ body: new URLSearchParams({ grant_type: 'refresh_token', refresh_token: refreshToken }),
52
+ });
53
+ if (!res.ok) {
54
+ const payload = (await res.json().catch(() => ({}))) as IdentityToolkitError;
55
+ throw new Error(payload.error?.message ?? `firebase_refresh_failed_${res.status}`);
56
+ }
57
+ return res.json() as Promise<IdentityToolkitRefreshResponse>;
58
+ }
59
+
60
+ private async post<T>(url: string, body: Record<string, unknown>): Promise<T> {
61
+ const res = await fetch(`${url}?key=${this.apiKey}`, {
62
+ method: 'POST',
63
+ headers: { 'content-type': 'application/json' },
64
+ body: JSON.stringify(body),
65
+ });
66
+ if (!res.ok) {
67
+ const payload = (await res.json().catch(() => ({}))) as IdentityToolkitError;
68
+ throw new Error(payload.error?.message ?? `firebase_request_failed_${res.status}`);
69
+ }
70
+ return res.json() as Promise<T>;
71
+ }
72
+ }
@@ -0,0 +1,41 @@
1
+ import type { MockHandle } from './mock-identity-toolkit';
2
+
3
+ interface FakeAdminAuthOptions {
4
+ identityToolkit: MockHandle;
5
+ }
6
+
7
+ export interface FakeAdminAuth {
8
+ verifyIdToken(idToken: string): Promise<{ uid: string; email?: string; role?: string }>;
9
+ setCustomUserClaims(uid: string, claims: Record<string, unknown>): Promise<void>;
10
+ getUser(
11
+ uid: string,
12
+ ): Promise<{ uid: string; email?: string; customClaims?: Record<string, unknown> }>;
13
+ }
14
+
15
+ export function createMockAdminAuth(opts: FakeAdminAuthOptions): FakeAdminAuth {
16
+ const roles = new Map<string, string>();
17
+
18
+ return {
19
+ async verifyIdToken(idToken) {
20
+ const uid = opts.identityToolkit.tokensToUid.get(idToken);
21
+ if (!uid) throw new Error('TOKEN_NOT_FOUND');
22
+ const user = [...opts.identityToolkit.users.values()].find((u) => u.localId === uid);
23
+ if (!user) throw new Error('USER_NOT_FOUND');
24
+ return { uid: user.localId, email: user.email, role: roles.get(uid) };
25
+ },
26
+ async setCustomUserClaims(uid, claims) {
27
+ const role = claims['role'];
28
+ if (typeof role === 'string') roles.set(uid, role);
29
+ },
30
+ async getUser(uid) {
31
+ const user = [...opts.identityToolkit.users.values()].find((u) => u.localId === uid);
32
+ if (!user) throw new Error('USER_NOT_FOUND');
33
+ const role = roles.get(uid);
34
+ return {
35
+ uid: user.localId,
36
+ email: user.email,
37
+ customClaims: role ? { role } : undefined,
38
+ };
39
+ },
40
+ };
41
+ }
@@ -0,0 +1,76 @@
1
+ import { randomUUID } from 'node:crypto';
2
+ import type {
3
+ IdentityToolkitClient,
4
+ IdentityToolkitRefreshResponse,
5
+ IdentityToolkitSignInResponse,
6
+ IdentityToolkitSignUpResponse,
7
+ } from '../identity-toolkit.client';
8
+
9
+ interface FakeUser {
10
+ localId: string;
11
+ email: string;
12
+ password: string;
13
+ }
14
+
15
+ export interface MockHandle {
16
+ client: IdentityToolkitClient;
17
+ users: Map<string, FakeUser>;
18
+ tokensToUid: Map<string, string>;
19
+ refreshToUid: Map<string, string>;
20
+ }
21
+
22
+ export function createMockIdentityToolkit(): MockHandle {
23
+ const users = new Map<string, FakeUser>();
24
+ const tokensToUid = new Map<string, string>();
25
+ const refreshToUid = new Map<string, string>();
26
+
27
+ function issue(user: FakeUser) {
28
+ const idToken = `id_${user.localId}_${randomUUID()}`;
29
+ const refreshToken = `rt_${user.localId}_${randomUUID()}`;
30
+ tokensToUid.set(idToken, user.localId);
31
+ refreshToUid.set(refreshToken, user.localId);
32
+ return { idToken, refreshToken, expiresIn: '3600' };
33
+ }
34
+
35
+ const client: IdentityToolkitClient = {
36
+ async signUp(email, password) {
37
+ for (const u of users.values()) {
38
+ if (u.email === email) throw new Error('EMAIL_EXISTS');
39
+ }
40
+ const user: FakeUser = { localId: `uid_${users.size + 1}`, email, password };
41
+ users.set(user.localId, user);
42
+ const session = issue(user);
43
+ return { localId: user.localId, email, ...session } as IdentityToolkitSignUpResponse;
44
+ },
45
+ async signIn(email, password) {
46
+ for (const u of users.values()) {
47
+ if (u.email === email && u.password === password) {
48
+ const session = issue(u);
49
+ return {
50
+ localId: u.localId,
51
+ email,
52
+ registered: true,
53
+ ...session,
54
+ } as IdentityToolkitSignInResponse;
55
+ }
56
+ }
57
+ throw new Error('EMAIL_NOT_FOUND_OR_INVALID_PASSWORD');
58
+ },
59
+ async refresh(refreshToken) {
60
+ const uid = refreshToUid.get(refreshToken);
61
+ if (!uid) throw new Error('INVALID_REFRESH_TOKEN');
62
+ refreshToUid.delete(refreshToken); // Firebase rotates
63
+ const user = [...users.values()].find((u) => u.localId === uid);
64
+ if (!user) throw new Error('USER_NOT_FOUND');
65
+ const session = issue(user);
66
+ return {
67
+ id_token: session.idToken,
68
+ refresh_token: session.refreshToken,
69
+ expires_in: session.expiresIn,
70
+ user_id: user.localId,
71
+ } satisfies IdentityToolkitRefreshResponse;
72
+ },
73
+ };
74
+
75
+ return { client, users, tokensToUid, refreshToUid };
76
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "extends": "../../../tsconfig.base.json",
3
+ "compilerOptions": {
4
+ "module": "node16",
5
+ "moduleResolution": "node16",
6
+ "forceConsistentCasingInFileNames": true,
7
+ "strict": true,
8
+ "importHelpers": true,
9
+ "noImplicitOverride": true,
10
+ "noImplicitReturns": true,
11
+ "noFallthroughCasesInSwitch": true,
12
+ "noPropertyAccessFromIndexSignature": true
13
+ },
14
+ "files": [],
15
+ "include": [],
16
+ "references": [
17
+ {
18
+ "path": "./tsconfig.lib.json"
19
+ },
20
+ {
21
+ "path": "./tsconfig.spec.json"
22
+ }
23
+ ]
24
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "../../../dist/out-tsc",
5
+ "declaration": true,
6
+ "types": ["node"]
7
+ },
8
+ "include": ["src/**/*.ts"],
9
+ "exclude": [
10
+ "vite.config.ts",
11
+ "vite.config.mts",
12
+ "vitest.config.ts",
13
+ "vitest.config.mts",
14
+ "src/**/*.test.ts",
15
+ "src/**/*.spec.ts",
16
+ "src/**/*.test.tsx",
17
+ "src/**/*.spec.tsx",
18
+ "src/**/*.test.js",
19
+ "src/**/*.spec.js",
20
+ "src/**/*.test.jsx",
21
+ "src/**/*.spec.jsx"
22
+ ]
23
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "../../../dist/out-tsc",
5
+ "types": ["vitest/globals", "vitest/importMeta", "vite/client", "node", "vitest"]
6
+ },
7
+ "include": [
8
+ "vite.config.ts",
9
+ "vite.config.mts",
10
+ "vitest.config.ts",
11
+ "vitest.config.mts",
12
+ "src/**/*.test.ts",
13
+ "src/**/*.spec.ts",
14
+ "src/**/*.test.tsx",
15
+ "src/**/*.spec.tsx",
16
+ "src/**/*.test.js",
17
+ "src/**/*.spec.js",
18
+ "src/**/*.test.jsx",
19
+ "src/**/*.spec.jsx",
20
+ "src/**/*.d.ts"
21
+ ]
22
+ }
@@ -0,0 +1,22 @@
1
+ import { defineConfig } from 'vitest/config';
2
+ import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
3
+ import { nxCopyAssetsPlugin } from '@nx/vite/plugins/nx-copy-assets.plugin';
4
+
5
+ export default defineConfig(() => ({
6
+ root: __dirname,
7
+ cacheDir: '../../../node_modules/.vite/libs/auth-strategies/firebase',
8
+ plugins: [nxViteTsPaths(), nxCopyAssetsPlugin(['*.md'])],
9
+ test: {
10
+ name: 'auth-firebase',
11
+ watch: false,
12
+ globals: true,
13
+ environment: 'node',
14
+ include: ['{src,tests}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
15
+ passWithNoTests: true,
16
+ reporters: ['default'],
17
+ coverage: {
18
+ reportsDirectory: '../../../coverage/libs/auth-strategies/firebase',
19
+ provider: 'v8' as const,
20
+ },
21
+ },
22
+ }));
@@ -0,0 +1,11 @@
1
+ # auth-supabase
2
+
3
+ This library was generated with [Nx](https://nx.dev).
4
+
5
+ ## Building
6
+
7
+ Run `nx build auth-supabase` to build the library.
8
+
9
+ ## Running unit tests
10
+
11
+ Run `nx test auth-supabase` to execute the unit tests via [Vitest](https://vitest.dev/).