Commit a527343
authored
๐ Add docstrings to
Docstrings generation was requested by @ImGdevel.
* #5 (comment)
The following files were modified:
* `ProjectVG.Api/ApiServiceCollectionExtensions.cs`
* `ProjectVG.Api/Controllers/AuthController.cs`
* `ProjectVG.Api/Controllers/ChatController.cs`
* `ProjectVG.Api/Controllers/OAuthController.cs`
* `ProjectVG.Api/Filters/JwtAuthenticationFilter.cs`
* `ProjectVG.Api/Middleware/GlobalExceptionHandler.cs`
* `ProjectVG.Api/Middleware/WebSocketMiddleware.cs`
* `ProjectVG.Api/Models/Auth/Request/RegisterRequest.cs`
* `ProjectVG.Application/ApplicationServiceCollectionExtensions.cs`
* `ProjectVG.Application/Models/Chat/ChatMessageSegment.cs`
* `ProjectVG.Application/Models/Chat/ChatProcessContext.cs`
* `ProjectVG.Application/Models/Chat/ProcessChatCommand.cs`
* `ProjectVG.Application/Models/Chat/UserInputAnalysis.cs`
* `ProjectVG.Application/Models/User/UserDto.cs`
* `ProjectVG.Application/Services/Auth/AuthService.cs`
* `ProjectVG.Application/Services/Auth/IAuthService.cs`
* `ProjectVG.Application/Services/Auth/IOAuth2Provider.cs`
* `ProjectVG.Application/Services/Auth/IOAuth2Service.cs`
* `ProjectVG.Application/Services/Auth/OAuth2ProviderFactory.cs`
* `ProjectVG.Application/Services/Auth/OAuth2Service.cs`
* `ProjectVG.Application/Services/Auth/Providers/AppleOAuth2Provider.cs`
* `ProjectVG.Application/Services/Auth/Providers/GoogleOAuth2Provider.cs`
* `ProjectVG.Application/Services/Chat/ChatService.cs`
* `ProjectVG.Application/Services/Chat/CostTracking/ChatMetricsService.cs`
* `ProjectVG.Application/Services/Chat/CostTracking/CostTrackingDecorator.cs`
* `ProjectVG.Application/Services/Chat/CostTracking/CostTrackingDecoratorFactory.cs`
* `ProjectVG.Application/Services/Chat/CostTracking/IChatMetricsService.cs`
* `ProjectVG.Application/Services/Chat/CostTracking/ICostTrackingDecorator.cs`
* `ProjectVG.Application/Services/Chat/Factories/ChatLLMFormat.cs`
* `ProjectVG.Application/Services/Chat/Factories/ILLMFormat.cs`
* `ProjectVG.Application/Services/Chat/Factories/UserInputAnalysisLLMFormat.cs`
* `ProjectVG.Application/Services/Chat/Handlers/ChatFailureHandler.cs`
* `ProjectVG.Application/Services/Chat/Preprocessors/MemoryContextPreprocessor.cs`
* `ProjectVG.Application/Services/Chat/Preprocessors/UserInputAnalysisProcessor.cs`
* `ProjectVG.Application/Services/Chat/Processors/ChatLLMProcessor.cs`
* `ProjectVG.Application/Services/Chat/Processors/ChatResultProcessor.cs`
* `ProjectVG.Application/Services/Chat/Processors/ChatTTSProcessor.cs`
* `ProjectVG.Application/Services/Chat/Validators/ChatRequestValidator.cs`
* `ProjectVG.Application/Services/Session/ConnectionRegistry.cs`
* `ProjectVG.Application/Services/Session/IConnectionRegistry.cs`
* `ProjectVG.Application/Services/User/IUserService.cs`
* `ProjectVG.Application/Services/User/UserService.cs`
* `ProjectVG.Application/Services/WebSocket/IWebSocketManager.cs`
* `ProjectVG.Application/Services/WebSocket/WebSocketManager.cs`
* `ProjectVG.Common/Constants/ErrorCodes.cs`
* `ProjectVG.Common/Constants/LLMModelInfo.cs`
* `ProjectVG.Common/Constants/TTSCostInfo.cs`
* `ProjectVG.Common/Exceptions/AuthenticationException.cs`
* `ProjectVG.Common/Exceptions/ValidationException.cs`
* `ProjectVG.Common/Models/Session/IClientConnection.cs`
* `ProjectVG.Common/Utils/UidGenerator.cs`
* `ProjectVG.Infrastructure/Auth/IRefreshTokenStorage.cs`
* `ProjectVG.Infrastructure/Auth/ITokenService.cs`
* `ProjectVG.Infrastructure/Auth/InMemoryRefreshTokenStorage.cs`
* `ProjectVG.Infrastructure/Auth/JwtProvider.cs`
* `ProjectVG.Infrastructure/Auth/JwtService.cs`
* `ProjectVG.Infrastructure/Auth/RedisRefreshTokenStorage.cs`
* `ProjectVG.Infrastructure/Auth/TokenService.cs`
* `ProjectVG.Infrastructure/InfrastructureServiceCollectionExtensions.cs`
* `ProjectVG.Infrastructure/Integrations/LLMClient/LLMClient.cs`
* `ProjectVG.Infrastructure/Integrations/MemoryClient/IMemoryClient.cs`
* `ProjectVG.Infrastructure/Integrations/MemoryClient/VectorMemoryClient.cs`
* `ProjectVG.Infrastructure/Persistence/EfCore/Data/ProjectVGDbContext.cs`
* `ProjectVG.Infrastructure/Persistence/EfCore/Migrations/20250825023623_AddUIDToUser.Designer.cs`
* `ProjectVG.Infrastructure/Persistence/EfCore/Migrations/20250825023623_AddUIDToUser.cs`
* `ProjectVG.Infrastructure/Persistence/EfCore/Migrations/20250825023833_AddUIDToUserTable.Designer.cs`
* `ProjectVG.Infrastructure/Persistence/EfCore/Migrations/20250825023833_AddUIDToUserTable.cs`
* `ProjectVG.Infrastructure/Persistence/EfCore/Migrations/20250825023955_AddUIDFieldToUser.cs`
* `ProjectVG.Infrastructure/Persistence/EfCore/Migrations/20250825051022_UpdateUserEntityWithUIDAndStatus.Designer.cs`
* `ProjectVG.Infrastructure/Persistence/EfCore/Migrations/20250825135004_IncreaseUIDLength.Designer.cs`
* `ProjectVG.Infrastructure/Persistence/EfCore/Migrations/20250825135004_IncreaseUIDLength.cs`
* `ProjectVG.Infrastructure/Persistence/EfCore/Migrations/ProjectVGDbContextModelSnapshot.cs`
* `ProjectVG.Infrastructure/Persistence/Repositories/Character/SqlServerCharacterRepository.cs`
* `ProjectVG.Infrastructure/Persistence/Repositories/User/IUserRepository.cs`
* `ProjectVG.Infrastructure/Persistence/Repositories/User/SqlServerUserRepository.cs`
* `ProjectVG.Infrastructure/Persistence/Session/InMemorySessionStorage.cs`
* `ProjectVG.Infrastructure/Realtime/WebSocketConnection/WebSocketClientConnection.cs`
* `test-clients/start-oauth2-client.py`feature/auth
1 parent ec8239f commit a527343
File tree
78 files changed
+1967
-110
lines changed- ProjectVG.Api
- Controllers
- Filters
- Middleware
- Models/Auth/Request
- ProjectVG.Application
- Models
- Chat
- User
- Services
- Auth
- Providers
- Chat
- CostTracking
- Factories
- Handlers
- Preprocessors
- Processors
- Validators
- Session
- User
- WebSocket
- ProjectVG.Common
- Constants
- Exceptions
- Models/Session
- Utils
- ProjectVG.Infrastructure
- Auth
- Integrations
- LLMClient
- MemoryClient
- Persistence
- EfCore
- Data
- Migrations
- Repositories
- Character
- User
- Session
- Realtime/WebSocketConnection
- test-clients
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
78 files changed
+1967
-110
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
| 37 | + | |
| 38 | + | |
37 | 39 | | |
| 40 | + | |
38 | 41 | | |
39 | 42 | | |
40 | 43 | | |
| |||
49 | 52 | | |
50 | 53 | | |
51 | 54 | | |
| 55 | + | |
| 56 | + | |
52 | 57 | | |
| 58 | + | |
53 | 59 | | |
54 | 60 | | |
55 | 61 | | |
| |||
64 | 70 | | |
65 | 71 | | |
66 | 72 | | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
67 | 77 | | |
| 78 | + | |
68 | 79 | | |
69 | 80 | | |
70 | 81 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
12 | 15 | | |
13 | 16 | | |
14 | 17 | | |
15 | 18 | | |
16 | 19 | | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
17 | 28 | | |
18 | 29 | | |
19 | 30 | | |
| |||
28 | 39 | | |
29 | 40 | | |
30 | 41 | | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
31 | 49 | | |
32 | 50 | | |
33 | 51 | | |
| |||
41 | 59 | | |
42 | 60 | | |
43 | 61 | | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
44 | 68 | | |
45 | 69 | | |
46 | 70 | | |
| |||
59 | 83 | | |
60 | 84 | | |
61 | 85 | | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
62 | 90 | | |
63 | 91 | | |
64 | 92 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
16 | 19 | | |
17 | 20 | | |
18 | 21 | | |
19 | 22 | | |
20 | 23 | | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
21 | 30 | | |
22 | 31 | | |
23 | 32 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
15 | 21 | | |
16 | 22 | | |
17 | 23 | | |
| |||
21 | 27 | | |
22 | 28 | | |
23 | 29 | | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
24 | 34 | | |
25 | 35 | | |
26 | 36 | | |
| |||
32 | 42 | | |
33 | 43 | | |
34 | 44 | | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
35 | 56 | | |
36 | 57 | | |
37 | 58 | | |
| |||
62 | 83 | | |
63 | 84 | | |
64 | 85 | | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
65 | 99 | | |
66 | 100 | | |
67 | 101 | | |
| |||
85 | 119 | | |
86 | 120 | | |
87 | 121 | | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
88 | 136 | | |
89 | 137 | | |
90 | 138 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
10 | 22 | | |
11 | 23 | | |
12 | 24 | | |
| |||
36 | 48 | | |
37 | 49 | | |
38 | 50 | | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
39 | 56 | | |
40 | 57 | | |
41 | 58 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
49 | 57 | | |
50 | 58 | | |
51 | 59 | | |
| |||
115 | 123 | | |
116 | 124 | | |
117 | 125 | | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
118 | 135 | | |
119 | 136 | | |
120 | 137 | | |
| |||
128 | 145 | | |
129 | 146 | | |
130 | 147 | | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
131 | 154 | | |
132 | 155 | | |
133 | 156 | | |
| |||
141 | 164 | | |
142 | 165 | | |
143 | 166 | | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
144 | 173 | | |
145 | 174 | | |
146 | 175 | | |
| |||
0 commit comments