Updating sign-in-with-esignet, removing optional parameter from config - #590
Conversation
Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com>
Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com>
WalkthroughThe PR centralizes OIDC configuration in getOidcConfig, adds the ChangesOIDC Configuration Centralization and Sign-in Integration Refactor
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~25 minutes Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 7
🧹 Nitpick comments (1)
mock-relying-party-ui/src/components/Sidenav.js (1)
696-699: ⚡ Quick winInconsistent pattern with desktop implementation.
The mobile header uses a ternary expression for the profile picture fallback, while the desktop header at line 787 uses the cleaner nullish coalescing operator (
??). Both should use the same pattern for consistency and maintainability.♻️ Proposed refactor
src={ - userInfo?.picture?.value - ? userInfo.picture?.value - : "User-Profile-Icon.png" + userInfo?.picture?.value ?? "User-Profile-Icon.png" }🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@mock-relying-party-ui/src/components/Sidenav.js` around lines 696 - 699, The mobile header uses a ternary to choose the profile image while the desktop header uses the nullish coalescing operator; update the mobile usage to match by replacing the ternary expression that references userInfo?.picture?.value (in Sidenav.js mobile header/render code) with the nullish coalescing pattern (userInfo?.picture?.value ?? "User-Profile-Icon.png") so both header implementations use the same consistent fallback approach.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@mock-relying-party-ui/Dockerfile`:
- Line 6: ARG authorize_endpoint and ENV AUTHORIZE_ENDPOINT are only declared in
the build stage, so the nginx stage (the second FROM nginx stage) never receives
AUTHORIZE_ENDPOINT and $AUTHORIZE_ENDPOINT expands empty when writing
${work_dir}/env.env; fix by redeclaring ARG authorize_endpoint and ENV
AUTHORIZE_ENDPOINT in the nginx stage (add "ARG authorize_endpoint" and "ENV
AUTHORIZE_ENDPOINT=${authorize_endpoint}" immediately after the "FROM nginx"
line) so the variable is available when the nginx stage uses $AUTHORIZE_ENDPOINT
to populate work_dir/env.env.
In `@mock-relying-party-ui/src/components/Login.js`:
- Around line 34-37: The useEffect in Login.js registers
i18n.on("languageChanged", ...) but never removes the listener, causing memory
leaks; refactor the effect to create a named/stable handler (e.g. const
handleLanguageChange = (lng) => renderSignInButton()) then call
i18n.on("languageChanged", handleLanguageChange) and return a cleanup function
that calls i18n.off("languageChanged", handleLanguageChange); apply the same
pattern to Registration.js and SignUp.js so each effect registers a named
handler and returns i18n.off in the cleanup.
In `@mock-relying-party-ui/src/components/Registration.js`:
- Around line 73-81: Registration.js still calls the global
window.SignInWithEsignetButton?.init instead of using the imported init used by
Login.js/SignUp.js; import the named init from '`@mosip/sign-in-with-esignet`' at
the top of the file and replace the window.SignInWithEsignetButton?.init({...})
call with init({ oidcConfig, buttonConfig: { shape: "soft_edges", labelText:
t("fetch_details"), width: "100%" }, signInElement:
document.getElementById("sign-in-with-esignet") }); ensure the init symbol is
used consistently and remove reliance on the window global.
In `@mock-relying-party-ui/src/components/Sidenav.js`:
- Line 76: The languageChanged handler uses langOptions.find(...) without
guarding against langOptions being undefined, risking a runtime error; change
the lookup in the languageChanged function to use optional chaining or a null
guard (e.g., langOptions?.find(...) or if (!langOptions) return) so it mirrors
the safe access used in the useEffect and avoid calling .find on undefined.
In `@mock-relying-party-ui/src/constants/clientDetails.js`:
- Around line 154-165: Update the callback spreads to guard against a missing
relyingPartyService object and missing methods: change the par_callback,
dpop_callback and code_challenge spreads to check relyingPartyService &&
relyingPartyService[par_callback_name], relyingPartyService &&
relyingPartyService[dpop_callback_name], and relyingPartyService &&
relyingPartyService[code_challenge] respectively (so use relyingPartyService &&
relyingPartyService[...] in each conditional) and only then assign par_callback,
par_callback_timeout, dpop_callback or code_challenge; reference the existing
symbols par_callback_name, dpop_callback_name, code_challenge and
relyingPartyService in clientDetails.js when making the change.
- Around line 136-137: The code currently reuses module-level variables state
and nonce across all auth button inits; update getOidcConfig (or whatever
function returns the OIDC payload) to generate new random values for state and
nonce on every call instead of referencing the shared nonce/state variables —
replace usage of the shared symbols (state, nonce) with freshly generated values
inside getOidcConfig (and remove or stop using any module-level state/nonce) so
each authentication request has its own unique state and nonce.
- Around line 146-152: Wrap the decode/parse steps for userProfileClaims and
registrationClaims in a safe-parse guard to avoid throwing (e.g., implement a
helper like safeParseClaim that returns undefined or {} on failure), then
replace the inline JSON.parse(decodeURIComponent(...)) usages in the
userProfileClaims and registrationClaims spread blocks with calls to that helper
and only spread when the helper returns a valid object; ensure both occurrences
(the userProfileClaims claims block and the registrationClaims claims block) use
the same safe parsing and fallback behavior.
---
Nitpick comments:
In `@mock-relying-party-ui/src/components/Sidenav.js`:
- Around line 696-699: The mobile header uses a ternary to choose the profile
image while the desktop header uses the nullish coalescing operator; update the
mobile usage to match by replacing the ternary expression that references
userInfo?.picture?.value (in Sidenav.js mobile header/render code) with the
nullish coalescing pattern (userInfo?.picture?.value ?? "User-Profile-Icon.png")
so both header implementations use the same consistent fallback approach.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Repository UI
Review profile: CHILL
Plan: Pro
Run ID: 1d3e1195-4676-489b-87e3-ab697215f68c
⛔ Files ignored due to path filters (1)
mock-relying-party-ui/package-lock.jsonis excluded by!**/package-lock.json
📒 Files selected for processing (10)
mock-relying-party-ui/Dockerfilemock-relying-party-ui/package.jsonmock-relying-party-ui/src/components/Login.jsmock-relying-party-ui/src/components/Registration.jsmock-relying-party-ui/src/components/Sidenav.jsmock-relying-party-ui/src/components/SignUp.jsmock-relying-party-ui/src/components/UserProfile.jsmock-relying-party-ui/src/constants/clientDetails.jsmock-relying-party-ui/src/index.jsmock-relying-party-ui/src/services/clientService.js
💤 Files with no reviewable changes (1)
- mock-relying-party-ui/src/services/clientService.js
Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com>
Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com>
Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com>
There was a problem hiding this comment.
Actionable comments posted: 1
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (2)
mock-relying-party-ui/src/components/Registration.js (2)
41-53:⚠️ Potential issue | 🟠 Major | ⚡ Quick winRestore the callback
statewhen exchanging the auth code.
post_fetchUserInfoexpects(code, state, client_id, redirect_uri, grant_type), but this call now passes only four arguments. That shifts every field left, sends the wrong payload to/fetchUserInfo, and prevents PKCE cleanup from findingpkce_${client_id}_${state}. Parsestatefrom the query string and thread it intogetUserDetails.Suggested fix
- let authCode = searchParams.get("code"); + let authCode = searchParams.get("code"); + let authState = searchParams.get("state"); let errorCode = searchParams.get("error"); let error_desc = searchParams.get("error_description"); @@ - if (authCode) { - getUserDetails(authCode); + if (authCode) { + getUserDetails(authCode, authState); } else { setStatus(states.LOADED); } @@ - const getUserDetails = async (authCode) => { + const getUserDetails = async (authCode, authState) => { setError(null); setUserInfo(null); @@ - var userInfo = await post_fetchUserInfo( + const userInfo = await post_fetchUserInfo( authCode, + authState, client_id, redirect_uri, - grant_type, + grant_type );Also applies to: 86-100
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@mock-relying-party-ui/src/components/Registration.js` around lines 41 - 53, The call chain is dropping the OAuth callback state: parse the "state" query param in getSearchParams and thread it into getUserDetails so that post_fetchUserInfo receives (code, state, client_id, redirect_uri, grant_type) as expected; update getSearchParams to call getUserDetails(authCode, state) and update the other occurrence (around the 86-100 block) likewise, ensuring the state is passed through to post_fetchUserInfo so the payload fields align and the pkce_${client_id}_${state} cleanup key is correct.
37-65:⚠️ Potential issue | 🟡 MinorUnregister the
languageChangedhandler in the effect cleanup.
mock-relying-party-ui/src/components/Registration.jsregistersi18n.on("languageChanged", ...)inside auseEffectwith an empty dependency array, but the effect never returns a cleanup function—so remounts can accumulate handlers and callrenderSignInButton()multiple times per locale change.Suggested fix
useEffect(() => { setError(null); setStatus(states.LOADING); @@ - i18n.on("languageChanged", function (lng) { + const handleLanguageChanged = () => { renderSignInButton(); - }); + }; + + i18n.on("languageChanged", handleLanguageChanged); + + return () => { + i18n.off("languageChanged", handleLanguageChanged); + }; }, []);🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@mock-relying-party-ui/src/components/Registration.js` around lines 37 - 65, The effect registers a languageChanged listener via i18n.on("languageChanged", ...) but never removes it, causing handler accumulation; modify the useEffect to store the handler function (the callback that calls renderSignInButton) in a variable and return a cleanup function that unregisters it using i18n.off("languageChanged", handler) (or i18n.removeListener if your i18n implementation uses that) so renderSignInButton isn't called multiple times on locale changes; keep the existing getSearchParams and renderSignInButton calls but ensure the same handler reference is passed to both on and off.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@mock-relying-party-ui/README.md`:
- Around line 26-27: Update the README so the environment variable names and
example values are consistent: replace or unify MOCK_RELYING_PARTY_BASE_URL with
MOCK_RELYING_PARTY_SERVER_URL in the runnable Docker/export examples and ensure
the table documents the same variable name; correct the AUTHORIZE_ENDPOINT value
from the misspelled "/authroize" to "/authorize" so generated authorize URLs are
valid; apply the same fixes to the other occurrence noted (line ~45) so all
examples match.
---
Outside diff comments:
In `@mock-relying-party-ui/src/components/Registration.js`:
- Around line 41-53: The call chain is dropping the OAuth callback state: parse
the "state" query param in getSearchParams and thread it into getUserDetails so
that post_fetchUserInfo receives (code, state, client_id, redirect_uri,
grant_type) as expected; update getSearchParams to call getUserDetails(authCode,
state) and update the other occurrence (around the 86-100 block) likewise,
ensuring the state is passed through to post_fetchUserInfo so the payload fields
align and the pkce_${client_id}_${state} cleanup key is correct.
- Around line 37-65: The effect registers a languageChanged listener via
i18n.on("languageChanged", ...) but never removes it, causing handler
accumulation; modify the useEffect to store the handler function (the callback
that calls renderSignInButton) in a variable and return a cleanup function that
unregisters it using i18n.off("languageChanged", handler) (or
i18n.removeListener if your i18n implementation uses that) so renderSignInButton
isn't called multiple times on locale changes; keep the existing getSearchParams
and renderSignInButton calls but ensure the same handler reference is passed to
both on and off.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Repository UI
Review profile: CHILL
Plan: Pro
Run ID: 5ed2d991-0ce1-4692-b6cc-7cd538374f6a
📒 Files selected for processing (3)
mock-relying-party-ui/README.mdmock-relying-party-ui/src/components/Registration.jsmock-relying-party-ui/src/constants/clientDetails.js
🚧 Files skipped from review as they are similar to previous changes (1)
- mock-relying-party-ui/src/constants/clientDetails.js
Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com>
There was a problem hiding this comment.
Actionable comments posted: 1
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
mock-relying-party-ui/README.md (1)
23-39:⚠️ Potential issue | 🟡 Minor | ⚡ Quick winAdd
MOCK_RP_UI_PUBLIC_URLback to the config table.The README still tells users to set
MOCK_RP_UI_PUBLIC_URLfor context-path deployments, but the new “Configuration Environment Variables” table no longer documents it. That leaves one supported runtime knob undocumented and makes the table incomplete.Suggested fix
| **CODE_CHALLENGE** | **Feature flag** to enable PKCE (Proof Key for Code Exchange) flow | `get_code_challenge` | Hardcoded function name - not configurable.<br><br>When enabled, the PKCE method is automatically fetched from the server's `.well-known/openid-configuration` endpoint. | +| **MOCK_RP_UI_PUBLIC_URL** | Context path used when serving the UI from a sub-path | `healthservices` | Optional |🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@mock-relying-party-ui/README.md` around lines 23 - 39, Add a row for MOCK_RP_UI_PUBLIC_URL to the "Configuration Environment Variables" table in README.md documenting that it sets the public base URL used for context-path deployments (e.g., `https://example.com/mock-relying-party-ui`), mark whether it is Required/Optional (align with existing behavior), and include a short note that it overrides internal resolution for deployments behind a context path; update the table entry near other URL vars (ESIGNET_UI_BASE_URL, MOCK_RELYING_PARTY_SERVER_URL) so readers can find it easily.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@mock-relying-party-ui/README.md`:
- Around line 43-46: Remove the leading shell prompt marker ($) from the fenced
code block that shows the docker build/run commands so the snippet is pure
commands (no prompt) and satisfies markdownlint MD014; update the block that
contains the docker build -t <dockerImageName>:<tag> . and docker run -it ... -e
ESIGNET_UI_BASE_URL=... -e MOCK_RELYING_PARTY_SERVER_URL=... entries to drop the
"$ " prefix from each line within the triple-backtick block so linting no longer
flags the snippet.
---
Outside diff comments:
In `@mock-relying-party-ui/README.md`:
- Around line 23-39: Add a row for MOCK_RP_UI_PUBLIC_URL to the "Configuration
Environment Variables" table in README.md documenting that it sets the public
base URL used for context-path deployments (e.g.,
`https://example.com/mock-relying-party-ui`), mark whether it is
Required/Optional (align with existing behavior), and include a short note that
it overrides internal resolution for deployments behind a context path; update
the table entry near other URL vars (ESIGNET_UI_BASE_URL,
MOCK_RELYING_PARTY_SERVER_URL) so readers can find it easily.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Repository UI
Review profile: CHILL
Plan: Pro
Run ID: 404e9de6-f097-4370-ac07-5f8acc690161
📒 Files selected for processing (1)
mock-relying-party-ui/README.md
* Added PKCE implementation Signed-off-by: Sajid Mannikeri <sajid.mannikeri@ad.infosys.com> * fixed coderabbit comment Signed-off-by: Sajid Mannikeri <sajid.mannikeri@ad.infosys.com> * Corrected the logic to full dynamic identity schema Signed-off-by: ase-101 <sunkadaeanusha@gmail.com> * Fixed review comments Signed-off-by: ase-101 <sunkadaeanusha@gmail.com> * added proxy pass for par and dpop (#554) Signed-off-by: Harsh Kashiwal <harsh.kashiwal@infosys.com> * resolved comments Signed-off-by: Sajid Mannikeri <sajid.mannikeri@ad.infosys.com> * resolved review comment Signed-off-by: Sajid Mannikeri <sajid.mannikeri@ad.infosys.com> * resolve review comments Signed-off-by: Sajid Mannikeri <sajid.mannikeri@ad.infosys.com> * set active_profile_env to "default" in deployment (#558) (#560) Signed-off-by: Sachin Rana <sacrana324@gmail.com> * docs: fix typos, remove duplicate overview, and improve README formatting (#561) (#563) Signed-off-by: Nandhukumar <nandhukumare@gmail.com> * Added endpoint to fetch identity schema (#564) * Added endpoint to fetch identity schema Signed-off-by: ase-101 <sunkadaeanusha@gmail.com> * Added endpoint to fetch identity schema Signed-off-by: ase-101 <sunkadaeanusha@gmail.com> * Fixed testcase Signed-off-by: ase-101 <sunkadaeanusha@gmail.com> --------- Signed-off-by: ase-101 <sunkadaeanusha@gmail.com> * Fixed the required field validation error (#565) * Added endpoint to fetch identity schema Signed-off-by: ase-101 <sunkadaeanusha@gmail.com> * Added endpoint to fetch identity schema Signed-off-by: ase-101 <sunkadaeanusha@gmail.com> * Fixed required fields validation error Signed-off-by: ase-101 <sunkadaeanusha@gmail.com> --------- Signed-off-by: ase-101 <sunkadaeanusha@gmail.com> * Snapshot updates 0.13.0 -> 0.13.1 Signed-off-by: Harsh Kashiwal <kashiwalharsh1234@gmail.com> * [ES-2962] Added error messages for login_required and request_not_supported error. Signed-off-by: GurukiranP <talk2gurukiran@gmail.com> * [ES-1616] Added new error message. Signed-off-by: GurukiranP <talk2gurukiran@gmail.com> * [MOSIP-37808] Updated DB attributes of MOSIP esignet-mock Signed-off-by: Abhi <abhishek.shankarcs@gmail.com> * [MOSIP-37808] Updated DB attributes of MOSIP esignet-mock (#579) Signed-off-by: Abhishek S <127825992+abhishek8shankar@users.noreply.github.com> * Updating sign-in-with-esignet, removing optional parameter from config (#590) * [MODIFIED] used npm library for sign-in-with-esignet Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com> * [MODIFIED] ignore optional parameter in sign-in-with-esignet Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com> * [MODIFIED] readme file Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com> * [MODIFIED] coderabbit comment resolved Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com> * [MODIFIED] review comment addressed Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com> * [MODIFIED] readme updated Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com> --------- Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com> * [1996] added configurable token and userinfo endpoint (#591) * [1996] added configurable token and userinfo endpoint Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com> * [1996] add kid only, if private key has it Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com> * [1996] default value of token & userinfo endpoint Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com> --------- Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com> * [1966] bypass for json userInfoResponse (#592) * [1966] bypass for json userInfoResponse Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com> * [1966] bypass for json userInfoResponse Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com> --------- Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com> * [mosip/mosip-infra#1890] Added domainConfig support in helm charts (#589) * [mosip/mosip-infra#1890] Removed esignet-global, added domainConfig support in helm charts Signed-off-by: bhumi46 <thisisbn46@gmail.com> * [mosip/mosip-infra#1890] Set chart versions to 0.0.1-develop Signed-off-by: bhumi46 <thisisbn46@gmail.com> * migrate to domainConfig helm values #1890 Signed-off-by: bhumi46 <thisisbn46@gmail.com> --------- Signed-off-by: bhumi46 <thisisbn46@gmail.com> Co-authored-by: bhumi46 <bhumi11111a@gmail.com> * Gpg update Test (#596) * ci: point kattu maven workflows at @develop to test kattu#353 Repoints maven-build / maven-publish-to-nexus / maven-sonar-analysis(-new) reusable-workflow references to mosip/kattu@develop so the GPG-key-import migration (mosip/kattu#353) is exercised by this repo's CI once it merges. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Signed-off-by: Mahesh.Binayak <mahesh.binayak@technoforte.co.in> * ci: pass GPG_PRIVATE_KEY secret from caller workflows (kattu#353) kattu#353 imports the signing key from the GPG_PRIVATE_KEY secret (now required: true in maven-build / maven-publish-to-nexus workflow_call), so the caller must forward it. Added GPG_PRIVATE_KEY to the maven-build and maven-publish-to-nexus caller jobs only (sonar workflows don't declare it). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Signed-off-by: Mahesh.Binayak <mahesh.binayak@technoforte.co.in> * ci: point maven workflows at Mahesh-Binayak/kattu@gpgupdate-masterj21 gpgupdate-masterj21 = master-java21 + the GPG-secret-import / key-age / simplify4u-pgpverify changes, keeping master-java21's interface intact. Repoints maven-build / maven-publish-to-nexus / maven-sonar-analysis to it, restores MAVEN_NON_EXEC_ARTIFACTS, and forwards GPG_PRIVATE_KEY to the build/publish jobs. Other workflows (docker-build, npm-*, sonar-new@develop) and commented refs are left unchanged. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Signed-off-by: Mahesh.Binayak <mahesh.binayak@technoforte.co.in> * ci: point maven workflows at mosip/kattu@gpgupdate-masterj21 The gpgupdate-masterj21 branch now lives on mosip/kattu; reference it there instead of the fork. Interface unchanged; GPG_PRIVATE_KEY forwarded. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Signed-off-by: Mahesh.Binayak <mahesh.binayak@technoforte.co.in> --------- Signed-off-by: Mahesh.Binayak <mahesh.binayak@technoforte.co.in> Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com> * [issue:1963] Updated helm for thunder deployment (#593) Signed-off-by: Prafulrakhade <prafulrakhade02@gmail.com> * [issue:597] Add PKCS12 keystore support to mock-identity-system as an alternative to SoftHSM (#599) install.sh now prompts to opt into a PKCS12 mounted-volume keystore instead of SoftHSM; SoftHSM provisioning only runs when PKCS12 isn't selected. The chart gained a PersistentVolumeClaim template, a fixed volume-permissions init container (was a literal unfilled placeholder), persistence volume wiring in the deployment, and additive extraEnvVarsAdditional support. Signed-off-by: Swapnil <swapnil.mohanty@technoforte.co.in> * Fix default prompt value (#600) Signed-off-by: Sajid Mannikeri <sajid.mannikeri@ad.infosys.com> Co-authored-by: Sajid Mannikeri <sajid.mannikeri@ad.infosys.com> * #10670: Add AGENTS.md tree for AI coding assistant guidance Adds a root AGENTS.md hub covering the repository as a whole, plus per-module AGENTS.md guides for mock-identity-system, mock-relying-party-service, mock-relying-party-ui, mock-relying-party-ui-esim, and partner-onboarder — the independently buildable modules in this repo. Each guide documents purpose, layout, how to run/build/test, configuration, and explicit agent do/do-not rules, verified against the actual READMEs, pom.xml/package.json files, and GitHub Actions workflows in this repo. Addresses mosip/mosip-config#10670 Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com> * #10670: Address CodeRabbit review feedback on AGENTS.md - Stop prescribing npm test for every Node/React module; point to each module's own AGENTS.md/README.md since scripts differ (mock-relying-party-service has no test script at all). - Fix docker-compose path in mock-identity-system/AGENTS.md: from the repo root it's docker-compose/, not ../docker-compose/. - Use MOCK_RELYING_PARTY_SERVER_URL in the mock-relying-party-ui-esim Docker example, matching the variable the Dockerfile/UI actually read (MOCK_RELYING_PARTY_BASE_URL has no effect). - Note that partner-onboarder targets a non-production eSignet deployment only, per the root README's repo-wide scope. Addresses review comments on #601 Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com> * fix: 602 convert extraEnvVars/extraEnvVarsAdditional to maps (#603) * fix: 602 convert extraEnvVars/extraEnvVarsAdditional to maps Helm merges map keys across values layers but replaces lists wholesale, so any downstream override of extraEnvVars/extraEnvVarsAdditional had to re-declare the whole list just to change one entry. Convert both to maps keyed by env var name in mock-identity-system, mock-relying-party-service, and mock-relying-party-ui, and render them with a range loop that auto-detects plain scalars vs. valueFrom, matching the existing domainConfig pattern already used in these charts. Same fix already applied to mosip/esignet (issue #2380). Signed-off-by: bhumi46 <thisisbn46@gmail.com> * fix: 602 update mock-identity-system installer for extraEnvVarsAdditional map contract deploy/mock-identity-system/install.sh generated extraEnvVarsAdditional as a list in two places (PKCS12 and softhsm branches), which produced broken index-keyed env entries against the chart's map-shaped default introduced in this PR. Convert both to the map contract (KEY: value / KEY: {valueFrom: ...}), matching the fix already applied to esignet's legacy installer scripts. Signed-off-by: bhumi46 <thisisbn46@gmail.com> --------- Signed-off-by: bhumi46 <thisisbn46@gmail.com> * Change image tag from release-0.10.x to develop Signed-off-by: Praful Rakhade <prafulrakhade02@gmail.com> * Change image tag from release-0.10.x to develop Signed-off-by: Praful Rakhade <prafulrakhade02@gmail.com> * Change image tag from release-0.10.x to develop Signed-off-by: Praful Rakhade <prafulrakhade02@gmail.com> * #2347 Update database host and clean up configuration (#610) Updated the host to include the namespace and removed unused service configurations. Signed-off-by: Abhishek S <127825992+abhishek8shankar@users.noreply.github.com> * #2347 Update database username in postgres config (#611) * #2347 Update database username in postgres config Signed-off-by: Abhishek S <127825992+abhishek8shankar@users.noreply.github.com> * #2347 Update database username in deploy.properties Signed-off-by: Abhishek S <127825992+abhishek8shankar@users.noreply.github.com> --------- Signed-off-by: Abhishek S <127825992+abhishek8shankar@users.noreply.github.com> * updated version 0.13.0 to 0.14.0 Signed-off-by: Sachin Rana <sacrana324@gmail.com> * updated helm chart version Signed-off-by: Sachin Rana <sacrana324@gmail.com> --------- Signed-off-by: Sajid Mannikeri <sajid.mannikeri@ad.infosys.com> Signed-off-by: ase-101 <sunkadaeanusha@gmail.com> Signed-off-by: Harsh Kashiwal <harsh.kashiwal@infosys.com> Signed-off-by: Sachin Rana <sacrana324@gmail.com> Signed-off-by: Nandhukumar <nandhukumare@gmail.com> Signed-off-by: Harsh Kashiwal <kashiwalharsh1234@gmail.com> Signed-off-by: GurukiranP <talk2gurukiran@gmail.com> Signed-off-by: Abhi <abhishek.shankarcs@gmail.com> Signed-off-by: Abhishek S <127825992+abhishek8shankar@users.noreply.github.com> Signed-off-by: Zeeshan Mehboob <zeeshan.mehboob@infosys.com> Signed-off-by: bhumi46 <thisisbn46@gmail.com> Signed-off-by: Mahesh.Binayak <mahesh.binayak@technoforte.co.in> Signed-off-by: Prafulrakhade <prafulrakhade02@gmail.com> Signed-off-by: Swapnil <swapnil.mohanty@technoforte.co.in> Signed-off-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com> Signed-off-by: Praful Rakhade <prafulrakhade02@gmail.com> Co-authored-by: Sajid Mannikeri <sajid.mannikeri@ad.infosys.com> Co-authored-by: ase-101 <sunkadaeanusha@gmail.com> Co-authored-by: Zeeshan Mehboob <82993262+zesu22@users.noreply.github.com> Co-authored-by: Harsh Kashiwal <77677724+KashiwalHarsh@users.noreply.github.com> Co-authored-by: Nandhukumar <nandhukumare@gmail.com> Co-authored-by: Harsh Kashiwal <kashiwalharsh1234@gmail.com> Co-authored-by: GurukiranP <talk2gurukiran@gmail.com> Co-authored-by: Abhi <abhishek.shankarcs@gmail.com> Co-authored-by: Chandra Keshav Mishra <chandrakeshavmishra@gmail.com> Co-authored-by: Abhishek S <127825992+abhishek8shankar@users.noreply.github.com> Co-authored-by: bhumi46 <111699703+bhumi46@users.noreply.github.com> Co-authored-by: bhumi46 <bhumi11111a@gmail.com> Co-authored-by: Mahesh-Binayak <76687012+Mahesh-Binayak@users.noreply.github.com> Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com> Co-authored-by: Praful Rakhade <prafulrakhade02@gmail.com> Co-authored-by: Swapnil <swapnil.mohanty@technoforte.co.in> Co-authored-by: Sajid Mannikeri <sajid.mannikeri@infosys.com> Co-authored-by: Chetan Kumar Hirematha <chetankumar.h.239@gmail.com>
sign-in-with-esignetnpm library, removing the dependency on the esignet service plugin URL.oidcConfigPropfor sign-in-with-esignet library.AUTHORIZE_ENDPOINTparameter, allowing relying parties to customize the authorization endpoint URL.Summary by CodeRabbit
Refactor
Chores
Documentation