|
| 1 | +<!-- General project links --> |
| 2 | +[open-issues]: https://github.com/it-at-m/refarch-templates/issues |
| 3 | +[new-issue]: https://github.com/it-at-m/refarch-templates/issues/new/choose |
| 4 | +[milestones]: https://github.com/it-at-m/refarch-templates/milestones |
| 5 | +[project-board]: https://github.com/orgs/it-at-m/projects/16 |
| 6 | +[documentation]: https://refarch-templates.oss.muenchen.de/ |
| 7 | +[contribution-documentation]: https://refarch-templates.oss.muenchen.de/contribute.html |
| 8 | +[itm-opensource]: https://opensource.muenchen.de/ |
| 9 | +[license]: ../LICENSE |
| 10 | +[code-of-conduct]: ./CODE_OF_CONDUCT.md |
| 11 | + |
| 12 | +<!-- Project specific links --> |
| 13 | +[refarch-documentation]: https://refarch.oss.muenchen.de/ |
| 14 | +[refarch-code]: https://github.com/it-at-m/refarch |
| 15 | +[spring-documentation]: https://spring.io/ |
| 16 | +[vuejs-documentation]: https://vuejs.org/ |
| 17 | +[getting-started-documentation]: https://refarch-templates.oss.muenchen.de/getting-started.html |
| 18 | +[develop-documentation]: https://refarch-templates.oss.muenchen.de/develop.html |
| 19 | +[document-documentation]: https://refarch-templates.oss.muenchen.de/document.html |
| 20 | +[organize-documentation]: https://refarch-templates.oss.muenchen.de/organize.html |
| 21 | + |
| 22 | +<!-- Shields.io links --> |
| 23 | +[documentation-shield]: https://img.shields.io/badge/documentation-blue?style=for-the-badge |
| 24 | +[new-issue-shield]: https://img.shields.io/badge/new%20issue-blue?style=for-the-badge |
| 25 | +[made-with-love-shield]: https://img.shields.io/badge/made%20with%20%E2%9D%A4%20by-it%40M-yellow?style=for-the-badge |
| 26 | +[license-shield]: https://img.shields.io/github/license/it-at-m/refarch-templates?style=for-the-badge |
| 27 | + |
1 | 28 | # CaptchaService
|
2 | 29 |
|
3 | 30 | [![Documentation][documentation-shield]][documentation]
|
@@ -76,30 +103,30 @@ graph TB
|
76 | 103 | end
|
77 | 104 |
|
78 | 105 | %% Request Flow
|
79 |
| - Client -->|POST /api/v1/challenge| ChallengeEndpoint |
80 |
| - Client -->|POST /api/v1/verify| VerifyEndpoint |
81 |
| - Client --> Monitoring |
| 106 | + Client -->|POST /api/v1/challenge| ChallengeEndpoint |
| 107 | + Client -->|POST /api/v1/verify| VerifyEndpoint |
| 108 | + Client --> Monitoring |
82 | 109 |
|
83 | 110 | %% Controller to Services
|
84 |
| - ChallengeEndpoint --> CaptchaService |
85 |
| - VerifyEndpoint --> CaptchaService |
86 |
| - ChallengeEndpoint --> SiteAuthService |
87 |
| - VerifyEndpoint --> SiteAuthService |
88 |
| - ChallengeEndpoint --> SourceAddressService |
| 111 | + ChallengeEndpoint --> CaptchaService |
| 112 | + VerifyEndpoint --> CaptchaService |
| 113 | + ChallengeEndpoint --> SiteAuthService |
| 114 | + VerifyEndpoint --> SiteAuthService |
| 115 | + ChallengeEndpoint --> SourceAddressService |
89 | 116 |
|
90 | 117 | %% Service Interactions
|
91 |
| - CaptchaService --> DifficultyService |
92 |
| - CaptchaService --> CaptchaRequestRepo |
93 |
| - CaptchaService --> InvalidatedPayloadRepo |
94 |
| - CaptchaService --> AltchaLib |
| 118 | + CaptchaService --> DifficultyService |
| 119 | + CaptchaService --> CaptchaRequestRepo |
| 120 | + CaptchaService --> InvalidatedPayloadRepo |
| 121 | + CaptchaService --> AltchaLib |
95 | 122 |
|
96 |
| - DifficultyService --> CaptchaRequestRepo |
97 |
| - ExpiredDataService -->|Scheduled Cleanup| CaptchaRequestRepo |
98 |
| - ExpiredDataService -->|Scheduled Cleanup| InvalidatedPayloadRepo |
| 123 | + DifficultyService --> CaptchaRequestRepo |
| 124 | + ExpiredDataService -->|Scheduled Cleanup| CaptchaRequestRepo |
| 125 | + ExpiredDataService -->|Scheduled Cleanup| InvalidatedPayloadRepo |
99 | 126 |
|
100 | 127 | %% Data Layer
|
101 |
| - CaptchaRequestRepo --> CaptchaRequestEntity |
102 |
| - InvalidatedPayloadRepo --> InvalidatedPayloadEntity |
| 128 | + CaptchaRequestRepo --> CaptchaRequestEntity |
| 129 | + InvalidatedPayloadRepo --> InvalidatedPayloadEntity |
103 | 130 | CaptchaRequestEntity -.->|JPA/Hibernate| PostgreSQL
|
104 | 131 | InvalidatedPayloadEntity -.->|JPA/Hibernate| PostgreSQL
|
105 | 132 |
|
|
0 commit comments