mirror of
https://github.com/we-promise/sure.git
synced 2026-08-05 08:32:15 +00:00
* feat(sync): family-facing cancellation for syncs, imports, and exports Users had no way to stop or recover any background operation: a mistaken "Sync all" runs to completion, and an import or export whose job died (hard worker kills lose in-flight Sidekiq jobs) wedges with a spinner forever. Sync cancellation (cooperative — nothing is ever killed): - New syncs.cancel_requested_at column. Only the cancelled sync carries the flag: pending descendants are marked stale immediately (their queued jobs no-op via the existing may_start? guard), while descendants whose jobs are already executing finish their work honestly. - Family::Syncer stops fanning out child syncs once the flag is set (fresh read per iteration — the flag comes from the web process). - Finalization resolves a cancel-requested sync to stale instead of completed, which also skips post-sync (transfer matching, rules, broadcasts) via the existing stale gate. - The `visible` scope excludes cancel-requested syncs, so spinners clear immediately and — fixing a latent bug this feature would have amplified — sync_later no longer piggybacks a new sync request onto a dying sync it would silently swallow. - Cancel button appears next to "Sync all" on the accounts page while a family sync is visible. SyncsController#cancel scopes through Sync.for_family with resource_owner, so cross-family ids 404 and account-level syncs respect per-user account access. Stuck import/export self-service: - Import#force_fail! / FamilyExport#force_fail!: allowed only once the record has been idle past PRESUMED_LOST_AFTER (1 hour — dwarfs any legitimate run), and applied inside with_lock with a status re-check, so a job finishing between page render and button click wins. Imports fail into the existing retry path (reverting -> revert_failed keeps the revert retryable); PdfImports release their processing claim back to pending; exports fail so a new one can be created. - "Mark as failed" buttons appear on the imports/exports index rows only when a record is presumed lost, behind the pages' existing permission gates (statement-import permission for imports, admin for exports). * fix(sync-cancel): cascade pending cancels, guard late finalizers, scope provider syncs Review feedback on #2685 (CodeRabbit, Codex): - request_cancel! now cascades finalization for pending syncs too: a pending child resolved to stale never runs its job, so nothing else would ever call finalize_if_all_children_finalized — its waiting parent hung in syncing until the 24h sweep (CodeRabbit critical) - SimplefinItem::Syncer#mark_completed re-reads the sync under a row lock and skips finalization once cancellation was requested or the row went terminal — its in-memory copy predates the cancel, and the unguarded complete! (plus the raw status fallback) resurrected a cancelled sync and re-ran post-sync (Codex) - Cancelling provider-item syncs now requires admin: for_family's resource_owner only scopes the Account branch, so a restricted member could cancel admin-managed provider syncs spanning accounts they cannot see. Family- and account-level syncs stay member-cancellable, matching the buttons the UI shows (Codex) - Lost-import error copy moved behind i18n (imports.errors.presumed_lost), resolved at call time (CodeRabbit) - Tests: pending-child cancel finalizes the parent; late provider complete! cannot resurrect a cancelled sync; provider-sync cancellation is admin-only * fix(sync-cancel): capture the skipped-finalization case via DebugLogEntry CodeRabbit round-2: the mark_completed skip (cancelled/terminal sync) is support-relevant — record it in the super-admin debug UI with the family and provider attached instead of a raw Rails.logger line. category: provider_sync, matching the other provider syncers.
69 lines
1.7 KiB
Ruby
69 lines
1.7 KiB
Ruby
class FamilyExportsController < ApplicationController
|
|
include StreamExtensions
|
|
|
|
before_action :require_admin
|
|
before_action :set_export, only: [ :download, :destroy, :cancel ]
|
|
|
|
def new
|
|
# Modal view for initiating export
|
|
end
|
|
|
|
def create
|
|
@export = Current.family.family_exports.create!
|
|
FamilyDataExportJob.perform_later(@export)
|
|
|
|
respond_to do |format|
|
|
format.html { redirect_to family_exports_path, notice: t("family_exports.create.success") }
|
|
format.turbo_stream {
|
|
stream_redirect_to family_exports_path, notice: t("family_exports.create.success")
|
|
}
|
|
end
|
|
end
|
|
|
|
def index
|
|
@pagy, @exports = pagy(Current.family.family_exports.ordered, limit: safe_per_page)
|
|
@breadcrumbs = [
|
|
[ t("breadcrumbs.home"), root_path ],
|
|
[ t("breadcrumbs.exports"), family_exports_path ]
|
|
]
|
|
|
|
respond_to do |format|
|
|
format.html { render layout: "settings" }
|
|
format.turbo_stream { redirect_to family_exports_path }
|
|
end
|
|
end
|
|
|
|
def download
|
|
if @export.downloadable?
|
|
redirect_to @export.export_file, allow_other_host: true
|
|
else
|
|
redirect_to family_exports_path, alert: t("family_exports.export_not_ready")
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
@export.destroy
|
|
redirect_to family_exports_path, notice: t("family_exports.destroy.success")
|
|
end
|
|
|
|
def cancel
|
|
if @export.force_fail!
|
|
redirect_to family_exports_path, notice: t(".cancelled")
|
|
else
|
|
redirect_to family_exports_path, alert: t(".not_cancellable")
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def set_export
|
|
@export = Current.family.family_exports.find(params[:id])
|
|
end
|
|
|
|
def require_admin
|
|
unless Current.user.admin?
|
|
redirect_to root_path, alert: t("family_exports.access_denied")
|
|
end
|
|
end
|
|
end
|