Skip to content

Commit f2214f2

Browse files
committed
feat(identity): reimplement methods, integrate kratos
1 parent 6a04000 commit f2214f2

File tree

76 files changed

+467
-1504
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+467
-1504
lines changed

.pnp.cjs

+338-388
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

.yarn/install-state.gz

2.75 KB
Binary file not shown.

docker-compose.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,9 @@ services:
286286
volumes:
287287
- ./:/workspace
288288
- modules:/workspace/node_modules
289-
entrypoint: yarn identity:dev
289+
entrypoint: yarn workspace @identity/service dev
290+
environment:
291+
- KRATOS_PUBLIC_URL=http://kratos:4433/
290292
depends_on:
291293
- rabbitmq
292294
- db
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "@identity/kratos-adapter",
3+
"version": "0.0.1",
4+
"license": "BSD-3-Clause",
5+
"main": "src/index.ts",
6+
"dependencies": {
7+
"@ory/kratos-client": "0.8.2-alpha.1"
8+
},
9+
"devDependencies": {
10+
"@identity/domain": "0.3.1",
11+
"@nestjs/common": "8.4.2",
12+
"@nestjs/core": "8.4.2",
13+
"@nestjs/microservices": "8.4.2",
14+
"@nestjs/testing": "8.4.2",
15+
"@nestjs/typeorm": "8.0.3",
16+
"class-transformer": "0.3.1",
17+
"class-validator": "0.11.0",
18+
"rxjs": "6.5.3",
19+
"uuid": "3.3.3"
20+
}
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from './module'
2+
export * from './services'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './kratos-adapter.module'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import * as services from '../services'
2+
3+
import { Module } from '@nestjs/common'
4+
import { DynamicModule } from '@nestjs/common'
5+
6+
@Module({})
7+
export class KratosAdapterModule {
8+
static register(): DynamicModule {
9+
return {
10+
global: true,
11+
module: KratosAdapterModule,
12+
providers: [...Object.values(services)],
13+
exports: [...Object.values(services)],
14+
}
15+
}
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './kratos.service'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import { Injectable } from '@nestjs/common'
2+
import { Configuration } from '@ory/kratos-client'
3+
import { V0alpha2Api } from '@ory/kratos-client'
4+
import { Identity } from '@ory/kratos-client'
5+
6+
@Injectable()
7+
export class KratosService {
8+
private readonly client
9+
10+
constructor() {
11+
this.client = new V0alpha2Api(new Configuration({ basePath: process.env.KRATOS_PUBLIC_URL }))
12+
}
13+
14+
async getProfiles(perPage?: number, page?: number): Promise<Array<Identity>> {
15+
const profiles = await this.client.adminListIdentities(perPage, page)
16+
17+
return profiles.data
18+
}
19+
20+
async deleteProfile(id: string): Promise<void> {
21+
await this.client.adminDeleteIdentity(id)
22+
}
23+
24+
async whoami(session: string): Promise<Identity> {
25+
const response = await this.client.toSession(undefined, `ory_kratos_session=${session}`)
26+
27+
return response.data?.identity
28+
}
29+
30+
async getProfile(id: string): Promise<Identity> {
31+
const response = await this.client.adminGetIdentity(id)
32+
33+
return response.data
34+
}
35+
}

identity/application/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@
66
"devDependencies": {
77
"@atls/nestjs-map-errors-interceptor": "^0.1.36",
88
"@identity/domain": "0.3.1",
9-
"@identity/persistence": "0.3.1",
9+
"@identity/kratos-adapter": "workspace:0.0.1",
1010
"@nestjs/common": "8.4.2",
1111
"@nestjs/core": "8.4.2",
1212
"@nestjs/microservices": "8.4.2",
1313
"@nestjs/testing": "8.4.2",
14-
"@nestjs/typeorm": "8.0.3",
1514
"argon2": "0.25.0",
1615
"class-transformer": "0.3.1",
1716
"class-validator": "0.11.0",

identity/application/src/commands/AuthenticateUserCommand.ts

-5
This file was deleted.

identity/application/src/commands/ChangePasswordCommand.ts

-20
This file was deleted.

identity/application/src/commands/CreateProfileCommand.ts

-25
This file was deleted.

identity/application/src/commands/RegisterUserCommand.ts

-37
This file was deleted.

identity/application/src/commands/ResetPasswordCommand.ts

-3
This file was deleted.

identity/application/src/commands/UpdateProfileCommand.ts

-46
This file was deleted.

identity/application/src/commands/VerifyEmailCommand.ts

-3
This file was deleted.

identity/application/src/commands/index.ts

-7
This file was deleted.

identity/application/src/constraints/IsEntity.ts

-66
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
export * from './IsFieldEqual'
2-
export * from './IsEntity'

identity/application/src/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
export * from './commands'
21
export * from './services'
32
export * from './module'
43
export * from './constraints'

identity/application/src/module.ts

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
import { Module } from '@nestjs/common'
1+
import * as services from './services'
22

3-
import { UserApplicationService } from './services'
4-
import { UserQueriesService } from './services'
3+
import { Module } from '@nestjs/common'
4+
5+
import { KratosAdapterModule } from '@identity/kratos-adapter'
56

67
@Module({
7-
providers: [UserApplicationService, UserQueriesService],
8-
exports: [UserApplicationService, UserQueriesService],
8+
imports: [KratosAdapterModule.register()],
9+
providers: [...Object.values(services)],
10+
exports: [...Object.values(services)],
911
})
1012
export class ApplicationModule {}

0 commit comments

Comments
 (0)