Skip to content

Implement Software Update Rebuild Code#1377

Open
ThePitter wants to merge 42 commits intosillsdev:developfrom
judah-sotomayor:feature/software-update-rebuild
Open

Implement Software Update Rebuild Code#1377
ThePitter wants to merge 42 commits intosillsdev:developfrom
judah-sotomayor:feature/software-update-rebuild

Conversation

@ThePitter
Copy link
Copy Markdown

@ThePitter ThePitter commented Nov 5, 2025

Creates new Software Update page in Admin and enables administrators to chose to begin automated builds.
See #1249

Summary by CodeRabbit

  • New Features

    • Added Software Update admin interface with multi-language support (English, Spanish, French).
    • New admin dashboard for managing product rebuilds with real-time status tracking and progress visibility.
    • Rebuild workflows now capture and display initiator information and optional comments.
  • Enhancements

    • Updated data display components to support numeric values.
    • Added real-time update notifications for software rebuild events.

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Nov 5, 2025

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review
📝 Walkthrough

Walkthrough

Introduces a complete software update administration feature with localization strings, product rebuild workflow, database persistence layer, real-time SSE updates, and admin UI for initiating and monitoring software rebuilds across multiple organizations.

Changes

Cohort / File(s) Summary
Localization strings
src/lib/locales/en-US.json, src/lib/locales/es-419.json, src/lib/locales/fr-FR.json
Added 32 new translation keys for software update admin UI, covering navigation items, descriptions, actions, status messages, labels, and rebuild-related messages across three locales.
Product action & workflow enhancement
src/lib/products/server.ts, src/lib/server/workflow/index.ts
Extended doProductAction and Workflow.create to accept optional comment parameter; comment is persisted to ProductTransitions record for rebuild actions.
Admin navigation
src/routes/(authenticated)/+layout.svelte
Added navigation item for /software-update route in admin sidebar with active state tracking and localized label.
Database operations
src/lib/server/database/SoftwareUpdates.ts, src/lib/server/database/index.ts
Introduced new module with recordRebuilds and completeForProduct functions; enables transactional creation of software update records, grouping rebuilds by organization/BuildEngine/ApplicationType/version, and marking updates complete when all linked products successfully rebuild.
Build job post-processing
src/lib/server/job-executors/build.ts
Added post-build side effect to call SoftwareUpdates.completeForProduct on successful builds for tracking rebuild completion.
Real-time updates infrastructure
src/lib/bullmq.ts, src/lib/server/bullmq/BullWorker.ts, src/lib/server/bullmq/types.ts, src/lib/projects/listener.ts, src/lib/software-updates/sse.ts, src/routes/(authenticated)/software-update/[[orgId=idNumber]]/sse/+server.ts
Extended SSE/BullMQ infrastructure with new SvelteSSE_UpdateSoftwareUpdates job type, added getRebuildsForOrgIds function to fetch rebuild data with rich relational context, implemented SSE endpoint for real-time rebuild status streaming with authentication and org membership checks.
Admin interface
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts, src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte, src/routes/(authenticated)/software-update/ApplicationTypesSelector.svelte, src/routes/(authenticated)/software-update/RebuildCard.svelte, src/lib/components/settings/DataDisplayBox.svelte
Implemented admin page with form-driven rebuild workflow; includes server-side logic to determine rebuild-eligible products by checking project settings, workflow status, and version mismatches; client-side page manages form submission, polling rebuild status every 10 seconds, and displays rebuild cards with metadata; added ApplicationTypesSelector and RebuildCard components for UI; extended DataDisplayBox to support numeric values.

Sequence Diagram

sequenceDiagram
    participant Admin as Admin UI
    participant Server as Page Server
    participant DB as Database
    participant Queue as Job Queue
    participant Build as Build Executor
    participant Updates as SoftwareUpdates

    Admin->>Server: Submit rebuild form with comment
    Server->>DB: Get eligible products (check RebuildOnSoftwareUpdate,<br/>active workflows, versions)
    DB-->>Server: Return eligible products
    Server->>DB: recordRebuilds() - create SoftwareUpdates<br/>records grouped by org/BuildEngine/AppType/version
    DB-->>Server: Return update IDs
    Server->>Queue: Dispatch rebuild jobs via doProductAction<br/>for each eligible product
    Queue-->>Server: Jobs queued
    Server-->>Admin: Return initiator, counts, timestamp
    
    note over Admin: Polling begins every 10s
    Admin->>Server: Query rebuild status via SSE
    
    Queue->>Build: Execute rebuild job
    Build->>Build: Rebuild product
    Build->>Updates: completeForProduct(productId)
    Updates->>DB: Check if all linked products<br/>have successful builds with matching version
    DB-->>Updates: Verification result
    alt All products completed
        Updates->>DB: Mark SoftwareUpdate as DateCompleted
        Updates->>Server: Emit SSE notification
        Server-->>Admin: Push completion status update
    end
Loading

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~45 minutes

Possibly related PRs

Suggested reviewers

  • chrisvire
  • FyreByrd

Poem

🐰 A rebuild restart, now organized and keen,
With software updates tracked in schemas pristine,
From admin to database, the flow runs so clean,
Real-time SSE whispers—the finest we've seen!
With comments recorded and versions aligned,
The software update dance is beautifully designed! 🎉

🚥 Pre-merge checks | ✅ 2 | ❌ 1
❌ Failed checks (1 warning)
Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 30.77% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (2 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and directly describes the main change: implementing software update rebuild functionality, which aligns with the extensive changes across multiple files for this feature.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@FyreByrd FyreByrd force-pushed the develop branch 2 times, most recently from 95e992b to 264d56f Compare November 6, 2025 17:19
@ThePitter ThePitter force-pushed the feature/software-update-rebuild branch from 7e5635e to 09bb94b Compare November 6, 2025 19:17
@ThePitter ThePitter requested a review from FyreByrd November 10, 2025 15:03
@ThePitter
Copy link
Copy Markdown
Author

Everything is setup but am uncertain where the comment is supposed to be stored?

@ThePitter ThePitter marked this pull request as ready for review November 10, 2025 15:04
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 7

🧹 Nitpick comments (1)
src/routes/(authenticated)/admin/settings/software-update/+page.server.ts (1)

37-58: Consider filtering products to only rebuild those eligible for rebuild.

The query includes WorkflowInstance and ProductBuilds, but doesn't filter products that:

  • Already have an active workflow instance (shouldn't rebuild if already rebuilding)
  • Haven't completed initial publication yet

Consider adding a filter to exclude products already being rebuilt:

       include: {
         Products: {
+          where: {
+            WorkflowInstance: null
+          },
           include: {

Or add logic after the query to skip products with active workflows before calling doProductAction.

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between e0af0aa and 80d6465.

📒 Files selected for processing (6)
  • src/lib/locales/en-US.json (1 hunks)
  • src/lib/locales/es-419.json (1 hunks)
  • src/lib/locales/fr-FR.json (1 hunks)
  • src/routes/(authenticated)/admin/settings/+layout.svelte (1 hunks)
  • src/routes/(authenticated)/admin/settings/software-update/+page.server.ts (1 hunks)
  • src/routes/(authenticated)/admin/settings/software-update/+page.svelte (1 hunks)
🧰 Additional context used
🧠 Learnings (3)
📚 Learning: 2025-09-12T14:07:02.200Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/routes/(authenticated)/tasks/[product_id]/+page.server.ts:285-303
Timestamp: 2025-09-12T14:07:02.200Z
Learning: In src/routes/(authenticated)/tasks/[product_id]/+page.server.ts, FyreByrd prefers to optimize filterAvailableActions by creating Sets at the caller level rather than inside the function, so the function would take Set<number> arguments instead of arrays for better performance and separation of concerns.

Applied to files:

  • src/routes/(authenticated)/admin/settings/software-update/+page.server.ts
📚 Learning: 2025-09-12T14:57:08.647Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/routes/(authenticated)/tasks/[product_id]/+page.server.ts:252-264
Timestamp: 2025-09-12T14:57:08.647Z
Learning: In src/routes/(authenticated)/tasks/[product_id]/+page.server.ts, FyreByrd prefers to use transition.target[0] prediction mechanism for determining post-send state rather than calling flow.state() after flow.send() due to race condition concerns. The prediction approach is sufficient for redirect decisions between staying on task page vs going to projects page.

Applied to files:

  • src/routes/(authenticated)/admin/settings/software-update/+page.server.ts
📚 Learning: 2025-09-22T14:59:53.366Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(authenticated)/projects/[filter=projectSelector]/[orgId=idNumber]/+page.server.ts:214-221
Timestamp: 2025-09-22T14:59:53.366Z
Learning: In the AppBuilder portal, bulk project actions in the route `/projects/[filter=projectSelector]/[orgId=idNumber]/+page.server.ts` are organization-scoped by design. The route parameter `[orgId=idNumber]` ensures all operations happen within a single organization context, so using the route-level orgId for all projects in bulk actions like `doProjectAction` is correct and safe.

Applied to files:

  • src/routes/(authenticated)/admin/settings/software-update/+page.server.ts
🧬 Code graph analysis (1)
src/routes/(authenticated)/admin/settings/software-update/+page.server.ts (2)
src/lib/server/database/prisma.ts (1)
  • DatabaseReads (22-22)
src/lib/products/server.ts (1)
  • doProductAction (7-88)
🪛 GitHub Actions: Test and Lint
src/routes/(authenticated)/admin/settings/+layout.svelte

[error] 21-21: Prettier formatting error reported by ESLint during 'npm run lint': Insert a space character (prettier/prettier) at column 68.

🪛 GitHub Check: checks / typecheck-lint
src/routes/(authenticated)/admin/settings/+layout.svelte

[failure] 21-21:
Insert ·

src/routes/(authenticated)/admin/settings/software-update/+page.svelte

[failure] 11-11:
Replace ········ with ····


[failure] 10-10:
Delete ··


[failure] 8-8:
Delete ··


[warning] 7-7:
$lib/paraglide/messages import should occur after import of $lib/components/settings/LabeledFormInput.svelte


[failure] 7-7:
Delete ··


[warning] 6-6:
'getLocale' is defined but never used


[warning] 6-6:
$lib/paraglide/runtime import should occur after import of $lib/components/settings/LabeledFormInput.svelte


[failure] 6-6:
Delete ··


[failure] 5-5:
Delete ··


[warning] 4-4:
$lib/utils import should occur after import of $lib/components/settings/LabeledFormInput.svelte


[failure] 4-4:
Replace ···· with ··


[failure] 3-3:
Delete ··


[warning] 2-2:
./$types type import should occur after import of sveltekit-superforms


[failure] 2-2:
Delete ··

🔇 Additional comments (3)
src/lib/locales/fr-FR.json (1)

551-557: LGTM! French localization keys added correctly.

The new localization keys for the software update feature are properly structured and the translations appear accurate.

src/lib/locales/es-419.json (1)

576-582: LGTM! Spanish localization keys added correctly.

The Spanish translations for the software update feature are properly structured and consistent with other locale files.

src/lib/locales/en-US.json (1)

576-582: LGTM! English localization keys properly defined.

The base English localization keys for the software update feature are clear and well-structured.

Comment thread src/routes/(authenticated)/admin/settings/+layout.svelte Outdated
Comment thread src/routes/(authenticated)/admin/settings/software-update/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/admin/settings/software-update/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/admin/settings/software-update/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/admin/settings/software-update/+page.svelte Outdated
Comment thread src/routes/(authenticated)/admin/settings/software-update/+page.svelte Outdated
Copy link
Copy Markdown
Contributor

@FyreByrd FyreByrd left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As best as I can tell, all of the CodeRabbit stuff this time around is accurate; please address those.

Moving forward, please make sure you are running npm run check and npm run format and fix all reported errors before pushing.

There are some potential changes for the software updates page that @chrisvire and I had discussed briefly earlier last week; we will need to discuss those more in depth and update the issues accordingly. One of us will let you know when that happens.

Comment thread src/routes/(authenticated)/admin/settings/software-update/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/admin/settings/software-update/+page.svelte Outdated
Comment thread src/routes/(authenticated)/admin/settings/software-update/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/admin/settings/software-update/+page.svelte Outdated
@ThePitter
Copy link
Copy Markdown
Author

See Comment in #1249 For things that need to be changed before making this PR complete again.

@ThePitter ThePitter force-pushed the feature/software-update-rebuild branch from 97f04df to 613c8b0 Compare November 20, 2025 18:13
@ThePitter ThePitter marked this pull request as ready for review November 26, 2025 22:11
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

🧹 Nitpick comments (3)
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (3)

15-36: Consider extracting duplicate organization resolution logic.

The organization resolution logic (lines 16-36) is nearly identical to the logic in the start action (lines 106-126). Extracting this into a shared helper function would reduce duplication and maintenance burden.

async function resolveTargetOrgs(
  params: { orgId?: string },
  locals: App.Locals
): Promise<number[]> {
  const organizationId = Number(params.orgId);
  if (!isNaN(organizationId)) {
    locals.security.requireAdminOfOrg(organizationId);
    return [organizationId];
  }
  
  const orgs = await DatabaseReads.userRoles.findMany({
    where: {
      UserId: locals.security.userId,
      RoleId: { in: [1, 2] }
    },
    select: { OrganizationId: true }
  });
  
  const searchOrgs = new Set<number>();
  for (const org of orgs) {
    locals.security.requireAdminOfOrg(org.OrganizationId);
    searchOrgs.add(org.OrganizationId);
  }
  return Array.from(searchOrgs);
}

Also applies to: 106-126


47-50: Prefer map over forEach with push.

-  const organizationsReadable: string[] = [];
-  names.forEach((name) => {
-    organizationsReadable.push(name.Name ? name.Name : 'Unknown Organization');
-  });
+  const organizationsReadable = names.map((n) => n.Name ?? 'Unknown Organization');

156-162: Consider using Promise.allSettled for resilience.

If one doProductAction fails, Promise.all will reject immediately and no results are returned. Using Promise.allSettled would allow partial success and provide feedback about which products failed.

-    await Promise.all(
-      projects.flatMap((project) =>
-        project.Products.map((p) =>
-          doProductAction(p.Id, ProductActionType.Rebuild, form.data.comment)
-        )
-      )
-    );
+    const results = await Promise.allSettled(
+      projects.flatMap((project) =>
+        project.Products.map((p) =>
+          doProductAction(p.Id, ProductActionType.Rebuild, form.data.comment)
+        )
+      )
+    );
+    
+    const failed = results.filter((r) => r.status === 'rejected');
+    if (failed.length > 0) {
+      console.error(`${failed.length} product rebuild(s) failed`);
+      // Optionally return partial failure info to the client
+    }

     return { ok: true, form };
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 80d6465 and 9d45141.

📒 Files selected for processing (8)
  • src/lib/locales/en-US.json (1 hunks)
  • src/lib/locales/es-419.json (1 hunks)
  • src/lib/locales/fr-FR.json (1 hunks)
  • src/lib/products/server.ts (3 hunks)
  • src/lib/server/workflow/index.ts (2 hunks)
  • src/routes/(authenticated)/+layout.svelte (1 hunks)
  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (1 hunks)
  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • src/lib/locales/es-419.json
🧰 Additional context used
🧠 Learnings (3)
📚 Learning: 2025-09-12T14:07:02.200Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/routes/(authenticated)/tasks/[product_id]/+page.server.ts:285-303
Timestamp: 2025-09-12T14:07:02.200Z
Learning: In src/routes/(authenticated)/tasks/[product_id]/+page.server.ts, FyreByrd prefers to optimize filterAvailableActions by creating Sets at the caller level rather than inside the function, so the function would take Set<number> arguments instead of arrays for better performance and separation of concerns.

Applied to files:

  • src/lib/products/server.ts
  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-22T14:59:53.366Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(authenticated)/projects/[filter=projectSelector]/[orgId=idNumber]/+page.server.ts:214-221
Timestamp: 2025-09-22T14:59:53.366Z
Learning: In the AppBuilder portal, bulk project actions in the route `/projects/[filter=projectSelector]/[orgId=idNumber]/+page.server.ts` are organization-scoped by design. The route parameter `[orgId=idNumber]` ensures all operations happen within a single organization context, so using the route-level orgId for all projects in bulk actions like `doProjectAction` is correct and safe.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-12T14:57:08.647Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/routes/(authenticated)/tasks/[product_id]/+page.server.ts:252-264
Timestamp: 2025-09-12T14:57:08.647Z
Learning: In src/routes/(authenticated)/tasks/[product_id]/+page.server.ts, FyreByrd prefers to use transition.target[0] prediction mechanism for determining post-send state rather than calling flow.state() after flow.send() due to race condition concerns. The prediction approach is sufficient for redirect decisions between staying on task page vs going to projects page.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
🧬 Code graph analysis (1)
src/lib/server/workflow/index.ts (1)
src/lib/workflowTypes.ts (1)
  • WorkflowConfig (180-184)
🪛 GitHub Check: checks / typecheck-lint
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts

[warning] 53-53:
'projects' is assigned a value but never used

🔇 Additional comments (5)
src/lib/products/server.ts (1)

7-11: LGTM!

The optional comment parameter is correctly added to doProductAction and appropriately propagated to both Workflow.create for Rebuild/Republish actions and persisted in ProductTransitions for Cancel actions.

Also applies to: 53-61, 87-87

src/lib/server/workflow/index.ts (1)

51-55: LGTM!

The Workflow.create method signature correctly accepts an optional comment parameter and persists it in the StartWorkflow transition record. This maintains backward compatibility with existing callers.

Also applies to: 89-97

src/routes/(authenticated)/+layout.svelte (1)

220-229: LGTM!

The new navigation item follows the established pattern for admin links, correctly uses activeOrgUrl for organization-scoped navigation, and is appropriately gated by the admin role check.

src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte (1)

18-25: Verify post-submission navigation preserves org context.

After a successful form submission, the navigation goes to /software-update without preserving the current orgId from the URL. If the user initiated the rebuild for a specific organization, they'll be redirected to the "all organizations" view.

Is this intentional, or should the navigation preserve the current organization context? If preservation is desired:

+  import { page } from '$app/state';
+
   const { form, enhance } = superForm(data.form, {
     onUpdated({ form }) {
       if (form.valid) {
-        goto(localizeHref(base));
+        goto(localizeHref(page.url.pathname));
         toast('success', m.admin_software_update_toast_success());
       }
     }
   });
src/lib/locales/en-US.json (1)

559-565: LGTM!

The new localization keys follow the established naming conventions and provide clear, user-friendly messages for the software update feature.

Comment thread src/lib/locales/fr-FR.json Outdated
Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte Outdated
@becca-perk becca-perk requested a review from FyreByrd December 2, 2025 01:47
Copy link
Copy Markdown
Contributor

@FyreByrd FyreByrd left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is starting to look better.
A few things for now:

  • There is some duplicated/incorrect/unnecessary logic when getting a list of organizations on the server side. Please take a look at src/routes/users/org/[[id=idNumber]]/+page.server.ts for inspiration.
  • We recently added a SystemVersions table with information on AppBuilder versions. Please use this to further filter projects.
  • Both the load function and the action should have the same filtration logic for orgs/projects/products. Please break this out into one or more functions (in the same file) for consistency/reusability.

I will be working on creating a database table to record software updates for you to write to/read from for this PR. I will ping one of you when that's ready.

Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte Outdated
@FyreByrd
Copy link
Copy Markdown
Contributor

FyreByrd commented Dec 4, 2025

Just opened #1400 to add a table you can write to/display from for in progress software updates.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

♻️ Duplicate comments (1)
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (1)

24-41: Super-admin branch in determineTargetOrgs doesn’t truly return “all organizations”.

The docstring says super admins get all organizations, but the implementation reads from userRoles:

const orgs = locals.security.isSuperAdmin
  ? await DatabaseReads.userRoles.findMany({ select: { OrganizationId: true } })
  : await DatabaseReads.userRoles.findMany({
    where: { UserId: locals.security.userId, RoleId: { in: [RoleId.SuperAdmin, RoleId.OrgAdmin] } },
    select: { OrganizationId: true }
  });

This only returns orgs that have at least one userRoles row, and for non-super-admins, only those where the current user holds specific roles. That can diverge from the stated behavior and prior feedback that super admins should be able to target all orgs, independent of their memberships.

A clearer and more accurate approach would be something like:

async function determineTargetOrgs(locals: App.Locals): Promise<number[]> {
  if (locals.security.isSuperAdmin) {
    const orgs = await DatabaseReads.organizations.findMany({
      select: { Id: true }
    });
    return orgs.map((o) => o.Id);
  }

  const roles = await DatabaseReads.userRoles.findMany({
    where: {
      UserId: locals.security.userId,
      RoleId: { in: [RoleId.SuperAdmin, RoleId.OrgAdmin] }
    },
    select: { OrganizationId: true }
  });

  return Array.from(new Set(roles.map((r) => r.OrganizationId)));
}

This matches the docstring and ensures super admins truly cover all organizations, while non-super-admins are constrained to orgs where they’re actually admins. Based on learnings, this aligns better with FyreByrd’s expectation that super admins see all orgs, not just those where they have explicit org-role rows.

🧹 Nitpick comments (3)
src/lib/locales/es-419.json (1)

559-566: Software-update strings look good; consider localizing downloads_title.

The new admin_*software_update* keys read well and align with the described behavior. One minor nit: downloads_title is still "Downloads" in the es-419 locale—if this is user-facing, you may want to translate it (e.g., "Descargas") for consistency with the rest of the file.

src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (2)

11-14: Whitespace-only comments still pass validation; consider trimming input.

v.minLength(1, 'Comment is required') only enforces length, so a comment like " " will be accepted even though it’s effectively empty. If you truly require a meaningful comment, consider trimming before checking length, e.g.:

-const formSchema = v.object({
-  comment: v.pipe(v.string(), v.minLength(1, 'Comment is required'))
-  // Since we are only getting a comment, I do not believe we need a properties: propertiesSchema here.
-});
+const formSchema = v.object({
+  comment: v.pipe(
+    v.string(),
+    v.trim(),
+    v.minLength(1, 'Comment is required')
+  )
+  // Since we are only getting a comment, I do not believe we need a properties: propertiesSchema here.
+});

Please double-check that v.trim() (or the equivalent in your valibot version) is available and behaves as expected, or apply an equivalent trim via a transform/refinement.


123-165: SystemVersions usage is simplified to “latest row”; may need per-appType/buildEngine logic.

Right now, the action treats the most recent systemVersions row as a single global AppBuilder version:

const systemVersion = await DatabaseReads.systemVersions.findFirst({
  orderBy: { DateCreated: 'desc' }
});
const currentAppBuilderVersion = systemVersion?.Version ?? null;

and then excludes products already at that version via:

NOT: [
  { VersionBuilt: currentAppBuilderVersion },
  { ProductBuilds: { some: { Version: currentAppBuilderVersion } } }
]

From earlier guidance, SystemVersions.* is intended to be keyed by Project.ApplicationTypeId and the effective BuildEngineUrl, and “what should be” is looked up per (applicationType, buildEngine) combination. If there are multiple rows for different combinations, using just the single latest row may misclassify some products (either rebuilding ones that are already up to date for their specific combo or vice versa).

Consider evolving this to:

  • Look up the appropriate “target” SystemVersions row per project (keyed by ApplicationTypeId and effective BuildEngineUrl), and
  • Filter products per project against that target version.

This will be more complex (likely requiring either a pre-fetched map of SystemVersions or additional queries), but it will more closely match the intended “out-of-date relative to its own AppBuilder/engine combo” semantics. Based on learnings, this would align with the earlier what is vs what should be design for SystemVersions.

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 9d45141 and eeb56c6.

📒 Files selected for processing (5)
  • src/lib/locales/en-US.json (1 hunks)
  • src/lib/locales/es-419.json (1 hunks)
  • src/lib/locales/fr-FR.json (1 hunks)
  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (1 hunks)
  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (3)
  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte
  • src/lib/locales/fr-FR.json
  • src/lib/locales/en-US.json
🧰 Additional context used
🧠 Learnings (9)
📚 Learning: 2025-09-12T14:07:02.200Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/routes/(authenticated)/tasks/[product_id]/+page.server.ts:285-303
Timestamp: 2025-09-12T14:07:02.200Z
Learning: In src/routes/(authenticated)/tasks/[product_id]/+page.server.ts, FyreByrd prefers to optimize filterAvailableActions by creating Sets at the caller level rather than inside the function, so the function would take Set<number> arguments instead of arrays for better performance and separation of concerns.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-22T14:59:53.366Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(authenticated)/projects/[filter=projectSelector]/[orgId=idNumber]/+page.server.ts:214-221
Timestamp: 2025-09-22T14:59:53.366Z
Learning: In the AppBuilder portal, bulk project actions in the route `/projects/[filter=projectSelector]/[orgId=idNumber]/+page.server.ts` are organization-scoped by design. The route parameter `[orgId=idNumber]` ensures all operations happen within a single organization context, so using the route-level orgId for all projects in bulk actions like `doProjectAction` is correct and safe.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-12T14:57:08.647Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/routes/(authenticated)/tasks/[product_id]/+page.server.ts:252-264
Timestamp: 2025-09-12T14:57:08.647Z
Learning: In src/routes/(authenticated)/tasks/[product_id]/+page.server.ts, FyreByrd prefers to use transition.target[0] prediction mechanism for determining post-send state rather than calling flow.state() after flow.send() due to race condition concerns. The prediction approach is sufficient for redirect decisions between staying on task page vs going to projects page.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-12T14:31:23.906Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/lib/server/workflow/index.ts:52-74
Timestamp: 2025-09-12T14:31:23.906Z
Learning: In the appbuilder-portal codebase, optional chaining in database queries (like `check?.Project._count.Authors`) is primarily used to satisfy TypeScript's type checker rather than handling expected null cases. The `check` being null should realistically never happen in the normal application flow.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-22T15:00:43.129Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(authenticated)/users/[id=idNumber]/settings/+layout.server.ts:7-10
Timestamp: 2025-09-22T15:00:43.129Z
Learning: In user settings layouts, use the `adminOrgs` function from `$lib/users/server` to determine admin access rather than throwing 403 errors upfront. The `adminOrgs` function creates a filter that returns organizations where the subject user is a member AND the current user is an admin of that organization.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-25T19:44:14.845Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(authenticated)/projects/import/[id=idNumber]/+page.server.ts:24-26
Timestamp: 2025-09-25T19:44:14.845Z
Learning: The `requireHasRole(organizationId, roleId, orOrgAdmin)` method in the Security class allows organization admins to pass role checks when the third parameter `orOrgAdmin` is set to `true`, even if they don't have the specific role being checked for.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-17T21:07:18.139Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1275
File: src/lib/projects/index.ts:183-201
Timestamp: 2025-09-17T21:07:18.139Z
Learning: In the AppBuilder portal project, org admins must be in the project group to claim/take ownership of projects. This is enforced both in client-side logic (canClaimProject function) and server-side validation.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-10-01T15:58:37.578Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1317
File: src/routes/(authenticated)/users/+page.svelte:51-55
Timestamp: 2025-10-01T15:58:37.578Z
Learning: In the appbuilder-portal codebase, the $orgActive store (from $lib/stores) is designed to always contain a valid organization ID and should never be null. Code that syncs values to $orgActive should include guard clauses to prevent null assignments.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-10T13:46:43.497Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1275
File: src/auth.ts:240-245
Timestamp: 2025-09-10T13:46:43.497Z
Learning: In src/auth.ts, the products branch intentionally uses params.id as a string for database lookups, not as a number. This is the correct behavior and should not be changed to numeric parsing.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
🧬 Code graph analysis (1)
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (2)
src/lib/server/database/prisma.ts (1)
  • DatabaseReads (22-22)
src/lib/products/server.ts (1)
  • doProductAction (7-97)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: checks / build-and-test
🔇 Additional comments (1)
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (1)

129-175: Rebuild selection + triggering logic looks consistent with the intended behavior.

The projects query and the subsequent Promise.all over projects.flatMap(project => project.Products) correctly:

  • Limit to non-archived projects with RebuildOnSoftwareUpdate: true in the target orgs.
  • Exclude products with an active WorkflowInstance.
  • Exclude products already at the chosen “current” AppBuilder version (when defined).
  • Pass the validated comment through to doProductAction with ProductActionType.Rebuild.

This wiring matches the described software-update semantics and cleanly reuses the existing product action pipeline.

Copy link
Copy Markdown
Contributor

@FyreByrd FyreByrd left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See comments below for my feedback on your most recent changes.

I am looking forward to seeing what y'all come up with for UI. If you need ideas I can send a DM of a rough sketch I had in mind.

Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts Outdated
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Nitpick comments (3)
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (3)

28-34: Remove redundant RoleId.SuperAdmin from query filter.

The query includes RoleId.SuperAdmin in the filter, but any user who is a SuperAdmin has already returned on lines 21-26. The query will never match SuperAdmin roles at this point.

Apply this diff:

   const roles = await DatabaseReads.userRoles.findMany({
     where: {
       UserId: locals.security.userId,
-      RoleId: { in: [RoleId.SuperAdmin, RoleId.OrgAdmin] }
+      RoleId: RoleId.OrgAdmin
     },
     select: { OrganizationId: true }
   });

59-59: Complete the JSDoc comment.

The comment is incomplete: "Array of Pro"

Apply this diff:

- * @returns Array of Pro
+ * @returns Array of products that need to be rebuilt

73-77: Fix comment or implementation mismatch.

Line 73 comment states "We need this to identify the latest build, assuming WorkflowBuildId is monotonically increasing", but line 77 orders by Id: 'desc' instead of WorkflowBuildId. Either update the comment to reflect ordering by Id, or order by WorkflowBuildId if that's the intended behavior.

If ordering by WorkflowBuildId is correct:

       ProductBuilds: {
-        orderBy: { Id: 'desc' }, // Order by ID descending to get the 'latest' build
+        orderBy: { WorkflowBuildId: 'desc' }, // Order by WorkflowBuildId descending to get the 'latest' build
         take: 1, // Only take the most recent

Otherwise, update the comment to match the implementation.

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between eeb56c6 and 3ef32b3.

📒 Files selected for processing (2)
  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (1 hunks)
  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte
🧰 Additional context used
🧠 Learnings (10)
📚 Learning: 2025-09-12T14:07:02.200Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/routes/(authenticated)/tasks/[product_id]/+page.server.ts:285-303
Timestamp: 2025-09-12T14:07:02.200Z
Learning: In src/routes/(authenticated)/tasks/[product_id]/+page.server.ts, FyreByrd prefers to optimize filterAvailableActions by creating Sets at the caller level rather than inside the function, so the function would take Set<number> arguments instead of arrays for better performance and separation of concerns.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-22T14:59:53.366Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(authenticated)/projects/[filter=projectSelector]/[orgId=idNumber]/+page.server.ts:214-221
Timestamp: 2025-09-22T14:59:53.366Z
Learning: In the AppBuilder portal, bulk project actions in the route `/projects/[filter=projectSelector]/[orgId=idNumber]/+page.server.ts` are organization-scoped by design. The route parameter `[orgId=idNumber]` ensures all operations happen within a single organization context, so using the route-level orgId for all projects in bulk actions like `doProjectAction` is correct and safe.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-12T14:57:08.647Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/routes/(authenticated)/tasks/[product_id]/+page.server.ts:252-264
Timestamp: 2025-09-12T14:57:08.647Z
Learning: In src/routes/(authenticated)/tasks/[product_id]/+page.server.ts, FyreByrd prefers to use transition.target[0] prediction mechanism for determining post-send state rather than calling flow.state() after flow.send() due to race condition concerns. The prediction approach is sufficient for redirect decisions between staying on task page vs going to projects page.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-12T14:31:23.906Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/lib/server/workflow/index.ts:52-74
Timestamp: 2025-09-12T14:31:23.906Z
Learning: In the appbuilder-portal codebase, optional chaining in database queries (like `check?.Project._count.Authors`) is primarily used to satisfy TypeScript's type checker rather than handling expected null cases. The `check` being null should realistically never happen in the normal application flow.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-22T15:00:43.129Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(authenticated)/users/[id=idNumber]/settings/+layout.server.ts:7-10
Timestamp: 2025-09-22T15:00:43.129Z
Learning: In user settings layouts, use the `adminOrgs` function from `$lib/users/server` to determine admin access rather than throwing 403 errors upfront. The `adminOrgs` function creates a filter that returns organizations where the subject user is a member AND the current user is an admin of that organization.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-25T19:44:14.845Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(authenticated)/projects/import/[id=idNumber]/+page.server.ts:24-26
Timestamp: 2025-09-25T19:44:14.845Z
Learning: The `requireHasRole(organizationId, roleId, orOrgAdmin)` method in the Security class allows organization admins to pass role checks when the third parameter `orOrgAdmin` is set to `true`, even if they don't have the specific role being checked for.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-17T21:07:18.139Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1275
File: src/lib/projects/index.ts:183-201
Timestamp: 2025-09-17T21:07:18.139Z
Learning: In the AppBuilder portal project, org admins must be in the project group to claim/take ownership of projects. This is enforced both in client-side logic (canClaimProject function) and server-side validation.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-10-01T15:58:37.578Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1317
File: src/routes/(authenticated)/users/+page.svelte:51-55
Timestamp: 2025-10-01T15:58:37.578Z
Learning: In the appbuilder-portal codebase, the $orgActive store (from $lib/stores) is designed to always contain a valid organization ID and should never be null. Code that syncs values to $orgActive should include guard clauses to prevent null assignments.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-10T13:46:43.497Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1275
File: src/auth.ts:240-245
Timestamp: 2025-09-10T13:46:43.497Z
Learning: In src/auth.ts, the products branch intentionally uses params.id as a string for database lookups, not as a number. This is the correct behavior and should not be changed to numeric parsing.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-10-02T01:36:08.124Z
Learnt from: 7dev7urandom
Repo: sillsdev/appbuilder-portal PR: 1318
File: src/lib/components/OrganizationDropdown.svelte:30-39
Timestamp: 2025-10-02T01:36:08.124Z
Learning: In the `src/lib/components/OrganizationDropdown.svelte` component, the `organizations` array will always contain at least one organization, so there's no need to handle the empty array case.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
🧬 Code graph analysis (1)
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (2)
src/lib/server/database/prisma.ts (1)
  • DatabaseReads (22-22)
src/lib/products/server.ts (1)
  • doProductAction (7-97)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: checks / build-and-test
🔇 Additional comments (2)
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (2)

179-183: Consider error handling for partial rebuild failures.

If any doProductAction call fails during Promise.all, the entire operation fails immediately and previously triggered rebuilds cannot be rolled back. Consider whether this is the desired behavior or if you need:

  • Individual error handling with Promise.allSettled to track which rebuilds succeeded/failed
  • Returning partial success information to the user
  • Transaction-like behavior or compensation logic

Should partial rebuild failures be handled gracefully? If so, consider using Promise.allSettled:

-    await Promise.all(
-      productsToRebuild.map((p) =>
-        doProductAction(p.id, ProductActionType.Rebuild, form.data.comment)
-      )
-    );
-
-    return { form, ok: true };
+    const results = await Promise.allSettled(
+      productsToRebuild.map((p) =>
+        doProductAction(p.id, ProductActionType.Rebuild, form.data.comment)
+      )
+    );
+
+    const failures = results.filter((r) => r.status === 'rejected');
+    if (failures.length > 0) {
+      // Handle partial failures - return info about what succeeded/failed
+      return { 
+        form, 
+        ok: false, 
+        partial: true,
+        failedCount: failures.length,
+        totalCount: results.length 
+      };
+    }
+
+    return { form, ok: true };

107-107: Verify BuildEngineUrl fallback behavior.

When BuildEngineUrl is null, the code uses an empty string. Should this use the DEFAULT_BUILD_ENGINE_URL environment variable instead, consistent with other parts of the codebase?

Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts Outdated
Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts Outdated
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

🧹 Nitpick comments (2)
deployment/ci/docker-compose.yml (1)

5-5: Quoting changes appear unrelated to feature scope.

The PR objective is to implement Software Update Rebuild Code with admin UI and workflow features, but this file only contains cosmetic YAML string quoting normalization (double quotes → single quotes). While the formatting is valid and consistent, these changes seem tangential to the feature.

Consider consolidating formatting changes into a separate PR to keep the commit history focused and easier to review for the feature implementation.

Also applies to: 20-20, 22-34

src/lib/server/email-service/locales/fr-FR.json (1)

77-77: Fix spacing inconsistency in the subject line.

Line 77 uses "Scriptoria :" (with space after colon), while all other entries in the subject section (e.g., lines 48–76) consistently use "Scriptoria:" (no space). Align this with the existing pattern.

-      "autoPublishOnRebuildCompleted": "Scriptoria : Publication automatique réussie de {{productName}} dans {{projectName}}",
+      "autoPublishOnRebuildCompleted": "Scriptoria: Publication automatique réussie de {{productName}} dans {{projectName}}",
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 3ef32b3 and e9e57eb.

📒 Files selected for processing (22)
  • .codeclimate.yml (2 hunks)
  • .vscode/settings.json (1 hunks)
  • README.md (7 hunks)
  • deployment/ci/docker-compose.yml (2 hunks)
  • deployment/development/docker-compose.yml (5 hunks)
  • eslint-rules/tsconfig.json (1 hunks)
  • renovate.json (2 hunks)
  • src/lib/otel/development_config.yml (1 hunks)
  • src/lib/otel/production_config.yml (2 hunks)
  • src/lib/products/server.ts (3 hunks)
  • src/lib/server/bullmq/pause.ts (1 hunks)
  • src/lib/server/bullmq/types.ts (4 hunks)
  • src/lib/server/email-service/locales/en-us.json (2 hunks)
  • src/lib/server/email-service/locales/es-419.json (2 hunks)
  • src/lib/server/email-service/locales/fr-FR.json (2 hunks)
  • src/lib/server/job-executors/product.ts (1 hunks)
  • src/lib/server/job-executors/system.ts (1 hunks)
  • src/lib/server/workflow/dbProcedures.ts (2 hunks)
  • src/lib/server/workflow/index.ts (6 hunks)
  • src/lib/server/workflow/state-machine.ts (6 hunks)
  • src/lib/workflowTypes.ts (4 hunks)
  • src/routes/(authenticated)/+layout.svelte (1 hunks)
✅ Files skipped from review due to trivial changes (7)
  • renovate.json
  • src/lib/otel/development_config.yml
  • .vscode/settings.json
  • eslint-rules/tsconfig.json
  • deployment/development/docker-compose.yml
  • README.md
  • .codeclimate.yml
🚧 Files skipped from review as they are similar to previous changes (1)
  • src/routes/(authenticated)/+layout.svelte
🧰 Additional context used
🧠 Learnings (7)
📚 Learning: 2025-09-12T14:07:02.200Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/routes/(authenticated)/tasks/[product_id]/+page.server.ts:285-303
Timestamp: 2025-09-12T14:07:02.200Z
Learning: In src/routes/(authenticated)/tasks/[product_id]/+page.server.ts, FyreByrd prefers to optimize filterAvailableActions by creating Sets at the caller level rather than inside the function, so the function would take Set<number> arguments instead of arrays for better performance and separation of concerns.

Applied to files:

  • src/lib/products/server.ts
📚 Learning: 2025-12-04T23:01:23.804Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1384
File: src/lib/server/workflow/index.ts:92-103
Timestamp: 2025-12-04T23:01:23.804Z
Learning: In src/lib/server/workflow/index.ts, the Workflow.create method intentionally creates a snapshot before creating product transitions (around line 83) and another after starting the flow (around line 103). The first snapshot is required to prevent errors when the initial state is Product Build (as in Rebuild workflows). The second snapshot ensures the user tasks job has up-to-date information after transitions are created and the flow is started.

Applied to files:

  • src/lib/products/server.ts
  • src/lib/server/workflow/index.ts
  • src/lib/workflowTypes.ts
  • src/lib/server/job-executors/product.ts
  • src/lib/server/workflow/state-machine.ts
📚 Learning: 2025-09-04T14:26:59.326Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1227
File: src/lib/server/job-executors/product.ts:247-250
Timestamp: 2025-09-04T14:26:59.326Z
Learning: In src/lib/server/job-executors/product.ts, the createLocal function's catch block returns false instead of rethrowing errors. This was implemented intentionally to fix another issue, so any changes to this error handling should be carefully evaluated for downstream impacts.

Applied to files:

  • src/lib/products/server.ts
  • src/lib/server/job-executors/product.ts
📚 Learning: 2025-08-04T18:34:58.818Z
Learnt from: 7dev7urandom
Repo: sillsdev/appbuilder-portal PR: 1186
File: src/hooks.server.ts:34-41
Timestamp: 2025-08-04T18:34:58.818Z
Learning: In the AppBuilder Portal codebase, BullMQ workers are only initialized when not building (`if (!building)` in BullWorker constructor), and the graceful shutdown handler in hooks.server.ts also only runs when not building. Therefore, the worker.worker property is guaranteed to be defined in the shutdown context, making optional chaining defensive rather than necessary.

Applied to files:

  • src/lib/server/bullmq/pause.ts
  • src/lib/server/workflow/state-machine.ts
📚 Learning: 2025-09-12T14:02:04.558Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/lib/server/workflow/index.ts:52-74
Timestamp: 2025-09-12T14:02:04.558Z
Learning: In the appbuilder-portal codebase, when a Product exists, it always has an associated Project relationship. The Project._count fields (Authors, Reviewers) are safe to access directly when the Product query returns a result.

Applied to files:

  • src/lib/server/workflow/index.ts
📚 Learning: 2025-05-12T13:19:42.118Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1115
File: portal/common/bullmq/types.ts:205-220
Timestamp: 2025-05-12T13:19:42.118Z
Learning: In the AppBuilder portal, `System_CheckEngineStatuses` and `System_RefreshLangTags` job types are designed to run both periodically (as recurring jobs) and immediately upon startup, which is why they're included in both the `RecurringJob` and `StartupJob` type definitions.

Applied to files:

  • src/lib/server/bullmq/types.ts
📚 Learning: 2025-09-04T16:23:55.891Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1227
File: src/lib/server/job-executors/product.ts:247-250
Timestamp: 2025-09-04T16:23:55.891Z
Learning: In src/lib/server/job-executors/product.ts, createLocal’s catch should log the error via job.log with relevant context (projectId/productDefinitionId/storeId) and still return false to preserve the intentional “no-retry” behavior.

Applied to files:

  • src/lib/server/job-executors/product.ts
  • src/lib/server/workflow/state-machine.ts
🧬 Code graph analysis (3)
src/lib/products/server.ts (1)
src/lib/server/workflow/index.ts (1)
  • Workflow (36-592)
src/lib/server/workflow/index.ts (1)
src/lib/workflowTypes.ts (2)
  • WorkflowConfig (183-188)
  • WorkflowInstanceContext (105-138)
src/lib/server/workflow/state-machine.ts (4)
src/lib/server/bullmq/types.ts (3)
  • Build (101-108)
  • Product (77-82)
  • Product (165-171)
src/lib/server/bullmq/queues.ts (1)
  • getQueues (150-155)
src/lib/workflowTypes.ts (1)
  • autoPublishOnRebuild (268-274)
src/lib/server/workflow/dbProcedures.ts (1)
  • notifyAutoPublishOwner (55-82)
🪛 Biome (2.1.2)
src/lib/products/server.ts

[error] 11-11: expected , but instead found parentJobId

Remove parentJobId

(parse)

⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: checks / build-and-test
🔇 Additional comments (22)
src/lib/server/email-service/locales/fr-FR.json (1)

119-120: Localization additions look good.

The French translations are grammatically sound and properly structured. The new autoPublishOnRebuildCompleted entries in both the subject and notification sections are consistent with the template variables and formatting used elsewhere in the file.

src/lib/server/email-service/locales/es-419.json (2)

77-77: Missing localization entry in body section.

Per the AI summary, autoPublishOnRebuildCompleted should be added to three sections (body, subject, and notification), but this code shows only subject (line 77) and notification (line 120) additions. The body section (lines 3–46) appears to lack the corresponding entry.

Verify that the body section includes "autoPublishOnRebuildCompleted" with appropriate Spanish text describing the automatic publication completion.

Also applies to: 120-120


77-77: Spanish translations are grammatically sound and follow localization patterns.

Both translations correctly use template variables and follow the established naming and text conventions:

  • Line 77 (subject): Includes "Scriptoria:" prefix, consistent with other subject entries
  • Line 120 (notification): No prefix, consistent with other notification entries
  • Template variables {{productName}} and {{projectName}} are correctly positioned

Also applies to: 120-120

src/lib/server/job-executors/product.ts (1)

247-249: LGTM!

The addition of isAutomatic: false correctly satisfies the updated WorkflowConfig type requirement. This is appropriate for locally-created products which are not part of automated rebuild flows.

src/lib/products/server.ts (2)

55-66: LGTM!

The Workflow.create call correctly passes the new parentJobId and isAutomatic fields in the config object, and the comment as a separate argument. This aligns with the updated signature in src/lib/server/workflow/index.ts.


92-92: Good addition for audit trail.

Adding the Comment field to the Cancel transition record improves traceability by capturing the reason for cancellation.

src/lib/server/workflow/dbProcedures.ts (1)

55-82: LGTM!

The notifyAutoPublishOwner function is well-implemented with proper null guards and follows existing notification patterns in the codebase. The early return on missing OwnerId prevents unnecessary queue operations.

src/lib/server/job-executors/system.ts (1)

954-962: LGTM!

Adding isAutomatic: false to the migrated workflow context is correct. Legacy migrated instances should default to non-automatic since they were not created through the new automated rebuild flow.

src/lib/server/workflow/index.ts (4)

51-55: LGTM!

The updated create method signature properly accepts parentJobId via the config extension and comment as a separate parameter. This design cleanly separates workflow configuration from transition metadata.


74-81: LGTM!

The workflow input correctly propagates parentJobId and autoPublishOnRebuild from the project settings. The double-negation !!check?.Project.AutoPublishOnRebuild safely converts to boolean.


193-194: Good backward compatibility handling.

The nullish coalescing assignment context.isAutomatic ??= false ensures that workflows restored from snapshots created before this change will have a valid boolean value, preventing runtime errors in downstream logic.


373-382: LGTM!

Correctly excludes runtime-derived fields (autoPublishOnRebuild, productType, options, etc.) from the persisted context. These fields are re-computed on restore from the database relationships.

src/lib/server/bullmq/types.ts (4)

37-39: LGTM!

The Rebuild_Parent job type is appropriately placed with the build jobs and clearly documented as a parent job for admin-initiated rebuilds.


90-97: LGTM!

The Build.Parent interface is well-designed with a required projectId for identifying the rebuild scope and an optional initiatedBy for audit tracking. The comment clarifies this is a grouping type not processed by build workers.


342-342: LGTM!

The JobTypeMap correctly maps Rebuild_Parent to Build.Parent, ensuring type safety throughout the codebase.


305-308: Verify the parent job processing is handled appropriately.

The Rebuild_Parent job is included in BuildJob union. Ensure the build worker has logic to handle or skip this job type, since per the comment it's "not processed by build workers" but is a grouping parent job.

src/lib/workflowTypes.ts (1)

137-137: LGTM! Well-structured type extensions and guard implementation.

The new fields (isAutomatic, parentJobId, autoPublishOnRebuild) integrate cleanly into the existing type hierarchy, and the autoPublishOnRebuild guard function correctly validates all three required conditions (autoPublishOnRebuild flag, isAutomatic flag, and Rebuild workflow type).

Also applies to: 187-187, 194-196, 268-275

src/lib/server/email-service/locales/en-us.json (1)

77-77: LGTM! Localization keys properly structured.

The new auto-publish notification keys follow the existing naming conventions and include appropriate placeholders for project and product names.

Also applies to: 119-120

src/lib/server/workflow/state-machine.ts (4)

61-61: LGTM! Context properly initialized with new fields.

The context initialization correctly propagates isAutomatic and autoPublishOnRebuild from the input, enabling the workflow to support automatic rebuild and auto-publish functionality.

Also applies to: 68-68


504-531: LGTM! Clean refactor with proper parent job linkage.

The refactored payload construction improves clarity by separating data and options objects. The conditional parent linkage (lines 527-529) correctly associates child build jobs with the parent rebuild job when parentJobId is provided.


556-565: LGTM! Auto-transition correctly gated.

The new transition to Product_Publish is properly guarded using the autoPublishOnRebuild function from workflowTypes, ensuring automatic publishing only occurs when all conditions are met (autoPublishOnRebuild flag, isAutomatic flag, and Rebuild workflow type).


840-857: LGTM! Notifications properly gated.

The notifyAutoPublishOwner calls are correctly conditional on both autoPublishOnRebuild and isAutomatic flags, ensuring product owners are notified only when automatic publishing completes on rebuild workflows.

Comment thread src/lib/otel/production_config.yml Outdated
Comment thread src/lib/products/server.ts
Comment thread src/lib/server/bullmq/pause.ts Outdated
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 4

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
src/routes/(authenticated)/products/[id]/files/+page.server.ts (1)

93-106: Calling requireProjectReadAccess without project will always 404

Here project is correctly fetched and validated:

const project = (await DatabaseReads.products.findUnique(...))?.Project;
if (!project) error(404);

But the subsequent call omits it:

locals.security.requireProjectReadAccess(
  await DatabaseReads.groupMemberships.findMany({ ... })
  // project not passed here
);

Given the current Security.requireProjectReadAccess implementation, a missing project argument is treated as falsy and results in error(404, 'Project not found'), so this action will always fail with 404.

You likely meant to keep passing project here. Suggested fix:

-    locals.security.requireProjectReadAccess(
-      await DatabaseReads.groupMemberships.findMany({
-        where: { UserId: locals.security.userId, GroupId: project.GroupId }
-      })
-    );
+    locals.security.requireProjectReadAccess(
+      await DatabaseReads.groupMemberships.findMany({
+        where: { UserId: locals.security.userId, GroupId: project.GroupId }
+      }),
+      project
+    );
🧹 Nitpick comments (6)
src/lib/server/database/Projects.ts (1)

50-58: Reassign userMapping change looks good; consider guarding against null existing

  • The updated userMapping: [{ from: existing!.OwnerId, to: ownerId }] correctly matches the narrowed { from, to }[] type for the Reassign operation and preserves existing behavior (single mapping from previous owner to new owner). No issues with the change itself.

  • Independently of this PR, existing is nullable (findUnique can return null), but it’s used with a non‑null assertion both when computing orgId/groupId/ownerId and in userMapping. If id were ever invalid or the project deleted concurrently, this would throw before the try/catch and surface as an unhandled error.

    You could defensively guard once after the lookup and then drop the !:

    const existing = await prisma.projects.findUnique({
      where: {
        Id: id
      }
    });
  • if (!existing) {
  • return false;
  • }
  • const orgId = projectData.OrganizationId ?? existing!.OrganizationId;
  • const groupId = projectData.GroupId ?? existing!.GroupId;
  • const ownerId = projectData.OwnerId ?? existing!.OwnerId;
  • const orgId = projectData.OrganizationId ?? existing.OrganizationId;
  • const groupId = projectData.GroupId ?? existing.GroupId;
  • const ownerId = projectData.OwnerId ?? existing.OwnerId;
  •      userMapping: [{ from: existing!.OwnerId, to: ownerId }]
    
  •      userMapping: [{ from: existing.OwnerId, to: ownerId }]
    
    
    That keeps the new job payload shape while making the function safer under unexpected IDs.
    
    
    
    
    
    

Also applies to: 70-78

src/lib/server/job-executors/userTasks.ts (1)

62-87: Reassign operation lacks validation; confirm this design is intentional.

The reassignment logic (lines 62-87) bypasses the role validation that exists in the Create/Update/Delete path (line 173: .filter((t) => allUsers[t.UserId].has(t.Role))).

However, this appears intentional rather than accidental. Reassign is semantically different: it transfers existing tasks from one specific user to another via direct user mapping, whereas Create/Update/Delete regenerate tasks based on role eligibility. The current sole caller (Projects.ts) reassigns tasks during owner changes, where the new owner implicitly has the required role.

The concern is whether this design will remain valid if Reassign is used elsewhere. Consider adding:

  1. Documentation clarifying why Reassign has no role check
  2. Validation at the call site to ensure reassignments are to users with compatible roles (if needed for future use cases)
src/lib/server/job-executors/email.ts (1)

97-126: Reviewer and owner email construction is consistent; minor duplication opportunity only

Using product.Project.Reviewers and product.Project.Owner directly for recipient lists, locale selection, and owner-specific reviewerNames is consistent with the rest of this module and should behave as expected, including the case with zero reviewers (owner email still sent).

If you touch this again, consider extracting a tiny helper to build the shared properties / reviewerNames so the reviewer and owner branches don’t need to recompute similar data, but this is purely a readability win and not required for this PR.

src/lib/server/build-engine-api/types.ts (1)

67-72: Consider adding runtime validation or explicit property mapping.

The toStatusResponse function uses a type assertion with the spread operator, which bypasses TypeScript's type checking. This allows any properties from body to leak through without validation, potentially violating the StatusResponse contract (e.g., wrong types for versions, created, or updated).

Consider either:

  • Explicitly mapping known properties: { responseType: 'status', status, versions: body.versions as StatusResponse['versions'], ... }
  • Adding runtime validation to ensure body matches the expected shape

Example with explicit mapping:

 export function toStatusResponse(
   status: number,
   body: Record<string, unknown> = {}
 ): StatusResponse {
-  return { responseType: 'status', status, ...body } as StatusResponse;
+  return {
+    responseType: 'status',
+    status,
+    ...(body.versions && { versions: body.versions as StatusResponse['versions'] }),
+    ...(body.created && { created: body.created as string }),
+    ...(body.updated && { updated: body.updated as string })
+  };
 }
src/auth.ts (1)

255-267: Optional project parameter does not match runtime behavior

requireProjectReadAccess now types project as optional, but the implementation still hard-fails with a 404 whenever project is falsy. That means any caller that relies on the new optional signature and omits project will always get a 404, even when a valid project was already fetched separately.

Either keep the parameter required in the type, or update the implementation to have a well-defined behavior when project is omitted (e.g., treat “no project argument” differently from “project not found”). As it stands, the optional typing is misleading and has already enabled at least one broken call site.

src/app.d.ts (1)

28-35: Security type now allows an unsafe call pattern

The global Security.requireProjectReadAccess signature now makes project optional, even though the concrete implementation still errors when project is falsy. This loosened type is what allowed a call without project in products/[id]/files/+page.server.ts to compile but fail at runtime.

To keep TS honest, consider either:

  • Making project required again in this declaration, or
  • Explicitly documenting and implementing a distinct behavior for project === undefined vs. project === null (e.g., overloads), if you truly need a “no-project argument” variant.

Right now the type surface doesn’t reflect the actual behavior.

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between e9e57eb and 2cb79b0.

📒 Files selected for processing (34)
  • .github/workflows/setup.yml (2 hunks)
  • Dockerfile (0 hunks)
  • README.md (0 hunks)
  • run (0 hunks)
  • src/app.d.ts (1 hunks)
  • src/auth.ts (1 hunks)
  • src/lib/components/settings/Toggle.svelte (1 hunks)
  • src/lib/prisma/migrations/18_system_version_hash/migration.sql (0 hunks)
  • src/lib/prisma/migrations/19_track_updates/migration.sql (0 hunks)
  • src/lib/prisma/schema.prisma (0 hunks)
  • src/lib/products/index.ts (0 hunks)
  • src/lib/products/server.ts (3 hunks)
  • src/lib/projects/sse.ts (1 hunks)
  • src/lib/server/build-engine-api/types.ts (2 hunks)
  • src/lib/server/bullmq/types.ts (1 hunks)
  • src/lib/server/database/Projects.ts (1 hunks)
  • src/lib/server/email-service/locales/en-us.json (2 hunks)
  • src/lib/server/email-service/locales/es-419.json (2 hunks)
  • src/lib/server/email-service/locales/fr-FR.json (2 hunks)
  • src/lib/server/job-executors/build.ts (3 hunks)
  • src/lib/server/job-executors/email.ts (4 hunks)
  • src/lib/server/job-executors/system.ts (1 hunks)
  • src/lib/server/job-executors/userTasks.ts (3 hunks)
  • src/lib/server/workflow/index.ts (4 hunks)
  • src/lib/server/workflow/state-machine.ts (1 hunks)
  • src/lib/workflowTypes.ts (0 hunks)
  • src/routes/(authenticated)/+layout.svelte (2 hunks)
  • src/routes/(authenticated)/products/[id]/files/+page.server.ts (1 hunks)
  • src/routes/(authenticated)/projects/[id=idNumber]/+page.server.ts (1 hunks)
  • src/routes/(authenticated)/projects/[id=idNumber]/modals/Properties.svelte (3 hunks)
  • src/routes/(authenticated)/tasks/[product_id]/instructions/GooglePlay_Configuration.svelte (3 hunks)
  • src/routes/(authenticated)/tasks/[product_id]/instructions/GooglePlay_Verify_And_Publish.svelte (1 hunks)
  • src/routes/(authenticated)/tasks/[product_id]/instructions/Verify_And_Publish.svelte (1 hunks)
  • src/routes/(unauthenticated)/docs/[filename]/+server.ts (0 hunks)
💤 Files with no reviewable changes (9)
  • README.md
  • src/routes/(unauthenticated)/docs/[filename]/+server.ts
  • Dockerfile
  • run
  • src/lib/workflowTypes.ts
  • src/lib/products/index.ts
  • src/lib/prisma/migrations/18_system_version_hash/migration.sql
  • src/lib/prisma/schema.prisma
  • src/lib/prisma/migrations/19_track_updates/migration.sql
🚧 Files skipped from review as they are similar to previous changes (3)
  • src/lib/server/bullmq/types.ts
  • src/lib/server/email-service/locales/fr-FR.json
  • src/lib/server/email-service/locales/es-419.json
🧰 Additional context used
🧠 Learnings (11)
📚 Learning: 2025-09-04T14:26:59.326Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1227
File: src/lib/server/job-executors/product.ts:247-250
Timestamp: 2025-09-04T14:26:59.326Z
Learning: In src/lib/server/job-executors/product.ts, the createLocal function's catch block returns false instead of rethrowing errors. This was implemented intentionally to fix another issue, so any changes to this error handling should be carefully evaluated for downstream impacts.

Applied to files:

  • src/lib/server/job-executors/build.ts
  • src/lib/server/job-executors/email.ts
  • src/lib/server/workflow/state-machine.ts
  • src/lib/server/job-executors/system.ts
📚 Learning: 2025-09-04T16:23:55.891Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1227
File: src/lib/server/job-executors/product.ts:247-250
Timestamp: 2025-09-04T16:23:55.891Z
Learning: In src/lib/server/job-executors/product.ts, createLocal’s catch should log the error via job.log with relevant context (projectId/productDefinitionId/storeId) and still return false to preserve the intentional “no-retry” behavior.

Applied to files:

  • src/lib/server/job-executors/build.ts
📚 Learning: 2025-09-10T13:51:14.948Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1275
File: src/routes/(authenticated)/projects/[id=idNumber]/+page.svelte:191-193
Timestamp: 2025-09-10T13:51:14.948Z
Learning: In the appbuilder-portal codebase, the `productsToAdd` property in project data is guaranteed to always be an array (possibly empty), never undefined.

Applied to files:

  • src/lib/server/job-executors/build.ts
📚 Learning: 2025-12-04T23:01:23.843Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1384
File: src/lib/server/workflow/index.ts:92-103
Timestamp: 2025-12-04T23:01:23.843Z
Learning: In src/lib/server/workflow/index.ts, the Workflow.create method intentionally creates a snapshot before creating product transitions (around line 83) and another after starting the flow (around line 103). The first snapshot is required to prevent errors when the initial state is Product Build (as in Rebuild workflows). The second snapshot ensures the user tasks job has up-to-date information after transitions are created and the flow is started.

Applied to files:

  • src/lib/server/job-executors/build.ts
  • src/lib/server/workflow/index.ts
  • src/lib/products/server.ts
  • src/lib/server/workflow/state-machine.ts
📚 Learning: 2025-09-25T19:59:36.396Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(authenticated)/projects/[filter=projectSelector]/[orgId=idNumber]/+page.server.ts:22-29
Timestamp: 2025-09-25T19:59:36.396Z
Learning: In the AppBuilder portal project, the Security type is declared globally in src/app.d.ts and does not need to be explicitly imported when used in TypeScript files throughout the application.

Applied to files:

  • src/app.d.ts
📚 Learning: 2025-09-12T14:07:02.200Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/routes/(authenticated)/tasks/[product_id]/+page.server.ts:285-303
Timestamp: 2025-09-12T14:07:02.200Z
Learning: In src/routes/(authenticated)/tasks/[product_id]/+page.server.ts, FyreByrd prefers to optimize filterAvailableActions by creating Sets at the caller level rather than inside the function, so the function would take Set<number> arguments instead of arrays for better performance and separation of concerns.

Applied to files:

  • src/routes/(authenticated)/products/[id]/files/+page.server.ts
  • src/lib/products/server.ts
  • src/lib/server/job-executors/userTasks.ts
  • src/routes/(authenticated)/projects/[id=idNumber]/+page.server.ts
📚 Learning: 2025-09-12T14:57:08.647Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/routes/(authenticated)/tasks/[product_id]/+page.server.ts:252-264
Timestamp: 2025-09-12T14:57:08.647Z
Learning: In src/routes/(authenticated)/tasks/[product_id]/+page.server.ts, FyreByrd prefers to use transition.target[0] prediction mechanism for determining post-send state rather than calling flow.state() after flow.send() due to race condition concerns. The prediction approach is sufficient for redirect decisions between staying on task page vs going to projects page.

Applied to files:

  • src/routes/(authenticated)/products/[id]/files/+page.server.ts
  • src/routes/(authenticated)/projects/[id=idNumber]/+page.server.ts
  • src/lib/server/workflow/state-machine.ts
📚 Learning: 2025-09-10T13:46:43.497Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1275
File: src/auth.ts:240-245
Timestamp: 2025-09-10T13:46:43.497Z
Learning: In src/auth.ts, the products branch intentionally uses params.id as a string for database lookups, not as a number. This is the correct behavior and should not be changed to numeric parsing.

Applied to files:

  • src/routes/(authenticated)/products/[id]/files/+page.server.ts
📚 Learning: 2025-10-13T17:26:55.905Z
Learnt from: chrisvire
Repo: sillsdev/appbuilder-portal PR: 1343
File: src/routes/(unauthenticated)/api/auth/token/+server.ts:15-19
Timestamp: 2025-10-13T17:26:55.905Z
Learning: In src/routes/(unauthenticated)/api/auth/token/+server.ts, the GET handler correctly uses requireNothing() at the beginning because this endpoint initiates the authentication flow for AppBuilders. Auth establishment endpoints should allow unauthenticated access initially, as users may need to be redirected to login.

Applied to files:

  • src/routes/(authenticated)/products/[id]/files/+page.server.ts
📚 Learning: 2025-09-22T14:59:53.366Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(authenticated)/projects/[filter=projectSelector]/[orgId=idNumber]/+page.server.ts:214-221
Timestamp: 2025-09-22T14:59:53.366Z
Learning: In the AppBuilder portal, bulk project actions in the route `/projects/[filter=projectSelector]/[orgId=idNumber]/+page.server.ts` are organization-scoped by design. The route parameter `[orgId=idNumber]` ensures all operations happen within a single organization context, so using the route-level orgId for all projects in bulk actions like `doProjectAction` is correct and safe.

Applied to files:

  • src/routes/(authenticated)/products/[id]/files/+page.server.ts
  • src/routes/(authenticated)/projects/[id=idNumber]/+page.server.ts
📚 Learning: 2025-09-12T14:02:04.558Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/lib/server/workflow/index.ts:52-74
Timestamp: 2025-09-12T14:02:04.558Z
Learning: In the appbuilder-portal codebase, when a Product exists, it always has an associated Project relationship. The Project._count fields (Authors, Reviewers) are safe to access directly when the Product query returns a result.

Applied to files:

  • src/lib/server/job-executors/userTasks.ts
  • src/lib/projects/sse.ts
🧬 Code graph analysis (5)
src/lib/products/server.ts (1)
src/lib/server/workflow/index.ts (1)
  • Workflow (36-582)
src/lib/server/job-executors/userTasks.ts (2)
src/lib/server/database/prisma.ts (1)
  • DatabaseReads (22-22)
src/lib/server/database/index.ts (1)
  • DatabaseWrites (68-71)
src/lib/server/job-executors/email.ts (4)
src/lib/server/job-executors/build.ts (1)
  • product (11-131)
src/lib/server/job-executors/publish.ts (1)
  • product (10-158)
src/lib/server/email-service/locales/locale.ts (1)
  • translate (35-54)
src/lib/server/email-service/EmailTemplates.ts (3)
  • addProperties (23-36)
  • ReviewProductTemplate (19-19)
  • NotificationTemplate (14-14)
src/lib/server/workflow/state-machine.ts (1)
src/lib/server/bullmq/queues.ts (1)
  • getQueues (150-155)
src/lib/server/job-executors/system.ts (2)
src/lib/server/database/prisma.ts (1)
  • DatabaseReads (22-22)
src/lib/server/database/index.ts (1)
  • DatabaseWrites (68-71)
🔇 Additional comments (22)
src/lib/server/email-service/locales/en-us.json (1)

44-44: Clean removal of retryBuild infrastructure from locale strings.

The removal of retryBuild notification entries from both notifications.body and notifications.subject is correctly implemented, with proper JSON formatting (no trailing commas on the final entries in each section). The recordNotFound entries serve as appropriate fallback messages for missing record scenarios and align well with the broader PR objective to simplify retry-based workflows.

Also applies to: 85-85

src/lib/components/settings/Toggle.svelte (1)

47-48: Icon order & active-state styling may invert visual on/off semantics

Swapping the order and color="white" between onIcon and offIcon will change which icon is emphasized and potentially which one appears in the “on” vs “off” state, depending on how .toggle is styled (e.g., sibling selectors or first/last-child rules). Please double-check the rendered toggle in both states to ensure this matches the intended design for all usages of Toggle.

src/lib/server/job-executors/system.ts (1)

157-196: The current design handles versioning correctly; race conditions are unlikely and error handling is atomic.

The pre-fetch at line 157 combined with subsequent updates is safe given BullMQ's default concurrency of 1 for this worker, so concurrent execution is not a concern. The lack of try-catch is intentional—if any database operation fails, the job fails atomically rather than leaving partial updates. If partial-failure tolerance is desired (updating some versions while skipping failed ones), consider using Promise.allSettled() instead of Promise.all() and filtering for errors.

src/lib/server/job-executors/userTasks.ts (2)

6-6: LGTM: Type-only import is appropriate.

The change to a type-only import for RoleId is correct since it's only used for type assertions (line 151) and not as a runtime value. This improves tree-shaking and makes the type-level usage explicit.


28-28: LGTM: Removal of unused field improves query efficiency.

The OrganizationId field is not referenced anywhere in the function body, so removing it from the select clause is a good optimization.

src/lib/projects/sse.ts (1)

36-40: Select ApplicationTypeId instead of Description for the filter

The concern about using Description as a filter is valid—descriptions are typically non-unique and fragile for filtering. However, the current code is actually using valid Prisma syntax for a to-one relation filter (not a list relation), so the suggestion to use some: { ... } is incorrect and would cause a type error.

Instead, update the select to include the Id:

          ApplicationType: {
            select: {
+             Id: true,
              Description: true
            }
          },

Then filter by the relation's Id directly (without some, which applies only to list relations):

      const productDefinitions = (
        await DatabaseReads.organizationProductDefinitions.findMany({
          where: {
            OrganizationId: project.OrganizationId,
            ProductDefinition: {
-             ApplicationTypes: project.ApplicationType
+             ApplicationTypes: {
+               Id: project.ApplicationType.Id
+             }
            }
          },

Likely an incorrect or invalid review comment.

src/lib/server/job-executors/email.ts (2)

56-95: Product fetch, artifact URL extraction, and comment-aware messageId look solid; verify i18n coverage

The switch to including Project (with Organization, Reviewers, Owner), ProductArtifacts, and ProductDefinition plus deriving URLs via ProductArtifacts.find(...) is correct and clearer, and using product.WorkflowComment to append WithComment to messageId and populate comment in properties keeps email content aligned with stored workflow state.

Please double‑check that all notifications.subject.* / notifications.body.* keys exist for the new *WithComment variants (e.g., reviewProductWithComment, reviewPwaProductWithComment, etc.) so we don’t hit missing-translation or template-property errors at runtime.


239-248: Low‑priority super‑admin emails now ignore link and always use NotificationTemplate; ensure callers embed links in the body

Always using NotificationTemplate and dropping LinkUrl / UrlText parameters simplifies this path and avoids dependency on the link-specific template, assuming any URLs are now baked into the localized notifications.body.<messageKey> strings via messageProperties.

Please confirm that no existing producers of NotifySuperAdminsLowPriority still expect a clickable link supplied via a separate link field; if they do, their templates or message properties will need updating to keep the link visible.

src/routes/(authenticated)/projects/[id=idNumber]/modals/Properties.svelte (1)

80-83: Event wiring for compute type selection/default looks good

The onchange handler calling updateComputeType(e.currentTarget.value as ComputeType) together with bind:value={computeType}, and the "Default" button calling updateComputeType() are consistent and keep the select and JSON in sync once the parsing issue above is addressed. No changes needed here from a logic standpoint.

Also applies to: 113-114

src/routes/(authenticated)/tasks/[product_id]/instructions/Verify_And_Publish.svelte (1)

10-16: LGTM!

The documentation URL update to scriptoria.io/docs is consistent with the broader domain consolidation across the PR.

.github/workflows/setup.yml (2)

154-154: LGTM!

The double-quote formatting for environment variable values is a minor style consistency improvement.


182-184: LGTM!

Consistent quoting style for test environment variables.

src/routes/(authenticated)/tasks/[product_id]/instructions/GooglePlay_Verify_And_Publish.svelte (1)

14-18: LGTM!

The documentation URL update to scriptoria.io/docs is consistent with the broader domain consolidation, and the single-line anchor formatting improves readability.

src/lib/server/job-executors/build.ts (3)

8-8: LGTM!

Import simplified to only include fetchPackageName, consistent with the removal of compute-type management functionality.


151-153: LGTM!

The Properties field was removed from the query as it's no longer needed after removing the compute-type retry logic.


279-285: The structured comment format is handled correctly downstream.

The TaskComment component (src/lib/products/components/TaskComment.svelte) explicitly parses the system.build-failed,{consoleText} format, extracting the URL and presenting it as a clickable link to the console text. The change is compatible with existing downstream processing.

src/lib/server/workflow/state-machine.ts (1)

767-772: The code change is correct. The type definition for Email.SendNotificationToReviewers at src/lib/server/bullmq/types.ts:234-236 only requires type and productId fields—no comment field exists in the interface. The payload being sent matches the type definition exactly.

src/routes/(authenticated)/tasks/[product_id]/instructions/GooglePlay_Configuration.svelte (1)

4-35: Content and link updates look consistent

The revised navigation text, Play listing wording, keystore guidance, and updated documentation URL all look coherent and consistent with the rest of the instructions. No code-level issues here.

src/routes/(authenticated)/projects/[id=idNumber]/+page.server.ts (1)

56-57: Rebuild toggles are now dev-only

showRebuildToggles is restricted to env.NODE_ENV === 'development', which will hide these controls in staging/preview/prod regardless of any APP_ENV-style flags you may have. If you still need to exercise rebuild toggles outside local dev, consider widening this condition (e.g., to include specific non-prod environments).

src/lib/products/server.ts (1)

7-11: Comment propagation through product actions looks correct

The extended doProductAction signature with comment?: string cleanly threads the comment into Workflow.create for Rebuild/Republish and into the CancelWorkflow ProductTransitions record. Existing call sites that don’t care about comments remain compatible since the parameter is optional.

Also applies to: 53-61, 81-88

src/routes/(authenticated)/+layout.svelte (1)

220-229: Admin software-update nav and help URL change are consistent

The new /software-update nav item is correctly gated by the existing admin check, uses isUrlActive/activeOrgUrl, and follows the same drawer-close pattern as other admin links. The updated Help link URL is a straightforward target change with no code-side impact.

Also applies to: 341-344

src/lib/server/workflow/index.ts (1)

51-56: Workflow comment plumbing and state-change simplification look sound

The optional comment parameter on Workflow.create is correctly persisted on the initial StartWorkflow transition and then reused via inspect/updateProductTransitions and the UserTasks update job. The stateChange simplification to a straight state-name comparison, along with the adjusted visualization logic for transitions without explicit targets, is consistent with the removal of retry-specific behavior and shouldn’t affect normal flows.

Also applies to: 90-96, 237-261, 287-287, 355-359

Comment thread src/lib/server/build-engine-api/types.ts Outdated
Comment thread src/lib/server/build-engine-api/types.ts Outdated
Comment thread src/lib/server/job-executors/system.ts Outdated
Comment thread src/routes/(authenticated)/projects/[id=idNumber]/modals/Properties.svelte Outdated
@becca-perk becca-perk force-pushed the feature/software-update-rebuild branch from 2cb79b0 to 550a6a0 Compare December 15, 2025 15:52
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

♻️ Duplicate comments (2)
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (2)

98-127: Optimize N+1 query pattern.

Lines 104-114 execute a separate systemVersions.findUnique query for each product, creating an N+1 performance problem that will degrade significantly as the number of eligible products grows.

Fetch all required SystemVersions in a single query upfront, then perform in-memory lookups:

  const productsForRebuild: ProductToRebuild[] = [];

+  // Fetch all unique SystemVersions needed
+  const uniqueKeys = Array.from(
+    new Set(
+      eligibleProducts.map(
+        (p) => `${p.Project.Organization.BuildEngineUrl ?? ''}|${p.Project.TypeId}`
+      )
+    )
+  );
+  
+  const systemVersionsRaw = await DatabaseReads.systemVersions.findMany({
+    where: {
+      OR: uniqueKeys.map((key) => {
+        const [buildEngineUrl, typeIdStr] = key.split('|');
+        return {
+          BuildEngineUrl: buildEngineUrl,
+          ApplicationTypeId: Number(typeIdStr)
+        };
+      })
+    },
+    select: {
+      BuildEngineUrl: true,
+      ApplicationTypeId: true,
+      Version: true
+    }
+  });
+
+  // Create lookup map
+  const systemVersionsMap = new Map(
+    systemVersionsRaw.map((sv) => 
+      [`${sv.BuildEngineUrl}|${sv.ApplicationTypeId}`, sv.Version]
+    )
+  );

  // 2. Iterate through eligible products to perform the cross-model version check.
  for (const product of eligibleProducts) {
    const latestProductBuild = product.ProductBuilds[0];
    const latestVersion = latestProductBuild?.AppBuilderVersion ?? null;

-    // Get the required SystemVersion for this specific project's type and organization's build engine URL.
-    const requiredSystemVersion = await DatabaseReads.systemVersions.findUnique({
-      where: {
-        BuildEngineUrl_ApplicationTypeId: {
-          BuildEngineUrl: product.Project.Organization.BuildEngineUrl ?? '',
-          ApplicationTypeId: product.Project.TypeId
-        }
-      },
-      select: {
-        Version: true
-      }
-    });
-
-    const requiredVersion = requiredSystemVersion?.Version ?? null;
+    // Look up the required SystemVersion from the map
+    const key = `${product.Project.Organization.BuildEngineUrl ?? ''}|${product.Project.TypeId}`;
+    const requiredVersion = systemVersionsMap.get(key) ?? null;

    // 3. Apply the final filtering logic:

140-141: Fix inverted security check logic.

The security check conditions are backwards:

  • Line 140: When params.orgId exists (truthy), it calls requireAdminOfOrgIn(searchOrgs) checking admin rights for all orgs
  • Line 141: When params.orgId is missing, it calls requireAdminOfOrg(Number(params.orgId)) which evaluates to requireAdminOfOrg(NaN) and will fail

This is the opposite of the correct logic in the start action (lines 174-175).

Apply this diff to match the correct logic in the start action:

  // Determine what organizations are being affected
  const searchOrgs = await getOrganizations(locals, params);
-  if (Number(params.orgId)) locals.security.requireAdminOfOrgIn(searchOrgs);
-  else locals.security.requireAdminOfOrg(Number(params.orgId));
+  if (isNaN(Number(params.orgId))) locals.security.requireAdminOfOrgIn(searchOrgs);
+  else locals.security.requireAdminOfOrg(Number(params.orgId));
🧹 Nitpick comments (1)
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (1)

28-36: Remove redundant RoleId.SuperAdmin from the filter.

Line 31 includes RoleId.SuperAdmin in the role filter, but super admins have already returned early at line 21-26. This filter will only execute for non-super-admin users, making the SuperAdmin inclusion redundant.

Apply this diff:

  const roles = await DatabaseReads.userRoles.findMany({
    where: {
      UserId: locals.security.userId,
-      RoleId: { in: [RoleId.SuperAdmin, RoleId.OrgAdmin] }
+      RoleId: RoleId.OrgAdmin
    },
    select: { OrganizationId: true }
  });
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 2cb79b0 and 550a6a0.

📒 Files selected for processing (8)
  • src/lib/locales/en-US.json (1 hunks)
  • src/lib/locales/es-419.json (1 hunks)
  • src/lib/locales/fr-FR.json (1 hunks)
  • src/lib/products/server.ts (3 hunks)
  • src/lib/server/workflow/index.ts (2 hunks)
  • src/routes/(authenticated)/+layout.svelte (1 hunks)
  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (1 hunks)
  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (6)
  • src/lib/products/server.ts
  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte
  • src/lib/locales/fr-FR.json
  • src/lib/server/workflow/index.ts
  • src/routes/(authenticated)/+layout.svelte
  • src/lib/locales/es-419.json
🧰 Additional context used
🧠 Learnings (14)
📚 Learning: 2025-09-12T14:07:02.200Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/routes/(authenticated)/tasks/[product_id]/+page.server.ts:285-303
Timestamp: 2025-09-12T14:07:02.200Z
Learning: In src/routes/(authenticated)/tasks/[product_id]/+page.server.ts, FyreByrd prefers to optimize filterAvailableActions by creating Sets at the caller level rather than inside the function, so the function would take Set<number> arguments instead of arrays for better performance and separation of concerns.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-22T14:59:53.366Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(authenticated)/projects/[filter=projectSelector]/[orgId=idNumber]/+page.server.ts:214-221
Timestamp: 2025-09-22T14:59:53.366Z
Learning: In the AppBuilder portal, bulk project actions in the route `/projects/[filter=projectSelector]/[orgId=idNumber]/+page.server.ts` are organization-scoped by design. The route parameter `[orgId=idNumber]` ensures all operations happen within a single organization context, so using the route-level orgId for all projects in bulk actions like `doProjectAction` is correct and safe.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-12T14:57:08.647Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/routes/(authenticated)/tasks/[product_id]/+page.server.ts:252-264
Timestamp: 2025-09-12T14:57:08.647Z
Learning: In src/routes/(authenticated)/tasks/[product_id]/+page.server.ts, FyreByrd prefers to use transition.target[0] prediction mechanism for determining post-send state rather than calling flow.state() after flow.send() due to race condition concerns. The prediction approach is sufficient for redirect decisions between staying on task page vs going to projects page.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-12T14:31:23.906Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/lib/server/workflow/index.ts:52-74
Timestamp: 2025-09-12T14:31:23.906Z
Learning: In the appbuilder-portal codebase, optional chaining in database queries (like `check?.Project._count.Authors`) is primarily used to satisfy TypeScript's type checker rather than handling expected null cases. The `check` being null should realistically never happen in the normal application flow.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-22T15:00:43.129Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(authenticated)/users/[id=idNumber]/settings/+layout.server.ts:7-10
Timestamp: 2025-09-22T15:00:43.129Z
Learning: In user settings layouts, use the `adminOrgs` function from `$lib/users/server` to determine admin access rather than throwing 403 errors upfront. The `adminOrgs` function creates a filter that returns organizations where the subject user is a member AND the current user is an admin of that organization.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-25T19:44:14.845Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(authenticated)/projects/import/[id=idNumber]/+page.server.ts:24-26
Timestamp: 2025-09-25T19:44:14.845Z
Learning: The `requireHasRole(organizationId, roleId, orOrgAdmin)` method in the Security class allows organization admins to pass role checks when the third parameter `orOrgAdmin` is set to `true`, even if they don't have the specific role being checked for.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-17T21:07:18.139Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1275
File: src/lib/projects/index.ts:183-201
Timestamp: 2025-09-17T21:07:18.139Z
Learning: In the AppBuilder portal project, org admins must be in the project group to claim/take ownership of projects. This is enforced both in client-side logic (canClaimProject function) and server-side validation.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-10-01T15:58:37.578Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1317
File: src/routes/(authenticated)/users/+page.svelte:51-55
Timestamp: 2025-10-01T15:58:37.578Z
Learning: In the appbuilder-portal codebase, the $orgActive store (from $lib/stores) is designed to always contain a valid organization ID and should never be null. Code that syncs values to $orgActive should include guard clauses to prevent null assignments.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-10T13:46:43.497Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1275
File: src/auth.ts:240-245
Timestamp: 2025-09-10T13:46:43.497Z
Learning: In src/auth.ts, the products branch intentionally uses params.id as a string for database lookups, not as a number. This is the correct behavior and should not be changed to numeric parsing.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-10-02T01:36:08.124Z
Learnt from: 7dev7urandom
Repo: sillsdev/appbuilder-portal PR: 1318
File: src/lib/components/OrganizationDropdown.svelte:30-39
Timestamp: 2025-10-02T01:36:08.124Z
Learning: In the `src/lib/components/OrganizationDropdown.svelte` component, the `organizations` array will always contain at least one organization, so there's no need to handle the empty array case.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-04T14:26:59.326Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1227
File: src/lib/server/job-executors/product.ts:247-250
Timestamp: 2025-09-04T14:26:59.326Z
Learning: In src/lib/server/job-executors/product.ts, the createLocal function's catch block returns false instead of rethrowing errors. This was implemented intentionally to fix another issue, so any changes to this error handling should be carefully evaluated for downstream impacts.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-10T13:51:14.948Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1275
File: src/routes/(authenticated)/projects/[id=idNumber]/+page.svelte:191-193
Timestamp: 2025-09-10T13:51:14.948Z
Learning: In the appbuilder-portal codebase, the `productsToAdd` property in project data is guaranteed to always be an array (possibly empty), never undefined.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-25T03:51:13.814Z
Learnt from: 7dev7urandom
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(unauthenticated)/invitations/organization-membership/+page.server.ts:7-8
Timestamp: 2025-09-25T03:51:13.814Z
Learning: In the organization invitation flow in src/routes/(unauthenticated)/invitations/organization-membership/+page.server.ts, the checkInviteErrors function properly handles null/undefined invite tokens by accepting inviteToken?: string | null and having an explicit guard clause if (!inviteToken) return { error: 'not found' }, making the non-null assertion on searchParams.get('t')! safe since error handling is centralized.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-25T03:51:13.814Z
Learnt from: 7dev7urandom
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(unauthenticated)/invitations/organization-membership/+page.server.ts:7-8
Timestamp: 2025-09-25T03:51:13.814Z
Learning: In the organization invitation flow in src/routes/(unauthenticated)/invitations/organization-membership/+page.server.ts, the checkInviteErrors function handles validation of invite tokens including null/undefined cases, so non-null assertion on searchParams.get('t') is safe because error handling is centralized in checkInviteErrors.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
🧬 Code graph analysis (1)
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (2)
src/lib/server/database/prisma.ts (1)
  • DatabaseReads (22-22)
src/lib/products/server.ts (1)
  • doProductAction (7-97)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: checks / build-and-test
🔇 Additional comments (3)
src/lib/locales/en-US.json (1)

559-567: LGTM!

The localization keys are well-structured and align with the new admin software update feature. The key names follow existing conventions and clearly indicate their purpose.

src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (2)

39-46: LGTM!

The function correctly handles both cases: when a specific organization ID is provided via route parameter, and when it's missing (in which case it determines all target organizations).


165-186: LGTM!

The action handler correctly validates the form, performs proper security checks (lines 174-175), fetches eligible products, and triggers rebuilds in parallel using Promise.all. The logic is sound and efficient.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

♻️ Duplicate comments (2)
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (2)

98-127: N+1 query pattern persists.

The loop on lines 99-127 still performs a database query per product (DatabaseReads.systemVersions.findUnique on line 104). This was flagged in a previous review and marked as addressed, but the code still exhibits the N+1 pattern.

Consider batching the SystemVersion lookups as previously suggested: fetch all unique (BuildEngineUrl, ApplicationTypeId) pairs upfront, then use an in-memory map for lookups.


140-141: Security check logic is inverted.

The security check logic here is backwards compared to the correct implementation in the start action (lines 209-210):

  • Line 140: When params.orgId is a valid number (truthy), it calls requireAdminOfOrgIn(searchOrgs) instead of requireAdminOfOrg
  • Line 141: When params.orgId is undefined/NaN (falsy), it calls requireAdminOfOrg(NaN) which will always fail

This was previously flagged and appears unresolved.

Proposed fix
   const searchOrgs = await getOrganizations(locals, params);
-  if (Number(params.orgId)) locals.security.requireAdminOfOrgIn(searchOrgs);
-  else locals.security.requireAdminOfOrg(Number(params.orgId));
+  if (isNaN(Number(params.orgId))) locals.security.requireAdminOfOrgIn(searchOrgs);
+  else locals.security.requireAdminOfOrg(Number(params.orgId));
🧹 Nitpick comments (3)
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte (1)

51-80: Hardcoded English text should be localized.

Several strings are hardcoded in English which breaks i18n consistency:

  • Line 52: "Update Summary"
  • Line 61: "Projects:"
  • Line 65: "Products:"
  • Line 70: "Project Names:"
  • Line 76: "Target Versions:"

Additionally, the pluralization logic on lines 62 and 66 (!== 1 ? 's' : '') is English-specific and won't work correctly for other languages. Consider using a proper i18n pluralization function.

src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (2)

153-182: Consider consolidating database queries.

There are multiple sequential queries that could be optimized:

  1. getProductsForRebuild already fetches product/project data
  2. Line 157-170 re-fetches products just to get Project.Name
  3. Line 174-182 re-fetches projects by ID

Consider extending getProductsForRebuild to include Project.Name in its select clause, eliminating the need for the subsequent queries.

Proposed optimization sketch
// In getProductsForRebuild, add Name to Project select:
      Project: {
        select: {
          TypeId: true,
+         Name: true,
          Organization: {
            select: {
              BuildEngineUrl: true
            }
          }
        }
      }

// Then return project info along with product data, eliminating
// the need for separate affectedProducts and projects queries in load()

220-224: Consider error handling for partial rebuild failures.

Promise.all will reject immediately if any doProductAction call fails, potentially leaving the operation in an inconsistent state where some products started rebuilding and others didn't.

Consider using Promise.allSettled to handle partial failures gracefully, or wrap with try-catch to provide meaningful feedback about which products failed.

Example with Promise.allSettled
-   await Promise.all(
-     productsToRebuild.map((p) =>
-       doProductAction(p.id, ProductActionType.Rebuild, form.data.comment)
-     )
-   );
+   const results = await Promise.allSettled(
+     productsToRebuild.map((p) =>
+       doProductAction(p.id, ProductActionType.Rebuild, form.data.comment)
+     )
+   );
+   
+   const failedCount = results.filter((r) => r.status === 'rejected').length;
+   if (failedCount > 0) {
+     // Log or handle partial failures
+     console.warn(`${failedCount} of ${productsToRebuild.length} rebuilds failed to start`);
+   }
📜 Review details

Configuration used: defaults

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 550a6a0 and 0a1b509.

📒 Files selected for processing (2)
  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (1 hunks)
  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte (1 hunks)
🧰 Additional context used
🧠 Learnings (13)
📚 Learning: 2025-09-12T14:07:02.200Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/routes/(authenticated)/tasks/[product_id]/+page.server.ts:285-303
Timestamp: 2025-09-12T14:07:02.200Z
Learning: In src/routes/(authenticated)/tasks/[product_id]/+page.server.ts, FyreByrd prefers to optimize filterAvailableActions by creating Sets at the caller level rather than inside the function, so the function would take Set<number> arguments instead of arrays for better performance and separation of concerns.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-22T14:59:53.366Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(authenticated)/projects/[filter=projectSelector]/[orgId=idNumber]/+page.server.ts:214-221
Timestamp: 2025-09-22T14:59:53.366Z
Learning: In the AppBuilder portal, bulk project actions in the route `/projects/[filter=projectSelector]/[orgId=idNumber]/+page.server.ts` are organization-scoped by design. The route parameter `[orgId=idNumber]` ensures all operations happen within a single organization context, so using the route-level orgId for all projects in bulk actions like `doProjectAction` is correct and safe.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-12T14:57:08.647Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/routes/(authenticated)/tasks/[product_id]/+page.server.ts:252-264
Timestamp: 2025-09-12T14:57:08.647Z
Learning: In src/routes/(authenticated)/tasks/[product_id]/+page.server.ts, FyreByrd prefers to use transition.target[0] prediction mechanism for determining post-send state rather than calling flow.state() after flow.send() due to race condition concerns. The prediction approach is sufficient for redirect decisions between staying on task page vs going to projects page.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-12T14:31:23.906Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/lib/server/workflow/index.ts:52-74
Timestamp: 2025-09-12T14:31:23.906Z
Learning: In the appbuilder-portal codebase, optional chaining in database queries (like `check?.Project._count.Authors`) is primarily used to satisfy TypeScript's type checker rather than handling expected null cases. The `check` being null should realistically never happen in the normal application flow.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-22T15:00:43.129Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(authenticated)/users/[id=idNumber]/settings/+layout.server.ts:7-10
Timestamp: 2025-09-22T15:00:43.129Z
Learning: In user settings layouts, use the `adminOrgs` function from `$lib/users/server` to determine admin access rather than throwing 403 errors upfront. The `adminOrgs` function creates a filter that returns organizations where the subject user is a member AND the current user is an admin of that organization.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-25T19:44:14.845Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(authenticated)/projects/import/[id=idNumber]/+page.server.ts:24-26
Timestamp: 2025-09-25T19:44:14.845Z
Learning: The `requireHasRole(organizationId, roleId, orOrgAdmin)` method in the Security class allows organization admins to pass role checks when the third parameter `orOrgAdmin` is set to `true`, even if they don't have the specific role being checked for.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-17T21:07:18.139Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1275
File: src/lib/projects/index.ts:183-201
Timestamp: 2025-09-17T21:07:18.139Z
Learning: In the AppBuilder portal project, org admins must be in the project group to claim/take ownership of projects. This is enforced both in client-side logic (canClaimProject function) and server-side validation.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-10-01T15:58:37.578Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1317
File: src/routes/(authenticated)/users/+page.svelte:51-55
Timestamp: 2025-10-01T15:58:37.578Z
Learning: In the appbuilder-portal codebase, the $orgActive store (from $lib/stores) is designed to always contain a valid organization ID and should never be null. Code that syncs values to $orgActive should include guard clauses to prevent null assignments.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-10T13:46:43.497Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1275
File: src/auth.ts:240-245
Timestamp: 2025-09-10T13:46:43.497Z
Learning: In src/auth.ts, the products branch intentionally uses params.id as a string for database lookups, not as a number. This is the correct behavior and should not be changed to numeric parsing.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-10-02T01:36:08.124Z
Learnt from: 7dev7urandom
Repo: sillsdev/appbuilder-portal PR: 1318
File: src/lib/components/OrganizationDropdown.svelte:30-39
Timestamp: 2025-10-02T01:36:08.124Z
Learning: In the `src/lib/components/OrganizationDropdown.svelte` component, the `organizations` array will always contain at least one organization, so there's no need to handle the empty array case.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte
📚 Learning: 2025-09-04T14:26:59.326Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1227
File: src/lib/server/job-executors/product.ts:247-250
Timestamp: 2025-09-04T14:26:59.326Z
Learning: In src/lib/server/job-executors/product.ts, the createLocal function's catch block returns false instead of rethrowing errors. This was implemented intentionally to fix another issue, so any changes to this error handling should be carefully evaluated for downstream impacts.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-25T03:51:13.814Z
Learnt from: 7dev7urandom
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(unauthenticated)/invitations/organization-membership/+page.server.ts:7-8
Timestamp: 2025-09-25T03:51:13.814Z
Learning: In the organization invitation flow in src/routes/(unauthenticated)/invitations/organization-membership/+page.server.ts, the checkInviteErrors function properly handles null/undefined invite tokens by accepting inviteToken?: string | null and having an explicit guard clause if (!inviteToken) return { error: 'not found' }, making the non-null assertion on searchParams.get('t')! safe since error handling is centralized.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
📚 Learning: 2025-09-25T03:51:13.814Z
Learnt from: 7dev7urandom
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/routes/(unauthenticated)/invitations/organization-membership/+page.server.ts:7-8
Timestamp: 2025-09-25T03:51:13.814Z
Learning: In the organization invitation flow in src/routes/(unauthenticated)/invitations/organization-membership/+page.server.ts, the checkInviteErrors function handles validation of invite tokens including null/undefined cases, so non-null assertion on searchParams.get('t') is safe because error handling is centralized in checkInviteErrors.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts
🧬 Code graph analysis (1)
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (2)
src/lib/server/database/prisma.ts (1)
  • DatabaseReads (22-22)
src/lib/products/server.ts (1)
  • doProductAction (7-97)
🪛 GitHub Check: checks / typecheck-lint
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte

[failure] 19-19:
Unexpected any. Specify a different type


[warning] 5-5:
$lib/components/settings/DataDisplayBox.svelte import should occur before import of $lib/components/settings/LabeledFormInput.svelte

⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: checks / build-and-test
🔇 Additional comments (1)
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.server.ts (1)

20-37: LGTM!

The helper functions correctly handle the super admin case by fetching all organizations, and for regular admins, properly query user roles filtered by RoleId.SuperAdmin and RoleId.OrgAdmin. The use of Set to deduplicate organization IDs is appropriate.

Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte Outdated
Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte Outdated
@becca-perk
Copy link
Copy Markdown
Contributor

I added some enhancements to the UI that were suggested here: #1249 (comment)

However, I am still having trouble testing it because we are still not able to publish the build, and I believe that is required for the rebuilds.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

♻️ Duplicate comments (2)
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte (2)

17-31: Define a proper type for the server response instead of as any.

The type assertion on line 19 bypasses TypeScript's type safety. This was previously flagged and a solution was proposed.

🔎 Proposed fix
+interface RebuildResponse {
+  ok?: boolean;
+  initiatedBy?: string;
+  comment?: string;
+  productCount?: number;
+  timestamp?: string;
+}
+
 const { form, enhance, reset } = superForm(data.form, {
   resetForm: false,
   onUpdated({ form }) {
-    // Type assertion to access server action response properties
-    const response = form.data as any;
+    const response = form.data as RebuildResponse;
     if (form.valid && response.ok) {

104-122: Fix wrong localization key and hardcoded strings in summary display.

This section has multiple localization issues already flagged in previous reviews:

  1. Line 109 uses admin_software_update_affected_organizations as the key but displays summary.initiatedBy - semantically incorrect
  2. "Rebuild Started" (line 106) and "Products Rebuilding:" (line 119) are hardcoded English
🔎 Proposed fix
 <DataDisplayBox
-  title="Rebuild Started"
+  title={m.admin_software_update_rebuild_started()}
   fields={[
     {
-      key: 'admin_software_update_affected_organizations',
+      key: 'admin_software_update_initiated_by',
       value: summary.initiatedBy
     },
     {
       key: 'admin_nav_software_update_comment',
       value: summary.comment
     }
   ]}
 >
   <p style="padding-left: 1rem; text-indent: -1rem">
-    <b>Products Rebuilding:</b>
+    <b>{m.admin_software_update_products_rebuilding()}:</b>
     {summary.productCount ?? 0}
   </p>

Add the corresponding keys to your locale files.

🧹 Nitpick comments (1)
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte (1)

50-80: Localize hardcoded English labels in the Update Summary section.

Several labels are hardcoded in English and should use localization keys for consistency:

  • "Update Summary" (line 52)
  • "Projects:" (line 61)
  • "Products:" (line 65)
  • "Project Names:" (line 70)
  • "Target Versions:" (line 76)
🔎 Suggested approach

Add localization keys to your locale files and reference them:

 <DataDisplayBox
-  title="Update Summary"
+  title={m.admin_software_update_summary()}
   fields={[
     {
       key: 'admin_software_update_affected_organizations',
       value: data.organizations
     }
   ]}
 >
   <p style="padding-left: 1rem; text-indent: -1rem">
-    <b>Projects:</b>
+    <b>{m.admin_software_update_projects_label()}:</b>
     {data.affectedProjectCount} project{data.affectedProjectCount !== 1 ? 's' : ''}
   </p>
   <p style="padding-left: 1rem; text-indent: -1rem">
-    <b>Products:</b>
+    <b>{m.admin_software_update_products_label()}:</b>
     {data.affectedProductCount} product{data.affectedProductCount !== 1 ? 's' : ''}
   </p>
   {#if data.affectedProjects && data.affectedProjects.length > 0}
     <p style="padding-left: 1rem; text-indent: -1rem" class="text-sm opacity-75">
-      <b>Project Names:</b>
+      <b>{m.admin_software_update_project_names()}:</b>
       {data.affectedProjects.join(', ')}
     </p>
   {/if}
   {#if data.affectedVersions && data.affectedVersions.length > 0}
     <p style="padding-left: 1rem; text-indent: -1rem" class="text-sm opacity-75">
-      <b>Target Versions:</b>
+      <b>{m.admin_software_update_target_versions()}:</b>
       {data.affectedVersions.join(', ')}
     </p>
   {/if}
📜 Review details

Configuration used: defaults

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 0a1b509 and 694c91f.

📒 Files selected for processing (1)
  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte (1 hunks)
🧰 Additional context used
🧠 Learnings (3)
📚 Learning: 2025-10-02T01:36:08.124Z
Learnt from: 7dev7urandom
Repo: sillsdev/appbuilder-portal PR: 1318
File: src/lib/components/OrganizationDropdown.svelte:30-39
Timestamp: 2025-10-02T01:36:08.124Z
Learning: In the `src/lib/components/OrganizationDropdown.svelte` component, the `organizations` array will always contain at least one organization, so there's no need to handle the empty array case.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte
📚 Learning: 2025-09-12T14:07:02.200Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/routes/(authenticated)/tasks/[product_id]/+page.server.ts:285-303
Timestamp: 2025-09-12T14:07:02.200Z
Learning: In src/routes/(authenticated)/tasks/[product_id]/+page.server.ts, FyreByrd prefers to optimize filterAvailableActions by creating Sets at the caller level rather than inside the function, so the function would take Set<number> arguments instead of arrays for better performance and separation of concerns.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte
📚 Learning: 2025-09-22T15:01:28.480Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/lib/projects/index.ts:185-197
Timestamp: 2025-09-22T15:01:28.480Z
Learning: In the AppBuilder portal project, there's a policy inconsistency in canClaimProject: the docstring says "AppBuilder or OrgAdmin roles" but the implementation only allows OrgAdmin (via canModifyProject → isAdminForOrg). The UI code suggests AppBuilder users should have some project modification rights. This needs clarification from the maintainer.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte
🪛 GitHub Check: checks / typecheck-lint
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte

[failure] 19-19:
Unexpected any. Specify a different type

⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: checks / build-and-test

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

♻️ Duplicate comments (1)
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte (1)

112-130: Unresolved localization issues remain in the "Rebuild Started" section.

This section still contains issues previously flagged in past reviews:

  1. Line 114: "Rebuild Started" is hardcoded English and should use a localization key.
  2. Line 117: The field key 'admin_software_update_affected_organizations' is semantically incorrect—it displays summary.initiatedBy (the user who started the rebuild) but uses a key meant for organization names. This should be 'admin_software_update_initiated_by' or similar.
  3. Line 127: "Products Rebuilding:" is hardcoded English and should use a localization key.
🔎 Proposed fix
    {#if showSummary && summary}
      <DataDisplayBox
-       title="Rebuild Started"
+       title={m.admin_software_update_rebuild_started()}
        fields={[
          {
-           key: 'admin_software_update_affected_organizations',
+           key: 'admin_software_update_initiated_by',
            value: summary.initiatedBy
          },
          {
            key: 'admin_nav_software_update_comment',
            value: summary.comment
          }
        ]}
      >
        <p style="padding-left: 1rem; text-indent: -1rem">
-         <b>Products Rebuilding:</b>
+         <b>{m.admin_software_update_products_rebuilding()}</b>
          {summary.productCount ?? 0}
        </p>
      </DataDisplayBox>
    {/if}

Add the corresponding keys to your locale files.

🧹 Nitpick comments (1)
src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte (1)

34-34: Timestamp field is captured but never displayed.

Line 34 stores response.timestamp in the summary object, but this field is never rendered in the "Rebuild Started" DataDisplayBox (lines 112-131). Consider either displaying the timestamp to provide users with a complete audit trail or removing it from the summary state if it's not needed.

📜 Review details

Configuration used: defaults

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 694c91f and d76b729.

📒 Files selected for processing (1)
  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte (1 hunks)
🧰 Additional context used
🧠 Learnings (3)
📚 Learning: 2025-10-02T01:36:08.124Z
Learnt from: 7dev7urandom
Repo: sillsdev/appbuilder-portal PR: 1318
File: src/lib/components/OrganizationDropdown.svelte:30-39
Timestamp: 2025-10-02T01:36:08.124Z
Learning: In the `src/lib/components/OrganizationDropdown.svelte` component, the `organizations` array will always contain at least one organization, so there's no need to handle the empty array case.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte
📚 Learning: 2025-09-12T14:07:02.200Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1283
File: src/routes/(authenticated)/tasks/[product_id]/+page.server.ts:285-303
Timestamp: 2025-09-12T14:07:02.200Z
Learning: In src/routes/(authenticated)/tasks/[product_id]/+page.server.ts, FyreByrd prefers to optimize filterAvailableActions by creating Sets at the caller level rather than inside the function, so the function would take Set<number> arguments instead of arrays for better performance and separation of concerns.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte
📚 Learning: 2025-09-22T15:01:28.480Z
Learnt from: FyreByrd
Repo: sillsdev/appbuilder-portal PR: 1297
File: src/lib/projects/index.ts:185-197
Timestamp: 2025-09-22T15:01:28.480Z
Learning: In the AppBuilder portal project, there's a policy inconsistency in canClaimProject: the docstring says "AppBuilder or OrgAdmin roles" but the implementation only allows OrgAdmin (via canModifyProject → isAdminForOrg). The UI code suggests AppBuilder users should have some project modification rights. This needs clarification from the maintainer.

Applied to files:

  • src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: checks / build-and-test

Comment thread src/routes/(authenticated)/software-update/[[orgId=idNumber]]/+page.svelte Outdated
becca-perk and others added 23 commits April 9, 2026 12:39
Also fix: Authentication needs to handle multiple orgs properly.
…, improved UI, and SSE support for status updates
- Extend JobType enum to include SvelteSSE_UpdateSoftwareUpdates.
- Introduce UpdateSoftwareUpdates interface in SvelteProjectSSE namespace.
- Modify recordRebuilds function to handle organization-specific rebuild requests.
- Implement getRebuildsForOrgIds function to fetch rebuilds based on organization IDs.
- Update SSE endpoint to emit rebuild updates for relevant organizations.
- Enhance RebuildCard and ApplicationTypesSelector components for better display and handling of software updates.
- Refactor code for improved readability and maintainability.
Instead of passing organization IDs in a query-string parameter, use the
post body.
This avoids parsing.
This generally reduces the entire getProductsForRebuild to two
query+map/reduce operations, one to fetch the current version table and
the other to fetch and filter through products.
Once again overhauling load to further simplify the query and data
returned by it.
@judah-sotomayor judah-sotomayor force-pushed the feature/software-update-rebuild branch from 1864845 to b7c225b Compare April 10, 2026 03:08
This temporarily removes SSE functionality for the sake of making sure
MVP is there.

Basically, provide a stable framework to build on top of to provide SSE.

Queries are much simplified. The function to get rebuilds has been
redesigned to only fetch rebuilds from either one organization or every
organization the user is a member of. This streamlines the code.
I have also removed a few files and consolidated their code into other
files: sse.ts into the software-updates/index.ts file, and
ApplicationTypesSelector into a built-in section of the main
page.svelte.
Add SSE back, adjusted to take advantage of the simplified software
update functions.
Copy link
Copy Markdown
Contributor

@FyreByrd FyreByrd left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good so far. I think we will need to talk a bit about what metadata we need to keep track of, as well as a good strategy for cancelling updates.

Comment thread src/lib/server/database/SoftwareUpdates.ts
Comment thread src/routes/(authenticated)/admin/settings/+layout.svelte
Comment thread src/lib/server/database/SoftwareUpdates.ts
Comment thread src/lib/server/database/SoftwareUpdates.ts
* Checks if a specific product's successful build completes any open SoftwareUpdates.
* Called after each successful build for immediate completion detection.
*/
export async function completeForProduct(productId: string): Promise<void> {
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So, if I understand this correctly, an update is marked as complete as soon as any one product within it has been built successfully?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry to complicate things, but we may need a bit more metadata on the relation between products and software updates...

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will be resolved as per our call and discord discussion.

}

if (ok) {
const orgIds = [...new Set<number>(u.Products.map((p) => p.Project.Organization.Id))];
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this function is just for marking a single product as having completed its portion of the update, you only need to update SSE for one org.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is meant to run on the end of every product build in order to check if this product is the last one a software update is waiting for. If it is, close the software update.

Comment thread src/lib/software-updates/components/RebuildCard.svelte
Comment thread src/lib/software-updates/index.ts
{#if $errors.comment}
<span class="text-error text-sm">{m.admin_software_update_comment_required()}</span>
{/if}
<!--<span class="validator-hint">{m.admin_software_update_comment_required()}</span>-->
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@becca-perk You didn't need to make this change. This should have been fine as is and would have matched the error handling we have elsewhere.

Copy link
Copy Markdown
Contributor

@judah-sotomayor judah-sotomayor Apr 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There was an issue going on where after submitting the form for a software update the comment box would pop up a validation error saying you need a comment to submit the form. This commit was supposed to fix that, but if it's not the right approach do you have any suggestions?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you want the form to reset after it's been submitted? If so, that may be where the error is coming from... let me look into it real quick.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok. If you want to do it this way, it's probably fine. Otherwise I found one of the few locations that has a similar problem. You can look at /projects/[id]/forms/Reviewers.svelte if you want to see how I went about resolving it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

4 participants