mirror of
https://github.com/we-promise/sure.git
synced 2026-04-12 08:37:22 +00:00
* Add Indexa Capital provider scaffold
Generate Indexa Capital provider scaffolding and align credential fields with the API authentication requirements.
* Fix PR 926 lint and schema CI failures
* Implement Indexa Capital provider with real API integration
- Rewrite all broken view templates (were meta-ERB from code generator)
- Create missing select_accounts.html.erb template
- Implement real API calls: list_accounts via /users/me, get_holdings
via /accounts/{number}/fiscal-results, get_account_balance via
/accounts/{number}/performance
- Add API token auth support (stored token > env token > credentials)
- Add api_token column with encryption support
- Redesign settings panel: API token prominent, credentials collapsible
- Fix account balances display using performance endpoint portfolios
- Fix accounts index empty-state guard missing indexa_capital_items
- Simplify activities fetch job (no activities API endpoint exists)
- Fix i18n interpolation (%%{ -> %{) throughout locale file
* Add tests for Indexa Capital provider integration
- IndexaCapitalItemTest: validations, credentials, scopes, sync status
- IndexaCapitalAccountTest: upsert, holdings, account provider linking
- Provider::IndexaCapitalTest: auth modes, API stubs, error handling
- IndexaCapitalItemsControllerTest: CRUD, setup, linking, authorization
- Fixtures for items (token + credentials) and accounts (mutual + pension)
52 tests, 98 assertions, 0 failures
* Address code review feedback from PR #933
- Fix zero balance bug: use `nil?` instead of `present?` so 0 is stored
- Fix has_indexa_capital_credentials? to check api_token (was ignored)
- Fix build_provider to delegate to Provided concern (was ignoring token)
- Fix IndexaCapital section outside encryption_error guard in settings
- Add account_number sanitization to prevent path traversal in API URLs
- Replace all skipped processor tests with real working tests
- Add zero-balance and path-traversal test coverage
61 tests, 107 assertions, 0 failures
* Address code review round 2: credentials validation, RuboCop, test quality
- Fix RuboCop SpaceInsideArrayLiteralBrackets in credentials check
- Chain where.not calls so all three username/document/password must be present
- Require all three credentials (||) instead of any one (&&) in validate_configuration!
- Move attr_reader to private to avoid exposing credentials publicly
- Parse dates with Date.parse in extract_balance for robustness
- Remove stale TODO and Crypto from supported_account_types
- Order build_provider query deterministically by created_at
- Replace no-op holdings assertion with meaningful assert_difference
* Address code review round 3: JSON parse safety and test precision
- Rescue JSON::ParserError on 2xx responses for clearer error messages
- Fix weak balance assertion: set balance to 0 before processing, assert
expected value (27093.01 = sum of holdings amounts)
* Include Indexa Capital in automatic family sync
Add indexa_capital_items to Family::Syncer#child_syncables so balances
and holdings refresh on daily auto-sync and login sync, not only on
manual sync button clicks.
---------
Signed-off-by: Juan José Mata <juanjo.mata@gmail.com>
Co-authored-by: Juan José Mata <jjmata@jjmata.com>
Co-authored-by: Juan José Mata <juanjo.mata@gmail.com>
119 lines
5.5 KiB
Plaintext
119 lines
5.5 KiB
Plaintext
<% content_for :title, t("indexa_capital_items.setup_accounts.title") %>
|
|
|
|
<%= render DS::Dialog.new(disable_click_outside: true) do |dialog| %>
|
|
<% dialog.with_header(title: t("indexa_capital_items.setup_accounts.title")) do %>
|
|
<div class="flex items-center gap-2">
|
|
<%= icon "trending-up", class: "text-primary" %>
|
|
<span class="text-primary"><%= t("indexa_capital_items.setup_accounts.subtitle") %></span>
|
|
</div>
|
|
<% end %>
|
|
|
|
<% dialog.with_body do %>
|
|
<div class="space-y-6">
|
|
<div class="bg-surface border border-primary p-4 rounded-lg">
|
|
<div class="flex items-start gap-3">
|
|
<%= icon "info", size: "sm", class: "text-primary mt-0.5 flex-shrink-0" %>
|
|
<div>
|
|
<p class="text-sm text-primary">
|
|
<%= t("indexa_capital_items.setup_accounts.instructions") %>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<%= form_with url: complete_account_setup_indexa_capital_item_path(@indexa_capital_item),
|
|
method: :post,
|
|
data: {
|
|
controller: "loading-button",
|
|
action: "submit->loading-button#showLoading",
|
|
loading_button_loading_text_value: t("indexa_capital_items.setup_accounts.creating"),
|
|
turbo_frame: "_top"
|
|
} do |form| %>
|
|
|
|
<% if @unlinked_accounts.any? %>
|
|
<div class="space-y-4">
|
|
<h3 class="font-medium text-primary"><%= t("indexa_capital_items.setup_accounts.accounts_count", count: @unlinked_accounts.count) %></h3>
|
|
|
|
<% @unlinked_accounts.each do |indexa_capital_account| %>
|
|
<div class="border border-primary rounded-lg p-4 hover:bg-surface transition-colors">
|
|
<div class="flex items-center gap-3">
|
|
<input type="checkbox"
|
|
id="account_<%= indexa_capital_account.id %>"
|
|
name="account_ids[]"
|
|
value="<%= indexa_capital_account.id %>"
|
|
checked
|
|
class="cursor-pointer">
|
|
<label for="account_<%= indexa_capital_account.id %>" class="flex-1 cursor-pointer">
|
|
<h4 class="font-medium text-primary"><%= indexa_capital_account.name %></h4>
|
|
<p class="text-sm text-secondary">
|
|
<% if indexa_capital_account.account_type.present? %>
|
|
<%= indexa_capital_account.account_type.titleize %> ·
|
|
<% end %>
|
|
<%= t("indexa_capital_items.setup_accounts.balance") %>:
|
|
<%= number_to_currency(indexa_capital_account.current_balance || 0, unit: Money::Currency.new(indexa_capital_account.currency || "EUR").symbol) %>
|
|
</p>
|
|
<% if indexa_capital_account.account_number.present? %>
|
|
<p class="text-xs text-secondary"><%= indexa_capital_account.account_number %></p>
|
|
<% end %>
|
|
</label>
|
|
</div>
|
|
<div class="mt-3 pl-7" onclick="event.stopPropagation();">
|
|
<label for="sync_start_<%= indexa_capital_account.id %>" class="block text-xs text-secondary mb-1">
|
|
<%= t("indexa_capital_items.setup_accounts.sync_start_date_label") %>
|
|
</label>
|
|
<input type="date"
|
|
id="sync_start_<%= indexa_capital_account.id %>"
|
|
name="sync_start_dates[<%= indexa_capital_account.id %>]"
|
|
value="<%= indexa_capital_account.sync_start_date %>"
|
|
onclick="event.stopPropagation();"
|
|
autocomplete="off"
|
|
class="bg-container border border-primary rounded px-2 py-1 text-sm text-primary">
|
|
<p class="text-xs text-secondary mt-1">
|
|
<%= t("indexa_capital_items.setup_accounts.sync_start_date_help") %>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="flex gap-3 mt-6">
|
|
<%= render DS::Button.new(
|
|
text: t("indexa_capital_items.setup_accounts.import_selected"),
|
|
variant: "primary",
|
|
icon: "plus",
|
|
type: "submit",
|
|
class: "flex-1",
|
|
data: { loading_button_target: "button" }
|
|
) %>
|
|
<%= render DS::Link.new(
|
|
text: t("indexa_capital_items.setup_accounts.cancel"),
|
|
variant: "secondary",
|
|
href: accounts_path,
|
|
frame: "_top"
|
|
) %>
|
|
</div>
|
|
<% else %>
|
|
<div class="flex flex-col items-center justify-center py-6 space-y-3">
|
|
<%= icon "alert-circle", size: "lg", class: "text-warning" %>
|
|
<p class="text-primary text-center font-medium">
|
|
<%= t("indexa_capital_items.setup_accounts.no_accounts_to_setup") %>
|
|
</p>
|
|
<p class="text-secondary text-center text-sm">
|
|
<%= t("indexa_capital_items.setup_accounts.no_accounts") %>
|
|
</p>
|
|
</div>
|
|
<div class="flex gap-3 justify-center">
|
|
<%= render DS::Link.new(
|
|
text: t("indexa_capital_items.setup_accounts.cancel"),
|
|
variant: "secondary",
|
|
href: accounts_path,
|
|
frame: "_top"
|
|
) %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|