Compare commits
36 Commits
fix/lifecy
...
feat/rpart
| Author | SHA1 | Date | |
|---|---|---|---|
| 71568e2274 | |||
| 41147f3f05 | |||
| e03d721c37 | |||
| 142ec3a150 | |||
| e8ffa6a5db | |||
| bd9f4bd3f8 | |||
| d75c468341 | |||
| a4e22e1bb8 | |||
| c2f4d8f421 | |||
| 72f8c2a3e4 | |||
| 0928559ea4 | |||
| eb18c9a122 | |||
| ae8a8046bf | |||
| 7644d91407 | |||
| 40c4d33068 | |||
|
|
fe91b504de | ||
| 3b63ae02c6 | |||
| 58ba612707 | |||
|
|
854ccbbe12 | ||
|
|
ddc223f745 | ||
| d9bc61b99e | |||
|
|
8d284f6442 | ||
| 4cae337241 | |||
|
|
dde6f6a15c | ||
|
|
3cfa3d588a | ||
|
|
02ec3856d5 | ||
| 2add2b253a | |||
|
|
56a8ea09be | ||
| 62ad9ac318 | |||
|
|
e50a907931 | ||
| ca18749ec5 | |||
|
|
330015fbb6 | ||
| 24f7e7aa5b | |||
| 5d9da95830 | |||
| 1e3f37f71e | |||
| 181bdbe971 |
9
apps/api/drizzle/0035_subscription_dunning.sql
Normal file
9
apps/api/drizzle/0035_subscription_dunning.sql
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
-- Dunning görünürlüğü: yenileme tahsilatı patlayınca (invoice.payment_failed)
|
||||||
|
-- damgalanır, fatura ödenince (invoice.paid) veya abonelik kesin iptal olunca
|
||||||
|
-- temizlenir. dunning_invoice_url = Stripe hosted fatura sayfası — kullanıcının
|
||||||
|
-- açık faturayı ödeyebileceği/yeni kart girebileceği TEK self-serve yüzey
|
||||||
|
-- (uygulamada kart-güncelleme yok; %0 dunning kurtarmanın kök nedeni buydu).
|
||||||
|
-- IF NOT EXISTS → idempotent.
|
||||||
|
ALTER TABLE "user_subscriptions" ADD COLUMN IF NOT EXISTS "dunning_since" timestamp with time zone;
|
||||||
|
--> statement-breakpoint
|
||||||
|
ALTER TABLE "user_subscriptions" ADD COLUMN IF NOT EXISTS "dunning_invoice_url" text;
|
||||||
20
apps/api/drizzle/0036_pl24_mitsubishi_partinfo_cleanup.sql
Normal file
20
apps/api/drizzle/0036_pl24_mitsubishi_partinfo_cleanup.sql
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
-- Mitsubishi'nin parça listesi grup sanılıyordu.
|
||||||
|
--
|
||||||
|
-- `/p5mitsubishi/extern/details/vinDetails` yanıtı `partno`/`qty` taşıyan bir
|
||||||
|
-- PARÇA listesi, ama her kaydın kendi linki `partInfoTable` (parça-detay) ve ne
|
||||||
|
-- wid ne de yol sınıflandırıcıda karşılık buluyordu. Sonuç: 2.193 parça listesi
|
||||||
|
-- grup düğümüne dönüştü ve içlerindeki 19.576 tekil parça ("SCREW,LOCK CYLINDER",
|
||||||
|
-- "BOLT,STEERING COLUMN WASHER") kategori olarak kaydedildi. Ölçüm (prod,
|
||||||
|
-- 2026-09-20): bu 19.576 sahte düğümün TOPLAM 2 tanesinde parça var, ve her
|
||||||
|
-- prefetch turunda yeniden çekiliyorlar.
|
||||||
|
--
|
||||||
|
-- Sınıflandırıcı düzeltildi (detailsTable artık yaprak, partInfoTable hiç
|
||||||
|
-- kuyruklanmıyor), ama okuma yolu bir düğümün ÖNCE çocuklarına bakıyor: sahte
|
||||||
|
-- çocuklar dururken parça listesi asla çekilmez. Bu yüzden satırların silinmesi
|
||||||
|
-- düzeltmenin parçası, ayrı bir temizlik değil.
|
||||||
|
--
|
||||||
|
-- Güvenli: yalnız pl24 kaynaklı ve yalnız bu iki imzayı taşıyan satırlar; ikisi
|
||||||
|
-- de prod'da %100 Mitsubishi. Silinen ~2 parça satırı üst listeden yeniden gelir.
|
||||||
|
DELETE FROM "categories"
|
||||||
|
WHERE "source" = 'pl24'
|
||||||
|
AND ("link_wid" = 'partInfoTable' OR "link_path" ILIKE '%/details/vinpartinfo%');
|
||||||
34
apps/api/drizzle/0037_rpartstore_decodes.sql
Normal file
34
apps/api/drizzle/0037_rpartstore_decodes.sql
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
-- RPartStore (rpartstore.renault.com, Renault Group dealer portal) VIN-decode
|
||||||
|
-- fallback cache (feature-flagged: RPARTSTORE_ENABLED). One row per VIN. The
|
||||||
|
-- rpartstore-decode BullMQ job asks the RPartStore BFF (STOMP over WebSocket)
|
||||||
|
-- for Renault/Dacia VINs the normal chain (pcat/PL24/emex) can't identify, then
|
||||||
|
-- matches the decoded model to an EXISTING PL24 catalog_vehicle. RPartStore is
|
||||||
|
-- ONLY a decode oracle here — parts are served from PL24's existing catalog.
|
||||||
|
-- status: 'pending' | 'decoded' | 'not_found' | 'capped' | 'failed'.
|
||||||
|
CREATE TABLE IF NOT EXISTS "rpartstore_decodes" (
|
||||||
|
"vin" text PRIMARY KEY NOT NULL,
|
||||||
|
"status" text DEFAULT 'pending' NOT NULL,
|
||||||
|
"brand_name" text,
|
||||||
|
"model" text,
|
||||||
|
"model_code" text,
|
||||||
|
"family_code" text,
|
||||||
|
"model_year" text,
|
||||||
|
"engine" text,
|
||||||
|
"gearbox" text,
|
||||||
|
"energy_type" text,
|
||||||
|
"manufacturing_date" text,
|
||||||
|
"catalog_vehicle_id" uuid,
|
||||||
|
"raw" jsonb,
|
||||||
|
"attempts" integer DEFAULT 0 NOT NULL,
|
||||||
|
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
|
||||||
|
"updated_at" timestamp with time zone,
|
||||||
|
"decoded_at" timestamp with time zone
|
||||||
|
);
|
||||||
|
--> statement-breakpoint
|
||||||
|
DO $$ BEGIN
|
||||||
|
ALTER TABLE "rpartstore_decodes" ADD CONSTRAINT "rpartstore_decodes_catalog_vehicle_id_catalog_vehicles_id_fk" FOREIGN KEY ("catalog_vehicle_id") REFERENCES "public"."catalog_vehicles"("id") ON DELETE set null ON UPDATE no action;
|
||||||
|
EXCEPTION
|
||||||
|
WHEN duplicate_object THEN null;
|
||||||
|
END $$;
|
||||||
|
--> statement-breakpoint
|
||||||
|
CREATE INDEX IF NOT EXISTS "rpartstore_decodes_status_idx" ON "rpartstore_decodes" USING btree ("status");
|
||||||
@@ -246,6 +246,27 @@
|
|||||||
"when": 1784965129879,
|
"when": 1784965129879,
|
||||||
"tag": "0034_vehicle_fully_fetched",
|
"tag": "0034_vehicle_fully_fetched",
|
||||||
"breakpoints": true
|
"breakpoints": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idx": 35,
|
||||||
|
"version": "7",
|
||||||
|
"when": 1786435493000,
|
||||||
|
"tag": "0035_subscription_dunning",
|
||||||
|
"breakpoints": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idx": 36,
|
||||||
|
"version": "7",
|
||||||
|
"when": 1786521893000,
|
||||||
|
"tag": "0036_pl24_mitsubishi_partinfo_cleanup",
|
||||||
|
"breakpoints": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idx": 37,
|
||||||
|
"version": "7",
|
||||||
|
"when": 1790332800000,
|
||||||
|
"tag": "0037_rpartstore_decodes",
|
||||||
|
"breakpoints": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -21,6 +21,7 @@ import { RolesGuard } from "./common/guards/roles.guard";
|
|||||||
import { LoggingInterceptor } from "./common/interceptors/logging.interceptor";
|
import { LoggingInterceptor } from "./common/interceptors/logging.interceptor";
|
||||||
import { TimeoutInterceptor } from "./common/interceptors/timeout.interceptor";
|
import { TimeoutInterceptor } from "./common/interceptors/timeout.interceptor";
|
||||||
import { TransformInterceptor } from "./common/interceptors/transform.interceptor";
|
import { TransformInterceptor } from "./common/interceptors/transform.interceptor";
|
||||||
|
import { TelegramModule } from "./common/telegram.module";
|
||||||
import configuration from "./config/configuration";
|
import configuration from "./config/configuration";
|
||||||
import { validate } from "./config/env.validation";
|
import { validate } from "./config/env.validation";
|
||||||
import { ContactModule } from "./contact/contact.module";
|
import { ContactModule } from "./contact/contact.module";
|
||||||
@@ -79,6 +80,7 @@ import { VehiclesModule } from "./vehicles/vehicles.module";
|
|||||||
]),
|
]),
|
||||||
DatabaseModule,
|
DatabaseModule,
|
||||||
RedisModule,
|
RedisModule,
|
||||||
|
TelegramModule,
|
||||||
AuthModule,
|
AuthModule,
|
||||||
UsersModule,
|
UsersModule,
|
||||||
EmailModule,
|
EmailModule,
|
||||||
|
|||||||
192
apps/api/src/catalog/catalog-browse-heal.spec.ts
Normal file
192
apps/api/src/catalog/catalog-browse-heal.spec.ts
Normal file
@@ -0,0 +1,192 @@
|
|||||||
|
import { describe, expect, it, vi } from "vitest";
|
||||||
|
import { isStaleBrowseArchitecture } from "../integrations/pl24/pl24-tree";
|
||||||
|
import { CatalogService } from "./catalog.service";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Regression lock for the pinned-browse-rows bug (plv2.md, finding consumers-09).
|
||||||
|
*
|
||||||
|
* `catalog_vehicles` is a permanent cache: `getModels` returns early as soon as
|
||||||
|
* a brand has any row, so `fetchVehicleList` never runs again for that brand.
|
||||||
|
* The 188 rows listed while PSA and Volvo were still P4 (127 LEGACY_PSA + 61
|
||||||
|
* LEGACY_VOLVO on prod, 2026-09-20) were therefore stuck serving the frozen
|
||||||
|
* 2024-02-13 PSA snapshot and a Volvo endpoint that answers HTTP 503.
|
||||||
|
*/
|
||||||
|
|
||||||
|
type Row = {
|
||||||
|
id: string;
|
||||||
|
serviceName: string;
|
||||||
|
architecture: string | null;
|
||||||
|
brandId: string | null;
|
||||||
|
};
|
||||||
|
|
||||||
|
const psaRow = (id: string): Row => ({
|
||||||
|
id,
|
||||||
|
serviceName: "peugeot_parts",
|
||||||
|
architecture: "LEGACY_PSA",
|
||||||
|
brandId: "b1",
|
||||||
|
});
|
||||||
|
const freshRow = (id: string): Row => ({
|
||||||
|
id,
|
||||||
|
serviceName: "peugeot_parts",
|
||||||
|
architecture: "P5_MODERN",
|
||||||
|
brandId: "b1",
|
||||||
|
});
|
||||||
|
|
||||||
|
function makeService(opts: {
|
||||||
|
lockFree?: boolean;
|
||||||
|
fetched?: Array<{ model: string; vehicleId: string }>;
|
||||||
|
fetchThrows?: boolean;
|
||||||
|
refetched?: Row[];
|
||||||
|
}) {
|
||||||
|
const deleted: string[][] = [];
|
||||||
|
const inserted: unknown[][] = [];
|
||||||
|
|
||||||
|
const tx = {
|
||||||
|
insert: () => ({
|
||||||
|
values: (v: unknown[]) => {
|
||||||
|
inserted.push(v);
|
||||||
|
return { onConflictDoNothing: async () => undefined };
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
delete: () => ({
|
||||||
|
where: async (cond: unknown) => {
|
||||||
|
// drizzle's inArray() puts its bound values in a `queryChunks` entry
|
||||||
|
// that is itself an array of Param objects; pull the plain ids back out
|
||||||
|
// so a test can assert WHICH rows were removed, not just how many.
|
||||||
|
const chunks = (cond as { queryChunks?: unknown[] })?.queryChunks ?? [];
|
||||||
|
const params = chunks.find((c): c is unknown[] => Array.isArray(c)) ?? [];
|
||||||
|
const ids = params
|
||||||
|
.map((param) => (param as { value?: unknown })?.value)
|
||||||
|
.filter((v): v is string => typeof v === "string");
|
||||||
|
deleted.push(ids);
|
||||||
|
return undefined;
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
};
|
||||||
|
|
||||||
|
const db = {
|
||||||
|
select: () => ({ from: () => ({ where: async () => opts.refetched ?? [] }) }),
|
||||||
|
transaction: async (cb: (t: typeof tx) => Promise<void>) => cb(tx),
|
||||||
|
};
|
||||||
|
const redis = { setNx: vi.fn(async () => opts.lockFree !== false) };
|
||||||
|
const pl24Service = {
|
||||||
|
fetchVehicleList: vi.fn(async () => {
|
||||||
|
if (opts.fetchThrows) throw new Error("upstream 503");
|
||||||
|
return opts.fetched ?? [];
|
||||||
|
}),
|
||||||
|
};
|
||||||
|
|
||||||
|
const svc = new CatalogService(
|
||||||
|
db as never,
|
||||||
|
redis as never,
|
||||||
|
pl24Service as never,
|
||||||
|
{} as never,
|
||||||
|
) as never as {
|
||||||
|
healStaleBrowseRows: (brand: string, rows: Row[], where: unknown[]) => Promise<Row[] | null>;
|
||||||
|
};
|
||||||
|
return { svc, redis, pl24Service, deleted, inserted };
|
||||||
|
}
|
||||||
|
|
||||||
|
describe("isStaleBrowseArchitecture", () => {
|
||||||
|
it("flags a row whose stored architecture is not the current one", () => {
|
||||||
|
expect(
|
||||||
|
isStaleBrowseArchitecture({
|
||||||
|
storedArchitecture: "LEGACY_PSA",
|
||||||
|
currentArchitecture: "P5_MODERN",
|
||||||
|
}),
|
||||||
|
).toBe(true);
|
||||||
|
expect(
|
||||||
|
isStaleBrowseArchitecture({
|
||||||
|
storedArchitecture: "LEGACY_VOLVO",
|
||||||
|
currentArchitecture: "P5_MODERN",
|
||||||
|
}),
|
||||||
|
).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("leaves a matching row alone", () => {
|
||||||
|
expect(
|
||||||
|
isStaleBrowseArchitecture({
|
||||||
|
storedArchitecture: "P5_MODERN",
|
||||||
|
currentArchitecture: "P5_MODERN",
|
||||||
|
}),
|
||||||
|
).toBe(false);
|
||||||
|
// Brands that are still P4 upstream must not be touched.
|
||||||
|
expect(
|
||||||
|
isStaleBrowseArchitecture({
|
||||||
|
storedArchitecture: "LEGACY_FORD",
|
||||||
|
currentArchitecture: "LEGACY_FORD",
|
||||||
|
}),
|
||||||
|
).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("does nothing without both sides (unknown service / unlabelled row)", () => {
|
||||||
|
expect(
|
||||||
|
isStaleBrowseArchitecture({ storedArchitecture: null, currentArchitecture: "P5_MODERN" }),
|
||||||
|
).toBe(false);
|
||||||
|
expect(
|
||||||
|
isStaleBrowseArchitecture({ storedArchitecture: "LEGACY_PSA", currentArchitecture: null }),
|
||||||
|
).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("healStaleBrowseRows", () => {
|
||||||
|
it("does not touch PL24 when every row is current", async () => {
|
||||||
|
const { svc, pl24Service, redis } = makeService({});
|
||||||
|
const out = await svc.healStaleBrowseRows("Peugeot", [freshRow("a"), freshRow("b")], []);
|
||||||
|
expect(out).toBeNull();
|
||||||
|
expect(pl24Service.fetchVehicleList).not.toHaveBeenCalled();
|
||||||
|
expect(redis.setNx).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("re-lists a stale brand and replaces its rows", async () => {
|
||||||
|
const refetched = [freshRow("new1"), freshRow("new2")];
|
||||||
|
const { svc, pl24Service, deleted, inserted } = makeService({
|
||||||
|
fetched: [
|
||||||
|
{ model: "208", vehicleId: "p5-208" },
|
||||||
|
{ model: "308", vehicleId: "p5-308" },
|
||||||
|
],
|
||||||
|
refetched,
|
||||||
|
});
|
||||||
|
const out = await svc.healStaleBrowseRows("Peugeot", [psaRow("old1"), psaRow("old2")], []);
|
||||||
|
expect(pl24Service.fetchVehicleList).toHaveBeenCalledWith("peugeot_parts");
|
||||||
|
expect(inserted).toHaveLength(1);
|
||||||
|
expect(inserted[0]).toHaveLength(2);
|
||||||
|
expect(deleted).toHaveLength(1);
|
||||||
|
expect(out).toEqual(refetched);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("deletes only the stale rows when a service holds a mix", async () => {
|
||||||
|
// A row already re-listed under the new architecture conflicts on insert and
|
||||||
|
// is skipped, so deleting it would drop it for good.
|
||||||
|
const { svc, deleted } = makeService({
|
||||||
|
fetched: [{ model: "208", vehicleId: "p5-208" }],
|
||||||
|
refetched: [freshRow("keep")],
|
||||||
|
});
|
||||||
|
await svc.healStaleBrowseRows("Peugeot", [psaRow("old1"), freshRow("keep")], []);
|
||||||
|
expect(deleted).toHaveLength(1);
|
||||||
|
expect(deleted).toEqual([["old1"]]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("keeps the stale rows when the re-list throws", async () => {
|
||||||
|
const { svc, deleted, inserted } = makeService({ fetchThrows: true });
|
||||||
|
const out = await svc.healStaleBrowseRows("Volvo", [psaRow("old1")], []);
|
||||||
|
expect(out).toBeNull();
|
||||||
|
expect(inserted).toHaveLength(0);
|
||||||
|
expect(deleted).toHaveLength(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("keeps the stale rows when upstream returns an empty model list", async () => {
|
||||||
|
const { svc, deleted, inserted } = makeService({ fetched: [] });
|
||||||
|
const out = await svc.healStaleBrowseRows("Volvo", [psaRow("old1")], []);
|
||||||
|
expect(out).toBeNull();
|
||||||
|
expect(inserted).toHaveLength(0);
|
||||||
|
expect(deleted).toHaveLength(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("attempts at most once a day per brand", async () => {
|
||||||
|
const { svc, pl24Service } = makeService({ lockFree: false });
|
||||||
|
const out = await svc.healStaleBrowseRows("Peugeot", [psaRow("old1")], []);
|
||||||
|
expect(out).toBeNull();
|
||||||
|
expect(pl24Service.fetchVehicleList).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -19,6 +19,7 @@ import {
|
|||||||
userBrands,
|
userBrands,
|
||||||
userSubscriptions,
|
userSubscriptions,
|
||||||
} from "../database/schema/core";
|
} from "../database/schema/core";
|
||||||
|
import { isPl24LeafNode, isStaleBrowseArchitecture } from "../integrations/pl24/pl24-tree";
|
||||||
import { PL24Service } from "../integrations/pl24/pl24.service";
|
import { PL24Service } from "../integrations/pl24/pl24.service";
|
||||||
import {
|
import {
|
||||||
type PL24DecodedCategory,
|
type PL24DecodedCategory,
|
||||||
@@ -169,7 +170,8 @@ export class CatalogService {
|
|||||||
.where(and(...whereConditions));
|
.where(and(...whereConditions));
|
||||||
|
|
||||||
if (dbVehicles.length > 0) {
|
if (dbVehicles.length > 0) {
|
||||||
return dbVehicles;
|
const healed = await this.healStaleBrowseRows(brandName, dbVehicles, whereConditions);
|
||||||
|
return healed ?? dbVehicles;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fetch from PL24 for each service
|
// Fetch from PL24 for each service
|
||||||
@@ -224,6 +226,118 @@ export class CatalogService {
|
|||||||
return allVehicles;
|
return allVehicles;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Re-list a brand whose stored browse rows were created under a retired PL24
|
||||||
|
* architecture, and replace them with the current ones.
|
||||||
|
*
|
||||||
|
* WHY (plv2.md, finding consumers-09): `getModels` treats `catalog_vehicles`
|
||||||
|
* as a permanent cache — one row for the brand and `fetchVehicleList` is never
|
||||||
|
* called again. The rows listed while PSA and Volvo were still P4 are pinned
|
||||||
|
* forever, so Peugeot/Citroën browse keeps serving the frozen 2024-02-13
|
||||||
|
* snapshot and Volvo/Polestar browse keeps calling an endpoint that answers
|
||||||
|
* HTTP 503. A code fix alone never reaches these rows.
|
||||||
|
*
|
||||||
|
* Deliberately conservative, mirroring `healStalePl24Architecture` on the
|
||||||
|
* VIN side:
|
||||||
|
* - only rows whose stored architecture disagrees with the service table;
|
||||||
|
* - one attempt per brand per day (Redis lock) so a permanently failing
|
||||||
|
* re-list cannot hammer the one surviving account on every page view;
|
||||||
|
* - a failed or empty re-list leaves the old rows in place — stale data
|
||||||
|
* beats an empty catalog;
|
||||||
|
* - the stale rows are deleted only once the replacements are committed,
|
||||||
|
* and per service, so one broken sub-catalog cannot wipe a working one.
|
||||||
|
*
|
||||||
|
* Deleting a browse row cascades to its categories and parts. That is
|
||||||
|
* intended: those rows describe the retired tree and would otherwise survive
|
||||||
|
* as unreachable orphans under the new listing.
|
||||||
|
*
|
||||||
|
* Returns the refreshed rows, or null when nothing was migrated (caller keeps
|
||||||
|
* what it already had).
|
||||||
|
*/
|
||||||
|
private async healStaleBrowseRows(
|
||||||
|
brandName: string,
|
||||||
|
dbVehicles: (typeof catalogVehicles.$inferSelect)[],
|
||||||
|
whereConditions: ReturnType<typeof eq>[],
|
||||||
|
): Promise<(typeof catalogVehicles.$inferSelect)[] | null> {
|
||||||
|
const isStale = (v: typeof catalogVehicles.$inferSelect) =>
|
||||||
|
isStaleBrowseArchitecture({
|
||||||
|
storedArchitecture: v.architecture,
|
||||||
|
currentArchitecture: PL24_SERVICE_CATALOGS[v.serviceName]?.architecture,
|
||||||
|
});
|
||||||
|
const staleServices = [...new Set(dbVehicles.filter(isStale).map((v) => v.serviceName))];
|
||||||
|
if (staleServices.length === 0) return null;
|
||||||
|
|
||||||
|
if (!(await this.redis.setNx(`pl24:browse-heal:${brandName}`, "1", 86_400))) return null;
|
||||||
|
|
||||||
|
this.logger.log(
|
||||||
|
`[pl24-browse-heal] ${brandName}: ${staleServices.join(", ")} listed under a retired architecture — re-listing`,
|
||||||
|
);
|
||||||
|
|
||||||
|
let migrated = 0;
|
||||||
|
for (const svc of staleServices) {
|
||||||
|
// ONLY the stale rows. A service can hold a mix — some rows already
|
||||||
|
// re-listed under the new architecture — and those must survive: the
|
||||||
|
// insert below skips them on conflict, so deleting them here would drop
|
||||||
|
// them for good.
|
||||||
|
const staleIds = dbVehicles
|
||||||
|
.filter((v) => v.serviceName === svc && isStale(v))
|
||||||
|
.map((v) => v.id);
|
||||||
|
try {
|
||||||
|
const fetched = await this.pl24Service.fetchVehicleList(svc);
|
||||||
|
if (fetched.length === 0) {
|
||||||
|
this.logger.warn(
|
||||||
|
`[pl24-browse-heal] ${svc}: upstream returned no models — keeping ${staleIds.length} stale row(s)`,
|
||||||
|
);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
const config = PL24_SERVICE_CATALOGS[svc];
|
||||||
|
const brandId = dbVehicles.find((v) => v.serviceName === svc)?.brandId ?? null;
|
||||||
|
await this.db.transaction(async (tx) => {
|
||||||
|
await tx
|
||||||
|
.insert(catalogVehicles)
|
||||||
|
.values(
|
||||||
|
fetched.map((v) => ({
|
||||||
|
source: "pl24" as const,
|
||||||
|
serviceName: svc,
|
||||||
|
brandName,
|
||||||
|
brandId,
|
||||||
|
model: v.model,
|
||||||
|
year: v.year || null,
|
||||||
|
engine: v.engine || null,
|
||||||
|
bodyType: v.bodyType || null,
|
||||||
|
transmission: v.transmission || null,
|
||||||
|
market: v.market || null,
|
||||||
|
serviceVehicleId: v.vehicleId,
|
||||||
|
catalogPath: v.catalogPath || null,
|
||||||
|
architecture: config?.architecture || "P5_MODERN",
|
||||||
|
metadata: v.metadata || null,
|
||||||
|
categoriesFetched: false,
|
||||||
|
updatedAt: new Date(),
|
||||||
|
})),
|
||||||
|
)
|
||||||
|
.onConflictDoNothing();
|
||||||
|
if (staleIds.length > 0) {
|
||||||
|
await tx.delete(catalogVehicles).where(inArray(catalogVehicles.id, staleIds));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
migrated += staleIds.length;
|
||||||
|
this.logger.log(
|
||||||
|
`[pl24-browse-heal] ${svc}: ${staleIds.length} stale row(s) → ${fetched.length} fresh model(s)`,
|
||||||
|
);
|
||||||
|
} catch (err) {
|
||||||
|
this.logger.warn(
|
||||||
|
`[pl24-browse-heal] ${svc} re-list failed, keeping stale rows: ${(err as Error).message}`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (migrated === 0) return null;
|
||||||
|
return await this.db
|
||||||
|
.select()
|
||||||
|
.from(catalogVehicles)
|
||||||
|
.where(and(...whereConditions));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a single catalog vehicle by ID.
|
* Get a single catalog vehicle by ID.
|
||||||
*/
|
*/
|
||||||
@@ -1249,18 +1363,10 @@ export class CatalogService {
|
|||||||
return this.pl24Service.fetchFordModelConfig(vehicle.serviceName, familyId, mode, upds);
|
return this.pl24Service.fetchFordModelConfig(vehicle.serviceName, familyId, mode, upds);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Shared PL24 leaf classifier — see integrations/pl24/pl24-tree. */
|
||||||
private isLeafPath(linkPath: string): boolean {
|
private isLeafPath(linkPath: string): boolean {
|
||||||
const lower = linkPath.toLowerCase();
|
|
||||||
return (
|
return (
|
||||||
lower.includes("/bom/") ||
|
isPl24LeafNode({ linkPath }) || linkPath.toLowerCase().includes("json-vin-bom-detail.action")
|
||||||
lower.includes("/bomdetails") ||
|
|
||||||
lower.includes("/partinfo/") ||
|
|
||||||
// PL24 P5 leaf items endpoints — chemicals, servicepart, accessories,
|
|
||||||
// any /extern/<kind>/(vin|mdl)_items combination. These return parts,
|
|
||||||
// not subgroups, so they must short-circuit drill-down.
|
|
||||||
/\/extern\/[^/]+\/(vin_items|mdl_items)\b/.test(lower) ||
|
|
||||||
lower.includes("image-board.action") || // PSA illustration leaf
|
|
||||||
lower.includes("json-vin-bom-detail.action")
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1367,13 +1473,9 @@ export class CatalogService {
|
|||||||
|
|
||||||
return cats.map((c) => {
|
return cats.map((c) => {
|
||||||
const dbChildCount = childCountMap.get(c.id) || 0;
|
const dbChildCount = childCountMap.get(c.id) || 0;
|
||||||
const isLeaf =
|
const isLeaf = c.linkPath
|
||||||
c.linkPath?.includes("/bom/") ||
|
? isPl24LeafNode({ linkPath: c.linkPath, linkWid: c.linkWid })
|
||||||
c.linkPath?.includes("/bomdetails") ||
|
: dbChildCount === 0;
|
||||||
c.linkPath?.includes("/partinfo/") ||
|
|
||||||
c.linkPath?.includes("/servicepart/vin_items") ||
|
|
||||||
c.linkPath?.includes("image-board.action") || // PSA illustration leaf
|
|
||||||
(!c.linkPath && dbChildCount === 0);
|
|
||||||
return {
|
return {
|
||||||
...c,
|
...c,
|
||||||
schemaImageUrl: picMap.get(c.id) || null,
|
schemaImageUrl: picMap.get(c.id) || null,
|
||||||
|
|||||||
@@ -13,10 +13,7 @@ export class CategoriesController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Get("tree/:vehicleId")
|
@Get("tree/:vehicleId")
|
||||||
async getCategoryTree(
|
async getCategoryTree(@Param("vehicleId") vehicleId: string, @Query("source") source?: string) {
|
||||||
@Param("vehicleId") vehicleId: string,
|
|
||||||
@Query("source") source?: string,
|
|
||||||
) {
|
|
||||||
return this.categoriesService.getCategoryTree(vehicleId, source);
|
return this.categoriesService.getCategoryTree(vehicleId, source);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -17,6 +17,8 @@ function createService(db: any) {
|
|||||||
};
|
};
|
||||||
const pl24Service = {
|
const pl24Service = {
|
||||||
getCategories: vi.fn().mockResolvedValue([]),
|
getCategories: vi.fn().mockResolvedValue([]),
|
||||||
|
// P4→P5 onarma yolu bunu çağırır (plv2 Faz 2).
|
||||||
|
decodeVin: vi.fn().mockResolvedValue(null),
|
||||||
};
|
};
|
||||||
const emexService = {
|
const emexService = {
|
||||||
isSupported: vi.fn().mockReturnValue(false),
|
isSupported: vi.fn().mockReturnValue(false),
|
||||||
@@ -462,3 +464,81 @@ describe("CategoriesService", () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// ── P4 → P5 kendi kendini onarma (plv2 Faz 2, bulgu psa-07) ──
|
||||||
|
// PSA/Volvo upstream'de P5'e taşındı; daha önce decode edilmiş araçlar donmuş
|
||||||
|
// 2024-02-13 PSA anlık görüntüsüne / ölü P4 Volvo ucuna işaret etmeye devam
|
||||||
|
// ediyor ve decodeVin'in db_hit kısa devresi kod düzeltmesini onlara ulaştırmıyor.
|
||||||
|
describe("CategoriesService — bayat PL24 mimarisini onarma", () => {
|
||||||
|
const makeVehicle = (catalogPath: string) => ({
|
||||||
|
id: "veh-1",
|
||||||
|
vin: "VF3MCBHZWHS150390",
|
||||||
|
rawData: { catalogInfo: { serviceName: "peugeot_parts", catalogPath } },
|
||||||
|
});
|
||||||
|
|
||||||
|
const setup = (catalogPath: string, decodeResult: unknown) => {
|
||||||
|
const { service, redis, pl24Service } = createService({} as never);
|
||||||
|
const p = service as unknown as {
|
||||||
|
healStalePl24Architecture(
|
||||||
|
id: string,
|
||||||
|
v: { vin: string | null; rawData: unknown },
|
||||||
|
n: number,
|
||||||
|
): Promise<boolean>;
|
||||||
|
db: unknown;
|
||||||
|
};
|
||||||
|
// setNx: ilk denemeye izin ver (günlük tek deneme kilidi)
|
||||||
|
(redis as unknown as { setNx: unknown }).setNx = vi.fn().mockResolvedValue(true);
|
||||||
|
(redis as unknown as { del: unknown }).del = vi.fn().mockResolvedValue(undefined);
|
||||||
|
pl24Service.decodeVin = vi.fn().mockResolvedValue(decodeResult);
|
||||||
|
return { service, p, redis, pl24Service, vehicle: makeVehicle(catalogPath) };
|
||||||
|
};
|
||||||
|
|
||||||
|
it("P4 PSA yolundaki araç yeniden decode edilir ve ağaç değişir", async () => {
|
||||||
|
const fresh = {
|
||||||
|
catalogInfo: { serviceName: "peugeot_parts", catalogPath: "/p5psa" },
|
||||||
|
categories: [
|
||||||
|
{
|
||||||
|
code: "_FCT0001",
|
||||||
|
nameTr: "Mekanik",
|
||||||
|
nameEn: "Mechanical",
|
||||||
|
linkPath: "/p5psa/x",
|
||||||
|
linkWid: "mainGroupTable",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
const { p, pl24Service, vehicle } = setup("/psa/peugeot_parts", fresh);
|
||||||
|
const inserted: unknown[] = [];
|
||||||
|
(p as unknown as { db: unknown }).db = {
|
||||||
|
transaction: async (fn: (tx: unknown) => Promise<void>) => {
|
||||||
|
await fn({
|
||||||
|
delete: () => ({ where: async () => undefined }),
|
||||||
|
insert: () => ({ values: async (rows: unknown[]) => inserted.push(...rows) }),
|
||||||
|
update: () => ({ set: () => ({ where: async () => undefined }) }),
|
||||||
|
});
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
await expect(p.healStalePl24Architecture("veh-1", vehicle, 120)).resolves.toBe(true);
|
||||||
|
expect(pl24Service.decodeVin).toHaveBeenCalledWith("VF3MCBHZWHS150390");
|
||||||
|
expect(inserted).toHaveLength(1);
|
||||||
|
expect((inserted[0] as { name: string }).name).toBe("Mekanik");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("zaten P5 olan araca dokunulmaz (decode çağrılmaz)", async () => {
|
||||||
|
const { p, pl24Service, vehicle } = setup("/p5psa", null);
|
||||||
|
await expect(p.healStalePl24Architecture("veh-1", vehicle, 6)).resolves.toBe(false);
|
||||||
|
expect(pl24Service.decodeVin).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("yeniden decode boş dönerse eski ağaç korunur", async () => {
|
||||||
|
const { p, vehicle } = setup("/psa/peugeot_parts", { categories: [] });
|
||||||
|
await expect(p.healStalePl24Architecture("veh-1", vehicle, 120)).resolves.toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("günde bir denenir (setNx kilidi)", async () => {
|
||||||
|
const { p, redis, pl24Service, vehicle } = setup("/psa/peugeot_parts", { categories: [] });
|
||||||
|
(redis as unknown as { setNx: unknown }).setNx = vi.fn().mockResolvedValue(false);
|
||||||
|
await expect(p.healStalePl24Architecture("veh-1", vehicle, 120)).resolves.toBe(false);
|
||||||
|
expect(pl24Service.decodeVin).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|||||||
@@ -21,7 +21,13 @@ import { PartsCatalogsService } from "../integrations/parts-catalogs/parts-catal
|
|||||||
import { PcatGroup } from "../integrations/parts-catalogs/parts-catalogs.types";
|
import { PcatGroup } from "../integrations/parts-catalogs/parts-catalogs.types";
|
||||||
import { PL24FordLegacyService } from "../integrations/pl24/pl24-ford-legacy.service";
|
import { PL24FordLegacyService } from "../integrations/pl24/pl24-ford-legacy.service";
|
||||||
import { PL24PsaService } from "../integrations/pl24/pl24-psa.service";
|
import { PL24PsaService } from "../integrations/pl24/pl24-psa.service";
|
||||||
|
import {
|
||||||
|
isPl24GroupNode,
|
||||||
|
isPl24LeafNode,
|
||||||
|
isStalePl24Architecture,
|
||||||
|
} from "../integrations/pl24/pl24-tree";
|
||||||
import { PL24Service } from "../integrations/pl24/pl24.service";
|
import { PL24Service } from "../integrations/pl24/pl24.service";
|
||||||
|
import { getServiceApiPath } from "../integrations/pl24/pl24.types";
|
||||||
import { classifyNode, foldName, mapToCanonical } from "../jobs/canonical-lexicon";
|
import { classifyNode, foldName, mapToCanonical } from "../jobs/canonical-lexicon";
|
||||||
import { RedisService } from "../redis/redis.service";
|
import { RedisService } from "../redis/redis.service";
|
||||||
import { StorageService } from "../storage/storage.service";
|
import { StorageService } from "../storage/storage.service";
|
||||||
@@ -70,6 +76,20 @@ export class CategoriesService {
|
|||||||
.from(categories)
|
.from(categories)
|
||||||
.where(eq(categories.vehicleId, vehicleId));
|
.where(eq(categories.vehicleId, vehicleId));
|
||||||
|
|
||||||
|
// ── P4 → P5 self-healing (plv2.md Faz 2, bulgu psa-07) ──
|
||||||
|
// PSA and Volvo moved to P5 upstream; rows decoded before that still point at
|
||||||
|
// the frozen 2024-02-13 PSA snapshot or the dead P4 Volvo endpoint, and
|
||||||
|
// decodeVin's db_hit short-circuit means no code fix ever reaches them. Heal
|
||||||
|
// one vehicle per view instead of a bulk re-decode storm against the single
|
||||||
|
// surviving account.
|
||||||
|
const healed = await this.healStalePl24Architecture(vehicleId, vehicle, dbCategories.length);
|
||||||
|
if (healed) {
|
||||||
|
dbCategories = await this.db
|
||||||
|
.select()
|
||||||
|
.from(categories)
|
||||||
|
.where(eq(categories.vehicleId, vehicleId));
|
||||||
|
}
|
||||||
|
|
||||||
// If no categories in DB, fetch from PL24
|
// If no categories in DB, fetch from PL24
|
||||||
if (dbCategories.length === 0 && vehicle.rawData) {
|
if (dbCategories.length === 0 && vehicle.rawData) {
|
||||||
const rawData = vehicle.rawData as any;
|
const rawData = vehicle.rawData as any;
|
||||||
@@ -896,17 +916,13 @@ export class CategoriesService {
|
|||||||
// subgroups. Drilling into them used to insert per-part endpoints as
|
// subgroups. Drilling into them used to insert per-part endpoints as
|
||||||
// ghost child categories — keep the regex wide so any /extern/{kind}/
|
// ghost child categories — keep the regex wide so any /extern/{kind}/
|
||||||
// (vin|mdl)_items endpoint is recognised, not just /servicepart/.
|
// (vin|mdl)_items endpoint is recognised, not just /servicepart/.
|
||||||
const lp = linkPath.toLowerCase();
|
// One shared classifier (integrations/pl24/pl24-tree) — the inline lists here,
|
||||||
|
// in catalog.service and in the prefetch worker used to disagree, which is how
|
||||||
|
// p5psa/p5volvo camelCase `bomDetails` leaves and `illusTable` group levels
|
||||||
|
// ended up on the wrong side (silent empty panels / unfetched parts).
|
||||||
if (
|
if (
|
||||||
lp.includes("/bom/") ||
|
isPl24LeafNode({ linkPath }) ||
|
||||||
lp.includes("/bomdetails") ||
|
linkPath.toLowerCase().includes("json-vin-bom-detail.action")
|
||||||
lp.includes("/partinfo/") ||
|
|
||||||
/\/extern\/[^/]+\/(vin_items|mdl_items)\b/.test(lp) ||
|
|
||||||
// PSA / Hyundai / Opel / Volvo image-board pages and the Ford VIN
|
|
||||||
// vin-image-board.action equivalent. Drilling into them yields BOM rows,
|
|
||||||
// not sub-groups — let getCategoryWithParts handle those as parts.
|
|
||||||
lp.includes("image-board.action") ||
|
|
||||||
lp.includes("json-vin-bom-detail.action")
|
|
||||||
) {
|
) {
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
@@ -991,6 +1007,104 @@ export class CategoriesService {
|
|||||||
* The per-node trail excludes the node itself, ordered root-first. Used by the
|
* The per-node trail excludes the node itself, ordered root-first. Used by the
|
||||||
* catalog search so each hit can show where it sits in the tree.
|
* catalog search so each hit can show where it sits in the tree.
|
||||||
*/
|
*/
|
||||||
|
/**
|
||||||
|
* Re-decode a vehicle whose stored catalogInfo still points at a retired PL24
|
||||||
|
* architecture (P4 PSA/Volvo) and replace its category tree with the P5 one.
|
||||||
|
*
|
||||||
|
* Returns true when the tree was rebuilt. Deliberately conservative:
|
||||||
|
* - only PSA/Volvo rows whose service is P5 today are touched;
|
||||||
|
* - a failed or empty re-decode leaves the old tree in place (stale data beats
|
||||||
|
* no data), and the attempt is remembered for a day so a permanently
|
||||||
|
* unresolvable VIN cannot re-hit PL24 on every page view;
|
||||||
|
* - the old rows are deleted only once the new tree is in hand, because the
|
||||||
|
* unique (vehicle_id, name, source) index would otherwise reject the insert.
|
||||||
|
*/
|
||||||
|
private async healStalePl24Architecture(
|
||||||
|
vehicleId: string,
|
||||||
|
vehicle: { vin: string | null; rawData: unknown },
|
||||||
|
existingCategoryCount: number,
|
||||||
|
): Promise<boolean> {
|
||||||
|
const rawData = vehicle.rawData as {
|
||||||
|
catalogInfo?: { serviceName?: string; catalogPath?: string };
|
||||||
|
} | null;
|
||||||
|
const catalogInfo = rawData?.catalogInfo;
|
||||||
|
const serviceName = catalogInfo?.serviceName;
|
||||||
|
if (!vehicle.vin || !serviceName) return false;
|
||||||
|
if (
|
||||||
|
!isStalePl24Architecture({
|
||||||
|
catalogPath: catalogInfo?.catalogPath,
|
||||||
|
currentApiPath: getServiceApiPath(serviceName),
|
||||||
|
})
|
||||||
|
) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
const attemptKey = `pl24:heal:${vehicleId}`;
|
||||||
|
if (!(await this.redis.setNx(attemptKey, "1", 86_400))) return false;
|
||||||
|
|
||||||
|
this.logger.log(
|
||||||
|
`[pl24-heal] ${vehicle.vin} (${serviceName}) was decoded on ${catalogInfo?.catalogPath} — re-decoding on P5`,
|
||||||
|
);
|
||||||
|
|
||||||
|
let decoded: Awaited<ReturnType<PL24Service["decodeVin"]>> | null = null;
|
||||||
|
try {
|
||||||
|
await this.redis.del(`pl24:vehicle:${vehicle.vin}`);
|
||||||
|
decoded = await this.pl24Service.decodeVin(vehicle.vin);
|
||||||
|
} catch (err) {
|
||||||
|
this.logger.warn(`[pl24-heal] ${vehicle.vin} re-decode failed: ${(err as Error).message}`);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (!decoded?.categories?.length) {
|
||||||
|
this.logger.warn(
|
||||||
|
`[pl24-heal] ${vehicle.vin} re-decode returned no categories — keeping old tree`,
|
||||||
|
);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
await this.db.transaction(async (tx) => {
|
||||||
|
await tx.delete(categories).where(eq(categories.vehicleId, vehicleId));
|
||||||
|
const seen = new Set<string>();
|
||||||
|
const rows = decoded.categories
|
||||||
|
.filter((c) => {
|
||||||
|
const name = c.nameTr || c.nameEn;
|
||||||
|
if (!name || seen.has(name)) return false;
|
||||||
|
seen.add(name);
|
||||||
|
return true;
|
||||||
|
})
|
||||||
|
.map((c) => ({
|
||||||
|
vehicleId,
|
||||||
|
catalogVehicleId: null as string | null,
|
||||||
|
name: c.nameTr || c.nameEn,
|
||||||
|
nameOriginal: c.nameEn,
|
||||||
|
parentId: null as string | null,
|
||||||
|
externalId: c.code,
|
||||||
|
linkPath: c.linkPath || null,
|
||||||
|
linkWid: c.linkWid || null,
|
||||||
|
source: "pl24" as const,
|
||||||
|
}));
|
||||||
|
if (rows.length) await tx.insert(categories).values(rows);
|
||||||
|
await tx
|
||||||
|
.update(vehicles)
|
||||||
|
.set({
|
||||||
|
rawData: { ...(rawData ?? {}), catalogInfo: decoded.catalogInfo },
|
||||||
|
fullyFetched: false,
|
||||||
|
fullyFetchedAt: null,
|
||||||
|
})
|
||||||
|
.where(eq(vehicles.id, vehicleId));
|
||||||
|
});
|
||||||
|
|
||||||
|
await Promise.all([
|
||||||
|
this.redis.del(`cat:tree:${vehicleId}`),
|
||||||
|
this.redis.del(`prefetch:complete:${vehicleId}`),
|
||||||
|
this.redis.del(`prefetch:noresult:${vehicleId}`),
|
||||||
|
]);
|
||||||
|
|
||||||
|
this.logger.log(
|
||||||
|
`[pl24-heal] ${vehicle.vin} migrated to ${decoded.catalogInfo?.catalogPath}: ${existingCategoryCount} stale → ${decoded.categories.length} fresh categories`,
|
||||||
|
);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
private async buildBreadcrumbs(
|
private async buildBreadcrumbs(
|
||||||
ids: string[],
|
ids: string[],
|
||||||
): Promise<Map<string, Array<{ id: string; name: string }>>> {
|
): Promise<Map<string, Array<{ id: string; name: string }>>> {
|
||||||
@@ -1316,9 +1430,13 @@ export class CategoriesService {
|
|||||||
// AND lowercase (groupReferenceTable, groupTable, groupsTable). The old
|
// AND lowercase (groupReferenceTable, groupTable, groupsTable). The old
|
||||||
// case-sensitive includes("Group") missed the lowercase ones (~1157 nodes),
|
// case-sensitive includes("Group") missed the lowercase ones (~1157 nodes),
|
||||||
// so they skipped this group-drill branch and fell to the parts path.
|
// so they skipped this group-drill branch and fell to the parts path.
|
||||||
|
// A PL24 node is a parent when the shared classifier says it is not a parts
|
||||||
|
// leaf. The old `linkWid.includes("group")` test missed p5psa `illusTable`
|
||||||
|
// and p5volvo/p5subaru `illustrationsTable`, so those levels were fetched as
|
||||||
|
// parts, parsed to zero rows and rendered as an empty panel with no error.
|
||||||
if (
|
if (
|
||||||
category.source === "pl24" &&
|
category.source === "pl24" &&
|
||||||
category.linkWid?.toLowerCase().includes("group") &&
|
isPl24GroupNode({ linkPath: category.linkPath, linkWid: category.linkWid }) &&
|
||||||
category.vehicleId
|
category.vehicleId
|
||||||
) {
|
) {
|
||||||
const groupChildren = await this.getChildren(categoryId);
|
const groupChildren = await this.getChildren(categoryId);
|
||||||
@@ -2173,15 +2291,8 @@ export class CategoriesService {
|
|||||||
return !!c.linkPath?.startsWith("pcat:"); // unknown → lazy-leaf heuristic
|
return !!c.linkPath?.startsWith("pcat:"); // unknown → lazy-leaf heuristic
|
||||||
})()
|
})()
|
||||||
: (() => {
|
: (() => {
|
||||||
const lp = c.linkPath?.toLowerCase() ?? "";
|
if (!c.linkPath) return dbChildCount === 0;
|
||||||
return (
|
return isPl24LeafNode({ linkPath: c.linkPath, linkWid: c.linkWid });
|
||||||
lp.includes("/bom/") ||
|
|
||||||
lp.includes("/bomdetails") ||
|
|
||||||
lp.includes("/partinfo/") ||
|
|
||||||
/\/extern\/[^/]+\/(vin_items|mdl_items)\b/.test(lp) ||
|
|
||||||
lp.includes("image-board.action") ||
|
|
||||||
(!c.linkPath && dbChildCount === 0)
|
|
||||||
);
|
|
||||||
})();
|
})();
|
||||||
return {
|
return {
|
||||||
...c,
|
...c,
|
||||||
|
|||||||
10
apps/api/src/common/telegram.module.ts
Normal file
10
apps/api/src/common/telegram.module.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
import { Global, Module } from "@nestjs/common";
|
||||||
|
import { TelegramService } from "./telegram.service";
|
||||||
|
|
||||||
|
/** Global so any module can raise an operational alert without extra wiring. */
|
||||||
|
@Global()
|
||||||
|
@Module({
|
||||||
|
providers: [TelegramService],
|
||||||
|
exports: [TelegramService],
|
||||||
|
})
|
||||||
|
export class TelegramModule {}
|
||||||
56
apps/api/src/common/telegram.service.ts
Normal file
56
apps/api/src/common/telegram.service.ts
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
import { Injectable, Logger } from "@nestjs/common";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Minimal Telegram alerting for operational failures that need a human now
|
||||||
|
* (currently: PL24 auth down for an hour — i.e. the account may be banned
|
||||||
|
* again). Fire-and-forget: a failed alert must never affect a request.
|
||||||
|
*
|
||||||
|
* Uses the same bot as the Süper Panel — set TELEGRAM_BOT_TOKEN and
|
||||||
|
* TELEGRAM_CHAT_ID. Unconfigured = silently disabled (local/dev).
|
||||||
|
*/
|
||||||
|
@Injectable()
|
||||||
|
export class TelegramService {
|
||||||
|
private readonly logger = new Logger(TelegramService.name);
|
||||||
|
|
||||||
|
private get token(): string {
|
||||||
|
return process.env.TELEGRAM_BOT_TOKEN ?? "";
|
||||||
|
}
|
||||||
|
|
||||||
|
private get chatId(): string {
|
||||||
|
return process.env.TELEGRAM_CHAT_ID ?? "";
|
||||||
|
}
|
||||||
|
|
||||||
|
isConfigured(): boolean {
|
||||||
|
return Boolean(this.token && this.chatId);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Send a message. Returns false when disabled or the API refused. */
|
||||||
|
async send(text: string, opts: { silent?: boolean } = {}): Promise<boolean> {
|
||||||
|
if (!this.isConfigured()) {
|
||||||
|
this.logger.warn(`Telegram not configured — alert dropped: ${text.slice(0, 120)}`);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
const res = await fetch(`https://api.telegram.org/bot${this.token}/sendMessage`, {
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify({
|
||||||
|
chat_id: this.chatId,
|
||||||
|
text,
|
||||||
|
parse_mode: "HTML",
|
||||||
|
disable_notification: opts.silent ?? false,
|
||||||
|
disable_web_page_preview: true,
|
||||||
|
}),
|
||||||
|
signal: AbortSignal.timeout(10_000),
|
||||||
|
});
|
||||||
|
if (!res.ok) {
|
||||||
|
this.logger.warn(`Telegram sendMessage failed: HTTP ${res.status}`);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
} catch (err) {
|
||||||
|
this.logger.warn(`Telegram sendMessage error: ${(err as Error).message}`);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -203,6 +203,12 @@ export const userSubscriptions = pgTable(
|
|||||||
// NULL for trials and legacy one-time purchases. Renewal invoices resolve
|
// NULL for trials and legacy one-time purchases. Renewal invoices resolve
|
||||||
// our row through this.
|
// our row through this.
|
||||||
stripeSubscriptionId: text("stripe_subscription_id"),
|
stripeSubscriptionId: text("stripe_subscription_id"),
|
||||||
|
// Dunning state — set on the first failed renewal charge, cleared when the
|
||||||
|
// invoice recovers (invoice.paid) or the sub is finally cancelled. The URL
|
||||||
|
// is Stripe's hosted invoice page: the ONLY self-serve surface where the
|
||||||
|
// user can pay the open invoice / enter a new card / pass 3DS.
|
||||||
|
dunningSince: timestamp("dunning_since", { withTimezone: true }),
|
||||||
|
dunningInvoiceUrl: text("dunning_invoice_url"),
|
||||||
createdAt: timestamp("created_at", { withTimezone: true }).defaultNow().notNull(),
|
createdAt: timestamp("created_at", { withTimezone: true }).defaultNow().notNull(),
|
||||||
updatedAt: timestamp("updated_at", { withTimezone: true }).defaultNow().notNull(),
|
updatedAt: timestamp("updated_at", { withTimezone: true }).defaultNow().notNull(),
|
||||||
},
|
},
|
||||||
@@ -403,6 +409,36 @@ export const vinpinDecodes = pgTable("vinpin_decodes", {
|
|||||||
decodedAt: timestamp("decoded_at", { withTimezone: true }),
|
decodedAt: timestamp("decoded_at", { withTimezone: true }),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// ─── RPartStore decodes (Renault/Dacia decode-oracle cache — one row per VIN) ──
|
||||||
|
// Feature-flagged (RPARTSTORE_ENABLED). Populated by the rpartstore-decode BullMQ
|
||||||
|
// job which asks the RPartStore BFF (rpartstore.renault.com, STOMP/WebSocket) for
|
||||||
|
// Renault/Dacia VINs the normal chain (pcat/PL24/emex) can't identify. On success
|
||||||
|
// the decoded model is matched to an EXISTING PL24 catalog_vehicle and parts are
|
||||||
|
// served from there — RPartStore is ONLY a decode oracle. Hard daily cap on
|
||||||
|
// searches (RPARTSTORE_DAILY_CAP); over-cap VINs are 'capped' and retried after 24 h.
|
||||||
|
export const rpartstoreDecodes = pgTable("rpartstore_decodes", {
|
||||||
|
vin: text("vin").primaryKey(),
|
||||||
|
// 'pending' | 'decoded' | 'not_found' | 'capped' | 'failed'
|
||||||
|
status: text("status").notNull().default("pending"),
|
||||||
|
brandName: text("brand_name"),
|
||||||
|
model: text("model"),
|
||||||
|
modelCode: text("model_code"),
|
||||||
|
familyCode: text("family_code"),
|
||||||
|
modelYear: text("model_year"),
|
||||||
|
engine: text("engine"),
|
||||||
|
gearbox: text("gearbox"),
|
||||||
|
energyType: text("energy_type"),
|
||||||
|
manufacturingDate: text("manufacturing_date"),
|
||||||
|
catalogVehicleId: uuid("catalog_vehicle_id").references(() => catalogVehicles.id, {
|
||||||
|
onDelete: "set null",
|
||||||
|
}),
|
||||||
|
raw: jsonb("raw"),
|
||||||
|
attempts: integer("attempts").notNull().default(0),
|
||||||
|
createdAt: timestamp("created_at", { withTimezone: true }).defaultNow().notNull(),
|
||||||
|
updatedAt: timestamp("updated_at", { withTimezone: true }),
|
||||||
|
decodedAt: timestamp("decoded_at", { withTimezone: true }),
|
||||||
|
});
|
||||||
|
|
||||||
// ─── Vehicles (shared config — one record per VIN) ──
|
// ─── Vehicles (shared config — one record per VIN) ──
|
||||||
export const vehicles = pgTable(
|
export const vehicles = pgTable(
|
||||||
"vehicles",
|
"vehicles",
|
||||||
|
|||||||
17
apps/api/src/integrations/pl24/__fixtures__/p4_ford.html
Normal file
17
apps/api/src/integrations/pl24/__fixtures__/p4_ford.html
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
<html><head>
|
||||||
|
<title>Ford WF0RXXGCDRAP80417: Kuga - CBV (2008, 2012) - partslink24</title>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
</script></head><body>
|
||||||
|
<table>
|
||||||
|
<tr id="_nav-scope-table0" class="tc-row tc-data-row tc-selected" jsonurl="json-vin-main-group.action?lang=en&openVinDialog=false&startup=false&vin=WF0RXXGCDRAP80417&mode=A0LW0DEDE&upds=2026.09.08+15%3A14%3A06+CEST" caption="Kuga - CBV (2008, 2012)"><td class="caption tc-lcell tc-rcell dynaheight"><div class="dynaheightWrapper"><div class="dblWrap">Kuga - CBV (2008, 2012)</div></div></td></tr>
|
||||||
|
<tr id="_nav-scope-table1" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?lang=en&openVinDialog=false&sharedCatCode=ZE&startup=false&vin=WF0RXXGCDRAP80417&mode=A0LW0DEDE&upds=2026.09.08+15%3A14%3A06+CEST" caption="ZE - Accessories (ZE)<div class="restrictionBlockWithMargin"></div>"><td class="caption tc-lcell tc-rcell dynaheight"><div class="dynaheightWrapper"><div class="dblWrap">ZE - Accessories (ZE)<div class="restrictionBlockWithMargin"></div></div></div></td></tr>
|
||||||
|
<tr id="_nav-scope-table2" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?lang=en&openVinDialog=false&sharedCatCode=ZF&startup=false&vin=WF0RXXGCDRAP80417&mode=A0LW0DEDE&upds=2026.09.08+15%3A14%3A06+CEST" caption="ZF - Fluids & Maintenance Products (ZF)<div class="restrictionBlockWithMargin"></div>"><td class="caption tc-lcell tc-rcell dynaheight"><div class="dynaheightWrapper"><div class="dblWrap">ZF - Fluids & Maintenance Products (ZF)<div class="restrictionBlockWithMargin"></div></div></div></td></tr>
|
||||||
|
<tr id="_nav-scope-table4" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?lang=en&openVinDialog=false&sharedCatCode=C20DD0X&startup=false&vin=WF0RXXGCDRAP80417&mode=A0LW0DEDE&upds=2026.09.08+15%3A14%3A06+CEST" caption="C20DD0X - 2.0 DI Diesel<div class="restrictionBlockWithMargin"><span class="vinHit" title="Attribute matches">Engine Type = All 2.0L Duratorq Engines&nbsp;</span></div>"><td class="caption tc-lcell tc-rcell dynaheight"><div class="dynaheightWrapper"><div class="dblWrap">C20DD0X - 2.0 DI Diesel<div class="restrictionBlockWithMargin"><span class="vinHit" title="Attribute matches">Engine Type = All 2.0L Duratorq Engines </span></div></div></div></td></tr>
|
||||||
|
<tr id="_nav-scope-table5" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?lang=en&openVinDialog=false&sharedCatCode=CMPS6&startup=false&vin=WF0RXXGCDRAP80417&mode=A0LW0DEDE&upds=2026.09.08+15%3A14%3A06+CEST" caption="CMPS6 - 6 Speed Trans Powershift<div class="restrictionBlockWithMargin"><span class="vinHit" title="Attribute matches">Transmission = 6 Speed Powershift 6DCT450 - MPS6&nbsp;</span></div>"><td class="caption tc-lcell tc-rcell dynaheight"><div class="dynaheightWrapper"><div class="dblWrap">CMPS6 - 6 Speed Trans Powershift<div class="restrictionBlockWithMargin"><span class="vinHit" title="Attribute matches">Transmission = 6 Speed Powershift 6DCT450 - MPS6 </span></div></div></div></td></tr>
|
||||||
|
<tr id="_nav-scope-table6" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?lang=en&openVinDialog=false&sharedCatCode=CVPTO&startup=false&vin=WF0RXXGCDRAP80417&mode=A0LW0DEDE&upds=2026.09.08+15%3A14%3A06+CEST" caption="CVPTO - Transfer Case<div class="restrictionBlockWithMargin"><span class="vinHit" title="Attribute matches">Transmission = 6 Speed Powershift 6DCT450 - MPS6&nbsp;</span></div>"><td class="caption tc-lcell tc-rcell dynaheight"><div class="dynaheightWrapper"><div class="dblWrap">CVPTO - Transfer Case<div class="restrictionBlockWithMargin"><span class="vinHit" title="Attribute matches">Transmission = 6 Speed Powershift 6DCT450 - MPS6 </span></div></div></div></td></tr>
|
||||||
|
<tr class="tc-row tc-data-row " id="_nav-maingroup-table0"><td class="tc-lcell identifier">1</td><td class="tc-rcell caption">Information And Customisation</td></tr>
|
||||||
|
<tr class="tc-row tc-data-row " id="_nav-maingroup-table1"><td class="tc-lcell identifier">2</td><td class="tc-rcell caption">Chassis</td></tr>
|
||||||
|
<tr class="tc-row tc-data-row " id="_nav-maingroup-table2"><td class="tc-lcell identifier">4</td><td class="tc-rcell caption">Electrical</td></tr>
|
||||||
|
<tr class="tc-row tc-data-row " id="_nav-maingroup-table3"><td class="tc-lcell identifier">5</td><td class="tc-rcell caption">Body And Paint</td></tr>
|
||||||
|
</table></body></html>
|
||||||
13
apps/api/src/integrations/pl24/__fixtures__/p4_hyundai.html
Normal file
13
apps/api/src/integrations/pl24/__fixtures__/p4_hyundai.html
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<html><head>
|
||||||
|
<title>Hyundai KMHCT41BAGU283791: ACCENT 15 - partslink24</title>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
</script></head><body>
|
||||||
|
<table>
|
||||||
|
<tr id="_nav-mainGroup-table0" class="tc-row tc-data-row " url="vin-group.action?lang=en&mainGroup=BO&openVinDialog=false&startup=false&vin=KMHCT41BAGU283791&mode=A0LW0DEDE&upds=2026.09.05+11%3A12%3A58+CEST"><td class="mainGroup identifier tc-lcell"><a class="unlink">BO</a></td><td class="mainGroup caption tc-rcell"><a class="unlink">BODY</a></td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table1" class="tc-row tc-data-row " url="vin-group.action?lang=en&mainGroup=CH&openVinDialog=false&startup=false&vin=KMHCT41BAGU283791&mode=A0LW0DEDE&upds=2026.09.05+11%3A12%3A58+CEST"><td class="mainGroup identifier tc-lcell"><a class="unlink">CH</a></td><td class="mainGroup caption tc-rcell"><a class="unlink">CHASSIS</a></td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table2" class="tc-row tc-data-row " url="vin-group.action?lang=en&mainGroup=EL&openVinDialog=false&startup=false&vin=KMHCT41BAGU283791&mode=A0LW0DEDE&upds=2026.09.05+11%3A12%3A58+CEST"><td class="mainGroup identifier tc-lcell"><a class="unlink">EL</a></td><td class="mainGroup caption tc-rcell"><a class="unlink">ELECTRIC</a></td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table3" class="tc-row tc-data-row " url="vin-group.action?lang=en&mainGroup=EN&openVinDialog=false&startup=false&vin=KMHCT41BAGU283791&mode=A0LW0DEDE&upds=2026.09.05+11%3A12%3A58+CEST"><td class="mainGroup identifier tc-lcell"><a class="unlink">EN</a></td><td class="mainGroup caption tc-rcell"><a class="unlink">ENGINE</a></td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table4" class="tc-row tc-data-row " url="vin-group.action?lang=en&mainGroup=MI&openVinDialog=false&startup=false&vin=KMHCT41BAGU283791&mode=A0LW0DEDE&upds=2026.09.05+11%3A12%3A58+CEST"><td class="mainGroup identifier tc-lcell"><a class="unlink">MI</a></td><td class="mainGroup caption tc-rcell"><a class="unlink">TRANSMISSION</a></td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table5" class="tc-row tc-data-row " url="vin-group.action?lang=en&mainGroup=TR&openVinDialog=false&startup=false&vin=KMHCT41BAGU283791&mode=A0LW0DEDE&upds=2026.09.05+11%3A12%3A58+CEST"><td class="mainGroup identifier tc-lcell"><a class="unlink">TR</a></td><td class="mainGroup caption tc-rcell"><a class="unlink">TRIM</a></td></tr>
|
||||||
|
</table></body></html>
|
||||||
109
apps/api/src/integrations/pl24/__fixtures__/p4_nissan.html
Normal file
109
apps/api/src/integrations/pl24/__fixtures__/p4_nissan.html
Normal file
@@ -0,0 +1,109 @@
|
|||||||
|
<html><head>
|
||||||
|
<title>Nissan - partslink24</title>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
</script></head><body>
|
||||||
|
<table>
|
||||||
|
<tr id="_nav-model-table1" class="tc-row tc-data-row " caption="Repair & Maintenance Information" ident="" urltype="EXTERN" url="https://eu.nissan.biz/" jsonurl="https://eu.nissan.biz/"><td colspan="2" class="model caption tc-rcell"><a class="unlink">Repair & Maintenance Information</a></td></tr>
|
||||||
|
<tr id="_nav-model-table3" class="tc-row tc-data-row " caption="200SX (EL)" ident="S14_097_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=S14_097_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=S14_097_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">S14</td><td class="model caption tc-rcell"><a class="unlink">200SX</a></td></tr>
|
||||||
|
<tr id="_nav-model-table4" class="tc-row tc-data-row " caption="350Z (EL)" ident="Z33_007_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=Z33_007_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=Z33_007_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">Z33</td><td class="model caption tc-rcell"><a class="unlink">350Z</a></td></tr>
|
||||||
|
<tr id="_nav-model-table5" class="tc-row tc-data-row " caption="370Z (EL)" ident="Z34_042_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=Z34_042_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=Z34_042_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">Z34</td><td class="model caption tc-rcell"><a class="unlink">370Z</a></td></tr>
|
||||||
|
<tr id="_nav-model-table6" class="tc-row tc-data-row " caption="ALMERA (EL)" ident="B10RS_016_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=B10RS_016_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=B10RS_016_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">B10RS</td><td class="model caption tc-rcell"><a class="unlink">ALMERA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table7" class="tc-row tc-data-row " caption="ALMERA (EL)" ident="G15RA_110_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=G15RA_110_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=G15RA_110_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">G15RA</td><td class="model caption tc-rcell"><a class="unlink">ALMERA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table8" class="tc-row tc-data-row " caption="ALMERA (EL)" ident="N15_088_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=N15_088_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=N15_088_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">N15</td><td class="model caption tc-rcell"><a class="unlink">ALMERA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table9" class="tc-row tc-data-row " caption="ALMERA JPN MAKE (EL)" ident="N16_298_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=N16_298_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=N16_298_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">N16</td><td class="model caption tc-rcell"><a class="unlink">ALMERA JPN MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table10" class="tc-row tc-data-row " caption="ALMERA TINO (EL)" ident="V10M_302_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=V10M_302_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=V10M_302_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">V10M</td><td class="model caption tc-rcell"><a class="unlink">ALMERA TINO</a></td></tr>
|
||||||
|
<tr id="_nav-model-table11" class="tc-row tc-data-row " caption="ALMERA UK MAKE (EL)" ident="N16E_307_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=N16E_307_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=N16E_307_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">N16E</td><td class="model caption tc-rcell"><a class="unlink">ALMERA UK MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table12" class="tc-row tc-data-row " caption="ALTIMA (EL)" ident="L33_138_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=L33_138_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=L33_138_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">L33</td><td class="model caption tc-rcell"><a class="unlink">ALTIMA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table13" class="tc-row tc-data-row " caption="ALTIMA (EL)" ident="L34_155_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=L34_155_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=L34_155_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">L34</td><td class="model caption tc-rcell"><a class="unlink">ALTIMA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table14" class="tc-row tc-data-row " caption="ARIYA (EL)" ident="FE0_158_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=FE0_158_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=FE0_158_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">FE0</td><td class="model caption tc-rcell"><a class="unlink">ARIYA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table15" class="tc-row tc-data-row " caption="ATLEON (EL)" ident="TK3_059_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=TK3_059_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=TK3_059_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">TK3</td><td class="model caption tc-rcell"><a class="unlink">ATLEON</a></td></tr>
|
||||||
|
<tr id="_nav-model-table16" class="tc-row tc-data-row " caption="CABSTAR (EL)" ident="F24M_021_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=F24M_021_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=F24M_021_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">F24M</td><td class="model caption tc-rcell"><a class="unlink">CABSTAR</a></td></tr>
|
||||||
|
<tr id="_nav-model-table17" class="tc-row tc-data-row " caption="CUBE (EL)" ident="Z12_047_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=Z12_047_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=Z12_047_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">Z12</td><td class="model caption tc-rcell"><a class="unlink">CUBE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table18" class="tc-row tc-data-row " caption="DATSUN MI-DO (EL)" ident="HBD0R_149_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=HBD0R_149_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=HBD0R_149_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">HBD0R</td><td class="model caption tc-rcell"><a class="unlink">DATSUN MI-DO</a></td></tr>
|
||||||
|
<tr id="_nav-model-table19" class="tc-row tc-data-row " caption="DATSUN MI-DO (EL)" ident="HBD0_129_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=HBD0_129_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=HBD0_129_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">HBD0</td><td class="model caption tc-rcell"><a class="unlink">DATSUN MI-DO</a></td></tr>
|
||||||
|
<tr id="_nav-model-table20" class="tc-row tc-data-row " caption="DATSUN ON-DO (EL)" ident="BD0R_148_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=BD0R_148_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=BD0R_148_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">BD0R</td><td class="model caption tc-rcell"><a class="unlink">DATSUN ON-DO</a></td></tr>
|
||||||
|
<tr id="_nav-model-table21" class="tc-row tc-data-row " caption="DATSUN ON-DO (EL)" ident="BD0_121_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=BD0_121_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=BD0_121_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">BD0</td><td class="model caption tc-rcell"><a class="unlink">DATSUN ON-DO</a></td></tr>
|
||||||
|
<tr id="_nav-model-table22" class="tc-row tc-data-row " caption="E-NV200 SPAIN (EL)" ident="ME0M_122_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=ME0M_122_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=ME0M_122_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">ME0M</td><td class="model caption tc-rcell"><a class="unlink">E-NV200 SPAIN</a></td></tr>
|
||||||
|
<tr id="_nav-model-table23" class="tc-row tc-data-row " caption="GT-R (EL)" ident="R35_040_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=R35_040_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=R35_040_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">R35</td><td class="model caption tc-rcell"><a class="unlink">GT-R</a></td></tr>
|
||||||
|
<tr id="_nav-model-table24" class="tc-row tc-data-row " caption="HARDBODY (EL)" ident="D22S_014_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=D22S_014_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=D22S_014_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">D22S</td><td class="model caption tc-rcell"><a class="unlink">HARDBODY</a></td></tr>
|
||||||
|
<tr id="_nav-model-table25" class="tc-row tc-data-row " caption="INTERSTAR (EL)" ident="X70_EL" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=X70_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=X70_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">X70</td><td class="model caption tc-rcell"><a class="unlink">INTERSTAR</a></td></tr>
|
||||||
|
<tr id="_nav-model-table26" class="tc-row tc-data-row " caption="INTERSTAR (EL)" ident="XDD_EL" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=XDD_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=XDD_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">XDD</td><td class="model caption tc-rcell"><a class="unlink">INTERSTAR</a></td></tr>
|
||||||
|
<tr id="_nav-model-table27" class="tc-row tc-data-row " caption="INTERSTAR (EL)" ident="XDE_EL" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=XDE_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=XDE_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">XDE</td><td class="model caption tc-rcell"><a class="unlink">INTERSTAR</a></td></tr>
|
||||||
|
<tr id="_nav-model-table28" class="tc-row tc-data-row " caption="JUKE (EL)" ident="F16E_157_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=F16E_157_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=F16E_157_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">F16E</td><td class="model caption tc-rcell"><a class="unlink">JUKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table29" class="tc-row tc-data-row " caption="JUKE JPN MAKE (EL)" ident="F15_052_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=F15_052_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=F15_052_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">F15</td><td class="model caption tc-rcell"><a class="unlink">JUKE JPN MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table30" class="tc-row tc-data-row " caption="JUKE UK MAKE (EL)" ident="F15E_056_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=F15E_056_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=F15E_056_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">F15E</td><td class="model caption tc-rcell"><a class="unlink">JUKE UK MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table31" class="tc-row tc-data-row " caption="KING CAB (EL)" ident="D22_073_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=D22_073_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=D22_073_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">D22</td><td class="model caption tc-rcell"><a class="unlink">KING CAB</a></td></tr>
|
||||||
|
<tr id="_nav-model-table32" class="tc-row tc-data-row " caption="KING CAB (EL)" ident="LCD22_030_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=LCD22_030_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=LCD22_030_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">LCD22</td><td class="model caption tc-rcell"><a class="unlink">KING CAB</a></td></tr>
|
||||||
|
<tr id="_nav-model-table33" class="tc-row tc-data-row " caption="KUBISTAR (EL)" ident="X76_EL" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=X76_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=X76_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">X76</td><td class="model caption tc-rcell"><a class="unlink">KUBISTAR</a></td></tr>
|
||||||
|
<tr id="_nav-model-table34" class="tc-row tc-data-row " caption="LEAF (EL)" ident="ZE0_054_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=ZE0_054_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=ZE0_054_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">ZE0</td><td class="model caption tc-rcell"><a class="unlink">LEAF</a></td></tr>
|
||||||
|
<tr id="_nav-model-table35" class="tc-row tc-data-row " caption="LEAF UK MAKE (EL)" ident="ZE0E_111_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=ZE0E_111_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=ZE0E_111_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">ZE0E</td><td class="model caption tc-rcell"><a class="unlink">LEAF UK MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table36" class="tc-row tc-data-row " caption="LEAF UK MAKE (EL)" ident="ZE1E_152_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=ZE1E_152_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=ZE1E_152_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">ZE1E</td><td class="model caption tc-rcell"><a class="unlink">LEAF UK MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table37" class="tc-row tc-data-row " caption="LEAF UK MAKE (EL)" ident="ZE2E_166_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=ZE2E_166_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=ZE2E_166_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">ZE2E</td><td class="model caption tc-rcell"><a class="unlink">LEAF UK MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table38" class="tc-row tc-data-row " caption="MAXIMA (EL)" ident="A32_065_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=A32_065_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=A32_065_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">A32</td><td class="model caption tc-rcell"><a class="unlink">MAXIMA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table39" class="tc-row tc-data-row " caption="MAXIMA (EL)" ident="A36_131_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=A36_131_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=A36_131_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">A36</td><td class="model caption tc-rcell"><a class="unlink">MAXIMA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table40" class="tc-row tc-data-row " caption="MAXIMA (EL)" ident="CA33_305_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=CA33_305_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=CA33_305_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">CA33</td><td class="model caption tc-rcell"><a class="unlink">MAXIMA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table41" class="tc-row tc-data-row " caption="MICRA (EL)" ident="K11E_081_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=K11E_081_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=K11E_081_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">K11E</td><td class="model caption tc-rcell"><a class="unlink">MICRA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table42" class="tc-row tc-data-row " caption="MICRA (EL)" ident="K12E_005_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=K12E_005_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=K12E_005_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">K12E</td><td class="model caption tc-rcell"><a class="unlink">MICRA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table43" class="tc-row tc-data-row " caption="MICRA (EL)" ident="K15_EL" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=K15_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=K15_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">K15</td><td class="model caption tc-rcell"><a class="unlink">MICRA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table44" class="tc-row tc-data-row " caption="MICRA C+C (EL)" ident="CK12E_012_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=CK12E_012_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=CK12E_012_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">CK12E</td><td class="model caption tc-rcell"><a class="unlink">MICRA C+C</a></td></tr>
|
||||||
|
<tr id="_nav-model-table45" class="tc-row tc-data-row " caption="MICRA FLIN MAKE (EL)" ident="K14FR_144_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=K14FR_144_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=K14FR_144_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">K14FR</td><td class="model caption tc-rcell"><a class="unlink">MICRA FLIN MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table46" class="tc-row tc-data-row " caption="MICRA IND MAKE (EL)" ident="K13KK_136_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=K13KK_136_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=K13KK_136_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">K13KK</td><td class="model caption tc-rcell"><a class="unlink">MICRA IND MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table47" class="tc-row tc-data-row " caption="MICRA IND MAKE (EL)" ident="K13K_051_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=K13K_051_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=K13K_051_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">K13K</td><td class="model caption tc-rcell"><a class="unlink">MICRA IND MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table48" class="tc-row tc-data-row " caption="MURANO (EL)" ident="Z50_008_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=Z50_008_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=Z50_008_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">Z50</td><td class="model caption tc-rcell"><a class="unlink">MURANO</a></td></tr>
|
||||||
|
<tr id="_nav-model-table49" class="tc-row tc-data-row " caption="MURANO (EL)" ident="Z51_036_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=Z51_036_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=Z51_036_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">Z51</td><td class="model caption tc-rcell"><a class="unlink">MURANO</a></td></tr>
|
||||||
|
<tr id="_nav-model-table50" class="tc-row tc-data-row " caption="MURANO RUS MAKE (EL)" ident="Z51R_057_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=Z51R_057_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=Z51R_057_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">Z51R</td><td class="model caption tc-rcell"><a class="unlink">MURANO RUS MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table51" class="tc-row tc-data-row " caption="MURANO RUS MAKE (EL)" ident="Z52R_137_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=Z52R_137_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=Z52R_137_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">Z52R</td><td class="model caption tc-rcell"><a class="unlink">MURANO RUS MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table52" class="tc-row tc-data-row " caption="NAVARA (EL)" ident="D40M_010_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=D40M_010_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=D40M_010_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">D40M</td><td class="model caption tc-rcell"><a class="unlink">NAVARA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table53" class="tc-row tc-data-row " caption="NAVARA NP300 (EL)" ident="D23M_135_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=D23M_135_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=D23M_135_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">D23M</td><td class="model caption tc-rcell"><a class="unlink">NAVARA NP300</a></td></tr>
|
||||||
|
<tr id="_nav-model-table54" class="tc-row tc-data-row " caption="NOTE UK MAKE (EL)" ident="E11E_015_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=E11E_015_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=E11E_015_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">E11E</td><td class="model caption tc-rcell"><a class="unlink">NOTE UK MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table55" class="tc-row tc-data-row " caption="NOTE UK MAKE (EL)" ident="E12E_113_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=E12E_113_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=E12E_113_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">E12E</td><td class="model caption tc-rcell"><a class="unlink">NOTE UK MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table56" class="tc-row tc-data-row " caption="NP300 SAF MAKE (EL)" ident="D22SS_055_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=D22SS_055_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=D22SS_055_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">D22SS</td><td class="model caption tc-rcell"><a class="unlink">NP300 SAF MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table57" class="tc-row tc-data-row " caption="NV200 (EL)" ident="M20_046_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=M20_046_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=M20_046_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">M20</td><td class="model caption tc-rcell"><a class="unlink">NV200</a></td></tr>
|
||||||
|
<tr id="_nav-model-table58" class="tc-row tc-data-row " caption="NV200 SPAINMAKE (EL)" ident="M20M_050_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=M20M_050_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=M20M_050_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">M20M</td><td class="model caption tc-rcell"><a class="unlink">NV200 SPAINMAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table59" class="tc-row tc-data-row " caption="NV250 (EL)" ident="X61_EL" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=X61_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=X61_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">X61</td><td class="model caption tc-rcell"><a class="unlink">NV250</a></td></tr>
|
||||||
|
<tr id="_nav-model-table60" class="tc-row tc-data-row " caption="NV300/PRIMASTAR (EL)" ident="X82_EL" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=X82_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=X82_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">X82</td><td class="model caption tc-rcell"><a class="unlink">NV300/PRIMASTAR</a></td></tr>
|
||||||
|
<tr id="_nav-model-table61" class="tc-row tc-data-row " caption="NV400 (EL)" ident="X62_EL" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=X62_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=X62_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">X62</td><td class="model caption tc-rcell"><a class="unlink">NV400</a></td></tr>
|
||||||
|
<tr id="_nav-model-table62" class="tc-row tc-data-row " caption="NV400/INTERSTAR (EL)" ident="X62B_EL" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=X62B_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=X62B_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">X62B</td><td class="model caption tc-rcell"><a class="unlink">NV400/INTERSTAR</a></td></tr>
|
||||||
|
<tr id="_nav-model-table63" class="tc-row tc-data-row " caption="PATHFINDER (EL)" ident="R51M_009_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=R51M_009_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=R51M_009_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">R51M</td><td class="model caption tc-rcell"><a class="unlink">PATHFINDER</a></td></tr>
|
||||||
|
<tr id="_nav-model-table64" class="tc-row tc-data-row " caption="PATHFINDER (EL)" ident="R52R_123_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=R52R_123_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=R52R_123_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">R52R</td><td class="model caption tc-rcell"><a class="unlink">PATHFINDER</a></td></tr>
|
||||||
|
<tr id="_nav-model-table65" class="tc-row tc-data-row " caption="PATHFINDER (EL)" ident="R53_159_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=R53_159_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=R53_159_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">R53</td><td class="model caption tc-rcell"><a class="unlink">PATHFINDER</a></td></tr>
|
||||||
|
<tr id="_nav-model-table66" class="tc-row tc-data-row " caption="PATHFINDER RUS (EL)" ident="R52RR_132_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=R52RR_132_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=R52RR_132_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">R52RR</td><td class="model caption tc-rcell"><a class="unlink">PATHFINDER RUS</a></td></tr>
|
||||||
|
<tr id="_nav-model-table67" class="tc-row tc-data-row " caption="PATROL (EL)" ident="Y62_048_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=Y62_048_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=Y62_048_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">Y62</td><td class="model caption tc-rcell"><a class="unlink">PATROL</a></td></tr>
|
||||||
|
<tr id="_nav-model-table68" class="tc-row tc-data-row " caption="PATROL(GR) (EL)" ident="Y61_107_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=Y61_107_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=Y61_107_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">Y61</td><td class="model caption tc-rcell"><a class="unlink">PATROL(GR)</a></td></tr>
|
||||||
|
<tr id="_nav-model-table69" class="tc-row tc-data-row " caption="PIXO (EL)" ident="UA0_043_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=UA0_043_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=UA0_043_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">UA0</td><td class="model caption tc-rcell"><a class="unlink">PIXO</a></td></tr>
|
||||||
|
<tr id="_nav-model-table70" class="tc-row tc-data-row " caption="PRIMASTAR (EL)" ident="X83_EL" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=X83_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=X83_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">X83</td><td class="model caption tc-rcell"><a class="unlink">PRIMASTAR</a></td></tr>
|
||||||
|
<tr id="_nav-model-table71" class="tc-row tc-data-row " caption="PRIMERA (EL)" ident="P11E_090_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=P11E_090_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=P11E_090_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">P11E</td><td class="model caption tc-rcell"><a class="unlink">PRIMERA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table72" class="tc-row tc-data-row " caption="PRIMERA (EL)" ident="P12E_001_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=P12E_001_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=P12E_001_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">P12E</td><td class="model caption tc-rcell"><a class="unlink">PRIMERA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table73" class="tc-row tc-data-row " caption="PRIMERA WAGON (EL)" ident="W10_102_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=W10_102_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=W10_102_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">W10</td><td class="model caption tc-rcell"><a class="unlink">PRIMERA WAGON</a></td></tr>
|
||||||
|
<tr id="_nav-model-table74" class="tc-row tc-data-row " caption="PRIMERA WAGON (EL)" ident="WP11E_104_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=WP11E_104_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=WP11E_104_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">WP11E</td><td class="model caption tc-rcell"><a class="unlink">PRIMERA WAGON</a></td></tr>
|
||||||
|
<tr id="_nav-model-table75" class="tc-row tc-data-row " caption="PULSAR (EL)" ident="C13M_124_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=C13M_124_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=C13M_124_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">C13M</td><td class="model caption tc-rcell"><a class="unlink">PULSAR</a></td></tr>
|
||||||
|
<tr id="_nav-model-table76" class="tc-row tc-data-row " caption="QASHQAI (EL)" ident="J10E_023_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=J10E_023_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=J10E_023_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">J10E</td><td class="model caption tc-rcell"><a class="unlink">QASHQAI</a></td></tr>
|
||||||
|
<tr id="_nav-model-table77" class="tc-row tc-data-row " caption="QASHQAI (EL)" ident="J12E_160_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=J12E_160_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=J12E_160_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">J12E</td><td class="model caption tc-rcell"><a class="unlink">QASHQAI</a></td></tr>
|
||||||
|
<tr id="_nav-model-table78" class="tc-row tc-data-row " caption="QASHQAI RUSSIA (EL)" ident="J11R_134_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=J11R_134_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=J11R_134_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">J11R</td><td class="model caption tc-rcell"><a class="unlink">QASHQAI RUSSIA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table79" class="tc-row tc-data-row " caption="QASHQAI UK MAKE (EL)" ident="J11E_120_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=J11E_120_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=J11E_120_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">J11E</td><td class="model caption tc-rcell"><a class="unlink">QASHQAI UK MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table80" class="tc-row tc-data-row " caption="QASHQAI+2 (EL)" ident="JJ10E_038_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=JJ10E_038_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=JJ10E_038_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">JJ10E</td><td class="model caption tc-rcell"><a class="unlink">QASHQAI+2</a></td></tr>
|
||||||
|
<tr id="_nav-model-table81" class="tc-row tc-data-row " caption="SENTRA RUS MAKE (EL)" ident="B17RR_126_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=B17RR_126_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=B17RR_126_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">B17RR</td><td class="model caption tc-rcell"><a class="unlink">SENTRA RUS MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table82" class="tc-row tc-data-row " caption="SENTRA RUS MAKE (EL)" ident="B17R_125_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=B17R_125_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=B17R_125_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">B17R</td><td class="model caption tc-rcell"><a class="unlink">SENTRA RUS MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table83" class="tc-row tc-data-row " caption="SERENA (EL)" ident="C23M_070_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=C23M_070_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=C23M_070_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">C23M</td><td class="model caption tc-rcell"><a class="unlink">SERENA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table84" class="tc-row tc-data-row " caption="SUNNY WAGON (EL)" ident="Y10_105_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=Y10_105_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=Y10_105_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">Y10</td><td class="model caption tc-rcell"><a class="unlink">SUNNY WAGON</a></td></tr>
|
||||||
|
<tr id="_nav-model-table85" class="tc-row tc-data-row " caption="TEANA (EL)" ident="J31_017_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=J31_017_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=J31_017_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">J31</td><td class="model caption tc-rcell"><a class="unlink">TEANA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table86" class="tc-row tc-data-row " caption="TEANA (EL)" ident="J32_031_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=J32_031_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=J32_031_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">J32</td><td class="model caption tc-rcell"><a class="unlink">TEANA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table87" class="tc-row tc-data-row " caption="TEANA RUS MAKE (EL)" ident="J32R_041_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=J32R_041_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=J32R_041_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">J32R</td><td class="model caption tc-rcell"><a class="unlink">TEANA RUS MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table88" class="tc-row tc-data-row " caption="TEANA RUS MAKE (EL)" ident="L33R_118_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=L33R_118_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=L33R_118_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">L33R</td><td class="model caption tc-rcell"><a class="unlink">TEANA RUS MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table89" class="tc-row tc-data-row " caption="TERRANO (EL)" ident="D10_EL" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=D10_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=D10_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">D10</td><td class="model caption tc-rcell"><a class="unlink">TERRANO</a></td></tr>
|
||||||
|
<tr id="_nav-model-table90" class="tc-row tc-data-row " caption="TERRANO (EL)" ident="R50_092_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=R50_092_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=R50_092_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">R50</td><td class="model caption tc-rcell"><a class="unlink">TERRANO</a></td></tr>
|
||||||
|
<tr id="_nav-model-table91" class="tc-row tc-data-row " caption="TERRANO2 (EL)" ident="R20_091_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=R20_091_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=R20_091_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">R20</td><td class="model caption tc-rcell"><a class="unlink">TERRANO2</a></td></tr>
|
||||||
|
<tr id="_nav-model-table92" class="tc-row tc-data-row " caption="TIIDA (EL)" ident="C11X_028_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=C11X_028_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=C11X_028_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">C11X</td><td class="model caption tc-rcell"><a class="unlink">TIIDA</a></td></tr>
|
||||||
|
<tr id="_nav-model-table93" class="tc-row tc-data-row " caption="TIIDA RUS MAKE (EL)" ident="C13R_128_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=C13R_128_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=C13R_128_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">C13R</td><td class="model caption tc-rcell"><a class="unlink">TIIDA RUS MAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table94" class="tc-row tc-data-row " caption="TIIDA SEDAN (EL)" ident="SC11X_024_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=SC11X_024_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=SC11X_024_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">SC11X</td><td class="model caption tc-rcell"><a class="unlink">TIIDA SEDAN</a></td></tr>
|
||||||
|
<tr id="_nav-model-table95" class="tc-row tc-data-row " caption="TOWNSTAR/e-TOWNSTAR (EL)" ident="XFK_EL" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=XFK_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=XFK_EL&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">XFK</td><td class="model caption tc-rcell"><a class="unlink">TOWNSTAR/e-TOWNSTAR</a></td></tr>
|
||||||
|
<tr id="_nav-model-table96" class="tc-row tc-data-row " caption="X-TRAIL (EL)" ident="AGT32_151_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=AGT32_151_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=AGT32_151_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">AGT32</td><td class="model caption tc-rcell"><a class="unlink">X-TRAIL</a></td></tr>
|
||||||
|
<tr id="_nav-model-table97" class="tc-row tc-data-row " caption="X-TRAIL (EL)" ident="T30_002_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=T30_002_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=T30_002_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">T30</td><td class="model caption tc-rcell"><a class="unlink">X-TRAIL</a></td></tr>
|
||||||
|
<tr id="_nav-model-table98" class="tc-row tc-data-row " caption="X-TRAIL (EL)" ident="T32_117_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=T32_117_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=T32_117_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">T32</td><td class="model caption tc-rcell"><a class="unlink">X-TRAIL</a></td></tr>
|
||||||
|
<tr id="_nav-model-table99" class="tc-row tc-data-row " caption="X-TRAIL (EL)" ident="T33_163_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=T33_163_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=T33_163_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">T33</td><td class="model caption tc-rcell"><a class="unlink">X-TRAIL</a></td></tr>
|
||||||
|
<tr id="_nav-model-table100" class="tc-row tc-data-row " caption="X-TRAIL JPNMAKE (EL)" ident="T31_026_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=T31_026_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=T31_026_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">T31</td><td class="model caption tc-rcell"><a class="unlink">X-TRAIL JPNMAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table101" class="tc-row tc-data-row " caption="X-TRAIL RUSMAKE (EL)" ident="T31R_045_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=T31R_045_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=T31R_045_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">T31R</td><td class="model caption tc-rcell"><a class="unlink">X-TRAIL RUSMAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table102" class="tc-row tc-data-row " caption="X-TRAIL RUSMAKE (EL)" ident="T32RR_140_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=T32RR_140_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=T32RR_140_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">T32RR</td><td class="model caption tc-rcell"><a class="unlink">X-TRAIL RUSMAKE</a></td></tr>
|
||||||
|
<tr id="_nav-model-table103" class="tc-row tc-data-row " caption="X-TRAIL RUSMAKE (EL)" ident="T32R_127_3" urltype="INTERN" url="vehicle.action?lang=en&localMarketOnly=true&model=T32R_127_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST" jsonurl="json-model-config.action?lang=en&localMarketOnly=true&model=T32R_127_3&spec=e30%3D&startup=false&mode=A0LW0DEDE&upds=2026.09.02+10%3A52%3A21+CEST"><td class="model identifier tc-lcell">T32R</td><td class="model caption tc-rcell"><a class="unlink">X-TRAIL RUSMAKE</a></td></tr>
|
||||||
|
</table></body></html>
|
||||||
38
apps/api/src/integrations/pl24/__fixtures__/p4_opel.html
Normal file
38
apps/api/src/integrations/pl24/__fixtures__/p4_opel.html
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
<html><head>
|
||||||
|
<title>Opel W0LPD5EC9EG058575: P10 - ASTRA-J [2010-2020] - partslink24</title>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
</script></head><body>
|
||||||
|
<table>
|
||||||
|
<tr id="_nav-mainGroup-table0" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=394&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="BODY SHELL AND PANELS" ident="394" maingroupcode="A"><td class="mainGroupCode tc-lcell ">A</td><td class="caption tc-rcell ">BODY SHELL AND PANELS</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table1" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=395&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="BODY EXTERIOR FITTINGS" ident="395" maingroupcode="B"><td class="mainGroupCode tc-lcell ">B</td><td class="caption tc-rcell ">BODY EXTERIOR FITTINGS</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table2" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=396&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="BODY INTERIOR FITTINGS" ident="396" maingroupcode="C"><td class="mainGroupCode tc-lcell ">C</td><td class="caption tc-rcell ">BODY INTERIOR FITTINGS</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table3" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=397&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="BODY INTERIOR TRIM" ident="397" maingroupcode="D"><td class="mainGroupCode tc-lcell ">D</td><td class="caption tc-rcell ">BODY INTERIOR TRIM</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table4" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=398&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="ENGINE AND CLUTCH" ident="398" maingroupcode="E"><td class="mainGroupCode tc-lcell ">E</td><td class="caption tc-rcell ">ENGINE AND CLUTCH</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table5" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=399&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="COOLING" ident="399" maingroupcode="F"><td class="mainGroupCode tc-lcell ">F</td><td class="caption tc-rcell ">COOLING</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table6" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=400&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="FUEL AND EXHAUST" ident="400" maingroupcode="G"><td class="mainGroupCode tc-lcell ">G</td><td class="caption tc-rcell ">FUEL AND EXHAUST</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table7" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=401&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="TRANSMISSION" ident="401" maingroupcode="H"><td class="mainGroupCode tc-lcell ">H</td><td class="caption tc-rcell ">TRANSMISSION</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table8" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=402&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="BRAKES" ident="402" maingroupcode="J"><td class="mainGroupCode tc-lcell ">J</td><td class="caption tc-rcell ">BRAKES</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table9" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=403&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="FRONT AXLE AND SUSPENSION" ident="403" maingroupcode="K"><td class="mainGroupCode tc-lcell ">K</td><td class="caption tc-rcell ">FRONT AXLE AND SUSPENSION</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table10" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=404&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="STEERING" ident="404" maingroupcode="L"><td class="mainGroupCode tc-lcell ">L</td><td class="caption tc-rcell ">STEERING</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table11" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=405&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="REAR AXLE AND SUSPENSION" ident="405" maingroupcode="M"><td class="mainGroupCode tc-lcell ">M</td><td class="caption tc-rcell ">REAR AXLE AND SUSPENSION</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table12" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=406&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="ROAD WHEELS" ident="406" maingroupcode="N"><td class="mainGroupCode tc-lcell ">N</td><td class="caption tc-rcell ">ROAD WHEELS</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table13" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=407&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="ELECTRICAL" ident="407" maingroupcode="P"><td class="mainGroupCode tc-lcell ">P</td><td class="caption tc-rcell ">ELECTRICAL</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table14" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=408&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="ACCESSORIES" ident="408" maingroupcode="Q"><td class="mainGroupCode tc-lcell ">Q</td><td class="caption tc-rcell ">ACCESSORIES</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table15" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=409&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="SPECIAL OPTIONS / DUAL FUEL" ident="409" maingroupcode="R"><td class="mainGroupCode tc-lcell ">R</td><td class="caption tc-rcell ">SPECIAL OPTIONS / DUAL FUEL</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table16" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=410&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="PAINTS" ident="410" maingroupcode="Z"><td class="mainGroupCode tc-lcell ">Z</td><td class="caption tc-rcell ">PAINTS</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table18" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=741&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="PAINTS" ident="741" maingroupcode="1"><td class="mainGroupCode tc-lcell ">1</td><td class="caption tc-rcell ">PAINTS</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table19" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=742&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="WIRING HARNESS REPAIR KITS" ident="742" maingroupcode="2"><td class="mainGroupCode tc-lcell ">2</td><td class="caption tc-rcell ">WIRING HARNESS REPAIR KITS</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table20" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=743&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="CAR CARE MATERIALS" ident="743" maingroupcode="3"><td class="mainGroupCode tc-lcell ">3</td><td class="caption tc-rcell ">CAR CARE MATERIALS</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table21" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=744&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="ADHESIVES / REPAIR KITS" ident="744" maingroupcode="4"><td class="mainGroupCode tc-lcell ">4</td><td class="caption tc-rcell ">ADHESIVES / REPAIR KITS</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table22" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=745&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="ANTI-FREEZE AND COOLANT" ident="745" maingroupcode="5"><td class="mainGroupCode tc-lcell ">5</td><td class="caption tc-rcell ">ANTI-FREEZE AND COOLANT</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table23" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=746&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="BODY REPAIR MATERIALS" ident="746" maingroupcode="6"><td class="mainGroupCode tc-lcell ">6</td><td class="caption tc-rcell ">BODY REPAIR MATERIALS</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table24" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=747&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="BRAKE AND CLUTCH FLUID" ident="747" maingroupcode="7"><td class="mainGroupCode tc-lcell ">7</td><td class="caption tc-rcell ">BRAKE AND CLUTCH FLUID</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table25" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=748&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="OIL" ident="748" maingroupcode="8"><td class="mainGroupCode tc-lcell ">8</td><td class="caption tc-rcell ">OIL</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table26" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=749&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="GREASES AND PASTES" ident="749" maingroupcode="9"><td class="mainGroupCode tc-lcell ">9</td><td class="caption tc-rcell ">GREASES AND PASTES</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table27" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=750&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="SEALANT" ident="750" maingroupcode="A"><td class="mainGroupCode tc-lcell ">A</td><td class="caption tc-rcell ">SEALANT</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table28" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=751&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="TOOLS AND PERSONAL PROTECTION" ident="751" maingroupcode="B"><td class="mainGroupCode tc-lcell ">B</td><td class="caption tc-rcell ">TOOLS AND PERSONAL PROTECTION</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table29" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=752&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="MISCELLANEOUS" ident="752" maingroupcode="C"><td class="mainGroupCode tc-lcell ">C</td><td class="caption tc-rcell ">MISCELLANEOUS</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table30" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=753&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="EMISSION CONTROL FLUID / FUEL ADDITIVES" ident="753" maingroupcode="D"><td class="mainGroupCode tc-lcell ">D</td><td class="caption tc-rcell ">EMISSION CONTROL FLUID / FUEL ADDITIVES</td></tr>
|
||||||
|
<tr id="_nav-mainGroup-table31" class="tc-row tc-data-row " jsonurl="json-vin-main-group.action?catId=25&lang=en&mainGroupId=754&openVinDialog=true&startup=false&subGroupId=0&vin=W0LPD5EC9EG058575&mode=A0LW0DEDE&upds=2026.09.07+21%3A00%3A03+CEST" caption="DIAGNOSTIC DEVICES" ident="754" maingroupcode="S"><td class="mainGroupCode tc-lcell ">S</td><td class="caption tc-rcell ">DIAGNOSTIC DEVICES</td></tr>
|
||||||
|
</table></body></html>
|
||||||
198
apps/api/src/integrations/pl24/__fixtures__/p5_volvo_en.json
Normal file
198
apps/api/src/integrations/pl24/__fixtures__/p5_volvo_en.json
Normal file
@@ -0,0 +1,198 @@
|
|||||||
|
{
|
||||||
|
"link": {
|
||||||
|
"wid": "mainGroupTable",
|
||||||
|
"path": "/p5volvo/extern/groups/vin/mainGroup?lang=en&model=308&modelYear=1620&partnerGroup=46&serviceName=volvo_parts&upds=2026-08-24--11-02&vin=YV1AS84ABD1168166"
|
||||||
|
},
|
||||||
|
"segments": {
|
||||||
|
"vinfoBasic": {
|
||||||
|
"records": [
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Vehicle Identification No.",
|
||||||
|
"value": "YV1AS84ABD1168166"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Year",
|
||||||
|
"value": "2013"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Model",
|
||||||
|
"value": "S80 (07\\-)"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Km/h or mph",
|
||||||
|
"value": "K"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Factory code",
|
||||||
|
"value": "21"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Steering gear prod no",
|
||||||
|
"value": "31360538"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Structure week",
|
||||||
|
"value": "201236"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Type",
|
||||||
|
"value": "S80"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Chassis",
|
||||||
|
"value": "168166"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Partner group",
|
||||||
|
"value": "Europe"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Upholstery/interior code",
|
||||||
|
"value": "210100"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Upholstery/interior",
|
||||||
|
"value": "LEATHER/ANTHR/QRTZCEIL/NV"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Exterior color",
|
||||||
|
"value": "61400"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Exterior color",
|
||||||
|
"value": "WHITE SOLID ICE WHITE"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Body style code",
|
||||||
|
"value": "0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Body style",
|
||||||
|
"value": "Sedan"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Special vehicle code",
|
||||||
|
"value": " "
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Special vehicles",
|
||||||
|
"value": " "
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Sales type",
|
||||||
|
"value": "42"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Sales type",
|
||||||
|
"value": "SALES VERSION 42"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Market code",
|
||||||
|
"value": "49"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Market",
|
||||||
|
"value": "TR"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Engine Code",
|
||||||
|
"value": "84"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Engine",
|
||||||
|
"value": "D4162T"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Engine part no",
|
||||||
|
"value": "6906309"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Engine serial no",
|
||||||
|
"value": "00000000000004138845 / 0ELD61 2208122233587"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Transmission Code",
|
||||||
|
"value": "B"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Transmission",
|
||||||
|
"value": "6\\-PSHIFT 2WD / MPS6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Transmission part no",
|
||||||
|
"value": "1285041"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Transmission serial no",
|
||||||
|
"value": "00AWBB1 170812170654"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Chassis code",
|
||||||
|
"value": "35659B7A6276"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
198
apps/api/src/integrations/pl24/__fixtures__/p5_volvo_tr.json
Normal file
198
apps/api/src/integrations/pl24/__fixtures__/p5_volvo_tr.json
Normal file
@@ -0,0 +1,198 @@
|
|||||||
|
{
|
||||||
|
"link": {
|
||||||
|
"wid": "mainGroupTable",
|
||||||
|
"path": "/p5volvo/extern/groups/vin/mainGroup?lang=tr&model=308&modelYear=1620&partnerGroup=46&serviceName=volvo_parts&upds=2026-08-24--11-02&vin=YV1AS84ABD1168166"
|
||||||
|
},
|
||||||
|
"segments": {
|
||||||
|
"vinfoBasic": {
|
||||||
|
"records": [
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Sasi numarasi",
|
||||||
|
"value": "YV1AS84ABD1168166"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Model yili",
|
||||||
|
"value": "2013"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Model",
|
||||||
|
"value": "S80 (07\\-)"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Hız Birimi",
|
||||||
|
"value": "K"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Fabrika Kodu",
|
||||||
|
"value": "21"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Direksiyon Kutusu Üretim No",
|
||||||
|
"value": "31360538"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Üretim Haftası",
|
||||||
|
"value": "201236"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Türü",
|
||||||
|
"value": "S80"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Şasi",
|
||||||
|
"value": "168166"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Ortak grubu",
|
||||||
|
"value": "Europe"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Döşeme/iç mekan kodu",
|
||||||
|
"value": "210100"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Döşeme",
|
||||||
|
"value": "LEATHER/ANTHR/QRTZCEIL/NV"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Dis rengi",
|
||||||
|
"value": "61400"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Dis rengi",
|
||||||
|
"value": "WHITE SOLID ICE WHITE"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Karoseri Tipi Kodu",
|
||||||
|
"value": "0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Kaporta Stili",
|
||||||
|
"value": "Sedan"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Özel Araç Kodu",
|
||||||
|
"value": " "
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Özel araçlar",
|
||||||
|
"value": " "
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Satis tipi",
|
||||||
|
"value": "42"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Satis tipi",
|
||||||
|
"value": "SALES VERSION 42"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Piyasa Kodu",
|
||||||
|
"value": "49"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Market",
|
||||||
|
"value": "TR"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Motor kodu",
|
||||||
|
"value": "84"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Motor",
|
||||||
|
"value": "D4162T"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Motor Parça No",
|
||||||
|
"value": "6906309"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Motor Seri Numarası",
|
||||||
|
"value": "00000000000004138845 / 0ELD61 2208122233587"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Şanzıman kodu",
|
||||||
|
"value": "B"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Şanzıman",
|
||||||
|
"value": "6\\-PSHIFT 2WD / MPS6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Şanzıman Parça No",
|
||||||
|
"value": "1285041"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Şanzıman Seri No",
|
||||||
|
"value": "00AWBB1 170812170654"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"values": {
|
||||||
|
"description": "Şasi Kodu",
|
||||||
|
"value": "35659B7A6276"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
492
apps/api/src/integrations/pl24/pl24-auth.service.spec.ts
Normal file
492
apps/api/src/integrations/pl24/pl24-auth.service.spec.ts
Normal file
@@ -0,0 +1,492 @@
|
|||||||
|
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
||||||
|
import { PL24AuthService } from "./pl24-auth.service";
|
||||||
|
import { PL24BudgetExceededError } from "./pl24-budget.service";
|
||||||
|
|
||||||
|
// Oturum modeli (1 login → PL24TOKEN çerezi → yalnız authorize ile yenileme),
|
||||||
|
// PL24_TR_DISABLED köprüsü ve login devre kesici. Ağ yok: global fetch stub'ı;
|
||||||
|
// private durum repo genelindeki `as unknown as` kalıbıyla okunur.
|
||||||
|
|
||||||
|
type RedisStub = {
|
||||||
|
store: Map<string, unknown>;
|
||||||
|
get: (k: string) => Promise<string | null>;
|
||||||
|
set: (k: string, v: string, ttl?: number) => Promise<void>;
|
||||||
|
exists: (k: string) => Promise<boolean>;
|
||||||
|
getJson: (k: string) => Promise<unknown>;
|
||||||
|
setJson: (k: string, v: unknown) => Promise<void>;
|
||||||
|
del: (k: string) => Promise<void>;
|
||||||
|
setNx: (k: string, v: string, ttl: number) => Promise<boolean>;
|
||||||
|
incr: (k: string) => Promise<number>;
|
||||||
|
expire: (k: string, ttl: number) => Promise<void>;
|
||||||
|
};
|
||||||
|
|
||||||
|
const makeRedis = (opts: { lockTaken?: boolean } = {}): RedisStub => {
|
||||||
|
const store = new Map<string, unknown>();
|
||||||
|
const counters = new Map<string, number>();
|
||||||
|
return {
|
||||||
|
store,
|
||||||
|
get: async (k: string) => (store.has(k) ? String(store.get(k)) : null),
|
||||||
|
set: async (k: string, v: string) => {
|
||||||
|
store.set(k, v);
|
||||||
|
},
|
||||||
|
exists: async (k: string) => store.has(k),
|
||||||
|
getJson: async (k: string) => store.get(k) ?? null,
|
||||||
|
setJson: async (k: string, v: unknown) => {
|
||||||
|
store.set(k, v);
|
||||||
|
},
|
||||||
|
del: async (k: string) => {
|
||||||
|
store.delete(k);
|
||||||
|
},
|
||||||
|
// Gerçek SET NX semantiği: var olan anahtarı ikinci kez yazmaz. Alarm
|
||||||
|
// tekrarının bastırılması buna dayanıyor.
|
||||||
|
setNx: async (k: string, v: string) => {
|
||||||
|
if (opts.lockTaken && k.includes("login-lock")) return false;
|
||||||
|
if (store.has(k)) return false;
|
||||||
|
store.set(k, v);
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
incr: async (k: string) => {
|
||||||
|
const n = (counters.get(k) ?? 0) + 1;
|
||||||
|
counters.set(k, n);
|
||||||
|
return n;
|
||||||
|
},
|
||||||
|
expire: async () => {},
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
/** Bütçe servisi stub'ı: sayar ama engellemez, telemetriyi yutar. */
|
||||||
|
const makeBudget = () => ({
|
||||||
|
consumed: [] as string[],
|
||||||
|
recorded: [] as unknown[],
|
||||||
|
consume: async function (kind: string) {
|
||||||
|
this.consumed.push(kind);
|
||||||
|
},
|
||||||
|
record: function (e: unknown) {
|
||||||
|
this.recorded.push(e);
|
||||||
|
},
|
||||||
|
spentToday: async () => 0,
|
||||||
|
});
|
||||||
|
|
||||||
|
const makeService = (cfgOverrides: Record<string, string> = {}, redis = makeRedis()) => {
|
||||||
|
const cfg: Record<string, string> = {
|
||||||
|
"pl24.companyCode": "tr-000000",
|
||||||
|
"pl24.username": "admin",
|
||||||
|
"pl24.password": "pw-tr",
|
||||||
|
"pl24.companyCode2": "de-000000",
|
||||||
|
"pl24.username2": "admin",
|
||||||
|
"pl24.password2": "pw-de",
|
||||||
|
"pl24.proxyDe": "http://u:p@127.0.0.1:9",
|
||||||
|
...cfgOverrides,
|
||||||
|
};
|
||||||
|
const configService = { get: (k: string, d?: unknown) => cfg[k] ?? d } as never;
|
||||||
|
const budget = makeBudget();
|
||||||
|
const telegram = {
|
||||||
|
sent: [] as string[],
|
||||||
|
isConfigured: () => true,
|
||||||
|
send: async function (t: string) {
|
||||||
|
this.sent.push(t);
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
};
|
||||||
|
return {
|
||||||
|
svc: new PL24AuthService(configService, redis as never, budget as never, telegram as never),
|
||||||
|
redis,
|
||||||
|
budget,
|
||||||
|
telegram,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
type Exposed = {
|
||||||
|
effectiveAccount(account: "tr" | "de"): "tr" | "de";
|
||||||
|
login(account: "tr" | "de"): Promise<unknown>;
|
||||||
|
ensureSession(account: "tr" | "de"): Promise<{ sessionToken: string }>;
|
||||||
|
sessions: Record<string, { sessionToken: string } | undefined>;
|
||||||
|
serviceTokens: Record<"tr" | "de", Map<string, { token: string; expiresAt: number }>>;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** Portal login yanıtı: {loginStatus, sessionToken} + Set-Cookie PL24TOKEN. */
|
||||||
|
const loginOk = (token = "sess-token-1") => ({
|
||||||
|
ok: true,
|
||||||
|
status: 200,
|
||||||
|
statusText: "OK",
|
||||||
|
headers: {
|
||||||
|
get: (h: string) => (h.toLowerCase() === "set-cookie" ? `PL24TOKEN=${token}; Path=/` : null),
|
||||||
|
getSetCookie: () => [`PL24TOKEN=${token}; Path=/; Secure`],
|
||||||
|
},
|
||||||
|
json: async () => ({ loginStatus: "OK", sessionToken: token }),
|
||||||
|
});
|
||||||
|
|
||||||
|
const jwt = (payload: Record<string, unknown>) =>
|
||||||
|
`h.${Buffer.from(JSON.stringify(payload)).toString("base64url")}.s`;
|
||||||
|
|
||||||
|
const authorizeOk = (scope = "vw_parts pl24-usage", sessionStatus = "alive") => ({
|
||||||
|
ok: true,
|
||||||
|
status: 200,
|
||||||
|
statusText: "OK",
|
||||||
|
headers: { get: () => null, getSetCookie: () => [] },
|
||||||
|
json: async () => ({
|
||||||
|
access_token: jwt({ exp: Math.floor(Date.now() / 1000) + 600, sid: "sess-token-1" }),
|
||||||
|
expires_in: 600,
|
||||||
|
scope,
|
||||||
|
session_status: sessionStatus,
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
const problem = (status: number, type: string) => ({
|
||||||
|
ok: false,
|
||||||
|
status,
|
||||||
|
statusText: "Precondition Failed",
|
||||||
|
headers: { get: () => null, getSetCookie: () => [] },
|
||||||
|
json: async () => ({ type, title: type, detail: type }),
|
||||||
|
});
|
||||||
|
|
||||||
|
const savedFlag = process.env.PL24_TR_DISABLED;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
// "" ≠ "true" → bayrak kapalı; delete yerine atama (biome noDelete).
|
||||||
|
process.env.PL24_TR_DISABLED = "";
|
||||||
|
});
|
||||||
|
|
||||||
|
afterEach(() => {
|
||||||
|
process.env.PL24_TR_DISABLED = savedFlag ?? "";
|
||||||
|
vi.unstubAllGlobals();
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("PL24AuthService — PL24_TR_DISABLED tr→de köprüsü", () => {
|
||||||
|
it("bayrak kapalıyken hesaplar olduğu gibi kalır", () => {
|
||||||
|
const { svc } = makeService();
|
||||||
|
const p = svc as unknown as Exposed;
|
||||||
|
expect(p.effectiveAccount("tr")).toBe("tr");
|
||||||
|
expect(p.effectiveAccount("de")).toBe("de");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("bayrak açıkken tr → de'ye maplenir, de değişmez", () => {
|
||||||
|
process.env.PL24_TR_DISABLED = "true";
|
||||||
|
const { svc } = makeService();
|
||||||
|
const p = svc as unknown as Exposed;
|
||||||
|
expect(p.effectiveAccount("tr")).toBe("de");
|
||||||
|
expect(p.effectiveAccount("de")).toBe("de");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("de hesabı tanımlı değilse mapleme yapılmaz (duvara yönlendirme yok)", () => {
|
||||||
|
process.env.PL24_TR_DISABLED = "true";
|
||||||
|
const { svc } = makeService({ "pl24.companyCode2": "" });
|
||||||
|
expect((svc as unknown as Exposed).effectiveAccount("tr")).toBe("tr");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("bayrak açıkken tr login'i ağa çıkmadan reddedilir", async () => {
|
||||||
|
process.env.PL24_TR_DISABLED = "true";
|
||||||
|
const fetchSpy = vi.fn();
|
||||||
|
vi.stubGlobal("fetch", fetchSpy);
|
||||||
|
const { svc } = makeService();
|
||||||
|
await expect((svc as unknown as Exposed).login("tr")).rejects.toThrow(/PL24_TR_DISABLED/);
|
||||||
|
expect(fetchSpy).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("legacy clearTokens (tr) bayrak altında de servis token'larını temizler", () => {
|
||||||
|
process.env.PL24_TR_DISABLED = "true";
|
||||||
|
const { svc } = makeService();
|
||||||
|
const p = svc as unknown as Exposed;
|
||||||
|
p.serviceTokens.de.set("vw_parts", { token: "x", expiresAt: Date.now() + 60_000 });
|
||||||
|
svc.clearTokens();
|
||||||
|
expect(p.serviceTokens.de.size).toBe(0);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("PL24AuthService — oturum modeli", () => {
|
||||||
|
it("bir kez login eder, sonraki çağrılar aynı oturumu kullanır (yeniden login yok)", async () => {
|
||||||
|
const fetchSpy = vi.fn().mockResolvedValue(loginOk());
|
||||||
|
vi.stubGlobal("fetch", fetchSpy);
|
||||||
|
const { svc } = makeService();
|
||||||
|
|
||||||
|
const c1 = await svc.getSessionCookieForAccount("de");
|
||||||
|
const c2 = await svc.getSessionCookieForAccount("de");
|
||||||
|
|
||||||
|
expect(c1).toBe("PL24TOKEN=sess-token-1");
|
||||||
|
expect(c2).toBe(c1);
|
||||||
|
expect(fetchSpy).toHaveBeenCalledTimes(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("eşzamanlı çağrılar tek login paylaşır (single-flight)", async () => {
|
||||||
|
const fetchSpy = vi.fn().mockImplementation(async () => {
|
||||||
|
await new Promise((r) => setTimeout(r, 10));
|
||||||
|
return loginOk();
|
||||||
|
});
|
||||||
|
vi.stubGlobal("fetch", fetchSpy);
|
||||||
|
const { svc } = makeService();
|
||||||
|
|
||||||
|
await Promise.all([
|
||||||
|
svc.getSessionCookieForAccount("de"),
|
||||||
|
svc.getSessionCookieForAccount("de"),
|
||||||
|
svc.getSessionCookieForAccount("de"),
|
||||||
|
]);
|
||||||
|
|
||||||
|
expect(fetchSpy).toHaveBeenCalledTimes(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("başka bir süreç oturumu tutuyorsa Redis'ten devralır, login etmez", async () => {
|
||||||
|
const redis = makeRedis();
|
||||||
|
redis.store.set("pl24:auth:session:de", {
|
||||||
|
sessionToken: "shared-token",
|
||||||
|
loginAt: Date.now(),
|
||||||
|
lastOkAt: Date.now(),
|
||||||
|
});
|
||||||
|
const fetchSpy = vi.fn();
|
||||||
|
vi.stubGlobal("fetch", fetchSpy);
|
||||||
|
const { svc } = makeService({}, redis);
|
||||||
|
|
||||||
|
expect(await svc.getSessionCookieForAccount("de")).toBe("PL24TOKEN=shared-token");
|
||||||
|
expect(fetchSpy).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("login sadece çerez mint eder; servis token'ı authorize'dan gelir (Bearer'sız)", async () => {
|
||||||
|
const fetchSpy = vi.fn().mockImplementation(async (url: string) => {
|
||||||
|
if (String(url).includes("/login")) return loginOk();
|
||||||
|
return authorizeOk();
|
||||||
|
});
|
||||||
|
vi.stubGlobal("fetch", fetchSpy);
|
||||||
|
const { svc } = makeService();
|
||||||
|
|
||||||
|
await svc.authorizeServiceForAccount("vw_parts", "de");
|
||||||
|
|
||||||
|
const authorizeCall = fetchSpy.mock.calls.find((c) => String(c[0]).includes("/authorize"));
|
||||||
|
expect(authorizeCall).toBeTruthy();
|
||||||
|
const headers = (authorizeCall?.[1] as { headers: Record<string, string> }).headers;
|
||||||
|
expect(headers.Cookie).toBe("PL24TOKEN=sess-token-1");
|
||||||
|
expect(headers.Authorization).toBeUndefined();
|
||||||
|
expect(headers["User-Agent"]).toMatch(/Chrome\/\d/);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("servis token'ı süresi dolmadan yeniden authorize edilmez", async () => {
|
||||||
|
const fetchSpy = vi.fn().mockImplementation(async (url: string) => {
|
||||||
|
if (String(url).includes("/login")) return loginOk();
|
||||||
|
return authorizeOk();
|
||||||
|
});
|
||||||
|
vi.stubGlobal("fetch", fetchSpy);
|
||||||
|
const { svc } = makeService();
|
||||||
|
|
||||||
|
await svc.authorizeServiceForAccount("vw_parts", "de");
|
||||||
|
await svc.authorizeServiceForAccount("vw_parts", "de");
|
||||||
|
|
||||||
|
const authorizeCalls = fetchSpy.mock.calls.filter((c) => String(c[0]).includes("/authorize"));
|
||||||
|
expect(authorizeCalls).toHaveLength(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("session_status=gone → oturumu düşürür, bir kez yeniden login edip devam eder", async () => {
|
||||||
|
let authorizeCalls = 0;
|
||||||
|
const fetchSpy = vi.fn().mockImplementation(async (url: string) => {
|
||||||
|
if (String(url).includes("/login")) return loginOk(`sess-${authorizeCalls}`);
|
||||||
|
authorizeCalls += 1;
|
||||||
|
return authorizeCalls === 1 ? authorizeOk("vw_parts", "gone") : authorizeOk();
|
||||||
|
});
|
||||||
|
vi.stubGlobal("fetch", fetchSpy);
|
||||||
|
const { svc } = makeService();
|
||||||
|
|
||||||
|
const token = await svc.authorizeServiceForAccount("vw_parts", "de");
|
||||||
|
|
||||||
|
expect(token).toBeTruthy();
|
||||||
|
expect(authorizeCalls).toBe(2);
|
||||||
|
expect(fetchSpy.mock.calls.filter((c) => String(c[0]).includes("/login"))).toHaveLength(2);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("authorize 401 → oturumu düşürür ve tek sefer yeniden dener", async () => {
|
||||||
|
let authorizeCalls = 0;
|
||||||
|
const fetchSpy = vi.fn().mockImplementation(async (url: string) => {
|
||||||
|
if (String(url).includes("/login")) return loginOk();
|
||||||
|
authorizeCalls += 1;
|
||||||
|
if (authorizeCalls === 1) {
|
||||||
|
return {
|
||||||
|
ok: false,
|
||||||
|
status: 401,
|
||||||
|
statusText: "Unauthorized",
|
||||||
|
headers: { get: () => null, getSetCookie: () => [] },
|
||||||
|
json: async () => ({}),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return authorizeOk();
|
||||||
|
});
|
||||||
|
vi.stubGlobal("fetch", fetchSpy);
|
||||||
|
const { svc } = makeService();
|
||||||
|
|
||||||
|
await expect(svc.authorizeServiceForAccount("vw_parts", "de")).resolves.toBeTruthy();
|
||||||
|
expect(authorizeCalls).toBe(2);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("oturum sınırı aşıldı (412) → tek sefer squeezeOut ile tekrar dener", async () => {
|
||||||
|
const bodies: string[] = [];
|
||||||
|
let loginCalls = 0;
|
||||||
|
const fetchSpy = vi.fn().mockImplementation(async (url: string, opts: { body: string }) => {
|
||||||
|
if (!String(url).includes("/login")) return authorizeOk();
|
||||||
|
bodies.push(opts.body);
|
||||||
|
loginCalls += 1;
|
||||||
|
return loginCalls === 1
|
||||||
|
? problem(412, "urn:login:session-limit-exceeded")
|
||||||
|
: loginOk("after-squeeze");
|
||||||
|
});
|
||||||
|
vi.stubGlobal("fetch", fetchSpy);
|
||||||
|
const { svc } = makeService();
|
||||||
|
|
||||||
|
expect(await svc.getSessionCookieForAccount("de")).toBe("PL24TOKEN=after-squeeze");
|
||||||
|
expect(JSON.parse(bodies[0]).squeezeOut).toBe(false);
|
||||||
|
expect(JSON.parse(bodies[1]).squeezeOut).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("P4 header'ı yalnız çerez taşır (authorize isteği atmaz)", async () => {
|
||||||
|
const fetchSpy = vi.fn().mockResolvedValue(loginOk());
|
||||||
|
vi.stubGlobal("fetch", fetchSpy);
|
||||||
|
const { svc } = makeService();
|
||||||
|
|
||||||
|
const headers = await svc.buildFordLegacyHeadersForAccount("opel_parts", "de");
|
||||||
|
|
||||||
|
expect(headers.Cookie).toBe("PL24TOKEN=sess-token-1");
|
||||||
|
expect(headers.Authorization).toBeUndefined();
|
||||||
|
expect(fetchSpy.mock.calls.filter((c) => String(c[0]).includes("/authorize"))).toHaveLength(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("Ford hintstoken değeri oturum token'ıdır", async () => {
|
||||||
|
vi.stubGlobal("fetch", vi.fn().mockResolvedValue(loginOk("hint-1")));
|
||||||
|
const { svc } = makeService();
|
||||||
|
await svc.getSessionCookieForAccount("de");
|
||||||
|
expect(svc.getPL24TokenValueForAccount("de")).toBe("hint-1");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("PL24AuthService — login devre kesici", () => {
|
||||||
|
it("3 ardışık başarısız login'den sonra açılır ve yeni ağ denemesini keser", async () => {
|
||||||
|
const fetchSpy = vi.fn().mockRejectedValue(new Error("network down"));
|
||||||
|
vi.stubGlobal("fetch", fetchSpy);
|
||||||
|
const { svc } = makeService();
|
||||||
|
const p = svc as unknown as Exposed;
|
||||||
|
|
||||||
|
for (let i = 0; i < 3; i++) {
|
||||||
|
await expect(p.login("de")).rejects.toThrow(/giris hatasi/);
|
||||||
|
}
|
||||||
|
// Ağ hatasında squeezeOut denemesi yapılmaz → login başına tek fetch.
|
||||||
|
expect(fetchSpy).toHaveBeenCalledTimes(3);
|
||||||
|
|
||||||
|
await expect(p.login("de")).rejects.toThrow(/breaker open/);
|
||||||
|
expect(fetchSpy).toHaveBeenCalledTimes(3);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("hesap kapalı (account-not-active) → ilk hatada uzun süreli kesici", async () => {
|
||||||
|
const fetchSpy = vi.fn().mockResolvedValue(problem(400, "urn:login:account-not-active"));
|
||||||
|
vi.stubGlobal("fetch", fetchSpy);
|
||||||
|
const { svc } = makeService();
|
||||||
|
const p = svc as unknown as Exposed;
|
||||||
|
|
||||||
|
await expect(p.login("de")).rejects.toThrow(/giris hatasi/);
|
||||||
|
await expect(p.login("de")).rejects.toThrow(/breaker open/);
|
||||||
|
expect(fetchSpy).toHaveBeenCalledTimes(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("başarılı login kesici sayacını sıfırlar", async () => {
|
||||||
|
let failFirst = 2;
|
||||||
|
const fetchSpy = vi.fn().mockImplementation(async () => {
|
||||||
|
if (failFirst > 0) {
|
||||||
|
failFirst -= 1;
|
||||||
|
throw new Error("network down");
|
||||||
|
}
|
||||||
|
return loginOk();
|
||||||
|
});
|
||||||
|
vi.stubGlobal("fetch", fetchSpy);
|
||||||
|
const { svc } = makeService();
|
||||||
|
const p = svc as unknown as Exposed;
|
||||||
|
|
||||||
|
await expect(p.login("de")).rejects.toThrow();
|
||||||
|
await expect(p.login("de")).rejects.toThrow();
|
||||||
|
await expect(p.login("de")).resolves.toBeTruthy();
|
||||||
|
await expect(p.login("de")).resolves.toBeTruthy();
|
||||||
|
expect(fetchSpy).toHaveBeenCalledTimes(4);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("saatlik login tavanı aşılırsa yeni login denenmez", async () => {
|
||||||
|
const fetchSpy = vi.fn().mockResolvedValue(loginOk());
|
||||||
|
vi.stubGlobal("fetch", fetchSpy);
|
||||||
|
const { svc } = makeService();
|
||||||
|
const p = svc as unknown as Exposed;
|
||||||
|
|
||||||
|
for (let i = 0; i < 6; i++) await p.login("de");
|
||||||
|
await expect(p.login("de")).rejects.toThrow(/login rate limit/);
|
||||||
|
expect(fetchSpy).toHaveBeenCalledTimes(6);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("PL24AuthService — 1 saatlik kesinti alarmı (Telegram)", () => {
|
||||||
|
const loginFails = () => ({
|
||||||
|
ok: false,
|
||||||
|
status: 400,
|
||||||
|
statusText: "Bad Request",
|
||||||
|
headers: { get: () => null, getSetCookie: () => [] },
|
||||||
|
json: async () => ({ type: "urn:login:account-not-active", detail: "account not active" }),
|
||||||
|
});
|
||||||
|
|
||||||
|
it("ilk saat içinde alarm göndermez", async () => {
|
||||||
|
vi.stubGlobal("fetch", vi.fn().mockResolvedValue(loginFails()));
|
||||||
|
const { svc, telegram } = makeService();
|
||||||
|
await expect((svc as unknown as Exposed).login("de")).rejects.toThrow();
|
||||||
|
expect(telegram.sent).toHaveLength(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("kesinti 1 saati geçince tek sefer alarm gönderir", async () => {
|
||||||
|
vi.stubGlobal("fetch", vi.fn().mockResolvedValue(loginFails()));
|
||||||
|
const redis = makeRedis();
|
||||||
|
// Kesinti 70 dakika önce başlamış gibi davran (paylaşılan Redis saati).
|
||||||
|
redis.store.set("pl24:auth:fail-since:de", String(Date.now() - 70 * 60_000));
|
||||||
|
const { svc, telegram } = makeService({}, redis);
|
||||||
|
|
||||||
|
await expect((svc as unknown as Exposed).login("de")).rejects.toThrow();
|
||||||
|
await new Promise((r) => setTimeout(r, 10)); // void alarm promise'i
|
||||||
|
|
||||||
|
expect(telegram.sent).toHaveLength(1);
|
||||||
|
expect(telegram.sent[0]).toContain("PL24 giriş yapılamıyor");
|
||||||
|
expect(telegram.sent[0]).toContain("70 dakika");
|
||||||
|
|
||||||
|
// Kesici açık olsa bile ikinci kez sızlanmaz (alerted anahtarı).
|
||||||
|
await expect((svc as unknown as Exposed).login("de")).rejects.toThrow();
|
||||||
|
await new Promise((r) => setTimeout(r, 10));
|
||||||
|
expect(telegram.sent).toHaveLength(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("giriş düzelince kurtarma mesajı gönderir ve saati sıfırlar", async () => {
|
||||||
|
const redis = makeRedis();
|
||||||
|
redis.store.set("pl24:auth:fail-since:de", String(Date.now() - 90 * 60_000));
|
||||||
|
redis.store.set("pl24:auth:alerted:de", "1");
|
||||||
|
vi.stubGlobal("fetch", vi.fn().mockResolvedValue(loginOk()));
|
||||||
|
const { svc, telegram } = makeService({}, redis);
|
||||||
|
|
||||||
|
await svc.getSessionCookieForAccount("de");
|
||||||
|
await new Promise((r) => setTimeout(r, 10));
|
||||||
|
|
||||||
|
expect(telegram.sent.some((t) => t.includes("PL24 girişi düzeldi"))).toBe(true);
|
||||||
|
expect(redis.store.has("pl24:auth:fail-since:de")).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Kendi günlük tavanımız dolduğunda bu bir GİRİŞ HATASI değildir.
|
||||||
|
*
|
||||||
|
* Prod 2026-09-21: tavan dolunca `attemptLogin` içindeki `budget.consume()`
|
||||||
|
* fırlattı, dış `catch` bunu `{ error }` düzleştirdi, `loginWithLock` giriş
|
||||||
|
* hatası sanıp devre kesiciyi tetikledi ve kesinti sayacını başlattı — bir saat
|
||||||
|
* sonra Telegram "hesap banlanmış olabilir" dedi. Hesap sağlamdı (tarayıcıdan
|
||||||
|
* giriş çalışıyordu, aynı gün 143 başarılı auth ve 0 × 401).
|
||||||
|
*/
|
||||||
|
describe("bütçe reddi ban alarmı üretmemeli", () => {
|
||||||
|
it("bütçe hatası olduğu gibi yukarı çıkar, giriş hatasına çevrilmez", async () => {
|
||||||
|
const { svc, redis, telegram, budget } = makeService();
|
||||||
|
budget.consume = async () => {
|
||||||
|
throw new PL24BudgetExceededError("user", 1205, 1200);
|
||||||
|
};
|
||||||
|
const fetchSpy = vi.fn();
|
||||||
|
vi.stubGlobal("fetch", fetchSpy);
|
||||||
|
|
||||||
|
await expect((svc as never as Exposed).login("de")).rejects.toBeInstanceOf(
|
||||||
|
PL24BudgetExceededError,
|
||||||
|
);
|
||||||
|
|
||||||
|
// Kesinti sayacı başlamamalı → Telegram susmalı.
|
||||||
|
expect(telegram.sent).toHaveLength(0);
|
||||||
|
const failKeys = Object.keys(redis.store ?? {}).filter((k) => k.includes("fail-since"));
|
||||||
|
expect(failKeys).toHaveLength(0);
|
||||||
|
vi.unstubAllGlobals();
|
||||||
|
});
|
||||||
|
});
|
||||||
File diff suppressed because it is too large
Load Diff
166
apps/api/src/integrations/pl24/pl24-budget.service.spec.ts
Normal file
166
apps/api/src/integrations/pl24/pl24-budget.service.spec.ts
Normal file
@@ -0,0 +1,166 @@
|
|||||||
|
import { describe, expect, it, vi } from "vitest";
|
||||||
|
import { backfillContext } from "../../jobs/prefetch-context";
|
||||||
|
import { PL24BudgetExceededError, PL24BudgetService } from "./pl24-budget.service";
|
||||||
|
|
||||||
|
// Günlük PL24 HTTP tavanı + kullanıcı rezervi + proxy_logs telemetrisi.
|
||||||
|
// Redis ve telemetri stub'lanır; ağ yok.
|
||||||
|
|
||||||
|
const makeRedis = (opts: { fail?: boolean } = {}) => {
|
||||||
|
const counters = new Map<string, number>();
|
||||||
|
return {
|
||||||
|
counters,
|
||||||
|
incr: async (k: string) => {
|
||||||
|
if (opts.fail) throw new Error("redis down");
|
||||||
|
const n = (counters.get(k) ?? 0) + 1;
|
||||||
|
counters.set(k, n);
|
||||||
|
return n;
|
||||||
|
},
|
||||||
|
expire: async () => {},
|
||||||
|
get: async (k: string) => (counters.has(k) ? String(counters.get(k)) : null),
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
const makeTelemetry = () => {
|
||||||
|
const events: Record<string, unknown>[] = [];
|
||||||
|
return { events, record: (e: Record<string, unknown>) => events.push(e) };
|
||||||
|
};
|
||||||
|
|
||||||
|
const make = (env: Record<string, string> = {}, redis = makeRedis()) => {
|
||||||
|
for (const [k, v] of Object.entries(env)) vi.stubEnv(k, v);
|
||||||
|
const telemetry = makeTelemetry();
|
||||||
|
return { svc: new PL24BudgetService(redis as never, telemetry as never), redis, telemetry };
|
||||||
|
};
|
||||||
|
|
||||||
|
const inBackfill = <T>(fn: () => Promise<T>) => backfillContext.run(true, fn);
|
||||||
|
|
||||||
|
describe("PL24BudgetService — günlük tavan", () => {
|
||||||
|
it("tavan altında çağrılara izin verir", async () => {
|
||||||
|
const { svc } = make({ PL24_HTTP_DAILY_MAX: "5" });
|
||||||
|
for (let i = 0; i < 5; i++) await svc.consume("catalog");
|
||||||
|
expect(await svc.spentToday()).toBe(5);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("tavan aşılınca kullanıcı çağrısını da reddeder", async () => {
|
||||||
|
const { svc } = make({ PL24_HTTP_DAILY_MAX: "3" });
|
||||||
|
for (let i = 0; i < 3; i++) await svc.consume("catalog");
|
||||||
|
await expect(svc.consume("catalog")).rejects.toBeInstanceOf(PL24BudgetExceededError);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("backfill kullanıcı rezervine dokunamaz, kullanıcı trafiği devam eder", async () => {
|
||||||
|
// tavan 10, rezerv %40 → backfill 6'da durur, kullanıcı 10'a kadar sürer
|
||||||
|
const { svc } = make({ PL24_HTTP_DAILY_MAX: "10", PL24_HTTP_USER_RESERVE: "0.4" });
|
||||||
|
|
||||||
|
for (let i = 0; i < 6; i++) await inBackfill(() => svc.consume("catalog"));
|
||||||
|
await expect(inBackfill(() => svc.consume("catalog"))).rejects.toBeInstanceOf(
|
||||||
|
PL24BudgetExceededError,
|
||||||
|
);
|
||||||
|
|
||||||
|
// Aynı gün, aynı sayaç: kullanıcı hâlâ geçebilmeli (7., 8. … 10. istek)
|
||||||
|
await expect(svc.consume("catalog")).resolves.toBeUndefined();
|
||||||
|
await expect(svc.consume("catalog")).resolves.toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("reddedilen çağrı yalnız reddedildiği yerde sayılır (ağ isteği yok)", async () => {
|
||||||
|
const { svc, telemetry } = make({ PL24_HTTP_DAILY_MAX: "1" });
|
||||||
|
await svc.consume("catalog");
|
||||||
|
await expect(svc.consume("catalog")).rejects.toBeInstanceOf(PL24BudgetExceededError);
|
||||||
|
expect(telemetry.events).toHaveLength(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("Redis düşükse PL24'ü bloklamaz (fail-open)", async () => {
|
||||||
|
const { svc } = make({ PL24_HTTP_DAILY_MAX: "1" }, makeRedis({ fail: true }));
|
||||||
|
await expect(svc.consume("catalog")).resolves.toBeUndefined();
|
||||||
|
await expect(svc.consume("catalog")).resolves.toBeUndefined();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("PL24BudgetService — telemetri", () => {
|
||||||
|
it("katalog çağrısını proxy_logs biçiminde kaydeder", () => {
|
||||||
|
const { svc, telemetry } = make();
|
||||||
|
svc.record({
|
||||||
|
kind: "catalog",
|
||||||
|
url: "https://www.partslink24.com/p5psa/extern/group/vin/scope?vin=X",
|
||||||
|
proxied: true,
|
||||||
|
account: "de",
|
||||||
|
statusCode: 200,
|
||||||
|
success: true,
|
||||||
|
startedAt: Date.now() - 120,
|
||||||
|
});
|
||||||
|
const e = telemetry.events[0];
|
||||||
|
expect(e.service).toBe("pl24_http");
|
||||||
|
expect(e.provider).toBe("dataimpulse");
|
||||||
|
expect(e.targetHost).toBe("www.partslink24.com");
|
||||||
|
expect(e.success).toBe(true);
|
||||||
|
expect(e.errorKind).toBeNull();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("login çağrısını pl24_auth olarak ayırır", () => {
|
||||||
|
const { svc, telemetry } = make();
|
||||||
|
svc.record({
|
||||||
|
kind: "auth",
|
||||||
|
url: "https://www.partslink24.com/auth/ext/api/1.1/login",
|
||||||
|
proxied: false,
|
||||||
|
account: "tr",
|
||||||
|
statusCode: 400,
|
||||||
|
success: false,
|
||||||
|
startedAt: Date.now(),
|
||||||
|
});
|
||||||
|
expect(telemetry.events[0].service).toBe("pl24_auth");
|
||||||
|
expect(telemetry.events[0].provider).toBe("none");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("403/429'u ban sinyali olarak işaretler", () => {
|
||||||
|
const { svc, telemetry } = make();
|
||||||
|
svc.record({
|
||||||
|
kind: "catalog",
|
||||||
|
url: "https://www.partslink24.com/x",
|
||||||
|
proxied: true,
|
||||||
|
account: "de",
|
||||||
|
statusCode: 403,
|
||||||
|
success: false,
|
||||||
|
startedAt: Date.now(),
|
||||||
|
});
|
||||||
|
expect(telemetry.events[0].errorKind).toBe("banned");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("taşıma hatasını sınıflandırır", () => {
|
||||||
|
const { svc, telemetry } = make();
|
||||||
|
const err = Object.assign(new Error("fetch failed"), { name: "TimeoutError" });
|
||||||
|
svc.record({
|
||||||
|
kind: "catalog",
|
||||||
|
url: "https://www.partslink24.com/x",
|
||||||
|
proxied: true,
|
||||||
|
account: "de",
|
||||||
|
success: false,
|
||||||
|
startedAt: Date.now(),
|
||||||
|
error: err,
|
||||||
|
});
|
||||||
|
expect(telemetry.events[0].errorKind).toBe("timeout");
|
||||||
|
expect(telemetry.events[0].statusCode).toBeNull();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bütçe reddi bir giriş hatası DEĞİLDİR (plv2.md, bulgu auth-16).
|
||||||
|
*
|
||||||
|
* Prod 2026-09-21: günlük tavan dolunca `attemptLogin` içindeki
|
||||||
|
* `budget.consume()` fırlattı, dış `catch` bunu `{ error }` düzleştirdi,
|
||||||
|
* `loginWithLock` bunu giriş hatası sanıp devre kesiciyi tetikledi ve kesinti
|
||||||
|
* sayacını başlattı → bir saat sonra Telegram "hesap banlanmış olabilir" dedi.
|
||||||
|
* Oysa hesap sağlamdı: tarayıcıdan giriş çalışıyordu, aynı gün 143 başarılı
|
||||||
|
* auth çağrısı ve 0 × 401 vardı.
|
||||||
|
*/
|
||||||
|
describe("PL24BudgetExceededError — kendi frenimiz, upstream hatası değil", () => {
|
||||||
|
it("kendi hata sınıfını taşır, düz Error değil", () => {
|
||||||
|
const err = new PL24BudgetExceededError("user", 1205, 1200);
|
||||||
|
expect(err).toBeInstanceOf(PL24BudgetExceededError);
|
||||||
|
expect(err).toBeInstanceOf(Error);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("mesajı hangi şeridin ve hangi sayının durduğunu söyler", () => {
|
||||||
|
const err = new PL24BudgetExceededError("user", 1205, 1200);
|
||||||
|
expect(err.message).toContain("1205");
|
||||||
|
expect(err.message).toContain("1200");
|
||||||
|
expect(err.message.toLowerCase()).toContain("user");
|
||||||
|
});
|
||||||
|
});
|
||||||
145
apps/api/src/integrations/pl24/pl24-budget.service.ts
Normal file
145
apps/api/src/integrations/pl24/pl24-budget.service.ts
Normal file
@@ -0,0 +1,145 @@
|
|||||||
|
import { Injectable, Logger } from "@nestjs/common";
|
||||||
|
import { isBackfillContext } from "../../jobs/prefetch-context";
|
||||||
|
import { RedisService } from "../../redis/redis.service";
|
||||||
|
import {
|
||||||
|
ProxyTelemetryService,
|
||||||
|
classifyTransportError,
|
||||||
|
isBanStatus,
|
||||||
|
} from "../proxy-telemetry/proxy-telemetry.service";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* PL24 HTTP budget + telemetry.
|
||||||
|
*
|
||||||
|
* WHY (see /home/s/ss/plv2.md §2.2, findings consumers_jobs-03/07):
|
||||||
|
* Both PL24 account bans (tr 2026-07-24, de 2026-09-04) followed days that wrote
|
||||||
|
* 5-7k new category rows — roughly 10k+ upstream calls/day — while real user
|
||||||
|
* decodes never exceeded 14/day. The existing guards are all job-level
|
||||||
|
* (jobs/min, jobs/day); nothing counted actual HTTP requests, and PL24 calls
|
||||||
|
* were invisible in `proxy_logs` (only pcat/emex were logged), so the volume was
|
||||||
|
* only reconstructable after the fact from DB row counts.
|
||||||
|
*
|
||||||
|
* This service is the one choke point every PL24 upstream call passes through:
|
||||||
|
* - counts requests per UTC day in Redis and refuses new ones past the cap,
|
||||||
|
* - reserves a share of that cap for real users so a runaway backfill can
|
||||||
|
* never starve a paying customer's decode,
|
||||||
|
* - records every attempt into `proxy_logs` (service `pl24_http`/`pl24_auth`).
|
||||||
|
*
|
||||||
|
* The cap is deliberately low to start (PL24_HTTP_DAILY_MAX, default 1200);
|
||||||
|
* raise it only with telemetry in hand.
|
||||||
|
*/
|
||||||
|
@Injectable()
|
||||||
|
export class PL24BudgetService {
|
||||||
|
private readonly logger = new Logger(PL24BudgetService.name);
|
||||||
|
/** Log "budget exhausted" once per day per lane instead of on every call. */
|
||||||
|
private warnedFor = new Set<string>();
|
||||||
|
|
||||||
|
constructor(
|
||||||
|
private readonly redis: RedisService,
|
||||||
|
private readonly telemetry: ProxyTelemetryService,
|
||||||
|
) {}
|
||||||
|
|
||||||
|
private get dailyMax(): number {
|
||||||
|
const raw = Number(process.env.PL24_HTTP_DAILY_MAX);
|
||||||
|
return Number.isFinite(raw) && raw > 0 ? raw : 1200;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Fraction of the daily cap that only user-facing calls may spend. */
|
||||||
|
private get userReserve(): number {
|
||||||
|
const raw = Number(process.env.PL24_HTTP_USER_RESERVE);
|
||||||
|
return Number.isFinite(raw) && raw > 0 && raw < 1 ? raw : 0.4;
|
||||||
|
}
|
||||||
|
|
||||||
|
private dayKey(): string {
|
||||||
|
return `pl24:http:${new Date().toISOString().slice(0, 10)}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Count one upstream call and decide whether it may proceed.
|
||||||
|
* Backfill stops at (1 - userReserve) of the cap; user traffic gets the rest.
|
||||||
|
*/
|
||||||
|
async consume(kind: "auth" | "catalog"): Promise<void> {
|
||||||
|
const backfill = isBackfillContext();
|
||||||
|
let spent: number;
|
||||||
|
try {
|
||||||
|
const key = this.dayKey();
|
||||||
|
spent = await this.redis.incr(key);
|
||||||
|
if (spent === 1) await this.redis.expire(key, 8 * 86_400);
|
||||||
|
// Per-lane counters. The shared total tells us WHEN the cap was hit but not
|
||||||
|
// WHO spent it, and sizing the cap needs that split: on 2026-09-21 the
|
||||||
|
// total hit 1200 and every user decode after 16:10 UTC was refused, with
|
||||||
|
// no way to tell from `proxy_logs` how much of it was warm-up prefetch
|
||||||
|
// versus somebody waiting on a screen.
|
||||||
|
const laneKey = `${key}:${backfill ? "worker" : "user"}`;
|
||||||
|
const laneSpent = await this.redis.incr(laneKey);
|
||||||
|
if (laneSpent === 1) await this.redis.expire(laneKey, 8 * 86_400);
|
||||||
|
} catch {
|
||||||
|
return; // Redis down → never block PL24 on telemetry
|
||||||
|
}
|
||||||
|
|
||||||
|
const max = this.dailyMax;
|
||||||
|
const limit = backfill ? Math.floor(max * (1 - this.userReserve)) : max;
|
||||||
|
if (spent > limit) {
|
||||||
|
const lane = backfill ? "backfill" : "user";
|
||||||
|
if (!this.warnedFor.has(`${lane}:${this.dayKey()}`)) {
|
||||||
|
this.warnedFor.add(`${lane}:${this.dayKey()}`);
|
||||||
|
this.logger.warn(
|
||||||
|
`PL24 daily HTTP budget exhausted for the ${lane} lane (${spent}/${limit}, cap ${max}, kind=${kind}) — refusing further calls today`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
throw new PL24BudgetExceededError(lane, spent, limit);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Current spend (for /health and the Süper Panel). */
|
||||||
|
async spentToday(): Promise<number> {
|
||||||
|
try {
|
||||||
|
return Number((await this.redis.get(this.dayKey())) ?? 0);
|
||||||
|
} catch {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
record(opts: {
|
||||||
|
kind: "auth" | "catalog";
|
||||||
|
url: string;
|
||||||
|
proxied: boolean;
|
||||||
|
account: string;
|
||||||
|
statusCode?: number | null;
|
||||||
|
success: boolean;
|
||||||
|
startedAt: number;
|
||||||
|
error?: unknown;
|
||||||
|
}): void {
|
||||||
|
let targetHost: string | null = null;
|
||||||
|
try {
|
||||||
|
targetHost = new URL(opts.url).hostname;
|
||||||
|
} catch {
|
||||||
|
/* keep null */
|
||||||
|
}
|
||||||
|
this.telemetry.record({
|
||||||
|
service: opts.kind === "auth" ? "pl24_auth" : "pl24_http",
|
||||||
|
provider: opts.proxied ? "dataimpulse" : "none",
|
||||||
|
sessionKey: opts.account,
|
||||||
|
targetHost,
|
||||||
|
statusCode: opts.statusCode ?? null,
|
||||||
|
errorKind: opts.error
|
||||||
|
? classifyTransportError(opts.error)
|
||||||
|
: isBanStatus(opts.statusCode)
|
||||||
|
? "banned"
|
||||||
|
: null,
|
||||||
|
success: opts.success,
|
||||||
|
durationMs: Date.now() - opts.startedAt,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Thrown when the daily PL24 HTTP budget is used up for this lane. */
|
||||||
|
export class PL24BudgetExceededError extends Error {
|
||||||
|
constructor(
|
||||||
|
readonly lane: "user" | "backfill",
|
||||||
|
readonly spent: number,
|
||||||
|
readonly limit: number,
|
||||||
|
) {
|
||||||
|
super(`PL24 daily HTTP budget exhausted (${lane} lane: ${spent}/${limit})`);
|
||||||
|
this.name = "PL24BudgetExceededError";
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -116,7 +116,7 @@ export class PL24FordLegacyService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Ford / Hyundai-Kia / Nissan / Opel / Volvo devam eder...
|
// Ford / Hyundai-Kia / Nissan / Opel / Volvo devam eder...
|
||||||
await this.authService.authorizeServiceForAccount(serviceName, account);
|
await this.authService.ensureSession(account);
|
||||||
|
|
||||||
const html = await this.fetchVinGroupPage(vin, serviceName, account);
|
const html = await this.fetchVinGroupPage(vin, serviceName, account);
|
||||||
if (!html) return null;
|
if (!html) return null;
|
||||||
@@ -124,8 +124,8 @@ export class PL24FordLegacyService {
|
|||||||
const support = this.extractScriptVariable<FordPL24Support>(html, "PL24_SUPPORT");
|
const support = this.extractScriptVariable<FordPL24Support>(html, "PL24_SUPPORT");
|
||||||
if (support?.demo || support?.role === "NOT_LOGGED_IN_DEMO") {
|
if (support?.demo || support?.role === "NOT_LOGGED_IN_DEMO") {
|
||||||
this.logger.warn(`P4 legacy: demo mode for ${serviceName}, retrying with fresh auth`);
|
this.logger.warn(`P4 legacy: demo mode for ${serviceName}, retrying with fresh auth`);
|
||||||
this.authService.clearTokensForAccount(account);
|
await this.authService.dropSessionForAccount(account, "P4 page 401");
|
||||||
await this.authService.authorizeServiceForAccount(serviceName, account);
|
await this.authService.ensureSession(account);
|
||||||
|
|
||||||
const retryHtml = await this.fetchVinGroupPage(vin, serviceName, account);
|
const retryHtml = await this.fetchVinGroupPage(vin, serviceName, account);
|
||||||
if (!retryHtml) return null;
|
if (!retryHtml) return null;
|
||||||
@@ -1110,7 +1110,7 @@ export class PL24FordLegacyService {
|
|||||||
this.logger.log(`Ford: fetching vehicle list for ${serviceName}`);
|
this.logger.log(`Ford: fetching vehicle list for ${serviceName}`);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await this.authService.authorizeService(serviceName);
|
await this.authService.ensureSession("tr");
|
||||||
|
|
||||||
const config = getServiceConfig(serviceName);
|
const config = getServiceConfig(serviceName);
|
||||||
const basePath = config ? `${config.basePath}/${serviceName}` : `/ford/${serviceName}`;
|
const basePath = config ? `${config.basePath}/${serviceName}` : `/ford/${serviceName}`;
|
||||||
@@ -1126,8 +1126,8 @@ export class PL24FordLegacyService {
|
|||||||
let support = this.extractScriptVariable<FordPL24Support>(html, "PL24_SUPPORT");
|
let support = this.extractScriptVariable<FordPL24Support>(html, "PL24_SUPPORT");
|
||||||
if (support?.demo || support?.role === "NOT_LOGGED_IN_DEMO") {
|
if (support?.demo || support?.role === "NOT_LOGGED_IN_DEMO") {
|
||||||
this.logger.warn(`Ford: demo mode for ${serviceName}, retrying with fresh auth`);
|
this.logger.warn(`Ford: demo mode for ${serviceName}, retrying with fresh auth`);
|
||||||
this.authService.clearTokens();
|
await this.authService.dropSessionForAccount("tr", "P4 page 401");
|
||||||
await this.authService.authorizeService(serviceName);
|
await this.authService.ensureSession("tr");
|
||||||
const retryHtml = await this.fetchP4Page(vinGroupUrl, serviceName, true);
|
const retryHtml = await this.fetchP4Page(vinGroupUrl, serviceName, true);
|
||||||
if (!retryHtml) return [];
|
if (!retryHtml) return [];
|
||||||
const retrySupport = this.extractScriptVariable<FordPL24Support>(retryHtml, "PL24_SUPPORT");
|
const retrySupport = this.extractScriptVariable<FordPL24Support>(retryHtml, "PL24_SUPPORT");
|
||||||
@@ -1221,7 +1221,7 @@ export class PL24FordLegacyService {
|
|||||||
this.logger.log(`HyundaiKia: fetching vehicle list for ${serviceName}`);
|
this.logger.log(`HyundaiKia: fetching vehicle list for ${serviceName}`);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await this.authService.authorizeService(serviceName);
|
await this.authService.ensureSession("tr");
|
||||||
|
|
||||||
const config = getServiceConfig(serviceName);
|
const config = getServiceConfig(serviceName);
|
||||||
const basePath = config
|
const basePath = config
|
||||||
@@ -1306,7 +1306,7 @@ export class PL24FordLegacyService {
|
|||||||
this.logger.log(`Nissan: fetching vehicle list for ${serviceName}`);
|
this.logger.log(`Nissan: fetching vehicle list for ${serviceName}`);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await this.authService.authorizeService(serviceName);
|
await this.authService.ensureSession("tr");
|
||||||
|
|
||||||
const config = getServiceConfig(serviceName);
|
const config = getServiceConfig(serviceName);
|
||||||
const basePath = config ? `${config.basePath}/${serviceName}` : `/nissan/${serviceName}`;
|
const basePath = config ? `${config.basePath}/${serviceName}` : `/nissan/${serviceName}`;
|
||||||
@@ -1377,7 +1377,7 @@ export class PL24FordLegacyService {
|
|||||||
this.logger.log(`Opel: fetching vehicle list for ${serviceName}`);
|
this.logger.log(`Opel: fetching vehicle list for ${serviceName}`);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await this.authService.authorizeService(serviceName);
|
await this.authService.ensureSession("tr");
|
||||||
|
|
||||||
const config = getServiceConfig(serviceName);
|
const config = getServiceConfig(serviceName);
|
||||||
const basePath = config ? `${config.basePath}/${serviceName}` : `/opel/${serviceName}`;
|
const basePath = config ? `${config.basePath}/${serviceName}` : `/opel/${serviceName}`;
|
||||||
@@ -1452,7 +1452,7 @@ export class PL24FordLegacyService {
|
|||||||
this.logger.log(`Volvo: fetching vehicle list for ${serviceName}`);
|
this.logger.log(`Volvo: fetching vehicle list for ${serviceName}`);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await this.authService.authorizeService(serviceName);
|
await this.authService.ensureSession("tr");
|
||||||
|
|
||||||
const config = getServiceConfig(serviceName);
|
const config = getServiceConfig(serviceName);
|
||||||
const basePath = config ? `${config.basePath}/${serviceName}` : `/volvo/${serviceName}`;
|
const basePath = config ? `${config.basePath}/${serviceName}` : `/volvo/${serviceName}`;
|
||||||
@@ -1556,7 +1556,7 @@ export class PL24FordLegacyService {
|
|||||||
|
|
||||||
this.logger.log(`Volvo: fetching model config for ${serviceName} mdl=${mdlId}`);
|
this.logger.log(`Volvo: fetching model config for ${serviceName} mdl=${mdlId}`);
|
||||||
|
|
||||||
await this.authService.authorizeService(serviceName);
|
await this.authService.ensureSession("tr");
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const config = getServiceConfig(serviceName);
|
const config = getServiceConfig(serviceName);
|
||||||
@@ -1626,7 +1626,7 @@ export class PL24FordLegacyService {
|
|||||||
|
|
||||||
this.logger.log(`Ford: fetching model config for ${serviceName} family=${familyId}`);
|
this.logger.log(`Ford: fetching model config for ${serviceName} family=${familyId}`);
|
||||||
|
|
||||||
await this.authService.authorizeService(serviceName);
|
await this.authService.ensureSession("tr");
|
||||||
|
|
||||||
const config = getServiceConfig(serviceName);
|
const config = getServiceConfig(serviceName);
|
||||||
const arch = config?.architecture;
|
const arch = config?.architecture;
|
||||||
@@ -1785,7 +1785,7 @@ export class PL24FordLegacyService {
|
|||||||
: `Ford: fetching main groups for ${serviceName} family=${familyId} year=${modelYear} engine=${engine} gearbox=${gearbox}`,
|
: `Ford: fetching main groups for ${serviceName} family=${familyId} year=${modelYear} engine=${engine} gearbox=${gearbox}`,
|
||||||
);
|
);
|
||||||
|
|
||||||
await this.authService.authorizeService(serviceName);
|
await this.authService.ensureSession("tr");
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const basePath = config ? `${config.basePath}/${serviceName}` : `/ford/${serviceName}`;
|
const basePath = config ? `${config.basePath}/${serviceName}` : `/ford/${serviceName}`;
|
||||||
@@ -1917,6 +1917,10 @@ export class PL24FordLegacyService {
|
|||||||
* Fiat services always use 'de'; others use round-robin via Redis.
|
* Fiat services always use 'de'; others use round-robin via Redis.
|
||||||
*/
|
*/
|
||||||
private async resolveAccount(userId?: string, serviceName?: string): Promise<"tr" | "de"> {
|
private async resolveAccount(userId?: string, serviceName?: string): Promise<"tr" | "de"> {
|
||||||
|
// PL24_TR_DISABLED=true → the tr account is inactive on PL24's side; route
|
||||||
|
// everyone to de so page fetches, proxies and cache labels all agree with the
|
||||||
|
// auth layer's tr→de mapping (PL24AuthService.effectiveAccount).
|
||||||
|
if (process.env.PL24_TR_DISABLED === "true") return "de";
|
||||||
// Fiat always needs de account; Hyundai/Kia/Nissan parts are licensed only on de.
|
// Fiat always needs de account; Hyundai/Kia/Nissan parts are licensed only on de.
|
||||||
if (serviceName && ["fiatp_parts", "fiatt_parts"].includes(serviceName)) {
|
if (serviceName && ["fiatp_parts", "fiatt_parts"].includes(serviceName)) {
|
||||||
return "de";
|
return "de";
|
||||||
@@ -1953,7 +1957,7 @@ export class PL24FordLegacyService {
|
|||||||
cacheKey: string,
|
cacheKey: string,
|
||||||
account: "tr" | "de",
|
account: "tr" | "de",
|
||||||
): Promise<PL24DecodedVehicle | null> {
|
): Promise<PL24DecodedVehicle | null> {
|
||||||
await this.authService.authorizeServiceForAccount(serviceName, account);
|
await this.authService.ensureSession(account);
|
||||||
|
|
||||||
const html = await this.fetchVinGroupPage(vin, serviceName, account);
|
const html = await this.fetchVinGroupPage(vin, serviceName, account);
|
||||||
if (!html) return null;
|
if (!html) return null;
|
||||||
@@ -1961,8 +1965,8 @@ export class PL24FordLegacyService {
|
|||||||
const support = this.extractScriptVariable<FordPL24Support>(html, "PL24_SUPPORT");
|
const support = this.extractScriptVariable<FordPL24Support>(html, "PL24_SUPPORT");
|
||||||
if (support?.demo || support?.role === "NOT_LOGGED_IN_DEMO") {
|
if (support?.demo || support?.role === "NOT_LOGGED_IN_DEMO") {
|
||||||
this.logger.warn(`Fiat: demo mode for ${serviceName}, retrying with fresh auth`);
|
this.logger.warn(`Fiat: demo mode for ${serviceName}, retrying with fresh auth`);
|
||||||
this.authService.clearTokensForAccount(account);
|
await this.authService.dropSessionForAccount(account, "P4 demo page (session not accepted)");
|
||||||
await this.authService.authorizeServiceForAccount(serviceName, account);
|
await this.authService.ensureSession(account);
|
||||||
|
|
||||||
const retryHtml = await this.fetchVinGroupPage(vin, serviceName, account);
|
const retryHtml = await this.fetchVinGroupPage(vin, serviceName, account);
|
||||||
if (!retryHtml) return null;
|
if (!retryHtml) return null;
|
||||||
@@ -2889,7 +2893,7 @@ export class PL24FordLegacyService {
|
|||||||
private async initPsaSession(
|
private async initPsaSession(
|
||||||
serviceName: string,
|
serviceName: string,
|
||||||
): Promise<{ jsessionId: string; mode: string; upds: string } | null> {
|
): Promise<{ jsessionId: string; mode: string; upds: string } | null> {
|
||||||
await this.authService.authorizeService(serviceName);
|
await this.authService.ensureSession("tr");
|
||||||
const headers = await this.authService.buildFordLegacyHeaders(serviceName);
|
const headers = await this.authService.buildFordLegacyHeaders(serviceName);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -3324,7 +3328,7 @@ export class PL24FordLegacyService {
|
|||||||
const isDeOnly = LEGACY_DE_SERVICES.has(serviceName);
|
const isDeOnly = LEGACY_DE_SERVICES.has(serviceName);
|
||||||
const account = isDeOnly ? "de" : accountParam;
|
const account = isDeOnly ? "de" : accountParam;
|
||||||
if (isDeOnly) {
|
if (isDeOnly) {
|
||||||
await this.authService.authorizeServiceForAccount(serviceName, "de");
|
await this.authService.ensureSession("de");
|
||||||
}
|
}
|
||||||
// Some catalogs (Volvo vin-group.action) store hrefs relative to the catalog
|
// Some catalogs (Volvo vin-group.action) store hrefs relative to the catalog
|
||||||
// directory (e.g. "vin-group.action?group1=…"). Prefix the service basePath
|
// directory (e.g. "vin-group.action?group1=…"). Prefix the service basePath
|
||||||
@@ -3354,8 +3358,8 @@ export class PL24FordLegacyService {
|
|||||||
|
|
||||||
if (response.status === 401) {
|
if (response.status === 401) {
|
||||||
this.logger.warn(`Ford legacy: 401, refreshing auth (account=${account})`);
|
this.logger.warn(`Ford legacy: 401, refreshing auth (account=${account})`);
|
||||||
this.authService.clearTokensForAccount(account);
|
await this.authService.dropSessionForAccount(account, "P4 page 401");
|
||||||
await this.authService.authorizeServiceForAccount(serviceName, account);
|
await this.authService.ensureSession(account);
|
||||||
const newHeaders = await this.authService.buildFordLegacyHeadersForAccount(
|
const newHeaders = await this.authService.buildFordLegacyHeadersForAccount(
|
||||||
serviceName,
|
serviceName,
|
||||||
account,
|
account,
|
||||||
@@ -3388,8 +3392,11 @@ export class PL24FordLegacyService {
|
|||||||
const support = this.extractScriptVariable<FordPL24Support>(html, "PL24_SUPPORT");
|
const support = this.extractScriptVariable<FordPL24Support>(html, "PL24_SUPPORT");
|
||||||
if (support?.demo || support?.role === "NOT_LOGGED_IN_DEMO") {
|
if (support?.demo || support?.role === "NOT_LOGGED_IN_DEMO") {
|
||||||
this.logger.warn(`Ford legacy: demo page for ${serviceName}, re-authing + retry`);
|
this.logger.warn(`Ford legacy: demo page for ${serviceName}, re-authing + retry`);
|
||||||
this.authService.clearTokensForAccount(account);
|
await this.authService.dropSessionForAccount(
|
||||||
await this.authService.authorizeServiceForAccount(serviceName, account);
|
account,
|
||||||
|
"P4 demo page (session not accepted)",
|
||||||
|
);
|
||||||
|
await this.authService.ensureSession(account);
|
||||||
return this.fetchP4Page(url, serviceName, isFullUrl, account, true);
|
return this.fetchP4Page(url, serviceName, isFullUrl, account, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -3434,8 +3441,8 @@ export class PL24FordLegacyService {
|
|||||||
|
|
||||||
if (response.status === 401) {
|
if (response.status === 401) {
|
||||||
this.logger.warn(`Ford legacy: 401, refreshing auth (account=${account})`);
|
this.logger.warn(`Ford legacy: 401, refreshing auth (account=${account})`);
|
||||||
this.authService.clearTokensForAccount(account);
|
await this.authService.dropSessionForAccount(account, "P4 page 401");
|
||||||
await this.authService.authorizeServiceForAccount(serviceName, account);
|
await this.authService.ensureSession(account);
|
||||||
const newHeaders = await this.authService.buildFordLegacyHeadersForAccount(
|
const newHeaders = await this.authService.buildFordLegacyHeadersForAccount(
|
||||||
serviceName,
|
serviceName,
|
||||||
account,
|
account,
|
||||||
@@ -3648,7 +3655,10 @@ export class PL24FordLegacyService {
|
|||||||
segment.match(/\bjsonurl="([^"]+)"/);
|
segment.match(/\bjsonurl="([^"]+)"/);
|
||||||
if (!urlMatch) continue;
|
if (!urlMatch) continue;
|
||||||
|
|
||||||
const url = urlMatch[1];
|
// Row attributes are HTML-escaped (`&`), so every query-param check
|
||||||
|
// below — and the stored linkPath — must work on the decoded URL. Without
|
||||||
|
// this `[?&]mainGroup=` never matched Hyundai/Kia rows.
|
||||||
|
const url = urlMatch[1].replace(/&/g, "&").replace(/&/g, "&");
|
||||||
// Skip vehicle.action rows — those are sub-model selectors, not part group links
|
// Skip vehicle.action rows — those are sub-model selectors, not part group links
|
||||||
if (url.includes("vehicle.action")) continue;
|
if (url.includes("vehicle.action")) continue;
|
||||||
// Skip header/breadcrumb navigation links that leak into the group table as
|
// Skip header/breadcrumb navigation links that leak into the group table as
|
||||||
@@ -3657,7 +3667,16 @@ export class PL24FordLegacyService {
|
|||||||
// categories use group.action / group-detail.action / json-(main|sub)-group.action,
|
// categories use group.action / group-detail.action / json-(main|sub)-group.action,
|
||||||
// none of which match these. Volvo's vin-group.action?...group1=... is kept.
|
// none of which match these. Volvo's vin-group.action?...group1=... is kept.
|
||||||
if (/(portal|logout)\.action/i.test(url)) continue;
|
if (/(portal|logout)\.action/i.test(url)) continue;
|
||||||
if (url.includes("vin-group.action") && !url.includes("group1=")) continue;
|
// Volvo's vin-group.action rows are model pickers unless they carry
|
||||||
|
// group1=; Hyundai/Kia use the SAME endpoint for real main groups but key
|
||||||
|
// them with mainGroup= (BO/CH/EL/EN/MI/TR). Keep both, drop the rest.
|
||||||
|
if (
|
||||||
|
url.includes("vin-group.action") &&
|
||||||
|
!url.includes("group1=") &&
|
||||||
|
!/[?&]mainGroup=/i.test(url)
|
||||||
|
) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if (/^https?:\/\//i.test(url) && !/\.action(\?|$)/i.test(url)) continue;
|
if (/^https?:\/\//i.test(url) && !/\.action(\?|$)/i.test(url)) continue;
|
||||||
if (seen.has(url)) continue;
|
if (seen.has(url)) continue;
|
||||||
seen.add(url);
|
seen.add(url);
|
||||||
@@ -4051,6 +4070,15 @@ export class PL24FordLegacyService {
|
|||||||
return [];
|
return [];
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
// Opel/Vauxhall and Hyundai/Kia ship their main groups as `tc-data-row`
|
||||||
|
// table rows whose link lives in a `url=`/`jsonurl=` ATTRIBUTE, not in an
|
||||||
|
// <a href>. parseP4NavigationCategories only reads anchors, so these brands
|
||||||
|
// decoded with ZERO categories (prod: Opel 169/173, Hyundai 11/11, Kia 5/5)
|
||||||
|
// even though the page carries the full list. parseFordGroupsFromHtml
|
||||||
|
// already understands those rows — it simply was never called from decode.
|
||||||
|
if (categories.length === 0) {
|
||||||
|
categories = this.parseFordGroupsFromHtml(html, serviceName, "");
|
||||||
|
}
|
||||||
if (categories.length === 0) {
|
if (categories.length === 0) {
|
||||||
categories = this.parseP4NavigationCategories(html);
|
categories = this.parseP4NavigationCategories(html);
|
||||||
}
|
}
|
||||||
|
|||||||
127
apps/api/src/integrations/pl24/pl24-model-path.spec.ts
Normal file
127
apps/api/src/integrations/pl24/pl24-model-path.spec.ts
Normal file
@@ -0,0 +1,127 @@
|
|||||||
|
import { beforeEach, describe, expect, it, vi } from "vitest";
|
||||||
|
import { PL24Service } from "./pl24.service";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Model-list entry point resolution (plv2.md, bulgu p5core-08).
|
||||||
|
*
|
||||||
|
* `BACKEND_MODEL_PATH` eksik kaldığında eski davranış yedi bilinen yolu sırayla
|
||||||
|
* denemekti: paylaşılan günlük bütçeden çağrı başına yedi isteğe kadar, ve
|
||||||
|
* listede olmayan bir yol için sessiz sıfır sonuç. Volvo tam olarak buydu —
|
||||||
|
* `/extern/vehicles/models` (çoğul "vehicles") listede yok, dolayısıyla
|
||||||
|
* Volvo/Polestar browse sıfır model tohumlayıp emekli P4 listesini sunmaya
|
||||||
|
* devam ediyordu.
|
||||||
|
*
|
||||||
|
* Otoritatif kaynak her P5 backend'inin kendi `/extern/catmeta` yanıtındaki
|
||||||
|
* `data.catalogEntryPoint.path`. Canlı doğrulama (2026-09-20):
|
||||||
|
* p5volvo → /p5volvo/extern/vehicles/models (60 model)
|
||||||
|
* p5psa → /p5psa/extern/vehicle/catalogs
|
||||||
|
*/
|
||||||
|
|
||||||
|
type Resolver = {
|
||||||
|
resolveModelPathFromCatmeta: (
|
||||||
|
base: string,
|
||||||
|
svc: string,
|
||||||
|
headers: Record<string, string>,
|
||||||
|
) => Promise<string | null>;
|
||||||
|
baseUrl: string;
|
||||||
|
language: string;
|
||||||
|
redis: {
|
||||||
|
get: (k: string) => Promise<string | null>;
|
||||||
|
set: (k: string, v: string, ttl?: number) => Promise<unknown>;
|
||||||
|
};
|
||||||
|
logger: { log: (m: string) => void; warn: (m: string) => void };
|
||||||
|
};
|
||||||
|
|
||||||
|
function makeService(opts: {
|
||||||
|
cached?: string | null;
|
||||||
|
catmeta?: unknown;
|
||||||
|
status?: number;
|
||||||
|
throws?: boolean;
|
||||||
|
}) {
|
||||||
|
const sets: Array<[string, string]> = [];
|
||||||
|
const svc = Object.create(PL24Service.prototype) as unknown as Resolver;
|
||||||
|
svc.baseUrl = "https://pl24.test";
|
||||||
|
svc.language = "tr";
|
||||||
|
svc.redis = {
|
||||||
|
get: vi.fn(async () => opts.cached ?? null),
|
||||||
|
set: vi.fn(async (k: string, v: string) => {
|
||||||
|
sets.push([k, v]);
|
||||||
|
return undefined;
|
||||||
|
}),
|
||||||
|
};
|
||||||
|
svc.logger = { log: vi.fn(), warn: vi.fn() };
|
||||||
|
const fetchMock = vi.fn(async () => {
|
||||||
|
if (opts.throws) throw new Error("network down");
|
||||||
|
return {
|
||||||
|
ok: (opts.status ?? 200) < 400,
|
||||||
|
status: opts.status ?? 200,
|
||||||
|
json: async () => opts.catmeta ?? {},
|
||||||
|
};
|
||||||
|
});
|
||||||
|
vi.stubGlobal("fetch", fetchMock);
|
||||||
|
return { svc, sets, fetchMock };
|
||||||
|
}
|
||||||
|
|
||||||
|
const volvoMeta = {
|
||||||
|
data: {
|
||||||
|
catalogEntryPoint: {
|
||||||
|
wid: "modelsTable",
|
||||||
|
path: "/p5volvo/extern/vehicles/models?lang=en&serviceName=volvo_parts",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
describe("resolveModelPathFromCatmeta", () => {
|
||||||
|
beforeEach(() => vi.unstubAllGlobals());
|
||||||
|
|
||||||
|
it("catmeta'daki giriş noktasını backend'e göreli yola indirger", async () => {
|
||||||
|
const { svc } = makeService({ catmeta: volvoMeta });
|
||||||
|
const out = await svc.resolveModelPathFromCatmeta("/p5volvo", "volvo_parts", {});
|
||||||
|
expect(out).toBe("/extern/vehicles/models");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("çözülen yolu 30 gün cache'ler", async () => {
|
||||||
|
const { svc, sets } = makeService({ catmeta: volvoMeta });
|
||||||
|
await svc.resolveModelPathFromCatmeta("/p5volvo", "volvo_parts", {});
|
||||||
|
expect(sets[0][0]).toBe("pl24:modelpath:p5volvo");
|
||||||
|
expect(sets[0][1]).toBe("/extern/vehicles/models");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("cache'lenmiş yol için upstream'e hiç gitmez", async () => {
|
||||||
|
const { svc, fetchMock } = makeService({ cached: "/extern/vehicles/models" });
|
||||||
|
const out = await svc.resolveModelPathFromCatmeta("/p5volvo", "volvo_parts", {});
|
||||||
|
expect(out).toBe("/extern/vehicles/models");
|
||||||
|
expect(fetchMock).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("olumsuz sonuç da cache'lenir — her browse'da yeniden denenmez", async () => {
|
||||||
|
const { svc, fetchMock } = makeService({ cached: "none" });
|
||||||
|
expect(await svc.resolveModelPathFromCatmeta("/p5x", "x_parts", {})).toBeNull();
|
||||||
|
expect(fetchMock).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("catmeta yoksa veya şekil beklenmedikse null döner", async () => {
|
||||||
|
const { svc, sets } = makeService({ catmeta: { data: {} } });
|
||||||
|
expect(await svc.resolveModelPathFromCatmeta("/p5x", "x_parts", {})).toBeNull();
|
||||||
|
expect(sets[0][1]).toBe("none");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("HTTP hatasında null döner", async () => {
|
||||||
|
const { svc } = makeService({ status: 403, catmeta: volvoMeta });
|
||||||
|
expect(await svc.resolveModelPathFromCatmeta("/p5volvo", "volvo_parts", {})).toBeNull();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("ağ hatası fırlatmaz", async () => {
|
||||||
|
const { svc } = makeService({ throws: true });
|
||||||
|
await expect(
|
||||||
|
svc.resolveModelPathFromCatmeta("/p5volvo", "volvo_parts", {}),
|
||||||
|
).resolves.toBeNull();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("/extern/ ile başlamayan yolu kabul etmez", async () => {
|
||||||
|
const { svc } = makeService({
|
||||||
|
catmeta: { data: { catalogEntryPoint: { path: "https://baska.site/kotu" } } },
|
||||||
|
});
|
||||||
|
expect(await svc.resolveModelPathFromCatmeta("/p5volvo", "volvo_parts", {})).toBeNull();
|
||||||
|
});
|
||||||
|
});
|
||||||
70
apps/api/src/integrations/pl24/pl24-p4-groups.spec.ts
Normal file
70
apps/api/src/integrations/pl24/pl24-p4-groups.spec.ts
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
import { readFileSync } from "node:fs";
|
||||||
|
import { join } from "node:path";
|
||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
import { PL24FordLegacyService } from "./pl24-ford-legacy.service";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Opel / Hyundai / Kia "0 kategori" regresyon kilidi (plv2.md, bulgu p4legacy-03).
|
||||||
|
*
|
||||||
|
* Bu markalar ana gruplarını <a href> DEĞİL, `<tr class="tc-data-row"
|
||||||
|
* url=…|jsonurl=…>` satır attribute'unda taşıyor. Decode yolu yalnız anchor
|
||||||
|
* tarayan parser'ı kullandığı için prod'da Opel 169/173, Hyundai 11/11, Kia 5/5
|
||||||
|
* araç SIFIR kategoriyle kaydedilmişti — sayfa listeyi taşıdığı hâlde.
|
||||||
|
*
|
||||||
|
* Fixture'lar 2026-09-16 canlı keşfinden (plv2-artefakt/), yalnız ana grup
|
||||||
|
* tablosuna kırpılmış hâlleri.
|
||||||
|
*/
|
||||||
|
|
||||||
|
const fixture = (name: string) =>
|
||||||
|
readFileSync(join(__dirname, "__fixtures__", `${name}.html`), "utf-8");
|
||||||
|
|
||||||
|
// parseFordGroupsFromHtml saf bir metin işleyicisi: bağımlılıklar kullanılmıyor.
|
||||||
|
const svc = new PL24FordLegacyService(
|
||||||
|
{} as never, // authService
|
||||||
|
{ get: (_k: string, d?: unknown) => d } as never, // configService
|
||||||
|
{} as never, // redis
|
||||||
|
{} as never, // storage
|
||||||
|
) as unknown as {
|
||||||
|
parseFordGroupsFromHtml(
|
||||||
|
html: string,
|
||||||
|
serviceName: string,
|
||||||
|
familyId: string,
|
||||||
|
): Array<{ code: string; nameEn: string; linkPath?: string }>;
|
||||||
|
parseP4NavigationCategories(html: string): Array<{ nameEn: string }>;
|
||||||
|
};
|
||||||
|
|
||||||
|
describe("P4 ana grup tablosu — Opel/Hyundai (0 kategori regresyonu)", () => {
|
||||||
|
it("Opel: jsonurl satırlarından 31 ana grubu çıkarır", () => {
|
||||||
|
const groups = svc.parseFordGroupsFromHtml(fixture("p4_opel"), "opel_parts", "");
|
||||||
|
expect(groups.length).toBe(31);
|
||||||
|
expect(groups[0].nameEn).toBe("BODY SHELL AND PANELS");
|
||||||
|
expect(groups[0].code).toContain("json-vin-main-group.action");
|
||||||
|
expect(groups[0].code).toContain("mainGroupId=394");
|
||||||
|
// Adların hepsi gerçek metin olmalı (kod artığı değil)
|
||||||
|
expect(groups.every((g) => /[A-Za-z]{3,}/.test(g.nameEn))).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("Hyundai: mainGroup= anahtarlı vin-group satırları artık elenmez", () => {
|
||||||
|
const groups = svc.parseFordGroupsFromHtml(fixture("p4_hyundai"), "hyundai_parts", "");
|
||||||
|
expect(groups.length).toBe(6);
|
||||||
|
const names = groups.map((g) => g.nameEn);
|
||||||
|
expect(names).toContain("BODY");
|
||||||
|
expect(groups[0].code).toContain("mainGroup=BO");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("anchor-only parser bu sayfalarda hâlâ boş döner (fallback'in gerekçesi)", () => {
|
||||||
|
expect(svc.parseP4NavigationCategories(fixture("p4_opel")).length).toBe(0);
|
||||||
|
expect(svc.parseP4NavigationCategories(fixture("p4_hyundai")).length).toBe(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("Ford: scope satırları (sharedCatCode) bozulmadan okunur", () => {
|
||||||
|
const groups = svc.parseFordGroupsFromHtml(fixture("p4_ford"), "fordp_parts", "");
|
||||||
|
expect(groups.length).toBeGreaterThanOrEqual(6);
|
||||||
|
expect(groups.some((g) => g.code.includes("sharedCatCode=ZE"))).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("Nissan: model seçim satırları ana grup sayılmaz (vehicle.action elenir)", () => {
|
||||||
|
const groups = svc.parseFordGroupsFromHtml(fixture("p4_nissan"), "nissan_parts", "");
|
||||||
|
expect(groups.every((g) => !g.code.includes("vehicle.action"))).toBe(true);
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -442,31 +442,50 @@ export class PL24PsaService {
|
|||||||
|
|
||||||
// ==================== PRIVATE: session + HTTP ====================
|
// ==================== PRIVATE: session + HTTP ====================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* PSA requests must leave from the same egress as their auth account: under
|
||||||
|
* PL24_TR_DISABLED the legacy "tr" auth maps to de, whose session lives behind
|
||||||
|
* the DE proxy — the auth service picks the dispatcher (null for real tr).
|
||||||
|
*/
|
||||||
|
private async psaDispatcher(): Promise<any | null> {
|
||||||
|
return this.authService.getProxyAgent4Account("tr");
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* entry.action → startup=true (302) → 302 with mode+upds. Returns JSESSIONID/mode/upds.
|
* entry.action → startup=true (302) → 302 with mode+upds. Returns JSESSIONID/mode/upds.
|
||||||
*/
|
*/
|
||||||
private async initPsaSession(serviceName: string): Promise<PsaSession | null> {
|
private async initPsaSession(serviceName: string): Promise<PsaSession | null> {
|
||||||
await this.authService.authorizeService(serviceName);
|
// P4 PSA pages authenticate off the session cookie alone — no service token.
|
||||||
|
await this.authService.ensureSession("tr");
|
||||||
const headers = await this.authService.buildFordLegacyHeaders(serviceName);
|
const headers = await this.authService.buildFordLegacyHeaders(serviceName);
|
||||||
|
const dispatcher = await this.psaDispatcher();
|
||||||
|
const withDispatcher = (o: RequestInit): RequestInit & { dispatcher?: any } =>
|
||||||
|
dispatcher ? { ...o, dispatcher } : o;
|
||||||
try {
|
try {
|
||||||
const entryRes = await fetch(`${this.baseUrl}/psa/pl24-entry.action?service=${serviceName}`, {
|
const entryRes = await fetch(
|
||||||
method: "GET",
|
`${this.baseUrl}/psa/pl24-entry.action?service=${serviceName}`,
|
||||||
headers,
|
withDispatcher({
|
||||||
redirect: "manual",
|
method: "GET",
|
||||||
signal: AbortSignal.timeout(this.timeout),
|
headers,
|
||||||
});
|
redirect: "manual",
|
||||||
|
signal: AbortSignal.timeout(this.timeout),
|
||||||
|
}),
|
||||||
|
);
|
||||||
const jsessionId = entryRes.headers.get("set-cookie")?.match(/JSESSIONID=([^;]+)/)?.[1] || "";
|
const jsessionId = entryRes.headers.get("set-cookie")?.match(/JSESSIONID=([^;]+)/)?.[1] || "";
|
||||||
const loc1 = entryRes.headers.get("location");
|
const loc1 = entryRes.headers.get("location");
|
||||||
if (!loc1) return null;
|
if (!loc1) return null;
|
||||||
const hdrs2 = jsessionId
|
const hdrs2 = jsessionId
|
||||||
? { ...headers, Cookie: `${headers.Cookie}; JSESSIONID=${jsessionId}` }
|
? { ...headers, Cookie: `${headers.Cookie}; JSESSIONID=${jsessionId}` }
|
||||||
: headers;
|
: headers;
|
||||||
const startupRes = await fetch(loc1.startsWith("http") ? loc1 : `${this.baseUrl}${loc1}`, {
|
const startupRes = await fetch(
|
||||||
method: "GET",
|
loc1.startsWith("http") ? loc1 : `${this.baseUrl}${loc1}`,
|
||||||
headers: hdrs2,
|
withDispatcher({
|
||||||
redirect: "manual",
|
method: "GET",
|
||||||
signal: AbortSignal.timeout(this.timeout),
|
headers: hdrs2,
|
||||||
});
|
redirect: "manual",
|
||||||
|
signal: AbortSignal.timeout(this.timeout),
|
||||||
|
}),
|
||||||
|
);
|
||||||
const loc2 = startupRes.headers.get("location") || loc1;
|
const loc2 = startupRes.headers.get("location") || loc1;
|
||||||
const mode = loc2.match(/[?&]mode=([^&]+)/)?.[1] || "";
|
const mode = loc2.match(/[?&]mode=([^&]+)/)?.[1] || "";
|
||||||
// Keep upds URL-encoded exactly as returned (e.g. "2024.02.13+09%3A27%3A21+CET");
|
// Keep upds URL-encoded exactly as returned (e.g. "2024.02.13+09%3A27%3A21+CET");
|
||||||
@@ -494,12 +513,15 @@ export class PL24PsaService {
|
|||||||
Accept: opts.json ? "application/json,*/*" : "text/html,application/xhtml+xml,*/*;q=0.9",
|
Accept: opts.json ? "application/json,*/*" : "text/html,application/xhtml+xml,*/*;q=0.9",
|
||||||
};
|
};
|
||||||
try {
|
try {
|
||||||
const res = await fetch(url, {
|
const dispatcher = await this.psaDispatcher();
|
||||||
|
const fetchOpts: RequestInit & { dispatcher?: any } = {
|
||||||
method: "GET",
|
method: "GET",
|
||||||
headers,
|
headers,
|
||||||
redirect: opts.manual ? "manual" : "follow",
|
redirect: opts.manual ? "manual" : "follow",
|
||||||
signal: AbortSignal.timeout(this.timeout),
|
signal: AbortSignal.timeout(this.timeout),
|
||||||
});
|
};
|
||||||
|
if (dispatcher) fetchOpts.dispatcher = dispatcher;
|
||||||
|
const res = await fetch(url, fetchOpts);
|
||||||
const location = res.headers.get("location");
|
const location = res.headers.get("location");
|
||||||
if (opts.manual && res.status >= 300 && res.status < 400) {
|
if (opts.manual && res.status >= 300 && res.status < 400) {
|
||||||
return { status: res.status, text: null, location };
|
return { status: res.status, text: null, location };
|
||||||
@@ -543,13 +565,19 @@ export class PL24PsaService {
|
|||||||
Accept: "application/json,image/*,*/*;q=0.9",
|
Accept: "application/json,image/*,*/*;q=0.9",
|
||||||
Referer: `${this.baseUrl}/psa/${serviceName}/vin-image-board.action`,
|
Referer: `${this.baseUrl}/psa/${serviceName}/vin-image-board.action`,
|
||||||
};
|
};
|
||||||
|
const dispatcher = await this.psaDispatcher();
|
||||||
|
const withDispatcher = (o: RequestInit): RequestInit & { dispatcher?: any } =>
|
||||||
|
dispatcher ? { ...o, dispatcher } : o;
|
||||||
try {
|
try {
|
||||||
const infoRes = await fetch(`${imageUrl}&request=GetImageInfo&cv=1`, {
|
const infoRes = await fetch(
|
||||||
method: "GET",
|
`${imageUrl}&request=GetImageInfo&cv=1`,
|
||||||
headers,
|
withDispatcher({
|
||||||
redirect: "follow",
|
method: "GET",
|
||||||
signal: AbortSignal.timeout(this.timeout),
|
headers,
|
||||||
});
|
redirect: "follow",
|
||||||
|
signal: AbortSignal.timeout(this.timeout),
|
||||||
|
}),
|
||||||
|
);
|
||||||
if (!infoRes.ok) return null;
|
if (!infoRes.ok) return null;
|
||||||
const info = (await infoRes.json()) as {
|
const info = (await infoRes.json()) as {
|
||||||
imageWidth: number;
|
imageWidth: number;
|
||||||
@@ -570,12 +598,15 @@ export class PL24PsaService {
|
|||||||
const getImgUrl =
|
const getImgUrl =
|
||||||
`${imageUrl}&request=GetImage&format=image%2Fpng` +
|
`${imageUrl}&request=GetImage&format=image%2Fpng` +
|
||||||
`&bbox=${encodeURIComponent(`0,0,${w},${h}`)}&width=${w}&height=${h}&scalefac=1.0&cv=1&rnd=${rnd}`;
|
`&bbox=${encodeURIComponent(`0,0,${w},${h}`)}&width=${w}&height=${h}&scalefac=1.0&cv=1&rnd=${rnd}`;
|
||||||
const imgRes = await fetch(getImgUrl, {
|
const imgRes = await fetch(
|
||||||
method: "GET",
|
getImgUrl,
|
||||||
headers: { ...headers, Accept: "image/png,image/*,*/*;q=0.9" },
|
withDispatcher({
|
||||||
redirect: "follow",
|
method: "GET",
|
||||||
signal: AbortSignal.timeout(this.timeout),
|
headers: { ...headers, Accept: "image/png,image/*,*/*;q=0.9" },
|
||||||
});
|
redirect: "follow",
|
||||||
|
signal: AbortSignal.timeout(this.timeout),
|
||||||
|
}),
|
||||||
|
);
|
||||||
if (!imgRes.ok) return null;
|
if (!imgRes.ok) return null;
|
||||||
const contentType = imgRes.headers.get("content-type") || "image/png";
|
const contentType = imgRes.headers.get("content-type") || "image/png";
|
||||||
const buffer = Buffer.from(await imgRes.arrayBuffer());
|
const buffer = Buffer.from(await imgRes.arrayBuffer());
|
||||||
|
|||||||
186
apps/api/src/integrations/pl24/pl24-tree.spec.ts
Normal file
186
apps/api/src/integrations/pl24/pl24-tree.spec.ts
Normal file
@@ -0,0 +1,186 @@
|
|||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
import {
|
||||||
|
isPl24GroupNode,
|
||||||
|
isPl24LeafNode,
|
||||||
|
isPl24PartDetailNode,
|
||||||
|
isStalePl24Architecture,
|
||||||
|
} from "./pl24-tree";
|
||||||
|
|
||||||
|
// Canlı P5 yanıtlarından (2026-09-16 keşfi, plv2-artefakt/) alınan gerçek
|
||||||
|
// wid + path çiftleri. Bu dosya "0 parça" sınıfı hatanın regresyon kilidi.
|
||||||
|
|
||||||
|
describe("isPl24LeafNode — canlı P5 şekilleri", () => {
|
||||||
|
it("VW (p5vwag): maingroups/subgroups grup, bom/vin yaprak", () => {
|
||||||
|
expect(
|
||||||
|
isPl24GroupNode({
|
||||||
|
linkWid: "mainGroupsTable",
|
||||||
|
linkPath: "/p5vwag/extern/groups/vin_maingroups?vin=X",
|
||||||
|
}),
|
||||||
|
).toBe(true);
|
||||||
|
expect(
|
||||||
|
isPl24GroupNode({
|
||||||
|
linkWid: "subGroupsIllusTable",
|
||||||
|
linkPath: "/p5vwag/extern/groups/vin_subgroups_illus?maingroup=4",
|
||||||
|
}),
|
||||||
|
).toBe(true);
|
||||||
|
expect(
|
||||||
|
isPl24LeafNode({
|
||||||
|
linkWid: "bomlist",
|
||||||
|
linkPath: "/p5vwag/extern/bom/vin?illustration=407-000",
|
||||||
|
}),
|
||||||
|
).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("PSA (p5psa): scope + mainGroups + illusTable grup, bomDetails yaprak", () => {
|
||||||
|
expect(
|
||||||
|
isPl24GroupNode({
|
||||||
|
linkWid: "scopeTable",
|
||||||
|
linkPath: "/p5psa/extern/group/vin/scope?modelCode=1PD2",
|
||||||
|
}),
|
||||||
|
).toBe(true);
|
||||||
|
expect(
|
||||||
|
isPl24GroupNode({
|
||||||
|
linkWid: "mainGroupTable",
|
||||||
|
linkPath: "/p5psa/extern/group/vin/mainGroups?scope=_FCT0001",
|
||||||
|
}),
|
||||||
|
).toBe(true);
|
||||||
|
// Eski `includes("group")` kuralının kaçırdığı seviye — sessiz boş panelin kaynağı.
|
||||||
|
expect(
|
||||||
|
isPl24GroupNode({
|
||||||
|
linkWid: "illusTable",
|
||||||
|
linkPath: "/p5psa/extern/group/vin/illus?mainGroup=_FCT0001_FCT0512",
|
||||||
|
}),
|
||||||
|
).toBe(true);
|
||||||
|
// camelCase bomDetails — eski `includes("/bomdetails")` kaçırıyordu.
|
||||||
|
expect(
|
||||||
|
isPl24LeafNode({
|
||||||
|
linkWid: "bomlist",
|
||||||
|
linkPath: "/p5psa/extern/details/vin/bomDetails?illustration=D2F001A48A",
|
||||||
|
}),
|
||||||
|
).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("Volvo (p5volvo): illustrationsTable grup, bom yaprak", () => {
|
||||||
|
expect(
|
||||||
|
isPl24GroupNode({
|
||||||
|
linkWid: "illustrationsTable",
|
||||||
|
linkPath: "/p5volvo/extern/groups/vin/illustration?group=0b00c8af80205942",
|
||||||
|
}),
|
||||||
|
).toBe(true);
|
||||||
|
expect(isPl24LeafNode({ linkWid: "bomlist", linkPath: "/p5volvo/extern/bom/vin?..." })).toBe(
|
||||||
|
true,
|
||||||
|
);
|
||||||
|
expect(
|
||||||
|
isPl24LeafNode({
|
||||||
|
linkWid: "partinfo",
|
||||||
|
linkPath: "/p5volvo/extern/partinfo/vin?partno=36050493",
|
||||||
|
}),
|
||||||
|
).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("Subaru (p5subaru): subgroups/illustrations grup, bom/vin?figNum yaprak", () => {
|
||||||
|
expect(
|
||||||
|
isPl24GroupNode({
|
||||||
|
linkWid: "illustrationsTable",
|
||||||
|
linkPath: "/p5subaru/extern/groups/vin/illustrations?subGroup=001",
|
||||||
|
}),
|
||||||
|
).toBe(true);
|
||||||
|
expect(
|
||||||
|
isPl24LeafNode({ linkWid: "bomlist", linkPath: "/p5subaru/extern/bom/vin?figNum=01" }),
|
||||||
|
).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("wid yoksa yol kalıbına düşer (eski DB satırları)", () => {
|
||||||
|
expect(isPl24LeafNode({ linkPath: "/p5vwag/extern/bom/vin?illustration=1" })).toBe(true);
|
||||||
|
expect(
|
||||||
|
isPl24LeafNode({ linkPath: "/psa/peugeot_parts/vin-image-board.action?illCode=1" }),
|
||||||
|
).toBe(true);
|
||||||
|
expect(
|
||||||
|
isPl24GroupNode({
|
||||||
|
linkPath: "/psa/peugeot_parts/json-vin-main-groups.action?scope=_FCT0001",
|
||||||
|
}),
|
||||||
|
).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("hasSubgroups=true yol tahminini ezer", () => {
|
||||||
|
expect(isPl24LeafNode({ linkPath: "/p5x/extern/unknown", hasSubgroups: true })).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("servicepart öğe listesi yapraktır", () => {
|
||||||
|
expect(
|
||||||
|
isPl24LeafNode({
|
||||||
|
linkWid: "servicePartsItemsTable",
|
||||||
|
linkPath: "/p5vwag/extern/servicepart/vin_items?x=1",
|
||||||
|
}),
|
||||||
|
).toBe(true);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("isStalePl24Architecture — P4→P5 göç tespiti", () => {
|
||||||
|
it("eski PSA/Volvo yolu + artık P5 olan servis → bayat", () => {
|
||||||
|
expect(
|
||||||
|
isStalePl24Architecture({ catalogPath: "/psa/peugeot_parts", currentApiPath: "/p5psa" }),
|
||||||
|
).toBe(true);
|
||||||
|
expect(isStalePl24Architecture({ catalogPath: "/volvo", currentApiPath: "/p5volvo" })).toBe(
|
||||||
|
true,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("zaten P5 kaydı bayat değil", () => {
|
||||||
|
expect(isStalePl24Architecture({ catalogPath: "/p5psa", currentApiPath: "/p5psa" })).toBe(
|
||||||
|
false,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("hâlâ P4 olan markalar (Ford/Opel/Hyundai) dokunulmaz", () => {
|
||||||
|
expect(isStalePl24Architecture({ catalogPath: "/ford", currentApiPath: "/ford" })).toBe(false);
|
||||||
|
expect(isStalePl24Architecture({ catalogPath: "/opel", currentApiPath: "/opel" })).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("eksik bilgi → bayat sayma (güvenli taraf)", () => {
|
||||||
|
expect(isStalePl24Architecture({ catalogPath: null, currentApiPath: "/p5psa" })).toBe(false);
|
||||||
|
expect(isStalePl24Architecture({ catalogPath: "/psa/x", currentApiPath: null })).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Mitsubishi: parça listesi grup sanılıyordu (plv2.md, bulgu consumers-13).
|
||||||
|
*
|
||||||
|
* `/p5mitsubishi/extern/details/vinDetails` yanıtı `partno`/`qty` taşıyan bir
|
||||||
|
* PARÇA listesi (canlı doğrulama 2026-09-20: 16 kayıt), ama her kaydın linki
|
||||||
|
* `partInfoTable`. Ne wid ne yol sınıflandırıcıda karşılık bulmuyordu → 2.193
|
||||||
|
* parça listesi gruba, içlerindeki 19.576 tekil parça kategoriye dönüşmüştü;
|
||||||
|
* hepsinde toplam 2 parça vardı ve her prefetch turunda yeniden çekiliyorlardı.
|
||||||
|
*/
|
||||||
|
describe("Mitsubishi detailsTable / partInfoTable", () => {
|
||||||
|
const detailsPath =
|
||||||
|
"/p5mitsubishi/extern/details/vinDetails?bomDetails=133_110D00125Y&mainGroup=33";
|
||||||
|
const partInfoPath = "/p5mitsubishi/extern/details/vinpartinfo?bomDetails=142_7103K22Y5T";
|
||||||
|
|
||||||
|
it("detailsTable bir parça listesi — yaprak", () => {
|
||||||
|
expect(isPl24LeafNode({ linkWid: "detailsTable", linkPath: detailsPath })).toBe(true);
|
||||||
|
expect(isPl24GroupNode({ linkWid: "detailsTable", linkPath: detailsPath })).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("partInfoTable tekil parça detayı — ne grup ne liste", () => {
|
||||||
|
expect(isPl24PartDetailNode({ linkWid: "partInfoTable", linkPath: partInfoPath })).toBe(true);
|
||||||
|
expect(isPl24GroupNode({ linkWid: "partInfoTable", linkPath: partInfoPath })).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("wid yoksa yol kalıbı parça-detayını yine yakalar", () => {
|
||||||
|
expect(isPl24PartDetailNode({ linkPath: partInfoPath })).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("gerçek parça uçlarını parça-detayı sanmaz", () => {
|
||||||
|
// Volvo'nun partinfo yaprağı ve VW'nin bom listesi etkilenmemeli.
|
||||||
|
expect(
|
||||||
|
isPl24PartDetailNode({
|
||||||
|
linkWid: "partinfo",
|
||||||
|
linkPath: "/p5volvo/extern/partinfo/vin?partno=1",
|
||||||
|
}),
|
||||||
|
).toBe(false);
|
||||||
|
expect(
|
||||||
|
isPl24PartDetailNode({ linkWid: "bomlist", linkPath: "/p5vwag/extern/bom/vin?x=1" }),
|
||||||
|
).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
151
apps/api/src/integrations/pl24/pl24-tree.ts
Normal file
151
apps/api/src/integrations/pl24/pl24-tree.ts
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
/**
|
||||||
|
* One source of truth for "is this PL24 node a parts leaf or a group to drill?".
|
||||||
|
*
|
||||||
|
* WHY THIS FILE EXISTS (plv2.md, findings p5core-02 / psa-05 / consumers_jobs-01):
|
||||||
|
* the same question was answered by four independent heuristics —
|
||||||
|
* `categories.service` (twice), `catalog.service` and the prefetch worker — and
|
||||||
|
* they disagreed. Two failure modes shipped repeatedly:
|
||||||
|
*
|
||||||
|
* 1. `linkWid.includes("group")` as the "is a group" test. Live P5 PSA's second
|
||||||
|
* level has wid `illusTable`, Volvo's and Subaru's `illustrationsTable` —
|
||||||
|
* none contain "group", so those nodes fell through to the parts fetcher,
|
||||||
|
* which asked an *illustration list* for parts, got records with no partno,
|
||||||
|
* and rendered a silent empty panel (`parts: []`, no error). This is the same
|
||||||
|
* class of bug as the 2026-06 `isPsaParent` incident.
|
||||||
|
* 2. Case-sensitive `includes("/bomdetails")` while p5psa and p5volvo spell the
|
||||||
|
* endpoint `/details/vin/bomDetails` — so those leaves were queued as groups,
|
||||||
|
* `getChildren` returned [] and their parts were never prefetched (live today
|
||||||
|
* for Mitsubishi 99.9% / Fiat 80% / Renault 70% of bomDetails leaves).
|
||||||
|
*
|
||||||
|
* The reliable cross-brand marker is the response's own `link.wid`: `bomlist`
|
||||||
|
* (and the service-parts/partinfo variants) means parts, anything else means
|
||||||
|
* drill. Path matching stays as a fallback for stored rows without a wid.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* `link.wid` values that identify a parts (BOM) node across every P5 backend.
|
||||||
|
*
|
||||||
|
* `detailstable` is Mitsubishi's: `/p5mitsubishi/extern/details/vinDetails`
|
||||||
|
* answers with 16-ish records carrying `partno`/`qty`, i.e. it IS the parts
|
||||||
|
* list — but each record's own link is a `partInfoTable` per-part detail, and
|
||||||
|
* neither the wid nor the path matched anything here, so the whole list was
|
||||||
|
* drilled as a group. Prod on 2026-09-20: 2,193 Mitsubishi parts lists turned
|
||||||
|
* into group nodes and their 19,576 individual parts ("SCREW,LOCK CYLINDER",
|
||||||
|
* "BOLT,STEERING COLUMN WASHER") became categories — 19,576 fake tree nodes
|
||||||
|
* with 2 parts between them, each re-fetched on every prefetch pass.
|
||||||
|
*/
|
||||||
|
const LEAF_WIDS = new Set([
|
||||||
|
"bomlist",
|
||||||
|
"bomoverviewlist",
|
||||||
|
"servicepartsitemstable",
|
||||||
|
"partinfo",
|
||||||
|
"detailstable",
|
||||||
|
]);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Nodes that describe ONE part rather than a list of them. They are neither a
|
||||||
|
* group to drill nor a list to fetch: the parent's own response already carried
|
||||||
|
* the part. Queueing them buys nothing and costs one upstream request each —
|
||||||
|
* 19,576 of them on prod before this was recognised.
|
||||||
|
*/
|
||||||
|
const PART_DETAIL_WIDS = new Set(["partinfotable"]);
|
||||||
|
const PART_DETAIL_PATH = /\/details\/vinpartinfo\b/i;
|
||||||
|
|
||||||
|
/** True when this node is a single part's detail view, not a listing. */
|
||||||
|
export function isPl24PartDetailNode(opts: {
|
||||||
|
linkPath?: string | null;
|
||||||
|
linkWid?: string | null;
|
||||||
|
}): boolean {
|
||||||
|
const wid = opts.linkWid?.toLowerCase().trim();
|
||||||
|
if (wid && PART_DETAIL_WIDS.has(wid)) return true;
|
||||||
|
return PART_DETAIL_PATH.test(opts.linkPath ?? "");
|
||||||
|
}
|
||||||
|
|
||||||
|
/** `link.wid` values that identify a drillable group node. */
|
||||||
|
const GROUP_WID_PATTERN =
|
||||||
|
/(group|scope|illus|illustration|catalog|model|vpages|msppages|chemicals|category|categories)/i;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Path fragments that only ever appear on a parts endpoint. `image-board` has no
|
||||||
|
* leading slash on purpose: the legacy PSA leaf is `vin-image-board.action`.
|
||||||
|
*/
|
||||||
|
const LEAF_PATH_PATTERN =
|
||||||
|
/\/(bom|bomdetails|partinfo|vin_items|mdl_items|vin_bomdetails)\b|\/bom\/|\/details\/vin\/bomdetails|\/servicepart\/vin_items|image-board/i;
|
||||||
|
|
||||||
|
/** True when this node yields parts (never children). */
|
||||||
|
export function isPl24LeafNode(opts: {
|
||||||
|
linkPath?: string | null;
|
||||||
|
linkWid?: string | null;
|
||||||
|
hasSubgroups?: boolean | null;
|
||||||
|
}): boolean {
|
||||||
|
const wid = opts.linkWid?.toLowerCase().trim();
|
||||||
|
if (wid) {
|
||||||
|
if (LEAF_WIDS.has(wid)) return true;
|
||||||
|
if (GROUP_WID_PATTERN.test(wid)) return false;
|
||||||
|
}
|
||||||
|
// Explicit DB hint wins over path guessing when there is no usable wid.
|
||||||
|
if (opts.hasSubgroups === true) return false;
|
||||||
|
const lp = opts.linkPath?.toLowerCase() ?? "";
|
||||||
|
if (!lp) return false;
|
||||||
|
return LEAF_PATH_PATTERN.test(lp);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** True when this node should be drilled for children. */
|
||||||
|
export function isPl24GroupNode(opts: {
|
||||||
|
linkPath?: string | null;
|
||||||
|
linkWid?: string | null;
|
||||||
|
hasSubgroups?: boolean | null;
|
||||||
|
}): boolean {
|
||||||
|
if (!opts.linkPath && !opts.linkWid) return false;
|
||||||
|
// A per-part detail node is not a group; drilling it returns nothing.
|
||||||
|
if (isPl24PartDetailNode(opts)) return false;
|
||||||
|
return !isPl24LeafNode(opts);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* True when a stored vehicle's catalogInfo points at an architecture the service
|
||||||
|
* no longer uses — i.e. the row was decoded before PSA/Volvo moved to P5.
|
||||||
|
*
|
||||||
|
* These vehicles keep serving a tree built from the frozen P4 PSA snapshot
|
||||||
|
* (upds 2024-02-13) or the dead P4 Volvo endpoint (HTTP 503), and `decodeVin`'s
|
||||||
|
* db_hit short-circuit means a code fix never reaches them. Detecting the
|
||||||
|
* mismatch at read time lets each vehicle heal itself on first view instead of
|
||||||
|
* needing a bulk re-decode storm against the one surviving account.
|
||||||
|
*/
|
||||||
|
export function isStalePl24Architecture(opts: {
|
||||||
|
catalogPath?: string | null;
|
||||||
|
currentApiPath?: string | null;
|
||||||
|
}): boolean {
|
||||||
|
const stored = opts.catalogPath?.toLowerCase() ?? "";
|
||||||
|
const current = opts.currentApiPath?.toLowerCase() ?? "";
|
||||||
|
if (!stored || !current) return false;
|
||||||
|
// Only the two migrated legacy backends; unknown/other paths are left alone.
|
||||||
|
const storedIsLegacyPsaOrVolvo = stored.startsWith("/psa") || stored.startsWith("/volvo");
|
||||||
|
if (!storedIsLegacyPsaOrVolvo) return false;
|
||||||
|
return current.startsWith("/p5");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* True when a stored `catalog_vehicles` browse row was listed under an
|
||||||
|
* architecture the service table no longer uses.
|
||||||
|
*
|
||||||
|
* Browse rows are a PERMANENT cache: `CatalogService.getModels` returns early
|
||||||
|
* whenever the brand already has rows, so `fetchVehicleList` is never called
|
||||||
|
* again for that brand. The 188 rows listed while PSA and Volvo were still P4
|
||||||
|
* (127 LEGACY_PSA + 61 LEGACY_VOLVO on prod, 2026-09-20) are therefore pinned
|
||||||
|
* forever: Peugeot/Citroën browse serves the frozen 2024-02-13 snapshot and
|
||||||
|
* Volvo/Polestar browse serves an endpoint that answers HTTP 503. Detecting the
|
||||||
|
* mismatch at list time lets the brand re-list itself once, the same way
|
||||||
|
* `isStalePl24Architecture` heals a VIN-decoded vehicle.
|
||||||
|
*/
|
||||||
|
export function isStaleBrowseArchitecture(opts: {
|
||||||
|
storedArchitecture?: string | null;
|
||||||
|
currentArchitecture?: string | null;
|
||||||
|
}): boolean {
|
||||||
|
const stored = opts.storedArchitecture?.trim();
|
||||||
|
const current = opts.currentArchitecture?.trim();
|
||||||
|
// An unknown service (no config) or an unlabelled row is left alone: without a
|
||||||
|
// current architecture to compare against there is nothing to migrate TO.
|
||||||
|
if (!stored || !current) return false;
|
||||||
|
return stored !== current;
|
||||||
|
}
|
||||||
68
apps/api/src/integrations/pl24/pl24-volvo-vinfo.spec.ts
Normal file
68
apps/api/src/integrations/pl24/pl24-volvo-vinfo.spec.ts
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
import { readFileSync } from "node:fs";
|
||||||
|
import { join } from "node:path";
|
||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
import { PL24Service } from "./pl24.service";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Volvo P5 vinfoBasic regression lock (plv2.md, finding p5core-09).
|
||||||
|
*
|
||||||
|
* Volvo emits BOTH a bare internal code and a readable description for the same
|
||||||
|
* attribute — "Şanzıman kodu" = "B" next to "Şanzıman" = "6-PSHIFT 2WD / MPS6",
|
||||||
|
* and "Satis tipi" = "42" next to "Türü" = "S80". The key order the parser needs
|
||||||
|
* for VAG (whose "Şanzıman kodu" IS the useful value, e.g. "MQ200") therefore
|
||||||
|
* rendered a single letter as the gearbox and a bare number as the series.
|
||||||
|
*
|
||||||
|
* Fixtures are the real 2026-09-16 discovery captures for VIN
|
||||||
|
* YV1AS84ABD1168166 (S80), trimmed to the segments the parser reads, in both
|
||||||
|
* the Turkish and the English label locale.
|
||||||
|
*/
|
||||||
|
|
||||||
|
const fixture = (name: string) =>
|
||||||
|
JSON.parse(readFileSync(join(__dirname, "__fixtures__", `${name}.json`), "utf-8"));
|
||||||
|
|
||||||
|
// parseVehicleResponse only touches the response and the service name.
|
||||||
|
const parse = (data: unknown, serviceName = "volvo_parts") => {
|
||||||
|
const svc = Object.create(PL24Service.prototype) as unknown as {
|
||||||
|
parseVehicleResponse: (v: string, d: unknown, s: string) => Record<string, unknown>;
|
||||||
|
isDaimlerService: (s: string) => boolean;
|
||||||
|
};
|
||||||
|
svc.isDaimlerService = () => false;
|
||||||
|
return svc.parseVehicleResponse("YV1AS84ABD1168166", data, serviceName);
|
||||||
|
};
|
||||||
|
|
||||||
|
describe("Volvo P5 vinfoBasic — kod yerine açıklama", () => {
|
||||||
|
it("Türkçe etiketlerde şanzımanı okunur değerinden alır", () => {
|
||||||
|
const out = parse(fixture("p5_volvo_tr"));
|
||||||
|
expect(out.transmission).toBe("6-PSHIFT 2WD / MPS6");
|
||||||
|
// Tek harflik "Şanzıman kodu" artık kazanmıyor.
|
||||||
|
expect(out.transmission).not.toBe("B");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("İngilizce etiketlerde de aynı sonucu verir", () => {
|
||||||
|
const out = parse(fixture("p5_volvo_en"));
|
||||||
|
expect(out.transmission).toBe("6-PSHIFT 2WD / MPS6");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("seri, çıplak satış kodu yerine gerçek tipi döner", () => {
|
||||||
|
expect(parse(fixture("p5_volvo_tr")).series).toBe("S80");
|
||||||
|
expect(parse(fixture("p5_volvo_en")).series).toBe("S80");
|
||||||
|
expect(parse(fixture("p5_volvo_tr")).series).not.toBe("42");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("kaporta stili iki dilde de çözülür ve '0' kodu sızmaz", () => {
|
||||||
|
expect(parse(fixture("p5_volvo_tr")).bodyType).toBe("Sedan");
|
||||||
|
expect(parse(fixture("p5_volvo_en")).bodyType).toBe("Sedan");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("motor alanları bozulmadan kalır", () => {
|
||||||
|
const out = parse(fixture("p5_volvo_tr"));
|
||||||
|
expect(out.engineCode).toBe("84");
|
||||||
|
expect(out.engineType).toBe("D4162T");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("model ve yıl korunur", () => {
|
||||||
|
const out = parse(fixture("p5_volvo_tr"));
|
||||||
|
expect(out.model).toBe("S80 (07-)");
|
||||||
|
expect(out.year).toBe(2013);
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -1,13 +1,29 @@
|
|||||||
export const PL24_DEFAULTS = {
|
export const PL24_DEFAULTS = {
|
||||||
AUTH_TOKEN_TTL: 3600, // 1 hour in seconds
|
/** Service JWTs live 600s (measured); refresh this many ms before expiry. */
|
||||||
|
SERVICE_TOKEN_SKEW_MS: 60_000,
|
||||||
|
/** PL24TOKEN is a session cookie with no expiry — we keep our copy for a day. */
|
||||||
|
SESSION_TTL_S: 86_400,
|
||||||
CACHE_PREFIX: "pl24:",
|
CACHE_PREFIX: "pl24:",
|
||||||
REQUEST_TIMEOUT: 30000,
|
REQUEST_TIMEOUT: 30000,
|
||||||
MAX_RETRIES: 3,
|
MAX_RETRIES: 3,
|
||||||
} as const;
|
} as const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Real Chrome UA. The old value ("…AppleWebKit/537.36" with no Chrome/Safari
|
||||||
|
* token) matches no real browser and is a cheap automation tell.
|
||||||
|
*/
|
||||||
|
export const PL24_USER_AGENT =
|
||||||
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36";
|
||||||
|
|
||||||
export const PL24_ENDPOINTS = {
|
export const PL24_ENDPOINTS = {
|
||||||
// Auth
|
// Auth — LOGIN is the portal/landing endpoint (returns {loginStatus, sessionToken}
|
||||||
LOGIN: "/pl24-appgtw/ext/api/1.0/login",
|
// + Set-Cookie PL24TOKEN). LOGIN_LEGACY is the in-SPA one our old code used; it
|
||||||
|
// still works and returns a 600s base JWT we no longer need. PL24_LOGIN_API=legacy
|
||||||
|
// switches back for one release.
|
||||||
|
LOGIN: "/auth/ext/api/1.1/login",
|
||||||
|
LOGIN_LEGACY: "/pl24-appgtw/ext/api/1.0/login",
|
||||||
|
LOGOUT_LEGACY: "/pl24-appgtw/ext/api/1.0/logout",
|
||||||
|
SESSION: "/auth/ext/api/1.1/session",
|
||||||
AUTHORIZE: "/auth/ext/api/1.1/authorize",
|
AUTHORIZE: "/auth/ext/api/1.1/authorize",
|
||||||
|
|
||||||
// Catalog
|
// Catalog
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
import { Module } from "@nestjs/common";
|
import { Module } from "@nestjs/common";
|
||||||
|
import { ProxyTelemetryModule } from "../proxy-telemetry/proxy-telemetry.module";
|
||||||
import { PL24AuthService } from "./pl24-auth.service";
|
import { PL24AuthService } from "./pl24-auth.service";
|
||||||
|
import { PL24BudgetService } from "./pl24-budget.service";
|
||||||
import { PL24FordLegacyService } from "./pl24-ford-legacy.service";
|
import { PL24FordLegacyService } from "./pl24-ford-legacy.service";
|
||||||
import { PL24FordService } from "./pl24-ford.service";
|
import { PL24FordService } from "./pl24-ford.service";
|
||||||
import { PL24HyundaiKiaService } from "./pl24-hyundai-kia.service";
|
import { PL24HyundaiKiaService } from "./pl24-hyundai-kia.service";
|
||||||
@@ -11,6 +13,7 @@ import { PL24Service } from "./pl24.service";
|
|||||||
const PL24_PROVIDERS = [
|
const PL24_PROVIDERS = [
|
||||||
PL24Service,
|
PL24Service,
|
||||||
PL24AuthService,
|
PL24AuthService,
|
||||||
|
PL24BudgetService,
|
||||||
PL24FordLegacyService,
|
PL24FordLegacyService,
|
||||||
PL24PsaService,
|
PL24PsaService,
|
||||||
PL24VolvoService,
|
PL24VolvoService,
|
||||||
@@ -20,6 +23,7 @@ const PL24_PROVIDERS = [
|
|||||||
];
|
];
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
|
imports: [ProxyTelemetryModule],
|
||||||
providers: PL24_PROVIDERS,
|
providers: PL24_PROVIDERS,
|
||||||
exports: PL24_PROVIDERS,
|
exports: PL24_PROVIDERS,
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ const svc = new PL24Service(
|
|||||||
{} as never, // redis
|
{} as never, // redis
|
||||||
{} as never, // storage
|
{} as never, // storage
|
||||||
{} as never, // posthog
|
{} as never, // posthog
|
||||||
|
{} as never, // budget
|
||||||
);
|
);
|
||||||
const p = svc as unknown as {
|
const p = svc as unknown as {
|
||||||
parseVehicleResponse(
|
parseVehicleResponse(
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ import { PostHogService } from "../../posthog/posthog.service";
|
|||||||
import { RedisService } from "../../redis/redis.service";
|
import { RedisService } from "../../redis/redis.service";
|
||||||
import { StorageService } from "../../storage/storage.service";
|
import { StorageService } from "../../storage/storage.service";
|
||||||
import { PL24AuthService } from "./pl24-auth.service";
|
import { PL24AuthService } from "./pl24-auth.service";
|
||||||
|
import { PL24BudgetService } from "./pl24-budget.service";
|
||||||
import { PL24FordLegacyService } from "./pl24-ford-legacy.service";
|
import { PL24FordLegacyService } from "./pl24-ford-legacy.service";
|
||||||
import { PL24FordService } from "./pl24-ford.service";
|
import { PL24FordService } from "./pl24-ford.service";
|
||||||
import { PL24HyundaiKiaService } from "./pl24-hyundai-kia.service";
|
import { PL24HyundaiKiaService } from "./pl24-hyundai-kia.service";
|
||||||
@@ -55,6 +56,65 @@ const LEGACY_ARCH_SOURCE_TAG: Record<string, string> = {
|
|||||||
LEGACY_HYUNDAI_KIA: "hyundai-kia",
|
LEGACY_HYUNDAI_KIA: "hyundai-kia",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Normalise a vinfoBasic label into a lookup key.
|
||||||
|
*
|
||||||
|
* JS `toLowerCase()` maps Turkish "İ" to "i" + U+0307 (combining dot), so PSA
|
||||||
|
* labels like "AKTARMA SİSTEMLERİ" / "GÖVDE TİPİ" produced keys no lookup could
|
||||||
|
* ever match and the transmission/body fields silently stayed null. Lower-case
|
||||||
|
* with the Turkish locale, then strip combining marks and fold "ı" → "i" so a
|
||||||
|
* single spelling matches both "Model yılı" and "MODEL YILI".
|
||||||
|
*/
|
||||||
|
export function normalizeLabel(label: string): string {
|
||||||
|
return (
|
||||||
|
label
|
||||||
|
.toLocaleLowerCase("tr")
|
||||||
|
.normalize("NFD")
|
||||||
|
// \p{M} (all combining marks) rather than the U+0300–U+036F range: the range
|
||||||
|
// is a character class that can also match a base character followed by a
|
||||||
|
// combining one, which biome flags as misleading. NFD has already split every
|
||||||
|
// accent into its own mark, so matching marks directly is both correct and
|
||||||
|
// broader (Turkish, Latin-Extended, anything PL24 sends).
|
||||||
|
.replace(/\p{M}/gu, "")
|
||||||
|
.replace(/ı/g, "i")
|
||||||
|
.replace(/[\s/]+/g, "_")
|
||||||
|
.trim()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* PSA model year: "AM 2005" → 2005. Index labels ("01 MAJÖR ENDEKS",
|
||||||
|
* 'MAJÖR ENDEKS "0C"') are NOT years — returning one there is how a Citroën
|
||||||
|
* ended up as a 2001 model. PSA VINs also don't encode the model year in
|
||||||
|
* position 10, so the caller must fall back to DAM or leave it null.
|
||||||
|
*/
|
||||||
|
export function parsePsaModelYear(value: string | null | undefined): number | null {
|
||||||
|
if (!value) return null;
|
||||||
|
if (/endeks/i.test(value)) return null;
|
||||||
|
const m = value.match(/\b(?:AM\s*)?((?:19|20)\d{2})\b/i);
|
||||||
|
if (m) return Number(m[1]);
|
||||||
|
const short = value.match(/^\s*AM\s*(\d{2})\s*$/i);
|
||||||
|
if (short) {
|
||||||
|
const n = Number(short[1]);
|
||||||
|
return n >= 70 ? 1900 + n : 2000 + n;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* PSA "DAM" (e.g. "10479CJ") = days since 1976-01-01 + plant code → build date.
|
||||||
|
* PSA model years roll in July, so a build after June belongs to the next one.
|
||||||
|
*/
|
||||||
|
export function damToModelYear(dam: string | null | undefined): number | null {
|
||||||
|
if (!dam) return null;
|
||||||
|
const m = dam.match(/^(\d{4,5})/);
|
||||||
|
if (!m) return null;
|
||||||
|
const date = new Date(Date.UTC(1976, 0, 1) + Number(m[1]) * 86_400_000);
|
||||||
|
const year = date.getUTCFullYear();
|
||||||
|
if (year < 1980 || year > 2100) return null;
|
||||||
|
return date.getUTCMonth() >= 6 ? year + 1 : year;
|
||||||
|
}
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class PL24Service {
|
export class PL24Service {
|
||||||
private readonly logger = new Logger(PL24Service.name);
|
private readonly logger = new Logger(PL24Service.name);
|
||||||
@@ -74,6 +134,7 @@ export class PL24Service {
|
|||||||
private redis: RedisService,
|
private redis: RedisService,
|
||||||
private storage: StorageService,
|
private storage: StorageService,
|
||||||
private posthog: PostHogService,
|
private posthog: PostHogService,
|
||||||
|
private readonly budget: PL24BudgetService,
|
||||||
) {
|
) {
|
||||||
this.baseUrl = this.configService.get<string>("pl24.baseUrl", "https://www.partslink24.com");
|
this.baseUrl = this.configService.get<string>("pl24.baseUrl", "https://www.partslink24.com");
|
||||||
this.timeout = 30000;
|
this.timeout = 30000;
|
||||||
@@ -944,15 +1005,28 @@ export class PL24Service {
|
|||||||
return opts;
|
return opts;
|
||||||
};
|
};
|
||||||
|
|
||||||
const response = await fetch(url, buildOpts(headers));
|
// Every PL24 upstream call is counted and logged here (the one choke point).
|
||||||
|
const response = await this.budgetedFetch(
|
||||||
|
url,
|
||||||
|
buildOpts(headers),
|
||||||
|
account,
|
||||||
|
Boolean(dispatcher),
|
||||||
|
);
|
||||||
|
|
||||||
if (response.status === 401) {
|
if (response.status === 401) {
|
||||||
this.logger.warn(`Got 401 (account=${account}), refreshing token...`);
|
this.logger.warn(`Got 401 (account=${account}), refreshing service token...`);
|
||||||
|
// A stale *service* token is the cheap explanation; the session itself is
|
||||||
|
// only dropped if the re-authorize also fails (handled in the auth service).
|
||||||
this.authService.clearTokensForAccount(account);
|
this.authService.clearTokensForAccount(account);
|
||||||
await this.authService.authorizeServiceForAccount(serviceName, account);
|
await this.authService.authorizeServiceForAccount(serviceName, account);
|
||||||
const newHeaders = await this.authService.buildAuthHeadersForAccount(account, serviceName);
|
const newHeaders = await this.authService.buildAuthHeadersForAccount(account, serviceName);
|
||||||
|
|
||||||
const retry = await fetch(url, buildOpts(newHeaders));
|
const retry = await this.budgetedFetch(
|
||||||
|
url,
|
||||||
|
buildOpts(newHeaders),
|
||||||
|
account,
|
||||||
|
Boolean(dispatcher),
|
||||||
|
);
|
||||||
|
|
||||||
if (!retry.ok) {
|
if (!retry.ok) {
|
||||||
throw new Error(`HTTP ${retry.status}: ${retry.statusText}`);
|
throw new Error(`HTTP ${retry.status}: ${retry.statusText}`);
|
||||||
@@ -971,6 +1045,50 @@ export class PL24Service {
|
|||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Single gate for PL24 upstream traffic: daily budget first (a refusal costs
|
||||||
|
* no request at all), then the call, then telemetry into `proxy_logs`.
|
||||||
|
*/
|
||||||
|
private async budgetedFetch(
|
||||||
|
url: string,
|
||||||
|
opts: RequestInit & { dispatcher?: any },
|
||||||
|
account: "tr" | "de",
|
||||||
|
proxied: boolean,
|
||||||
|
): Promise<Response> {
|
||||||
|
// The kill switch used to gate decodeVin only, so drills, backfill and
|
||||||
|
// catalog browse kept hammering PL24 after the source was "killed".
|
||||||
|
if (!(await this.posthog.isSourceLive("pl24"))) {
|
||||||
|
throw new ServiceUnavailableException("PL24 kapali (kill-source-pl24)");
|
||||||
|
}
|
||||||
|
await this.budget.consume("catalog");
|
||||||
|
const startedAt = Date.now();
|
||||||
|
const activeAccount = this.authService.activeAccount(account);
|
||||||
|
try {
|
||||||
|
const response = await fetch(url, opts);
|
||||||
|
this.budget.record({
|
||||||
|
kind: "catalog",
|
||||||
|
url,
|
||||||
|
proxied,
|
||||||
|
account: activeAccount,
|
||||||
|
statusCode: response.status,
|
||||||
|
success: response.ok,
|
||||||
|
startedAt,
|
||||||
|
});
|
||||||
|
return response;
|
||||||
|
} catch (error) {
|
||||||
|
this.budget.record({
|
||||||
|
kind: "catalog",
|
||||||
|
url,
|
||||||
|
proxied,
|
||||||
|
account: activeAccount,
|
||||||
|
success: false,
|
||||||
|
startedAt,
|
||||||
|
error,
|
||||||
|
});
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// ==================== PRIVATE: Account routing ====================
|
// ==================== PRIVATE: Account routing ====================
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -1026,6 +1144,78 @@ export class PL24Service {
|
|||||||
|
|
||||||
// ==================== PRIVATE: Response parsers ====================
|
// ==================== PRIVATE: Response parsers ====================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ask a P5 backend where its own model list lives, instead of guessing.
|
||||||
|
*
|
||||||
|
* Every P5 backend serves `/extern/catmeta`, whose `data.catalogEntryPoint.path`
|
||||||
|
* is the authoritative browse entry point — e.g. p5psa answers
|
||||||
|
* `/p5psa/extern/vehicle/catalogs`, p5volvo `/p5volvo/extern/vehicles/models`.
|
||||||
|
* The old behaviour, when `BACKEND_MODEL_PATH` had no entry, was to fire the
|
||||||
|
* seven known paths in turn and keep whichever returned rows. That costs up to
|
||||||
|
* seven upstream requests per call on a shared daily budget, and it silently
|
||||||
|
* fails for any backend whose path is not already on the list — which is how
|
||||||
|
* Volvo/Polestar browse ended up seeding zero models while still serving the
|
||||||
|
* retired P4 listing.
|
||||||
|
*
|
||||||
|
* The resolved path is cached per backend (30 days) so this costs one request
|
||||||
|
* for a backend's whole lifetime, and it self-heals if PL24 moves an endpoint.
|
||||||
|
* Returns null on any failure; the caller then falls back as before.
|
||||||
|
*/
|
||||||
|
private async resolveModelPathFromCatmeta(
|
||||||
|
catalogBase: string,
|
||||||
|
serviceName: string,
|
||||||
|
headers: Record<string, string>,
|
||||||
|
): Promise<string | null> {
|
||||||
|
const cacheKey = `pl24:modelpath:${catalogBase.replace(/^\//, "")}`;
|
||||||
|
try {
|
||||||
|
const cached = await this.redis.get(cacheKey);
|
||||||
|
if (cached) return cached === "none" ? null : cached;
|
||||||
|
} catch {
|
||||||
|
// Redis down — resolve live rather than failing the listing.
|
||||||
|
}
|
||||||
|
|
||||||
|
let resolved: string | null = null;
|
||||||
|
try {
|
||||||
|
const url = `${this.baseUrl}${catalogBase}/extern/catmeta?serviceName=${serviceName}&country=DE&lang=${this.language}`;
|
||||||
|
const res = await fetch(url, { method: "GET", headers, signal: AbortSignal.timeout(15000) });
|
||||||
|
if (res.ok) {
|
||||||
|
const meta = (await res.json()) as {
|
||||||
|
data?: { catalogEntryPoint?: { path?: string } };
|
||||||
|
};
|
||||||
|
const full = meta.data?.catalogEntryPoint?.path;
|
||||||
|
if (full) {
|
||||||
|
// catmeta returns the absolute path with query string
|
||||||
|
// ("/p5volvo/extern/vehicles/models?lang=en&serviceName=…"); the caller
|
||||||
|
// appends its own lang/serviceName, so keep only the backend-relative
|
||||||
|
// path segment.
|
||||||
|
const withoutQuery = full.split("?")[0];
|
||||||
|
const relative = withoutQuery.startsWith(catalogBase)
|
||||||
|
? withoutQuery.slice(catalogBase.length)
|
||||||
|
: withoutQuery;
|
||||||
|
if (relative.startsWith("/extern/")) resolved = relative;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
this.logger.warn(
|
||||||
|
`fetchVehicleList: catmeta lookup failed for ${serviceName}: ${(err as Error).message}`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (resolved) {
|
||||||
|
this.logger.log(
|
||||||
|
`fetchVehicleList: ${serviceName} model path resolved from catmeta → ${resolved}`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
// Cache the negative too, so a backend without a usable catmeta does not
|
||||||
|
// re-probe on every browse.
|
||||||
|
await this.redis.set(cacheKey, resolved ?? "none", 30 * 86_400);
|
||||||
|
} catch {
|
||||||
|
// best effort
|
||||||
|
}
|
||||||
|
return resolved;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parse vehicle data from directAccess response.
|
* Parse vehicle data from directAccess response.
|
||||||
*/
|
*/
|
||||||
@@ -1051,7 +1241,7 @@ export class PL24Service {
|
|||||||
const label = (v.key !== undefined ? v.key : v.description) || "";
|
const label = (v.key !== undefined ? v.key : v.description) || "";
|
||||||
const value = (v.key !== undefined ? v.description : v.value) || "";
|
const value = (v.key !== undefined ? v.description : v.value) || "";
|
||||||
if (!label) continue;
|
if (!label) continue;
|
||||||
const key = label.toLowerCase().replace(/[\s\/]+/g, "_");
|
const key = normalizeLabel(label);
|
||||||
if (!(key in vehicleData)) {
|
if (!(key in vehicleData)) {
|
||||||
// Normalize like prNr col3: newlines→space, unescape the literal "\-" some P5
|
// Normalize like prNr col3: newlines→space, unescape the literal "\-" some P5
|
||||||
// backends emit (JLR "XJ 2010 \- 2019", Toyota/Suzuki dates "2023\-11\-29"/"2005\-07"),
|
// backends emit (JLR "XJ 2010 \- 2019", Toyota/Suzuki dates "2023\-11\-29"/"2005\-07"),
|
||||||
@@ -1073,6 +1263,31 @@ export class PL24Service {
|
|||||||
return null;
|
return null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Like `lookup`, but prefers a human-readable value over a bare internal
|
||||||
|
* code when the record carries both.
|
||||||
|
*
|
||||||
|
* Volvo's vinfoBasic has BOTH "Şanzıman kodu" ("B") and "Şanzıman"
|
||||||
|
* ("6-PSHIFT 2WD / MPS6"), and BOTH "Satis tipi" ("42") and a second
|
||||||
|
* "Satis tipi" ("SALES VERSION 42"). The code-first key order that VAG needs
|
||||||
|
* (its "Şanzıman kodu" IS the useful value, e.g. "MQ200") therefore rendered
|
||||||
|
* a single letter as the Volvo gearbox and a bare number as its series.
|
||||||
|
*
|
||||||
|
* Falls back to the first present value, so a backend that only ever emits
|
||||||
|
* codes behaves exactly as before.
|
||||||
|
*/
|
||||||
|
const lookupDescriptive = (...keys: string[]): string | null => {
|
||||||
|
let firstPresent: string | null = null;
|
||||||
|
for (const k of keys) {
|
||||||
|
const v = vehicleData[k]?.trim();
|
||||||
|
if (!v) continue;
|
||||||
|
if (firstPresent === null) firstPresent = v;
|
||||||
|
// Two characters or fewer, or digits only → an index, not a description.
|
||||||
|
if (v.length > 2 && !/^\d+$/.test(v)) return v;
|
||||||
|
}
|
||||||
|
return firstPresent;
|
||||||
|
};
|
||||||
|
|
||||||
// Extract prNr records for richer vehicle attributes
|
// Extract prNr records for richer vehicle attributes
|
||||||
const prNrRecords = segments.prNr?.records || [];
|
const prNrRecords = segments.prNr?.records || [];
|
||||||
const prNrByCode: Record<string, string> = {};
|
const prNrByCode: Record<string, string> = {};
|
||||||
@@ -1098,26 +1313,47 @@ export class PL24Service {
|
|||||||
const engineCode = lookup("motor_kodu", "engine_code");
|
const engineCode = lookup("motor_kodu", "engine_code");
|
||||||
// Non-VAG P5 OEMs label the engine differently and give a description (sometimes with a
|
// Non-VAG P5 OEMs label the engine differently and give a description (sometimes with a
|
||||||
// code in parens): JLR "Motor Tipi", Toyota "ENGINE 1", MAN "Yedek motor", Suzuki "Motor No.".
|
// code in parens): JLR "Motor Tipi", Toyota "ENGINE 1", MAN "Yedek motor", Suzuki "Motor No.".
|
||||||
const engineLabel = lookup("motor_tipi", "engine_1", "yedek_motor", "motor_no.");
|
// PSA labels the full designation "MOTOR" ("TÜRBO DİZEL DV6TED4…"), Volvo
|
||||||
|
// "Motor" ("D4162T"), Subaru "Engine" — none of which the VAG-shaped list had.
|
||||||
|
const engineLabel = lookup(
|
||||||
|
"motor_tipi",
|
||||||
|
"engine_1",
|
||||||
|
"yedek_motor",
|
||||||
|
"motor_no.",
|
||||||
|
"motor",
|
||||||
|
"engine",
|
||||||
|
);
|
||||||
|
|
||||||
// Transmission: VAG "Şanzıman kodu"; other OEMs use their own labels — JLR "Vites Kutusu",
|
// Transmission: VAG "Şanzıman kodu"; other OEMs use their own labels — JLR "Vites Kutusu",
|
||||||
// Toyota "ATM,MTM" (key "atm,mtm" — only spaces/slashes are underscored), MAN "Şanzıman",
|
// Toyota "ATM,MTM" (key "atm,mtm" — only spaces/slashes are underscored), MAN "Şanzıman",
|
||||||
// Suzuki "Şanzıman numarası".
|
// Suzuki "Şanzıman numarası".
|
||||||
const transmissionCode = lookup(
|
// normalizeLabel folds ı→i and strips diacritics, so "Şanzıman kodu" and
|
||||||
"şanzıman_kodu",
|
// "ŞANZIMAN KODU" both arrive as "sanziman_kodu". PSA uses "AKTARMA
|
||||||
"sanzıman_kodu",
|
// SİSTEMLERİ" ("5 MEKANİK VİTES KUTUSU"), Subaru "Mission".
|
||||||
|
const transmissionCode = lookupDescriptive(
|
||||||
|
"sanziman_kodu",
|
||||||
"transmission_code",
|
"transmission_code",
|
||||||
"vites_kutusu",
|
"vites_kutusu",
|
||||||
"atm,mtm",
|
"atm,mtm",
|
||||||
"şanzıman",
|
"aktarma_sistemleri",
|
||||||
"şanzıman_numarası",
|
"sanziman",
|
||||||
|
// Volvo in the English locale: "Transmission code" ("B") plus the readable
|
||||||
|
// "Transmission" ("6-PSHIFT 2WD / MPS6"). Without the plain key the
|
||||||
|
// English response falls back to the single-letter code.
|
||||||
|
"transmission",
|
||||||
|
"sanziman_numarasi",
|
||||||
|
"mission",
|
||||||
);
|
);
|
||||||
|
|
||||||
// Build body type from prNr K8* (Kaporta formları); brands without a prNr segment
|
// Build body type from prNr K8* (Kaporta formları); brands without a prNr segment
|
||||||
// (e.g. BMW) carry it in vinfoBasic "Karoseri" ("Limousine").
|
// (e.g. BMW) carry it in vinfoBasic "Karoseri" ("Limousine").
|
||||||
const bodyType =
|
const bodyType =
|
||||||
Object.entries(prNrByCode).find(([code]) => code.startsWith("K8"))?.[1] ||
|
Object.entries(prNrByCode).find(([code]) => code.startsWith("K8"))?.[1] ||
|
||||||
lookup("karoseri", "body", "body_type") ||
|
// PSA "GÖVDE TİPİ" ("4 KAPILI SEDAN"), Volvo "Kaporta Stili" ("Sedan").
|
||||||
|
// Volvo: TR "Kaporta Stili" / EN "Body style" ("Sedan"). Its
|
||||||
|
// "Karoseri Tipi Kodu" / "Body style code" is a bare "0" — never matched
|
||||||
|
// here because the lookup is exact-key, and that is deliberate.
|
||||||
|
lookup("karoseri", "body", "body_type", "govde_tipi", "kaporta_stili", "body_style") ||
|
||||||
null;
|
null;
|
||||||
|
|
||||||
// Engine description from prNr D3* (Motor nitelikleri)
|
// Engine description from prNr D3* (Motor nitelikleri)
|
||||||
@@ -1140,7 +1376,7 @@ export class PL24Service {
|
|||||||
// the friendly name is in "Araç" / description ("L200(EUR/MMTH)") — strip the region suffix.
|
// the friendly name is in "Araç" / description ("L200(EUR/MMTH)") — strip the region suffix.
|
||||||
const isMitsubishi = getServiceApiPath(serviceName) === "/p5mitsubishi";
|
const isMitsubishi = getServiceApiPath(serviceName) === "/p5mitsubishi";
|
||||||
const baseModel = isMitsubishi
|
const baseModel = isMitsubishi
|
||||||
? (lookup("araç") || (data.description as string) || lookup("model") || "")
|
? (lookup("arac") || (data.description as string) || lookup("model") || "")
|
||||||
.replace(/\s*\([^)]*\)\s*$/, "")
|
.replace(/\s*\([^)]*\)\s*$/, "")
|
||||||
.trim()
|
.trim()
|
||||||
: lookup("model_bilgisi", "model")?.trim() ||
|
: lookup("model_bilgisi", "model")?.trim() ||
|
||||||
@@ -1163,17 +1399,23 @@ export class PL24Service {
|
|||||||
// production date ("05/09/2014"); p5daimler → only "Teslimat tarihi" (delivery, "04.05.2009").
|
// production date ("05/09/2014"); p5daimler → only "Teslimat tarihi" (delivery, "04.05.2009").
|
||||||
// Falling through to the VIN year-char (extractModelYear) is the last resort and is often
|
// Falling through to the VIN year-char (extractModelYear) is the last resort and is often
|
||||||
// wrong for Mercedes (10th-char "1" → 2001 for a 2015 car), so read the dates first.
|
// wrong for Mercedes (10th-char "1" → 2001 for a 2015 car), so read the dates first.
|
||||||
|
// PSA writes "AM 2005" (or an index label that is NOT a year) and its VINs
|
||||||
|
// do not encode the model year in position 10, so parse the PSA forms
|
||||||
|
// first and fall back to the DAM build date before ever touching the VIN.
|
||||||
year:
|
year:
|
||||||
|
parsePsaModelYear(lookup("model_yili", "year")) ||
|
||||||
Number.parseInt(lookup("model_yili", "year") || "", 10) ||
|
Number.parseInt(lookup("model_yili", "year") || "", 10) ||
|
||||||
Number.parseInt(
|
Number.parseInt(
|
||||||
(lookup("my", "üretim_tarihi", "uretim_tarihi", "teslimat_tarihi") || "").match(
|
(lookup("my", "uretim_tarihi", "teslimat_tarihi") || "").match(/(19|20)\d{2}/)?.[0] || "",
|
||||||
/(19|20)\d{2}/,
|
|
||||||
)?.[0] || "",
|
|
||||||
10,
|
10,
|
||||||
) ||
|
) ||
|
||||||
|
damToModelYear(lookup("dam")) ||
|
||||||
extractModelYear(vin) ||
|
extractModelYear(vin) ||
|
||||||
0,
|
0,
|
||||||
series: lookup("seri", "satis_tipi", "sales_type"),
|
// Volvo's "Satis tipi" is the bare sales code ("42") with the readable
|
||||||
|
// form ("SALES VERSION 42") in a duplicate row, and its "Türü" is the real
|
||||||
|
// series ("S80") — so prefer whichever of these is actually descriptive.
|
||||||
|
series: lookupDescriptive("seri", "satis_tipi", "sales_type", "turu", "type"),
|
||||||
bodyType,
|
bodyType,
|
||||||
engineCode:
|
engineCode:
|
||||||
engineCode ||
|
engineCode ||
|
||||||
@@ -1187,7 +1429,7 @@ export class PL24Service {
|
|||||||
colorCode:
|
colorCode:
|
||||||
lookup("dis_rengi_boya_numarasi", "exterior_color___paint_code") ||
|
lookup("dis_rengi_boya_numarasi", "exterior_color___paint_code") ||
|
||||||
lookup("tavan_rengi", "roof_color"),
|
lookup("tavan_rengi", "roof_color"),
|
||||||
productionDate: lookup("üretim_tarihi", "date_of_production"),
|
productionDate: lookup("uretim_tarihi", "date_of_production", "teslimat_tarihi"),
|
||||||
raw: data,
|
raw: data,
|
||||||
catalogInfo: {
|
catalogInfo: {
|
||||||
serviceName,
|
serviceName,
|
||||||
@@ -1352,9 +1594,14 @@ export class PL24Service {
|
|||||||
const values = (record.values as Record<string, string>) || {};
|
const values = (record.values as Record<string, string>) || {};
|
||||||
const link = (record.link as Record<string, unknown>) || {};
|
const link = (record.link as Record<string, unknown>) || {};
|
||||||
|
|
||||||
|
// PSA (p5psa) shares one `record.id` (the illusPath) across many
|
||||||
|
// illustrations — 36 live records had only 11 distinct ids — so the unique
|
||||||
|
// key is `values.illustration` ("D2F 0 01A 48A", spaces stripped). Without
|
||||||
|
// this the children collapse onto each other and most get dropped.
|
||||||
const code =
|
const code =
|
||||||
values.subgroup ||
|
values.subgroup ||
|
||||||
values.illustrationNumber ||
|
values.illustrationNumber ||
|
||||||
|
values.illustration?.replace(/\s+/g, "") ||
|
||||||
values.id ||
|
values.id ||
|
||||||
values.code ||
|
values.code ||
|
||||||
String(record.id || "");
|
String(record.id || "");
|
||||||
@@ -1432,11 +1679,14 @@ export class PL24Service {
|
|||||||
records = responseData.parts as Array<Record<string, unknown>>;
|
records = responseData.parts as Array<Record<string, unknown>>;
|
||||||
}
|
}
|
||||||
|
|
||||||
const partRecords = records.filter(
|
const partRecords = records.filter((record) => {
|
||||||
(record) =>
|
if (record.characteristic === "sectionrow") return false;
|
||||||
record.characteristic !== "sectionrow" &&
|
if (!(record.partno || (record.values as Record<string, unknown>)?.partno)) return false;
|
||||||
(record.partno || (record.values as Record<string, unknown>)?.partno),
|
// Volvo (p5volvo) prefixes each BOM with a header row that carries a
|
||||||
);
|
// partno but no link and is flagged unavailable — a phantom part if kept.
|
||||||
|
if (record.id === "null_null" || (record.unavailable === true && !record.link)) return false;
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
|
||||||
return partRecords.map((part) => {
|
return partRecords.map((part) => {
|
||||||
const values = (part.values as Record<string, string>) || {};
|
const values = (part.values as Record<string, string>) || {};
|
||||||
@@ -1444,11 +1694,14 @@ export class PL24Service {
|
|||||||
const formattedPartNo = ((part.partno as string) || values.partno || "").trim();
|
const formattedPartNo = ((part.partno as string) || values.partno || "").trim();
|
||||||
const cleanPartNo = formattedPartNo.replace(/\s+/g, "");
|
const cleanPartNo = formattedPartNo.replace(/\s+/g, "");
|
||||||
|
|
||||||
const qtyStr = values.qty || "";
|
// qty (VAG/Subaru) · coef (PSA) · unit (Volvo) — same field, three names.
|
||||||
|
const qtyStr = values.qty || values.coef || values.unit || "";
|
||||||
const quantity = Number.parseInt(qtyStr.trim(), 10) || undefined;
|
const quantity = Number.parseInt(qtyStr.trim(), 10) || undefined;
|
||||||
|
|
||||||
const remark = values.remark?.trim() || undefined;
|
const remark = values.remark?.trim() || undefined;
|
||||||
const modelCodes = values.modelDescription?.trim() || undefined;
|
// PSA/Volvo/Subaru express applicability as `restriction`
|
||||||
|
// ("+ DIESEL TURBO DV6TED4 WITHOUT FAP"); VAG uses modelDescription.
|
||||||
|
const modelCodes = (values.modelDescription || values.restriction)?.trim() || undefined;
|
||||||
|
|
||||||
let superseded: { oldCode: string; newCode: string } | undefined;
|
let superseded: { oldCode: string; newCode: string } | undefined;
|
||||||
const supersededByValue = (part.supersededBy as string) || values.supersededBy || "";
|
const supersededByValue = (part.supersededBy as string) || values.supersededBy || "";
|
||||||
@@ -2052,11 +2305,22 @@ export class PL24Service {
|
|||||||
p5mitsubishi: "/extern/vehicles/vehiclesOverview", // Mitsubishi
|
p5mitsubishi: "/extern/vehicles/vehiclesOverview", // Mitsubishi
|
||||||
p5suzuki: "/extern/vehicle/modelFamilies", // Suzuki
|
p5suzuki: "/extern/vehicle/modelFamilies", // Suzuki
|
||||||
p5man: "/extern/model/categories", // MAN trucks
|
p5man: "/extern/model/categories", // MAN trucks
|
||||||
|
// Pinned 2026-09-20 from each backend's own catmeta `catalogEntryPoint`
|
||||||
|
// (see resolveModelPathFromCatmeta). Before this, p5psa needed five wasted
|
||||||
|
// probe requests to rediscover its path on every call, and p5volvo found
|
||||||
|
// nothing at all — none of the seven guessed paths matches its plural
|
||||||
|
// `/extern/vehicles/models`, so Volvo/Polestar browse silently seeded zero
|
||||||
|
// models and kept serving the dead P4 listing.
|
||||||
|
p5psa: "/extern/vehicle/catalogs", // Peugeot, Citroën, DS, psa_opel, psa_vauxhall
|
||||||
|
p5volvo: "/extern/vehicles/models", // Volvo, Polestar — NOTE: plural "vehicles"
|
||||||
};
|
};
|
||||||
|
|
||||||
// catalogBase is like "/p5vwag" — strip leading slash for map lookup
|
// catalogBase is like "/p5vwag" — strip leading slash for map lookup
|
||||||
const backendKey = catalogBase.replace(/^\//, "");
|
const backendKey = catalogBase.replace(/^\//, "");
|
||||||
const modelPath = BACKEND_MODEL_PATH[backendKey] ?? "/extern/vehicle/modelfamilies";
|
const modelPath =
|
||||||
|
BACKEND_MODEL_PATH[backendKey] ??
|
||||||
|
(await this.resolveModelPathFromCatmeta(catalogBase, serviceName, headers)) ??
|
||||||
|
"/extern/vehicle/modelfamilies";
|
||||||
|
|
||||||
const url = `${this.baseUrl}${catalogBase}${modelPath}?lang=${this.language}&serviceName=${serviceName}`;
|
const url = `${this.baseUrl}${catalogBase}${modelPath}?lang=${this.language}&serviceName=${serviceName}`;
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { describe, expect, it } from "vitest";
|
import { describe, expect, it } from "vitest";
|
||||||
import { PL24_WMI_SERVICE_MAP, SERVICE_TO_BRAND } from "./pl24.types";
|
import { PL24_SERVICE_CATALOGS, PL24_WMI_SERVICE_MAP, SERVICE_TO_BRAND } from "./pl24.types";
|
||||||
|
|
||||||
// Q6 routing additions (undecoded-vin-rca.md). Both target services are already
|
// Q6 routing additions (undecoded-vin-rca.md). Both target services are already
|
||||||
// live in prod (nissan_parts: JN1 success; mercedesvans_parts: WDF decodes today),
|
// live in prod (nissan_parts: JN1 success; mercedesvans_parts: WDF decodes today),
|
||||||
@@ -27,3 +27,71 @@ describe("PL24_WMI_SERVICE_MAP — Q6 routing additions", () => {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// PL24'te bulunmayan WMI'ler: haritada yer almamalı, yoksa her sorguda boşuna
|
||||||
|
// upstream isteği üretir ve gerçek kaynağa (pcat/emex/vinpin) geçişi geciktirir.
|
||||||
|
describe("PL24_WMI_SERVICE_MAP — kapsam dışı WMI'ler", () => {
|
||||||
|
it("VR7 haritada değil (canlı: HTTP 410 'no brands found for WMI = VR7')", () => {
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.VR7).toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("NM4 (Tofaş) haritada değil (canlı: HTTP 410)", () => {
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.NM4).toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("canlı doğrulanmış WMI'ler doğru katalogda", () => {
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.JF1).toBe("subaru_parts");
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.ZAR).toBe("alfa_parts");
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.VXK).toBe("psa_opel_parts");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 2026-09-20 canlı WMI servisi taraması (plv2.md, bulgu types_wmi-06/09).
|
||||||
|
* Prod'daki 1.406 haritasız araçtan hangilerinin PL24'te gerçekten karşılığı
|
||||||
|
* olduğu `/pl24-wmi/ext/api/2.0/decode` ile tek tek soruldu; bu test o cevapları
|
||||||
|
* kilitliyor — özellikle "yok" cevaplarını, çünkü onları haritaya eklemek
|
||||||
|
* boşuna istek üretir.
|
||||||
|
*/
|
||||||
|
describe("WMI haritası — canlı WMI servisi taraması (2026-09-20)", () => {
|
||||||
|
it("Renault yeniden açıldı (VIN tanımlama askısı kalktı)", () => {
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.VF1).toBe("renault_parts");
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.VF6).toBe("renault_parts");
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.VNE).toBe("renault_parts");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("canlı servisin çözdüğü yeni WMI'ler haritada", () => {
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.NLH).toBe("hyundai_parts");
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.TMA).toBe("hyundai_parts");
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.NLJ).toBe("hyundai_parts");
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.KMF).toBe("hyundai_parts");
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.KNE).toBe("kia_parts");
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.KNC).toBe("kia_parts");
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.MMC).toBe("mmc_parts");
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.XMC).toBe("mmc_parts");
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.JSA).toBe("suzuki_parts");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("NMB binek Mercedes değil, kamyon kataloğuna gider", () => {
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.NMB).toBe("mercedestrucks_parts");
|
||||||
|
// Binek WMI'leri bozulmadı.
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.WDD).toBe("mercedes_parts");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("PL24'te olmayan WMI'ler haritaya EKLENMEDİ (HTTP 410)", () => {
|
||||||
|
// Honda ve Chevrolet'nin PL24'te kataloğu yok; eklemek boşuna istek olurdu.
|
||||||
|
for (const wmi of ["JHM", "SHH", "SHS", "MAK", "NLA", "KL1", "NM4", "VR7"]) {
|
||||||
|
expect(PL24_WMI_SERVICE_MAP[wmi]).toBeUndefined();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it("JMZ (Mazda) eklenmedi — servis Ford kataloğu öneriyor, marka tutarsız", () => {
|
||||||
|
expect(PL24_WMI_SERVICE_MAP.JMZ).toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("eşlenen her servisin katalog tanımı var", () => {
|
||||||
|
for (const [wmi, svc] of Object.entries(PL24_WMI_SERVICE_MAP)) {
|
||||||
|
expect(PL24_SERVICE_CATALOGS[svc], `${wmi} → ${svc}`).toBeDefined();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|||||||
@@ -53,6 +53,58 @@ export interface PL24JWTPayload {
|
|||||||
alo: string;
|
alo: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Portal login (`/auth/ext/api/1.1/login`) request + response. */
|
||||||
|
export interface PL24LoginRequestV2 {
|
||||||
|
account: string;
|
||||||
|
user: string;
|
||||||
|
password: string;
|
||||||
|
squeezeOut: boolean;
|
||||||
|
/** Two-factor confirmation code, when PL24 asks for one. */
|
||||||
|
code?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface PL24LoginResponseV2 {
|
||||||
|
loginStatus?: "OK" | string;
|
||||||
|
sessionToken?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* RFC7807 body PL24 returns on a refused login (HTTP 400/412). `type` carries
|
||||||
|
* the reason; the UI bundle enumerates these.
|
||||||
|
*/
|
||||||
|
export interface PL24LoginProblem {
|
||||||
|
type?: string;
|
||||||
|
title?: string;
|
||||||
|
detail?: string;
|
||||||
|
/** For two-fa-required: "AUTHENTICATOR" | "EMAIL". */
|
||||||
|
method?: string;
|
||||||
|
code?: string;
|
||||||
|
token?: string;
|
||||||
|
completionToken?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const PL24_LOGIN_PROBLEM = {
|
||||||
|
SESSION_LIMIT_EXCEEDED: "urn:login:session-limit-exceeded",
|
||||||
|
TWO_FA_REQUIRED: "urn:login:two-factor-authentication-required",
|
||||||
|
TWO_FA_INVALID: "urn:login:two-factor-authentication-invalid-code",
|
||||||
|
ACCOUNT_PENDING: "urn:login:account-pending",
|
||||||
|
PRECONDITION_FAILED: "urn:login:precondition-failed",
|
||||||
|
ACCOUNT_NOT_ACTIVE: "urn:login:account-not-active",
|
||||||
|
USER_NOT_ACTIVE: "urn:login:user-not-active",
|
||||||
|
AUTHENTICATION_FAILED: "urn:login:authentication",
|
||||||
|
} as const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* One PL24 session = the PL24TOKEN cookie. It has no expiry of its own; it dies
|
||||||
|
* when PL24 squeezes it out (another login on the same account) or is revoked,
|
||||||
|
* which surfaces as authorize → 401 or `session_status: "gone"`.
|
||||||
|
*/
|
||||||
|
export interface PL24Session {
|
||||||
|
sessionToken: string;
|
||||||
|
loginAt: number;
|
||||||
|
lastOkAt: number;
|
||||||
|
}
|
||||||
|
|
||||||
export interface PL24TokenData {
|
export interface PL24TokenData {
|
||||||
accessToken: string;
|
accessToken: string;
|
||||||
refreshToken: string;
|
refreshToken: string;
|
||||||
@@ -287,19 +339,61 @@ export const PL24_SERVICE_CATALOGS: Record<string, PL24CatalogConfig> = {
|
|||||||
|
|
||||||
// PSA Group (Citroën, Peugeot)
|
// PSA Group (Citroën, Peugeot)
|
||||||
citroen_parts: {
|
citroen_parts: {
|
||||||
basePath: "/psa",
|
basePath: "/pl24-app/citroen_parts",
|
||||||
apiPath: "/psa",
|
apiPath: "/p5psa",
|
||||||
architecture: "LEGACY_PSA",
|
architecture: "P5_MODERN",
|
||||||
},
|
},
|
||||||
citroenDs_parts: {
|
citroenDs_parts: {
|
||||||
basePath: "/psa",
|
basePath: "/pl24-app/citroenDs_parts",
|
||||||
apiPath: "/psa",
|
apiPath: "/p5psa",
|
||||||
architecture: "LEGACY_PSA",
|
architecture: "P5_MODERN",
|
||||||
},
|
},
|
||||||
peugeot_parts: {
|
peugeot_parts: {
|
||||||
basePath: "/psa",
|
basePath: "/pl24-app/peugeot_parts",
|
||||||
apiPath: "/psa",
|
apiPath: "/p5psa",
|
||||||
architecture: "LEGACY_PSA",
|
architecture: "P5_MODERN",
|
||||||
|
},
|
||||||
|
|
||||||
|
// Stellantis-era Opel/Vauxhall — the PSA-platform catalogue (Corsa F, Mokka B…).
|
||||||
|
// GM-era W0L/W0V cars stay in the legacy opel_parts P4 catalogue below.
|
||||||
|
psa_opel_parts: {
|
||||||
|
basePath: "/pl24-app/psa_opel_parts",
|
||||||
|
apiPath: "/p5psa",
|
||||||
|
architecture: "P5_MODERN",
|
||||||
|
},
|
||||||
|
psa_vauxhall_parts: {
|
||||||
|
basePath: "/pl24-app/psa_vauxhall_parts",
|
||||||
|
apiPath: "/p5psa",
|
||||||
|
architecture: "P5_MODERN",
|
||||||
|
},
|
||||||
|
|
||||||
|
// Subaru (own P5 backend)
|
||||||
|
subaru_parts: {
|
||||||
|
basePath: "/pl24-app/subaru_parts",
|
||||||
|
apiPath: "/p5subaru",
|
||||||
|
architecture: "P5_MODERN",
|
||||||
|
},
|
||||||
|
|
||||||
|
// Rest of the Fiat/Stellantis family — same /p5fiat backend as fiatp/fiatt
|
||||||
|
abarth_parts: {
|
||||||
|
basePath: "/pl24-app/abarth_parts",
|
||||||
|
apiPath: "/p5fiat",
|
||||||
|
architecture: "P5_MODERN",
|
||||||
|
},
|
||||||
|
alfa_parts: {
|
||||||
|
basePath: "/pl24-app/alfa_parts",
|
||||||
|
apiPath: "/p5fiat",
|
||||||
|
architecture: "P5_MODERN",
|
||||||
|
},
|
||||||
|
jeep_parts: {
|
||||||
|
basePath: "/pl24-app/jeep_parts",
|
||||||
|
apiPath: "/p5fiat",
|
||||||
|
architecture: "P5_MODERN",
|
||||||
|
},
|
||||||
|
lancia_parts: {
|
||||||
|
basePath: "/pl24-app/lancia_parts",
|
||||||
|
apiPath: "/p5fiat",
|
||||||
|
architecture: "P5_MODERN",
|
||||||
},
|
},
|
||||||
|
|
||||||
// Ford Group
|
// Ford Group
|
||||||
@@ -352,14 +446,14 @@ export const PL24_SERVICE_CATALOGS: Record<string, PL24CatalogConfig> = {
|
|||||||
|
|
||||||
// Volvo/Polestar
|
// Volvo/Polestar
|
||||||
volvo_parts: {
|
volvo_parts: {
|
||||||
basePath: "/volvo",
|
basePath: "/pl24-app/volvo_parts",
|
||||||
apiPath: "/volvo",
|
apiPath: "/p5volvo",
|
||||||
architecture: "LEGACY_VOLVO",
|
architecture: "P5_MODERN",
|
||||||
},
|
},
|
||||||
polestar_parts: {
|
polestar_parts: {
|
||||||
basePath: "/volvo",
|
basePath: "/pl24-app/polestar_parts",
|
||||||
apiPath: "/volvo",
|
apiPath: "/p5volvo",
|
||||||
architecture: "LEGACY_VOLVO",
|
architecture: "P5_MODERN",
|
||||||
},
|
},
|
||||||
|
|
||||||
// Fiat Group (FCA) — P5 Modern catalog at /p5fiat, requires de-708171 account.
|
// Fiat Group (FCA) — P5 Modern catalog at /p5fiat, requires de-708171 account.
|
||||||
@@ -446,6 +540,10 @@ export const PL24_WMI_SERVICE_MAP: Record<string, string> = {
|
|||||||
|
|
||||||
// Mercedes-Benz
|
// Mercedes-Benz
|
||||||
WDB: "mercedes_parts",
|
WDB: "mercedes_parts",
|
||||||
|
// NMB: canlı WMI servisi bunu mercedes_parts'a DEĞİL mercedestrucks_parts'a
|
||||||
|
// çözüyor (error:false) — 30 prod aracı "Mercedes-Benz" etiketliydi ama binek
|
||||||
|
// kataloğunda yok.
|
||||||
|
NMB: "mercedestrucks_parts",
|
||||||
WDD: "mercedes_parts",
|
WDD: "mercedes_parts",
|
||||||
WDC: "mercedes_parts",
|
WDC: "mercedes_parts",
|
||||||
W1K: "mercedes_parts",
|
W1K: "mercedes_parts",
|
||||||
@@ -484,15 +582,21 @@ export const PL24_WMI_SERVICE_MAP: Record<string, string> = {
|
|||||||
JTJ: "lexus_parts",
|
JTJ: "lexus_parts",
|
||||||
"2T2": "lexus_parts",
|
"2T2": "lexus_parts",
|
||||||
|
|
||||||
// Renault — DISABLED: PL24 has suspended Renault VIN identification ("Bu marka
|
// Renault — RE-ENABLED 2026-09-20. It was disabled while PL24 had suspended
|
||||||
// için şasi numarası tanımlamasının belirsiz bir süre için mevcut olmayacağını
|
// Renault VIN identification ("Bu marka için şasi numarası tanımlamasının
|
||||||
// üzülerek bildiririz."). renault_parts authorizes fine but every decode throws
|
// belirsiz bir süre için mevcut olmayacağını üzülerek bildiririz."), which both
|
||||||
// that message → wasted ~1s call AND it trips the PL24 circuit breaker, which
|
// wasted a call per decode and, back then, tripped the global PL24 breaker.
|
||||||
// then skips PL24 for ALL brands. PCAT + EMEX cover Renault. Re-enable when PL24
|
// BOTH reasons are gone, each verified against prod rather than assumed:
|
||||||
// restores Renault VIN decode.
|
// 1. The suspension is over — live directAccess on /p5renault for a real
|
||||||
// VF1: "renault_parts",
|
// customer VIN (VF14SRCL458170337) returns resultStatus
|
||||||
// VF6: "renault_parts",
|
// VEHICLE_IDENTIFIED, "SYMBOL II/LOGAN II", and the WMI service answers
|
||||||
// VNE: "renault_parts",
|
// {service: renault_parts, valid: true, error: false}.
|
||||||
|
// 2. The breaker no longer counts definitive upstream negatives, only
|
||||||
|
// transient transport faults (see vehicles.service `isTransient`).
|
||||||
|
// 450 prod vehicles carry VF1 and had no PL24 catalog at all.
|
||||||
|
VF1: "renault_parts",
|
||||||
|
VF6: "renault_parts",
|
||||||
|
VNE: "renault_parts",
|
||||||
|
|
||||||
// Dacia
|
// Dacia
|
||||||
UU1: "dacia_parts",
|
UU1: "dacia_parts",
|
||||||
@@ -512,6 +616,10 @@ export const PL24_WMI_SERVICE_MAP: Record<string, string> = {
|
|||||||
WMH: "man_parts",
|
WMH: "man_parts",
|
||||||
|
|
||||||
// Mitsubishi
|
// Mitsubishi
|
||||||
|
// XMC / MMC: canlı WMI servisi ikisini de mmc_parts'a çözüyor ve P5 doğruluyor
|
||||||
|
// (error:false) — 26 prod aracı haritasızdı.
|
||||||
|
MMC: "mmc_parts", // Mitsubishi Japan
|
||||||
|
XMC: "mmc_parts", // Mitsubishi (diğer pazarlar)
|
||||||
JMB: "mmc_parts",
|
JMB: "mmc_parts",
|
||||||
JMY: "mmc_parts",
|
JMY: "mmc_parts",
|
||||||
MMB: "mmc_parts",
|
MMB: "mmc_parts",
|
||||||
@@ -521,6 +629,7 @@ export const PL24_WMI_SERVICE_MAP: Record<string, string> = {
|
|||||||
JS2: "suzuki_parts",
|
JS2: "suzuki_parts",
|
||||||
JS3: "suzuki_parts",
|
JS3: "suzuki_parts",
|
||||||
TSM: "suzuki_parts",
|
TSM: "suzuki_parts",
|
||||||
|
JSA: "suzuki_parts", // Suzuki (canlı WMI: suzuki_parts, error:false)
|
||||||
MA3: "suzuki_parts",
|
MA3: "suzuki_parts",
|
||||||
MBH: "suzuki_parts",
|
MBH: "suzuki_parts",
|
||||||
|
|
||||||
@@ -536,18 +645,27 @@ export const PL24_WMI_SERVICE_MAP: Record<string, string> = {
|
|||||||
ZFA: "fiatp_parts", // Fiat SpA Italy (most common)
|
ZFA: "fiatp_parts", // Fiat SpA Italy (most common)
|
||||||
ZCF: "fiatp_parts", // Tofaş Turkey (Linea, Fiorino, etc.)
|
ZCF: "fiatp_parts", // Tofaş Turkey (Linea, Fiorino, etc.)
|
||||||
ZFF: "fiatp_parts", // Abarth / Fiat Sport
|
ZFF: "fiatp_parts", // Abarth / Fiat Sport
|
||||||
ZAR: "fiatp_parts", // Alfa Romeo
|
ZAR: "alfa_parts", // Alfa Romeo (kendi kataloğu, /p5fiat backend)
|
||||||
ZLA: "fiatp_parts", // Lancia
|
ZLA: "lancia_parts", // Lancia (kendi kataloğu, /p5fiat backend)
|
||||||
|
|
||||||
// Fiat Commercial (fiatt_parts)
|
// Fiat Commercial (fiatt_parts)
|
||||||
ZFC: "fiatt_parts", // Fiat Commercial
|
ZFC: "fiatt_parts", // Fiat Commercial
|
||||||
|
|
||||||
// Hyundai
|
// Hyundai
|
||||||
KMH: "hyundai_parts", // Hyundai Korea Motor House
|
KMH: "hyundai_parts", // Hyundai Korea Motor House
|
||||||
|
// Aşağıdakiler 2026-09-20'de canlı WMI servisinden alındı; hepsi hyundai_parts.
|
||||||
|
// TMA iki marka döndürüyor (hyundai_parts + kia_parts) — Hyundai Assan (Türkiye)
|
||||||
|
// üretimi olduğu için hyundai seçildi.
|
||||||
|
NLH: "hyundai_parts", // Hyundai Assan / Türkiye (106 prod aracı)
|
||||||
|
TMA: "hyundai_parts", // Hyundai Türkiye (49)
|
||||||
|
NLJ: "hyundai_parts", // Hyundai (8)
|
||||||
|
KMF: "hyundai_parts", // Hyundai (7)
|
||||||
TMK: "hyundai_parts", // Hyundai (Turkey/other markets)
|
TMK: "hyundai_parts", // Hyundai (Turkey/other markets)
|
||||||
|
|
||||||
// Kia
|
// Kia
|
||||||
KNA: "kia_parts", // Kia (worldwide production)
|
KNA: "kia_parts", // Kia (worldwide production)
|
||||||
|
KNE: "kia_parts", // Kia (canlı WMI, 31 prod aracı)
|
||||||
|
KNC: "kia_parts", // Kia (canlı WMI, 8)
|
||||||
U5Y: "kia_parts", // Kia Slovakia
|
U5Y: "kia_parts", // Kia Slovakia
|
||||||
|
|
||||||
// Nissan
|
// Nissan
|
||||||
@@ -563,9 +681,16 @@ export const PL24_WMI_SERVICE_MAP: Record<string, string> = {
|
|||||||
JNK: "infiniti_parts", // Infiniti (Japan/Korea)
|
JNK: "infiniti_parts", // Infiniti (Japan/Korea)
|
||||||
|
|
||||||
// Opel / Vauxhall
|
// Opel / Vauxhall
|
||||||
|
// Subaru (canlı WMI decode: JF1 → subaru_parts, error:false)
|
||||||
|
JF1: "subaru_parts",
|
||||||
|
JF2: "subaru_parts",
|
||||||
|
// Jeep (Stellantis; /p5fiat backend)
|
||||||
|
"1C4": "jeep_parts",
|
||||||
|
"1J4": "jeep_parts",
|
||||||
|
|
||||||
W0L: "opel_parts", // Opel AG (Germany)
|
W0L: "opel_parts", // Opel AG (Germany)
|
||||||
W0V: "opel_parts", // Opel (newer Stellantis-era WMI)
|
W0V: "opel_parts", // Opel (newer Stellantis-era WMI)
|
||||||
VXK: "opel_parts", // PSA/Stellantis-platform Opel (Corsa F, Mokka B — France/Spain plants)
|
VXK: "psa_opel_parts", // PSA-platform Opel (Corsa F, Mokka B) → Stellantis kataloğu /p5psa
|
||||||
|
|
||||||
// Citroën (PSA)
|
// Citroën (PSA)
|
||||||
VF7: "citroen_parts", // Citroën SA (France)
|
VF7: "citroen_parts", // Citroën SA (France)
|
||||||
@@ -574,7 +699,19 @@ export const PL24_WMI_SERVICE_MAP: Record<string, string> = {
|
|||||||
// Peugeot (PSA)
|
// Peugeot (PSA)
|
||||||
VF3: "peugeot_parts", // Peugeot SA (France)
|
VF3: "peugeot_parts", // Peugeot SA (France)
|
||||||
VR3: "peugeot_parts", // Peugeot (newer WMI)
|
VR3: "peugeot_parts", // Peugeot (newer WMI)
|
||||||
VR7: "peugeot_parts", // Peugeot (newer WMI)
|
// VR7: PL24'ün WMI veritabanında HİÇ YOK — canlı doğrulama (2026-09-19,
|
||||||
|
// /pl24-wmi/ext/api/2.0/decode): HTTP 410 "no brands found for WMI = VR7",
|
||||||
|
// tıpkı Tofaş NM4 gibi. Önceden peugeot_parts'a yönlendiriliyordu; prod'daki
|
||||||
|
// 17 VR7 aracının hepsi model çözülmeden ("Peugeot Peugeot") ve 0 kategoriyle
|
||||||
|
// kaydedilmişti. Haritada tutmak yalnız boşuna PL24 isteği üretir ve
|
||||||
|
// pcat/emex/vinpin fallback'ini geciktirir.
|
||||||
|
|
||||||
|
// PL24'TE HİÇ OLMAYANLAR — canlı WMI servisi HTTP 410 "no brands found for WMI"
|
||||||
|
// dedi (2026-09-20), tıpkı NM4 ve VR7 gibi. Haritaya eklenmemeleri kasıtlı:
|
||||||
|
// eklemek yalnız boşuna istek üretir ve pcat/emex/vinpin fallback'ini geciktirir.
|
||||||
|
// JHM, SHH, SHS, MAK, NLA (Honda) · KL1 (Chevrolet)
|
||||||
|
// JMZ (Mazda) 410 DEĞİL ama fordp/fordt döndürüyor (Ford-Mazda platform ortaklığı
|
||||||
|
// dönemi); marka tutarsız olduğu için eklenmedi — bir Mazda 3 Ford kataloğunda yok.
|
||||||
|
|
||||||
// Volvo
|
// Volvo
|
||||||
YV1: "volvo_parts", // Volvo Cars (Sweden)
|
YV1: "volvo_parts", // Volvo Cars (Sweden)
|
||||||
@@ -794,6 +931,13 @@ export const SERVICE_TO_BRAND: Record<string, string> = {
|
|||||||
vauxhall_parts: "Opel",
|
vauxhall_parts: "Opel",
|
||||||
// Volvo/Polestar
|
// Volvo/Polestar
|
||||||
volvo_parts: "Volvo",
|
volvo_parts: "Volvo",
|
||||||
|
subaru_parts: "Subaru",
|
||||||
|
psa_opel_parts: "Opel",
|
||||||
|
psa_vauxhall_parts: "Opel",
|
||||||
|
abarth_parts: "Abarth",
|
||||||
|
alfa_parts: "Alfa Romeo",
|
||||||
|
jeep_parts: "Jeep",
|
||||||
|
lancia_parts: "Lancia",
|
||||||
polestar_parts: "Polestar",
|
polestar_parts: "Polestar",
|
||||||
// Fiat Group
|
// Fiat Group
|
||||||
fiatp_parts: "Fiat",
|
fiatp_parts: "Fiat",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import { proxyLogs } from "../../database/schema/core";
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Proxy telemetry — fire-and-forget logging of every proxied upstream attempt
|
* Proxy telemetry — fire-and-forget logging of every proxied upstream attempt
|
||||||
* (pcat call/capture/validate, emex http) into `proxy_logs`, so the Süper Panel
|
* (pcat call/capture/validate, emex http, pl24 catalog/auth) into `proxy_logs`, so the Süper Panel
|
||||||
* can grade proxy providers per service and track banned exit IPs / sessions.
|
* can grade proxy providers per service and track banned exit IPs / sessions.
|
||||||
*
|
*
|
||||||
* Design constraints:
|
* Design constraints:
|
||||||
@@ -13,7 +13,13 @@ import { proxyLogs } from "../../database/schema/core";
|
|||||||
* - Bounded memory: the buffer is capped; when full, oldest rows are dropped.
|
* - Bounded memory: the buffer is capped; when full, oldest rows are dropped.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export type ProxyServiceLeg = "pcat_call" | "pcat_capture" | "pcat_validate" | "emex_http";
|
export type ProxyServiceLeg =
|
||||||
|
| "pcat_call"
|
||||||
|
| "pcat_capture"
|
||||||
|
| "pcat_validate"
|
||||||
|
| "emex_http"
|
||||||
|
| "pl24_http"
|
||||||
|
| "pl24_auth";
|
||||||
export type ProxyProviderName = "floxy" | "dataimpulse" | "none";
|
export type ProxyProviderName = "floxy" | "dataimpulse" | "none";
|
||||||
|
|
||||||
export interface ProxyLogEvent {
|
export interface ProxyLogEvent {
|
||||||
|
|||||||
148
apps/api/src/integrations/rpartstore/rpartstore.auth.spec.ts
Normal file
148
apps/api/src/integrations/rpartstore/rpartstore.auth.spec.ts
Normal file
@@ -0,0 +1,148 @@
|
|||||||
|
import { afterEach, describe, expect, it, vi } from "vitest";
|
||||||
|
import { RpartstoreAuthError, decodeJwtExpiry, loginRpartstore } from "./rpartstore.auth";
|
||||||
|
|
||||||
|
const b64url = (s: string): string => Buffer.from(s).toString("base64url");
|
||||||
|
const makeJwt = (claims: Record<string, unknown>): string =>
|
||||||
|
`${b64url('{"alg":"RS256"}')}.${b64url(JSON.stringify(claims))}.sig`;
|
||||||
|
|
||||||
|
function jsonResponse(
|
||||||
|
body: unknown,
|
||||||
|
init: { status?: number; headers?: Record<string, string> } = {},
|
||||||
|
) {
|
||||||
|
return new Response(JSON.stringify(body), {
|
||||||
|
status: init.status ?? 200,
|
||||||
|
headers: { "content-type": "application/json", ...(init.headers ?? {}) },
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
describe("loginRpartstore (Okta IDX, browser-free)", () => {
|
||||||
|
afterEach(() => vi.unstubAllGlobals());
|
||||||
|
|
||||||
|
it("walks authorize → introspect → identify → answer → redirect → token and returns the access token", async () => {
|
||||||
|
const exp = Math.floor(Date.now() / 1000) + 3600;
|
||||||
|
const jwt = makeJwt({ sub: "G123326", exp });
|
||||||
|
const calls: { url: string; body?: string; cookie?: string }[] = [];
|
||||||
|
let redirectState = "";
|
||||||
|
|
||||||
|
const fetchImpl = vi.fn(async (url: string | URL, init?: RequestInit) => {
|
||||||
|
const u = String(url);
|
||||||
|
const headers = (init?.headers ?? {}) as Record<string, string>;
|
||||||
|
calls.push({
|
||||||
|
url: u,
|
||||||
|
body: init?.body ? String(init.body) : undefined,
|
||||||
|
cookie: headers.Cookie,
|
||||||
|
});
|
||||||
|
if (u.includes("/v1/authorize")) {
|
||||||
|
redirectState = new URL(u).searchParams.get("state") ?? "";
|
||||||
|
return new Response("<script>var stateToken = '02.id.abc\\x2Ddef';</script>", {
|
||||||
|
status: 200,
|
||||||
|
headers: { "set-cookie": "JSESSIONID=js1; Path=/; HttpOnly" },
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (u.endsWith("/idp/idx/introspect")) return jsonResponse({ stateHandle: "sh-1" });
|
||||||
|
if (u.endsWith("/idp/idx/identify")) return jsonResponse({ stateHandle: "sh-2" });
|
||||||
|
if (u.endsWith("/idp/idx/challenge/answer")) {
|
||||||
|
return jsonResponse({
|
||||||
|
success: { href: "https://sso.renault.com/login/token/redirect?stateToken=st" },
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (u.includes("/login/token/redirect")) {
|
||||||
|
return new Response(null, {
|
||||||
|
status: 302,
|
||||||
|
headers: {
|
||||||
|
location: `https://rpartstore.renault.com/idp-redirect?code=CODE1&state=${redirectState}`,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (u.endsWith("/v1/token")) {
|
||||||
|
return jsonResponse({
|
||||||
|
token_type: "Bearer",
|
||||||
|
expires_in: 3600,
|
||||||
|
access_token: jwt,
|
||||||
|
scope: "openid",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
throw new Error(`unexpected url ${u}`);
|
||||||
|
});
|
||||||
|
|
||||||
|
const token = await loginRpartstore({
|
||||||
|
username: "G123326",
|
||||||
|
password: "pw",
|
||||||
|
fetchImpl: fetchImpl as unknown as typeof fetch,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(token.accessToken).toBe(jwt);
|
||||||
|
expect(token.subject).toBe("G123326");
|
||||||
|
expect(token.expiresAt).toBe(exp * 1000);
|
||||||
|
|
||||||
|
// stateToken unescaped (\x2D → "-") and carried into introspect
|
||||||
|
expect(calls[1].body).toBe(JSON.stringify({ stateToken: "02.id.abc-def" }));
|
||||||
|
// identify uses the introspect handle, answer the identify handle
|
||||||
|
expect(JSON.parse(calls[2].body!)).toEqual({ identifier: "G123326", stateHandle: "sh-1" });
|
||||||
|
expect(JSON.parse(calls[3].body!)).toEqual({
|
||||||
|
credentials: { passcode: "pw" },
|
||||||
|
stateHandle: "sh-2",
|
||||||
|
});
|
||||||
|
// cookies from the authorize page are replayed on later hops
|
||||||
|
expect(calls[3].cookie).toContain("JSESSIONID=js1");
|
||||||
|
// PKCE: the token exchange sends the code and a verifier, never the password
|
||||||
|
const tokenBody = new URLSearchParams(calls.at(-1)!.body);
|
||||||
|
expect(tokenBody.get("grant_type")).toBe("authorization_code");
|
||||||
|
expect(tokenBody.get("code")).toBe("CODE1");
|
||||||
|
expect(tokenBody.get("code_verifier")).toBeTruthy();
|
||||||
|
expect(calls.at(-1)!.body).not.toContain("pw");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("fails with a challenge error when Okta returns no success redirect (bad password / MFA)", async () => {
|
||||||
|
const fetchImpl = vi.fn(async (url: string | URL) => {
|
||||||
|
const u = String(url);
|
||||||
|
if (u.includes("/v1/authorize")) return new Response("stateToken = 'x'", { status: 200 });
|
||||||
|
if (u.endsWith("/introspect")) return jsonResponse({ stateHandle: "sh" });
|
||||||
|
if (u.endsWith("/identify")) return jsonResponse({ stateHandle: "sh" });
|
||||||
|
if (u.endsWith("/challenge/answer")) {
|
||||||
|
return jsonResponse({ messages: { value: [{ message: "Authentication failed" }] } });
|
||||||
|
}
|
||||||
|
throw new Error(`unexpected url ${u}`);
|
||||||
|
});
|
||||||
|
await expect(
|
||||||
|
loginRpartstore({
|
||||||
|
username: "u",
|
||||||
|
password: "bad",
|
||||||
|
fetchImpl: fetchImpl as unknown as typeof fetch,
|
||||||
|
}),
|
||||||
|
).rejects.toMatchObject({ name: "RpartstoreAuthError", step: "challenge" });
|
||||||
|
});
|
||||||
|
|
||||||
|
it("rejects an OAuth state mismatch on the callback", async () => {
|
||||||
|
const fetchImpl = vi.fn(async (url: string | URL) => {
|
||||||
|
const u = String(url);
|
||||||
|
if (u.includes("/v1/authorize")) return new Response("stateToken = 'x'", { status: 200 });
|
||||||
|
if (u.endsWith("/introspect")) return jsonResponse({ stateHandle: "sh" });
|
||||||
|
if (u.endsWith("/identify")) return jsonResponse({ stateHandle: "sh" });
|
||||||
|
if (u.endsWith("/challenge/answer"))
|
||||||
|
return jsonResponse({ success: { href: "https://sso.renault.com/r" } });
|
||||||
|
if (u === "https://sso.renault.com/r") {
|
||||||
|
return new Response(null, {
|
||||||
|
status: 302,
|
||||||
|
headers: { location: "https://rpartstore.renault.com/idp-redirect?code=C&state=forged" },
|
||||||
|
});
|
||||||
|
}
|
||||||
|
throw new Error(`unexpected url ${u}`);
|
||||||
|
});
|
||||||
|
await expect(
|
||||||
|
loginRpartstore({
|
||||||
|
username: "u",
|
||||||
|
password: "p",
|
||||||
|
fetchImpl: fetchImpl as unknown as typeof fetch,
|
||||||
|
}),
|
||||||
|
).rejects.toBeInstanceOf(RpartstoreAuthError);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("decodes exp/sub from the access token", () => {
|
||||||
|
expect(decodeJwtExpiry(makeJwt({ sub: "G1", exp: 1790334740 }))).toEqual({
|
||||||
|
exp: 1790334740,
|
||||||
|
sub: "G1",
|
||||||
|
});
|
||||||
|
expect(() => decodeJwtExpiry(makeJwt({ sub: "G1" }))).toThrow(RpartstoreAuthError);
|
||||||
|
});
|
||||||
|
});
|
||||||
238
apps/api/src/integrations/rpartstore/rpartstore.auth.ts
Normal file
238
apps/api/src/integrations/rpartstore/rpartstore.auth.ts
Normal file
@@ -0,0 +1,238 @@
|
|||||||
|
/**
|
||||||
|
* Browser-free Okta (OIE / IDX) login for rpartstore.renault.com.
|
||||||
|
*
|
||||||
|
* Flow (verified live 2026-09-25, ~1.8 s, no MFA / captcha):
|
||||||
|
* 1. GET {issuer}/v1/authorize?...PKCE... → hosted page HTML containing `stateToken`
|
||||||
|
* 2. POST /idp/idx/introspect {stateToken} → stateHandle
|
||||||
|
* 3. POST /idp/idx/identify {identifier, stateHandle}
|
||||||
|
* 4. POST /idp/idx/challenge/answer {credentials:{passcode}, stateHandle} → success.href
|
||||||
|
* 5. GET success.href (follow redirects manually) → …/idp-redirect?code=…&state=…
|
||||||
|
* 6. POST {issuer}/v1/token (authorization_code + code_verifier) → access_token (1 h, no refresh_token)
|
||||||
|
*/
|
||||||
|
import { createHash, randomBytes } from "node:crypto";
|
||||||
|
|
||||||
|
export interface RpartstoreAuthConfig {
|
||||||
|
username: string;
|
||||||
|
password: string;
|
||||||
|
issuer?: string;
|
||||||
|
clientId?: string;
|
||||||
|
redirectUri?: string;
|
||||||
|
scope?: string;
|
||||||
|
/** Injectable for tests. */
|
||||||
|
fetchImpl?: typeof fetch;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface RpartstoreToken {
|
||||||
|
accessToken: string;
|
||||||
|
/** Epoch ms. */
|
||||||
|
expiresAt: number;
|
||||||
|
subject: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class RpartstoreAuthError extends Error {
|
||||||
|
constructor(
|
||||||
|
message: string,
|
||||||
|
readonly step: string,
|
||||||
|
readonly detail?: unknown,
|
||||||
|
) {
|
||||||
|
super(message);
|
||||||
|
this.name = "RpartstoreAuthError";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const DEFAULTS = {
|
||||||
|
issuer: "https://sso.renault.com/oauth2/aus133y6mks4ptDss417",
|
||||||
|
clientId: "irn-72795_ope_pkce_4hcafvxlbcil",
|
||||||
|
redirectUri: "https://rpartstore.renault.com/idp-redirect",
|
||||||
|
scope: "openid alliance_profile apis.default",
|
||||||
|
};
|
||||||
|
|
||||||
|
const USER_AGENT =
|
||||||
|
"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36";
|
||||||
|
const ION = "application/ion+json; okta-version=1.0.0";
|
||||||
|
|
||||||
|
const b64url = (buf: Buffer): string => buf.toString("base64url");
|
||||||
|
|
||||||
|
/** Tiny cookie jar: Okta needs `idx`/`JSESSIONID` cookies across the IDX steps. */
|
||||||
|
class CookieJar {
|
||||||
|
private readonly jar = new Map<string, string>();
|
||||||
|
|
||||||
|
absorb(res: Response): void {
|
||||||
|
const setCookies: string[] =
|
||||||
|
typeof (res.headers as { getSetCookie?: () => string[] }).getSetCookie === "function"
|
||||||
|
? (res.headers as unknown as { getSetCookie: () => string[] }).getSetCookie()
|
||||||
|
: [];
|
||||||
|
for (const sc of setCookies) {
|
||||||
|
const kv = sc.split(";")[0];
|
||||||
|
const i = kv.indexOf("=");
|
||||||
|
if (i > 0) this.jar.set(kv.slice(0, i).trim(), kv.slice(i + 1).trim());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
header(): string {
|
||||||
|
return Array.from(this.jar.entries())
|
||||||
|
.map(([k, v]) => `${k}=${v}`)
|
||||||
|
.join("; ");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function decodeJwtExpiry(accessToken: string): { exp: number; sub: string } {
|
||||||
|
const payload = JSON.parse(
|
||||||
|
Buffer.from(accessToken.split(".")[1], "base64url").toString("utf8"),
|
||||||
|
) as {
|
||||||
|
exp?: number;
|
||||||
|
sub?: string;
|
||||||
|
};
|
||||||
|
if (!payload.exp) throw new RpartstoreAuthError("access token has no exp claim", "token");
|
||||||
|
return { exp: payload.exp, sub: payload.sub ?? "" };
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function loginRpartstore(cfg: RpartstoreAuthConfig): Promise<RpartstoreToken> {
|
||||||
|
const issuer = cfg.issuer ?? DEFAULTS.issuer;
|
||||||
|
const clientId = cfg.clientId ?? DEFAULTS.clientId;
|
||||||
|
const redirectUri = cfg.redirectUri ?? DEFAULTS.redirectUri;
|
||||||
|
const scope = cfg.scope ?? DEFAULTS.scope;
|
||||||
|
const doFetch = cfg.fetchImpl ?? fetch;
|
||||||
|
const jar = new CookieJar();
|
||||||
|
|
||||||
|
const request = async (url: string, init: RequestInit = {}): Promise<Response> => {
|
||||||
|
const res = await doFetch(url, {
|
||||||
|
redirect: "manual",
|
||||||
|
...init,
|
||||||
|
headers: {
|
||||||
|
"User-Agent": USER_AGENT,
|
||||||
|
Cookie: jar.header(),
|
||||||
|
...(init.headers as Record<string, string> | undefined),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
jar.absorb(res);
|
||||||
|
return res;
|
||||||
|
};
|
||||||
|
|
||||||
|
const verifier = b64url(randomBytes(48));
|
||||||
|
const challenge = b64url(createHash("sha256").update(verifier).digest());
|
||||||
|
const state = randomBytes(16).toString("hex");
|
||||||
|
const nonce = randomBytes(16).toString("hex");
|
||||||
|
|
||||||
|
// 1. hosted authorize page → stateToken
|
||||||
|
const authorize = new URL(`${issuer}/v1/authorize`);
|
||||||
|
for (const [k, v] of Object.entries({
|
||||||
|
client_id: clientId,
|
||||||
|
redirect_uri: redirectUri,
|
||||||
|
response_type: "code",
|
||||||
|
scope,
|
||||||
|
state,
|
||||||
|
nonce,
|
||||||
|
code_challenge: challenge,
|
||||||
|
code_challenge_method: "S256",
|
||||||
|
response_mode: "query",
|
||||||
|
})) {
|
||||||
|
authorize.searchParams.set(k, v);
|
||||||
|
}
|
||||||
|
const authorizeRes = await request(authorize.toString());
|
||||||
|
const html = await authorizeRes.text();
|
||||||
|
const stateTokenMatch =
|
||||||
|
html.match(/stateToken\s*=\s*'([^']+)'/) ?? html.match(/"stateToken":"([^"]+)"/);
|
||||||
|
if (authorizeRes.status !== 200 || !stateTokenMatch) {
|
||||||
|
throw new RpartstoreAuthError(
|
||||||
|
`authorize page did not expose a stateToken (HTTP ${authorizeRes.status})`,
|
||||||
|
"authorize",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
const stateToken = stateTokenMatch[1].replace(/\\x([0-9A-Fa-f]{2})/g, (_, hex: string) =>
|
||||||
|
String.fromCharCode(Number.parseInt(hex, 16)),
|
||||||
|
);
|
||||||
|
|
||||||
|
const idx = async (
|
||||||
|
path: string,
|
||||||
|
body: Record<string, unknown>,
|
||||||
|
step: string,
|
||||||
|
): Promise<Record<string, any>> => {
|
||||||
|
const res = await request(`https://sso.renault.com/idp/idx/${path}`, {
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": ION, Accept: ION, Origin: "https://sso.renault.com" },
|
||||||
|
body: JSON.stringify(body),
|
||||||
|
});
|
||||||
|
const json = (await res.json().catch(() => ({}))) as Record<string, any>;
|
||||||
|
if (!res.ok) {
|
||||||
|
throw new RpartstoreAuthError(
|
||||||
|
`Okta ${step} failed (HTTP ${res.status})`,
|
||||||
|
step,
|
||||||
|
json.messages ?? json,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return json;
|
||||||
|
};
|
||||||
|
|
||||||
|
// 2-4. IDX remediation
|
||||||
|
const introspected = await idx("introspect", { stateToken }, "introspect");
|
||||||
|
const identified = await idx(
|
||||||
|
"identify",
|
||||||
|
{ identifier: cfg.username, stateHandle: introspected.stateHandle },
|
||||||
|
"identify",
|
||||||
|
);
|
||||||
|
const answered = await idx(
|
||||||
|
"challenge/answer",
|
||||||
|
{
|
||||||
|
credentials: { passcode: cfg.password },
|
||||||
|
stateHandle: identified.stateHandle ?? introspected.stateHandle,
|
||||||
|
},
|
||||||
|
"challenge",
|
||||||
|
);
|
||||||
|
const successHref: string | undefined = answered.success?.href;
|
||||||
|
if (!successHref) {
|
||||||
|
throw new RpartstoreAuthError(
|
||||||
|
"Okta did not return a success redirect (wrong password, locked account or MFA now required)",
|
||||||
|
"challenge",
|
||||||
|
answered.messages,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 5. follow the redirect chain until the app callback carries ?code=
|
||||||
|
let next = successHref;
|
||||||
|
let code: string | undefined;
|
||||||
|
for (let hop = 0; hop < 6 && !code; hop += 1) {
|
||||||
|
const res = await request(next);
|
||||||
|
const location = res.headers.get("location");
|
||||||
|
if (!location) break;
|
||||||
|
const target = new URL(location, next);
|
||||||
|
const gotCode = target.searchParams.get("code");
|
||||||
|
if (gotCode) {
|
||||||
|
if (target.searchParams.get("state") !== state)
|
||||||
|
throw new RpartstoreAuthError("OAuth state mismatch", "redirect");
|
||||||
|
code = gotCode;
|
||||||
|
}
|
||||||
|
next = target.toString();
|
||||||
|
}
|
||||||
|
if (!code)
|
||||||
|
throw new RpartstoreAuthError("redirect chain ended without an authorization code", "redirect");
|
||||||
|
|
||||||
|
// 6. PKCE token exchange
|
||||||
|
const tokenRes = await request(`${issuer}/v1/token`, {
|
||||||
|
method: "POST",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/x-www-form-urlencoded",
|
||||||
|
Origin: "https://rpartstore.renault.com",
|
||||||
|
},
|
||||||
|
body: new URLSearchParams({
|
||||||
|
grant_type: "authorization_code",
|
||||||
|
redirect_uri: redirectUri,
|
||||||
|
code,
|
||||||
|
code_verifier: verifier,
|
||||||
|
client_id: clientId,
|
||||||
|
}).toString(),
|
||||||
|
});
|
||||||
|
const token = (await tokenRes.json().catch(() => ({}))) as {
|
||||||
|
access_token?: string;
|
||||||
|
error?: string;
|
||||||
|
error_description?: string;
|
||||||
|
};
|
||||||
|
if (!tokenRes.ok || !token.access_token) {
|
||||||
|
throw new RpartstoreAuthError(
|
||||||
|
`token exchange failed (HTTP ${tokenRes.status}): ${token.error_description ?? token.error ?? ""}`,
|
||||||
|
"token",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
const { exp, sub } = decodeJwtExpiry(token.access_token);
|
||||||
|
return { accessToken: token.access_token, expiresAt: exp * 1000, subject: sub };
|
||||||
|
}
|
||||||
157
apps/api/src/integrations/rpartstore/rpartstore.client.ts
Normal file
157
apps/api/src/integrations/rpartstore/rpartstore.client.ts
Normal file
@@ -0,0 +1,157 @@
|
|||||||
|
import { type RpartstoreToken, loginRpartstore } from "./rpartstore.auth";
|
||||||
|
import { canonicalRpartstoreBrand } from "./rpartstore.routing";
|
||||||
|
import {
|
||||||
|
RpartstoreBffError,
|
||||||
|
RpartstoreRateLimitError,
|
||||||
|
RpartstoreSession,
|
||||||
|
} from "./rpartstore.session";
|
||||||
|
import type {
|
||||||
|
RpartstoreDecoded,
|
||||||
|
RpartstoreVehicle,
|
||||||
|
SearchVehicleResponsePayload,
|
||||||
|
} from "./rpartstore.types";
|
||||||
|
|
||||||
|
export const RPARTSTORE_DEFAULTS = {
|
||||||
|
brokerUrl: "wss://1po-bff.renault-edh.com/ws",
|
||||||
|
appVersion: "1.34.0.6",
|
||||||
|
webLanguage: "tr",
|
||||||
|
country: "TR",
|
||||||
|
} as const;
|
||||||
|
|
||||||
|
/** Where the (1 h, non-refreshable) Okta access token is cached between decodes. */
|
||||||
|
export interface TokenStore {
|
||||||
|
get(): Promise<RpartstoreToken | null>;
|
||||||
|
set(token: RpartstoreToken, ttlSeconds: number): Promise<void>;
|
||||||
|
clear(): Promise<void>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface RpartstoreClientOptions {
|
||||||
|
username: string;
|
||||||
|
password: string;
|
||||||
|
tokenStore: TokenStore;
|
||||||
|
brokerUrl?: string;
|
||||||
|
appVersion?: string;
|
||||||
|
webLanguage?: string;
|
||||||
|
country?: string;
|
||||||
|
/** Injectable for tests. */
|
||||||
|
login?: typeof loginRpartstore;
|
||||||
|
sessionFactory?: (opts: ConstructorParameters<typeof RpartstoreSession>[0]) => RpartstoreSession;
|
||||||
|
logger?: { log: (msg: string) => void; warn: (msg: string) => void };
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Refresh the token this many ms before its `exp`. */
|
||||||
|
const TOKEN_SKEW_MS = 5 * 60 * 1000;
|
||||||
|
|
||||||
|
export class RpartstoreClient {
|
||||||
|
private readonly login: typeof loginRpartstore;
|
||||||
|
private readonly sessionFactory: NonNullable<RpartstoreClientOptions["sessionFactory"]>;
|
||||||
|
|
||||||
|
constructor(private readonly opts: RpartstoreClientOptions) {
|
||||||
|
this.login = opts.login ?? loginRpartstore;
|
||||||
|
this.sessionFactory = opts.sessionFactory ?? ((o) => new RpartstoreSession(o));
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Cached token when still valid (with skew), otherwise a fresh Okta login. */
|
||||||
|
async getToken(force = false): Promise<RpartstoreToken> {
|
||||||
|
if (!force) {
|
||||||
|
const cached = await this.opts.tokenStore.get();
|
||||||
|
if (cached && cached.expiresAt - Date.now() > TOKEN_SKEW_MS) return cached;
|
||||||
|
}
|
||||||
|
const token = await this.login({ username: this.opts.username, password: this.opts.password });
|
||||||
|
const ttl = Math.max(60, Math.floor((token.expiresAt - Date.now() - TOKEN_SKEW_MS) / 1000));
|
||||||
|
await this.opts.tokenStore.set(token, ttl);
|
||||||
|
this.opts.logger?.log(`[rpartstore] logged in as ${token.subject}, token ttl ${ttl}s`);
|
||||||
|
return token;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* One VIN search on a fresh STOMP session (volume is capped at a handful per
|
||||||
|
* day, so a persistent socket buys nothing). Resolves to the decoded vehicle,
|
||||||
|
* `null` when RPartStore answers NOT_FOUND, and throws `RpartstoreRateLimitError`
|
||||||
|
* / other errors for the caller to handle. A CONNECT failure is retried once
|
||||||
|
* with a forced re-login (expired or revoked token).
|
||||||
|
*/
|
||||||
|
async searchVin(vin: string): Promise<RpartstoreDecoded | null> {
|
||||||
|
let token = await this.getToken();
|
||||||
|
const session = await this.openSession(token.accessToken).catch(async (err: Error) => {
|
||||||
|
this.opts.logger?.warn(`[rpartstore] CONNECT failed (${err.message}); re-login and retry`);
|
||||||
|
await this.opts.tokenStore.clear();
|
||||||
|
token = await this.getToken(true);
|
||||||
|
return this.openSession(token.accessToken);
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
const country = this.opts.country ?? RPARTSTORE_DEFAULTS.country;
|
||||||
|
const lang = this.opts.webLanguage ?? RPARTSTORE_DEFAULTS.webLanguage;
|
||||||
|
const msg = await session.request<SearchVehicleResponsePayload>(
|
||||||
|
"/vehicles/search/vin-or-vrn",
|
||||||
|
{
|
||||||
|
requestId: crypto.randomUUID(),
|
||||||
|
value: vin,
|
||||||
|
queryType: "VIN",
|
||||||
|
userContext: {
|
||||||
|
webLanguage: lang,
|
||||||
|
documentLanguage: lang,
|
||||||
|
documentCountryLanguage: country,
|
||||||
|
documentFallbackLanguage: lang,
|
||||||
|
documentFallbackCountryLanguage: country,
|
||||||
|
userCountry: country,
|
||||||
|
r1Country: country,
|
||||||
|
},
|
||||||
|
countryCode: country,
|
||||||
|
includeEstimate: false,
|
||||||
|
},
|
||||||
|
{ expect: ["1PO/CATALOG/SEARCH_VEHICLE_RESPONSE"], timeoutMs: 15_000 },
|
||||||
|
);
|
||||||
|
const vehicle = msg.payload?.vehicles?.[0];
|
||||||
|
if (!vehicle) return null;
|
||||||
|
return normalizeVehicle(vehicle);
|
||||||
|
} catch (err) {
|
||||||
|
if (err instanceof RpartstoreBffError) {
|
||||||
|
const errorType = (err.payload as { errorType?: string } | undefined)?.errorType;
|
||||||
|
if (err.type === "1PO/CATALOG/SEARCH_VEHICLE_ERROR" && errorType === "NOT_FOUND")
|
||||||
|
return null;
|
||||||
|
if (err.type === "1PO/CATALOG/SEARCH_VEHICLE_NOT_COVERED_IN_COUNTRY") return null;
|
||||||
|
}
|
||||||
|
if (err instanceof RpartstoreRateLimitError) throw err;
|
||||||
|
throw err;
|
||||||
|
} finally {
|
||||||
|
session.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async openSession(accessToken: string): Promise<RpartstoreSession> {
|
||||||
|
const session = this.sessionFactory({
|
||||||
|
brokerUrl: this.opts.brokerUrl ?? RPARTSTORE_DEFAULTS.brokerUrl,
|
||||||
|
accessToken,
|
||||||
|
profile: this.opts.username,
|
||||||
|
appVersion: this.opts.appVersion ?? RPARTSTORE_DEFAULTS.appVersion,
|
||||||
|
webLanguage: this.opts.webLanguage ?? RPARTSTORE_DEFAULTS.webLanguage,
|
||||||
|
logger: this.opts.logger
|
||||||
|
? { debug: () => undefined, warn: (m) => this.opts.logger?.warn(`[rpartstore] ${m}`) }
|
||||||
|
: undefined,
|
||||||
|
});
|
||||||
|
await session.connect();
|
||||||
|
return session;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function normalizeVehicle(v: RpartstoreVehicle): RpartstoreDecoded {
|
||||||
|
const dh = v.dataHubVehicle ?? {};
|
||||||
|
const brandName = canonicalRpartstoreBrand(v.vehicleBrand) ?? v.vehicleBrand;
|
||||||
|
const clean = (s: string | undefined): string | null => {
|
||||||
|
const t = (s ?? "").trim();
|
||||||
|
return t.length > 0 ? t : null;
|
||||||
|
};
|
||||||
|
return {
|
||||||
|
brandName,
|
||||||
|
model: clean(v.model),
|
||||||
|
modelCode: clean(dh.modelTypeCode),
|
||||||
|
familyCode: clean(dh.familyCode),
|
||||||
|
modelYear: clean(dh.modelYear),
|
||||||
|
engine: clean(dh.engine),
|
||||||
|
gearbox: clean(dh.gearbox),
|
||||||
|
energyType: clean(dh.energyType),
|
||||||
|
manufacturingDate: clean(v.manufacturingDate),
|
||||||
|
raw: v,
|
||||||
|
};
|
||||||
|
}
|
||||||
140
apps/api/src/integrations/rpartstore/rpartstore.matcher.spec.ts
Normal file
140
apps/api/src/integrations/rpartstore/rpartstore.matcher.spec.ts
Normal file
@@ -0,0 +1,140 @@
|
|||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
import {
|
||||||
|
type RpartstoreCatalogCandidate,
|
||||||
|
pickRpartstoreCatalogMatch,
|
||||||
|
rpartstoreModelTokens,
|
||||||
|
} from "./rpartstore.matcher";
|
||||||
|
|
||||||
|
// Real PL24 `catalog_vehicles.model` values for Renault (prod, 2026-09-25).
|
||||||
|
const RENAULT = [
|
||||||
|
"ALASKAN",
|
||||||
|
"ARKANA EUROPE / XM3",
|
||||||
|
"ARKANA RUSYA",
|
||||||
|
"AUSTRAL/ESPACE VI/RAFALE",
|
||||||
|
"CAPTUR / QM3",
|
||||||
|
"CAPTUR II EUROPE/SYMBIOZ",
|
||||||
|
"CAPTUR II ÇİN",
|
||||||
|
"CAPTUR/KAPTUR",
|
||||||
|
"CLIO 4 / LUTECIA 4",
|
||||||
|
"CLIO 5/LUTECIA 5",
|
||||||
|
"DUSTER 1",
|
||||||
|
"DUSTER 2",
|
||||||
|
"DUSTER III / BIGSTER",
|
||||||
|
"EXPRESS",
|
||||||
|
"FLUENCE / FLUENCE Z.E.",
|
||||||
|
"KADJAR",
|
||||||
|
"KADJAR ÇİN",
|
||||||
|
"KANGOO 1",
|
||||||
|
"KANGOO 2 / KANGOO Z.E.",
|
||||||
|
"KANGOO 3",
|
||||||
|
"LATITUDE / SAFRANE 2",
|
||||||
|
"LOGAN\\-SANDERO 1/TONDAR 1",
|
||||||
|
"LOGAN\\-SANDERO 3 / TALIANT",
|
||||||
|
"MASTER 3",
|
||||||
|
"MASTER 4 VAN",
|
||||||
|
"MEGANE 1",
|
||||||
|
"MEGANE 2 / SCENIC 2",
|
||||||
|
"MEGANE 3 / SCENIC 3",
|
||||||
|
"MEGANE 4",
|
||||||
|
"MEGANE 4 SEDAN",
|
||||||
|
"RENAULT 5 EXPRESS / RAPID",
|
||||||
|
"RENAULT 9 / 11",
|
||||||
|
"TRAFIC 2",
|
||||||
|
"TRAFIC 3",
|
||||||
|
"X62 CHINE",
|
||||||
|
];
|
||||||
|
|
||||||
|
const DACIA = [
|
||||||
|
"DOKKER",
|
||||||
|
"DUSTER 1",
|
||||||
|
"DUSTER 2",
|
||||||
|
"DUSTER 3/BIGSTER",
|
||||||
|
"LOGAN\\-SANDERO 1/TONDAR 1",
|
||||||
|
"LOGAN\\-SANDERO 2/SYMBOL 2",
|
||||||
|
"LOGAN\\-SANDERO 3 / TALIANT",
|
||||||
|
];
|
||||||
|
|
||||||
|
const cands = (models: string[]): RpartstoreCatalogCandidate[] =>
|
||||||
|
models.map((model) => ({ id: model, model }));
|
||||||
|
|
||||||
|
describe("rpartstoreModelTokens", () => {
|
||||||
|
it("drops the model code in parentheses and converts roman generations", () => {
|
||||||
|
expect(rpartstoreModelTokens("Clio IV / Lutecia IV (B98)")).toEqual([
|
||||||
|
"CLIO",
|
||||||
|
"4",
|
||||||
|
"LUTECIA",
|
||||||
|
"4",
|
||||||
|
]);
|
||||||
|
expect(rpartstoreModelTokens("Duster III (SUV)")).toEqual(["DUSTER", "3"]);
|
||||||
|
expect(rpartstoreModelTokens("Megane I Classic (L64)")).toEqual(["MEGANE", "1", "CLASSIC"]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("keeps single-digit generation tokens and folds diacritics", () => {
|
||||||
|
expect(rpartstoreModelTokens("MEGANE 4 SEDAN")).toEqual(["MEGANE", "4", "SEDAN"]);
|
||||||
|
expect(rpartstoreModelTokens("KADJAR ÇİN")).toEqual(["KADJAR", "CIN"]);
|
||||||
|
expect(rpartstoreModelTokens("LOGAN\\-SANDERO 3 / TALIANT")).toEqual([
|
||||||
|
"LOGAN",
|
||||||
|
"SANDERO",
|
||||||
|
"3",
|
||||||
|
"TALIANT",
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("pickRpartstoreCatalogMatch (prod benchmark models → PL24 Renault catalog)", () => {
|
||||||
|
const expectPick = (model: string, expected: string | null, pool = RENAULT) =>
|
||||||
|
expect(pickRpartstoreCatalogMatch(model, cands(pool))).toBe(expected);
|
||||||
|
|
||||||
|
it("matches roman-numeral generations to digit generations", () => {
|
||||||
|
expectPick("Clio IV / Lutecia IV (B98)", "CLIO 4 / LUTECIA 4");
|
||||||
|
expectPick("Trafic III (J82)", "TRAFIC 3");
|
||||||
|
expectPick("Master III (F62)", "MASTER 3");
|
||||||
|
expectPick("Kangoo II (K61)", "KANGOO 2 / KANGOO Z.E.");
|
||||||
|
expectPick("Logan III (LJF)", "LOGAN\\-SANDERO 3 / TALIANT");
|
||||||
|
expectPick("Duster III (SUV)", "DUSTER III / BIGSTER");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("prefers the body-qualified catalog when the decode carries the qualifier, and the plain one otherwise", () => {
|
||||||
|
expectPick("Megane IV Sedan (LFF)", "MEGANE 4 SEDAN");
|
||||||
|
expectPick("Megane IV (BFB)", "MEGANE 4");
|
||||||
|
expectPick("Megane I Classic (L64)", "MEGANE 1");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("never picks a wrong-market catalog when a mainstream one exists", () => {
|
||||||
|
expectPick("Kadjar (HFE)", "KADJAR");
|
||||||
|
expectPick("Captur II (HJB)", "CAPTUR II EUROPE/SYMBIOZ");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("does not let a newer generation steal a decode without a generation", () => {
|
||||||
|
expectPick("Captur (J87)", "CAPTUR / QM3");
|
||||||
|
expectPick("Express (KJK)", "EXPRESS");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("matches multi-name catalogs and pre-2000 models", () => {
|
||||||
|
expectPick("Latitude / Safrane II (L43)", "LATITUDE / SAFRANE 2");
|
||||||
|
expectPick("Fluence (L38)", "FLUENCE / FLUENCE Z.E.");
|
||||||
|
expectPick("Renault 9 / 11 (L42)", "RENAULT 9 / 11");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("matches Dacia models within the Dacia catalog", () => {
|
||||||
|
expectPick("Duster I (H79)", "DUSTER 1", DACIA);
|
||||||
|
expectPick("Duster II (HJD)", "DUSTER 2", DACIA);
|
||||||
|
expectPick("Dokker (K67)", "DOKKER", DACIA);
|
||||||
|
expectPick("Logan I (L90)", "LOGAN\\-SANDERO 1/TONDAR 1", DACIA);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("returns null when nothing qualifies or the model is missing", () => {
|
||||||
|
expectPick("Arkana (LJL)", "ARKANA EUROPE / XM3");
|
||||||
|
expectPick("Twingo Z.E.", null);
|
||||||
|
expect(pickRpartstoreCatalogMatch(undefined, cands(RENAULT))).toBeNull();
|
||||||
|
expect(pickRpartstoreCatalogMatch("", cands(RENAULT))).toBeNull();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("breaks exact ties by the fuller catalog", () => {
|
||||||
|
const pool: RpartstoreCatalogCandidate[] = [
|
||||||
|
{ id: "a", model: "KADJAR", categoryCount: 12 },
|
||||||
|
{ id: "b", model: "KADJAR", categoryCount: 44 },
|
||||||
|
];
|
||||||
|
expect(pickRpartstoreCatalogMatch("Kadjar (HFE)", pool)).toBe("b");
|
||||||
|
});
|
||||||
|
});
|
||||||
133
apps/api/src/integrations/rpartstore/rpartstore.matcher.ts
Normal file
133
apps/api/src/integrations/rpartstore/rpartstore.matcher.ts
Normal file
@@ -0,0 +1,133 @@
|
|||||||
|
import { MARKET_QUALIFIERS } from "../vinpin/vinpin.matcher";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Map an RPartStore model label ("Megane IV Sedan (LFF)", "Clio IV / Lutecia IV
|
||||||
|
* (B98)", "Duster III (SUV)") onto an EXISTING PL24 `catalog_vehicles` row of the
|
||||||
|
* same brand ("MEGANE 4 SEDAN", "CLIO 4 / LUTECIA 4", "DUSTER III / BIGSTER").
|
||||||
|
*
|
||||||
|
* Differences from the Vinpin matcher that made a dedicated picker necessary:
|
||||||
|
* - RPartStore writes generations as roman numerals, PL24 mostly as digits
|
||||||
|
* ("IV" vs "4") — both sides are normalised to digits.
|
||||||
|
* - Generation digits are single characters; the Vinpin tokenizer drops tokens
|
||||||
|
* shorter than 2 chars, which would make "MEGANE 4" ≡ "MEGANE".
|
||||||
|
* - Body qualifiers (SEDAN, CLASSIC, …) are optional on the catalog side:
|
||||||
|
* "Megane I Classic" must still match "MEGANE 1".
|
||||||
|
* - PL24 Renault/Dacia rows carry no year, so there is no year scoring.
|
||||||
|
*/
|
||||||
|
|
||||||
|
export interface RpartstoreCatalogCandidate {
|
||||||
|
id: string;
|
||||||
|
model: string | null;
|
||||||
|
/** Tiebreak only: fuller catalog wins. */
|
||||||
|
categoryCount?: number | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const ROMAN: Record<string, string> = {
|
||||||
|
I: "1",
|
||||||
|
II: "2",
|
||||||
|
III: "3",
|
||||||
|
IV: "4",
|
||||||
|
V: "5",
|
||||||
|
VI: "6",
|
||||||
|
VII: "7",
|
||||||
|
VIII: "8",
|
||||||
|
};
|
||||||
|
|
||||||
|
/** Body / trim words that PL24 may omit; they only add a small bonus when both sides have them. */
|
||||||
|
const BODY_QUALIFIERS = new Set<string>([
|
||||||
|
"SEDAN",
|
||||||
|
"CLASSIC",
|
||||||
|
"HATCHBACK",
|
||||||
|
"HB",
|
||||||
|
"ESTATE",
|
||||||
|
"GRANDTOUR",
|
||||||
|
"SPORTTOURER",
|
||||||
|
"SW",
|
||||||
|
"BREAK",
|
||||||
|
"VAN",
|
||||||
|
"COMBI",
|
||||||
|
"KOMBI",
|
||||||
|
"CABRIO",
|
||||||
|
"COUPE",
|
||||||
|
"SASI",
|
||||||
|
"CHASSIS",
|
||||||
|
"PICKUP",
|
||||||
|
"PHASE",
|
||||||
|
"PH",
|
||||||
|
]);
|
||||||
|
|
||||||
|
/** Tokenize a model label: fold diacritics, drop parenthetical codes/years, split on
|
||||||
|
* non-alphanumerics, convert roman generation numerals to digits. Keeps 1-char
|
||||||
|
* numeric tokens (generations) and drops 1-char alpha noise ("Z.E." → "ZE" kept
|
||||||
|
* as-is is not needed for matching). */
|
||||||
|
export function rpartstoreModelTokens(s: string | null | undefined): string[] {
|
||||||
|
if (!s) return [];
|
||||||
|
return s
|
||||||
|
.toUpperCase()
|
||||||
|
.normalize("NFD")
|
||||||
|
.replace(/\p{M}/gu, "")
|
||||||
|
.replace(/\([^)]*\)/g, " ")
|
||||||
|
.replace(/[^A-Z0-9]+/g, " ")
|
||||||
|
.split(" ")
|
||||||
|
.map((t) => t.trim())
|
||||||
|
.filter((t) => t.length > 0)
|
||||||
|
.map((t) => ROMAN[t] ?? t)
|
||||||
|
.filter((t) => t.length >= 2 || /^\d$/.test(t));
|
||||||
|
}
|
||||||
|
|
||||||
|
const isNumeric = (t: string): boolean => /^\d+$/.test(t);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the id of the best candidate or null. A candidate qualifies when every
|
||||||
|
* "core" decoded token (everything except body qualifiers) appears among its
|
||||||
|
* tokens. Score, strongest first: market-qualifier penalty (wrong-market catalogs
|
||||||
|
* only win when alone), exact-match bonus, body-qualifier overlap bonus, a hard
|
||||||
|
* penalty for candidates that add a generation number the decode lacks
|
||||||
|
* ("Captur" must not pick "CAPTUR II"), a mild penalty per extra token, then the
|
||||||
|
* fuller catalog as tiebreak.
|
||||||
|
*/
|
||||||
|
export function pickRpartstoreCatalogMatch(
|
||||||
|
model: string | null | undefined,
|
||||||
|
candidates: RpartstoreCatalogCandidate[],
|
||||||
|
): string | null {
|
||||||
|
const decoded = rpartstoreModelTokens(model);
|
||||||
|
if (decoded.length === 0) return null;
|
||||||
|
const core = decoded.filter((t) => !BODY_QUALIFIERS.has(t));
|
||||||
|
const required = core.length > 0 ? core : decoded;
|
||||||
|
const decodedSet = new Set(decoded);
|
||||||
|
const decodedHasGeneration = decoded.some(isNumeric);
|
||||||
|
|
||||||
|
let best: { id: string; score: number; categoryCount: number } | null = null;
|
||||||
|
for (const c of candidates) {
|
||||||
|
const tokens = rpartstoreModelTokens(c.model);
|
||||||
|
if (tokens.length === 0) continue;
|
||||||
|
const tokenSet = new Set(tokens);
|
||||||
|
if (!required.every((t) => tokenSet.has(t))) continue;
|
||||||
|
|
||||||
|
const extras = tokens.filter((t) => !decodedSet.has(t));
|
||||||
|
const marketExtras = extras.filter((t) => MARKET_QUALIFIERS.has(t)).length;
|
||||||
|
const generationExtras = decodedHasGeneration ? 0 : extras.filter(isNumeric).length;
|
||||||
|
const qualifierOverlap = decoded.filter(
|
||||||
|
(t) => BODY_QUALIFIERS.has(t) && tokenSet.has(t),
|
||||||
|
).length;
|
||||||
|
const exact = extras.length === 0 && tokens.length === decoded.length;
|
||||||
|
|
||||||
|
const score =
|
||||||
|
1000 -
|
||||||
|
marketExtras * 5000 -
|
||||||
|
generationExtras * 150 -
|
||||||
|
extras.length * 20 +
|
||||||
|
qualifierOverlap * 100 +
|
||||||
|
(exact ? 300 : 0);
|
||||||
|
const categoryCount = c.categoryCount ?? 0;
|
||||||
|
|
||||||
|
if (
|
||||||
|
!best ||
|
||||||
|
score > best.score ||
|
||||||
|
(score === best.score && categoryCount > best.categoryCount)
|
||||||
|
) {
|
||||||
|
best = { id: c.id, score, categoryCount };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return best?.id ?? null;
|
||||||
|
}
|
||||||
32
apps/api/src/integrations/rpartstore/rpartstore.routing.ts
Normal file
32
apps/api/src/integrations/rpartstore/rpartstore.routing.ts
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
import { getBrandFromWmi } from "@sase/shared";
|
||||||
|
|
||||||
|
/** WMIs routed to RPartStore even when the shared WMI table is silent. VF1/VF2 =
|
||||||
|
* Renault (France), VF6 = Renault (Trucks/Sofasa), UU1 = Dacia (Romania). VF7 is
|
||||||
|
* Citroën and is deliberately NOT here. */
|
||||||
|
const RPARTSTORE_WMIS = new Set<string>(["VF1", "VF2", "VF6", "UU1"]);
|
||||||
|
|
||||||
|
const RPARTSTORE_BRANDS = new Set<string>(["renault", "dacia"]);
|
||||||
|
|
||||||
|
/** Canonical brand names as they appear in `catalog_vehicles.brand_name`. */
|
||||||
|
export function canonicalRpartstoreBrand(
|
||||||
|
brand: string | null | undefined,
|
||||||
|
): "Renault" | "Dacia" | null {
|
||||||
|
const b = (brand ?? "").trim().toLowerCase();
|
||||||
|
if (b === "renault") return "Renault";
|
||||||
|
if (b === "dacia") return "Dacia";
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Should this VIN be offered to the RPartStore decode fallback? Renault/Dacia
|
||||||
|
* only: decided by the WMI first (shared table, then the explicit allowlist),
|
||||||
|
* with the identified browse brand as a last resort (Dacia-badged cars built
|
||||||
|
* under a Renault WMI still say "Dacia" in the identification).
|
||||||
|
*/
|
||||||
|
export function isRpartstoreVin(vin: string, browseBrand?: string | null): boolean {
|
||||||
|
const wmi = (vin || "").toUpperCase().slice(0, 3);
|
||||||
|
const wmiBrand = getBrandFromWmi(wmi);
|
||||||
|
if (wmiBrand && RPARTSTORE_BRANDS.has(wmiBrand.toLowerCase())) return true;
|
||||||
|
if (RPARTSTORE_WMIS.has(wmi)) return true;
|
||||||
|
return !!browseBrand && RPARTSTORE_BRANDS.has(browseBrand.trim().toLowerCase());
|
||||||
|
}
|
||||||
256
apps/api/src/integrations/rpartstore/rpartstore.session.ts
Normal file
256
apps/api/src/integrations/rpartstore/rpartstore.session.ts
Normal file
@@ -0,0 +1,256 @@
|
|||||||
|
/**
|
||||||
|
* One STOMP-over-WebSocket session against the RPartStore BFF.
|
||||||
|
*
|
||||||
|
* Request/response is correlated by the `trace-id` header we send and the `traceId`
|
||||||
|
* header the server echoes. One request can yield several MESSAGE frames
|
||||||
|
* (e.g. a VIN search → SEARCH_VEHICLE_RESPONSE, COMMAND_PROCESSING_RESPONSE,
|
||||||
|
* EXPLODED_TREE_RESPONSE), so a request resolves on the first frame whose `type`
|
||||||
|
* matches one of the expected terminal types, and errors on a frame from
|
||||||
|
* `/user/queue/error` or a `*_RATE_LIMIT_EXCEEDED` type.
|
||||||
|
*
|
||||||
|
* Uses Node 22's built-in WebSocket (no Origin / subprotocol required by the server).
|
||||||
|
*/
|
||||||
|
import { randomUUID } from "node:crypto";
|
||||||
|
import { decodeFrame, encodeFrame } from "./rpartstore.stomp";
|
||||||
|
|
||||||
|
export interface BffMessage<T = unknown> {
|
||||||
|
type: string;
|
||||||
|
payload: T;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SessionOptions {
|
||||||
|
brokerUrl: string;
|
||||||
|
accessToken: string;
|
||||||
|
profile: string;
|
||||||
|
appVersion: string;
|
||||||
|
webLanguage: string;
|
||||||
|
connectTimeoutMs?: number;
|
||||||
|
/** STOMP heart-beat interval (ms) negotiated with the server. */
|
||||||
|
heartbeatMs?: number;
|
||||||
|
onClose?: (reason: string) => void;
|
||||||
|
logger?: { debug: (msg: string) => void; warn: (msg: string) => void };
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface RequestOptions {
|
||||||
|
/** Message `type`s that complete the request. */
|
||||||
|
expect: string[];
|
||||||
|
timeoutMs?: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class RpartstoreRateLimitError extends Error {
|
||||||
|
constructor(
|
||||||
|
readonly retryAfterSeconds: number,
|
||||||
|
readonly limitType: string,
|
||||||
|
) {
|
||||||
|
super(`RPartStore rate limit (${limitType}), retry after ${retryAfterSeconds}s`);
|
||||||
|
this.name = "RpartstoreRateLimitError";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export class RpartstoreBffError extends Error {
|
||||||
|
constructor(
|
||||||
|
readonly type: string,
|
||||||
|
readonly payload: unknown,
|
||||||
|
) {
|
||||||
|
super(`RPartStore BFF error ${type}`);
|
||||||
|
this.name = "RpartstoreBffError";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Pending {
|
||||||
|
expect: Set<string>;
|
||||||
|
resolve: (msg: BffMessage) => void;
|
||||||
|
reject: (err: Error) => void;
|
||||||
|
timer: NodeJS.Timeout;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class RpartstoreSession {
|
||||||
|
private ws: WebSocket | null = null;
|
||||||
|
private readonly pending = new Map<string, Pending>();
|
||||||
|
private heartbeatTimer: NodeJS.Timeout | null = null;
|
||||||
|
private closed = false;
|
||||||
|
|
||||||
|
constructor(private readonly opts: SessionOptions) {}
|
||||||
|
|
||||||
|
get isOpen(): boolean {
|
||||||
|
return !this.closed && this.ws !== null && this.ws.readyState === WebSocket.OPEN;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Opens the socket, sends CONNECT and subscribes to the user queues. Resolves on CONNECTED. */
|
||||||
|
connect(): Promise<void> {
|
||||||
|
const {
|
||||||
|
brokerUrl,
|
||||||
|
accessToken,
|
||||||
|
profile,
|
||||||
|
appVersion,
|
||||||
|
webLanguage,
|
||||||
|
connectTimeoutMs = 10_000,
|
||||||
|
heartbeatMs = 60_000,
|
||||||
|
} = this.opts;
|
||||||
|
return new Promise<void>((resolve, reject) => {
|
||||||
|
let settled = false;
|
||||||
|
const fail = (err: Error): void => {
|
||||||
|
if (!settled) {
|
||||||
|
settled = true;
|
||||||
|
reject(err);
|
||||||
|
}
|
||||||
|
this.teardown(err.message);
|
||||||
|
};
|
||||||
|
const timer = setTimeout(() => fail(new Error("STOMP CONNECT timeout")), connectTimeoutMs);
|
||||||
|
let ws: WebSocket;
|
||||||
|
try {
|
||||||
|
ws = new WebSocket(brokerUrl, ["v12.stomp"]);
|
||||||
|
} catch (err) {
|
||||||
|
clearTimeout(timer);
|
||||||
|
reject(err instanceof Error ? err : new Error(String(err)));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.ws = ws;
|
||||||
|
ws.onopen = () => {
|
||||||
|
ws.send(
|
||||||
|
encodeFrame("CONNECT", {
|
||||||
|
"trace-id": randomUUID(),
|
||||||
|
"x-auth-token": accessToken,
|
||||||
|
"selected-profile": profile,
|
||||||
|
"app-version": appVersion,
|
||||||
|
"web-language": webLanguage,
|
||||||
|
"accept-version": "1.2,1.1,1.0",
|
||||||
|
"heart-beat": `${heartbeatMs},${heartbeatMs}`,
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
};
|
||||||
|
ws.onmessage = (event: MessageEvent) => {
|
||||||
|
const frame = decodeFrame(typeof event.data === "string" ? event.data : String(event.data));
|
||||||
|
if (!frame) return; // heartbeat
|
||||||
|
if (frame.command === "CONNECTED") {
|
||||||
|
clearTimeout(timer);
|
||||||
|
ws.send(encodeFrame("SUBSCRIBE", { id: "sub-0", destination: "/user/queue/main" }));
|
||||||
|
ws.send(encodeFrame("SUBSCRIBE", { id: "sub-1", destination: "/user/queue/error" }));
|
||||||
|
this.startHeartbeat(heartbeatMs);
|
||||||
|
settled = true;
|
||||||
|
resolve();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (frame.command === "ERROR") {
|
||||||
|
fail(
|
||||||
|
new Error(`STOMP ERROR: ${frame.headers.message ?? ""} ${frame.body.slice(0, 200)}`),
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (frame.command === "MESSAGE") this.onMessage(frame.headers, frame.body);
|
||||||
|
};
|
||||||
|
ws.onerror = () => fail(new Error("WebSocket error"));
|
||||||
|
ws.onclose = (event: { code: number; reason: string }) => {
|
||||||
|
clearTimeout(timer);
|
||||||
|
const reason = `WebSocket closed (${event.code}${event.reason ? ` ${event.reason}` : ""})`;
|
||||||
|
if (!settled) fail(new Error(reason));
|
||||||
|
else this.teardown(reason);
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Publishes `{payload}` to `/app/<path>` and resolves on the first expected message type. */
|
||||||
|
request<T = unknown>(
|
||||||
|
path: string,
|
||||||
|
payload: unknown,
|
||||||
|
options: RequestOptions,
|
||||||
|
): Promise<BffMessage<T>> {
|
||||||
|
const ws = this.ws;
|
||||||
|
if (!this.isOpen || !ws) return Promise.reject(new Error("STOMP session is not connected"));
|
||||||
|
const traceId = randomUUID();
|
||||||
|
const body = JSON.stringify({ payload });
|
||||||
|
const { expect, timeoutMs = 15_000 } = options;
|
||||||
|
return new Promise<BffMessage<T>>((resolve, reject) => {
|
||||||
|
const timer = setTimeout(() => {
|
||||||
|
this.pending.delete(traceId);
|
||||||
|
reject(new Error(`RPartStore request ${path} timed out after ${timeoutMs}ms`));
|
||||||
|
}, timeoutMs);
|
||||||
|
this.pending.set(traceId, {
|
||||||
|
expect: new Set(expect),
|
||||||
|
resolve: (msg) => resolve(msg as BffMessage<T>),
|
||||||
|
reject,
|
||||||
|
timer,
|
||||||
|
});
|
||||||
|
ws.send(encodeFrame("SEND", { destination: `/app${path}`, "trace-id": traceId }, body));
|
||||||
|
this.opts.logger?.debug(`→ ${path} trace=${traceId}`);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
close(): void {
|
||||||
|
this.teardown("closed by client");
|
||||||
|
}
|
||||||
|
|
||||||
|
private onMessage(headers: Record<string, string>, body: string): void {
|
||||||
|
const traceId = headers.traceId;
|
||||||
|
const pending = traceId ? this.pending.get(traceId) : undefined;
|
||||||
|
let msg: BffMessage;
|
||||||
|
try {
|
||||||
|
msg = JSON.parse(body) as BffMessage;
|
||||||
|
} catch {
|
||||||
|
this.opts.logger?.warn(
|
||||||
|
`unparseable BFF message on ${headers.destination ?? "?"} trace=${traceId ?? "?"}`,
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!pending) return; // unsolicited push (search-history refresh etc.)
|
||||||
|
const isError = headers.destination === "/user/queue/error";
|
||||||
|
if (/RATE_LIMIT_EXCEEDED$/.test(msg.type)) {
|
||||||
|
const p = msg.payload as { retryAfterSeconds?: number; limitType?: string };
|
||||||
|
this.settle(traceId, pending, (pend) =>
|
||||||
|
pend.reject(
|
||||||
|
new RpartstoreRateLimitError(p.retryAfterSeconds ?? 10, p.limitType ?? "SHORT_TERM"),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (isError) {
|
||||||
|
this.settle(traceId, pending, (pend) =>
|
||||||
|
pend.reject(new RpartstoreBffError(msg.type, msg.payload)),
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (pending.expect.has(msg.type)) {
|
||||||
|
this.settle(traceId, pending, (pend) => pend.resolve(msg));
|
||||||
|
}
|
||||||
|
// other frames on the same trace (COMMAND_PROCESSING_RESPONSE, EXPLODED_TREE_RESPONSE…) are ignored here
|
||||||
|
}
|
||||||
|
|
||||||
|
private settle(traceId: string, pending: Pending, fn: (p: Pending) => void): void {
|
||||||
|
clearTimeout(pending.timer);
|
||||||
|
this.pending.delete(traceId);
|
||||||
|
fn(pending);
|
||||||
|
}
|
||||||
|
|
||||||
|
private startHeartbeat(intervalMs: number): void {
|
||||||
|
this.stopHeartbeat();
|
||||||
|
this.heartbeatTimer = setInterval(() => {
|
||||||
|
if (this.isOpen) this.ws?.send("\n");
|
||||||
|
}, intervalMs);
|
||||||
|
}
|
||||||
|
|
||||||
|
private stopHeartbeat(): void {
|
||||||
|
if (this.heartbeatTimer) clearInterval(this.heartbeatTimer);
|
||||||
|
this.heartbeatTimer = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private teardown(reason: string): void {
|
||||||
|
if (this.closed) return;
|
||||||
|
this.closed = true;
|
||||||
|
this.stopHeartbeat();
|
||||||
|
for (const [traceId, p] of this.pending) {
|
||||||
|
clearTimeout(p.timer);
|
||||||
|
p.reject(new Error(`STOMP session ended: ${reason}`));
|
||||||
|
this.pending.delete(traceId);
|
||||||
|
}
|
||||||
|
const ws = this.ws;
|
||||||
|
this.ws = null;
|
||||||
|
if (ws && ws.readyState !== WebSocket.CLOSED) {
|
||||||
|
try {
|
||||||
|
ws.close();
|
||||||
|
} catch {
|
||||||
|
/* ignore */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.opts.onClose?.(reason);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
import { decodeFrame, encodeFrame } from "./rpartstore.stomp";
|
||||||
|
|
||||||
|
describe("rpartstore STOMP codec", () => {
|
||||||
|
it("encodes a SEND frame exactly like the RPartStore web app", () => {
|
||||||
|
const body = '{"payload":{"requestId":"r","value":"VF1RFE00653633190","queryType":"VIN"}}';
|
||||||
|
const frame = encodeFrame(
|
||||||
|
"SEND",
|
||||||
|
{ destination: "/app/vehicles/search/vin-or-vrn", "trace-id": "t-1" },
|
||||||
|
body,
|
||||||
|
);
|
||||||
|
expect(frame).toBe(
|
||||||
|
`SEND\ndestination:/app/vehicles/search/vin-or-vrn\ntrace-id:t-1\ncontent-length:${Buffer.byteLength(body)}\n\n${body}\u0000`,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("does not escape CONNECT header values (STOMP 1.2 rule) but escapes others", () => {
|
||||||
|
expect(encodeFrame("CONNECT", { "x-auth-token": "a:b" })).toBe(
|
||||||
|
"CONNECT\nx-auth-token:a:b\n\n\u0000",
|
||||||
|
);
|
||||||
|
expect(encodeFrame("SEND", { destination: "/app/x", note: "a:b\nc" })).toContain(
|
||||||
|
"note:a\\cb\\nc",
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("decodes a live MESSAGE frame with headers and JSON body", () => {
|
||||||
|
const raw =
|
||||||
|
"MESSAGE\ntraceId:f68cc229\ncontent-type:text/plain;charset=UTF-8\ndestination:/user/queue/main\nsubscription:sub-0\nmessage-id:975afec7-1\ncontent-length:64\n\n" +
|
||||||
|
'{"type":"1PO/COMMON/COMMAND_PROCESSING_RESPONSE","payload":true}\u0000';
|
||||||
|
const frame = decodeFrame(raw);
|
||||||
|
expect(frame?.command).toBe("MESSAGE");
|
||||||
|
expect(frame?.headers.traceId).toBe("f68cc229");
|
||||||
|
expect(frame?.headers["content-type"]).toBe("text/plain;charset=UTF-8");
|
||||||
|
expect(JSON.parse(frame!.body)).toEqual({
|
||||||
|
type: "1PO/COMMON/COMMAND_PROCESSING_RESPONSE",
|
||||||
|
payload: true,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it("treats heartbeat newlines as no frame", () => {
|
||||||
|
expect(decodeFrame("\n")).toBeNull();
|
||||||
|
expect(decodeFrame("")).toBeNull();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("keeps the first value of a repeated header", () => {
|
||||||
|
const frame = decodeFrame("MESSAGE\nk:first\nk:second\n\nbody\u0000");
|
||||||
|
expect(frame?.headers.k).toBe("first");
|
||||||
|
expect(frame?.body).toBe("body");
|
||||||
|
});
|
||||||
|
});
|
||||||
69
apps/api/src/integrations/rpartstore/rpartstore.stomp.ts
Normal file
69
apps/api/src/integrations/rpartstore/rpartstore.stomp.ts
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
/**
|
||||||
|
* Minimal STOMP 1.2 codec used by the RPartStore BFF client.
|
||||||
|
* The BFF speaks STOMP over a plain WebSocket (`wss://1po-bff.renault-edh.com/ws`):
|
||||||
|
* CONNECT → CONNECTED, SUBSCRIBE /user/queue/main + /user/queue/error,
|
||||||
|
* SEND /app/<path> with a `trace-id` header, and 1..N MESSAGE frames back
|
||||||
|
* carrying the same `traceId` header and a `{type, payload}` JSON body.
|
||||||
|
*/
|
||||||
|
|
||||||
|
export interface StompFrame {
|
||||||
|
command: string;
|
||||||
|
headers: Record<string, string>;
|
||||||
|
body: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
const NULL = "\u0000";
|
||||||
|
|
||||||
|
/** STOMP 1.2 header value escaping (RFC: `\\`, `\n` → `\\n`, `:` → `\\c`, `\r` → `\\r`). */
|
||||||
|
function escapeHeader(value: string): string {
|
||||||
|
return value
|
||||||
|
.replace(/\\/g, "\\\\")
|
||||||
|
.replace(/\r/g, "\\r")
|
||||||
|
.replace(/\n/g, "\\n")
|
||||||
|
.replace(/:/g, "\\c");
|
||||||
|
}
|
||||||
|
|
||||||
|
function unescapeHeader(value: string): string {
|
||||||
|
return value
|
||||||
|
.replace(/\\n/g, "\n")
|
||||||
|
.replace(/\\r/g, "\r")
|
||||||
|
.replace(/\\c/g, ":")
|
||||||
|
.replace(/\\\\/g, "\\");
|
||||||
|
}
|
||||||
|
|
||||||
|
export function encodeFrame(
|
||||||
|
command: string,
|
||||||
|
headers: Record<string, string | number>,
|
||||||
|
body = "",
|
||||||
|
): string {
|
||||||
|
const lines = [command];
|
||||||
|
for (const [k, v] of Object.entries(headers)) {
|
||||||
|
lines.push(`${k}:${command === "CONNECT" ? String(v) : escapeHeader(String(v))}`);
|
||||||
|
}
|
||||||
|
if (body && headers["content-length"] === undefined) {
|
||||||
|
lines.push(`content-length:${Buffer.byteLength(body, "utf8")}`);
|
||||||
|
}
|
||||||
|
return `${lines.join("\n")}\n\n${body}${NULL}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Heartbeat frames are a bare newline; they decode to `null`. */
|
||||||
|
export function decodeFrame(raw: string): StompFrame | null {
|
||||||
|
if (raw === "\n" || raw === "\r\n" || raw === "") return null;
|
||||||
|
const headerEnd = raw.indexOf("\n\n");
|
||||||
|
if (headerEnd < 0) return null;
|
||||||
|
const headerBlock = raw.slice(0, headerEnd).split("\n");
|
||||||
|
const command = headerBlock[0].trim();
|
||||||
|
const headers: Record<string, string> = {};
|
||||||
|
for (const line of headerBlock.slice(1)) {
|
||||||
|
const i = line.indexOf(":");
|
||||||
|
if (i < 0) continue;
|
||||||
|
const key = line.slice(0, i);
|
||||||
|
// STOMP: the first occurrence of a repeated header wins.
|
||||||
|
if (headers[key] === undefined)
|
||||||
|
headers[key] =
|
||||||
|
command === "CONNECTED" ? line.slice(i + 1) : unescapeHeader(line.slice(i + 1));
|
||||||
|
}
|
||||||
|
let body = raw.slice(headerEnd + 2);
|
||||||
|
if (body.endsWith(NULL)) body = body.slice(0, -1);
|
||||||
|
return { command, headers, body };
|
||||||
|
}
|
||||||
54
apps/api/src/integrations/rpartstore/rpartstore.types.ts
Normal file
54
apps/api/src/integrations/rpartstore/rpartstore.types.ts
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
/**
|
||||||
|
* Shapes of the RPartStore BFF `SEARCH_VEHICLE_RESPONSE` payload (DATAHUB
|
||||||
|
* catalog source, TR market). Captured live 2026-09-25; see
|
||||||
|
* /home/s/ss/rpartstore-dogrudan-vin-decode-2026-09-25.md for the protocol notes.
|
||||||
|
*/
|
||||||
|
|
||||||
|
export interface RpartstoreDataHubVehicle {
|
||||||
|
name?: string; // "RENAULT Kadjar (HFE)"
|
||||||
|
modelType?: string; // "SUV"
|
||||||
|
modelTypeCode?: string; // "HFE"
|
||||||
|
familyCode?: string; // "XFE"
|
||||||
|
bodyType?: string; // "HFE"
|
||||||
|
engine?: string; // "1.5 DCI DİZEL MOTOR [K9K]"
|
||||||
|
gearbox?: string; // "6 VİTESLİ KAVRAMA VİTES KUTUSU:DC4 [DC4]"
|
||||||
|
energyType?: string; // "MOTORIN"
|
||||||
|
powerKw?: string; // "066 KW POWER" | ""
|
||||||
|
modelYear?: string; // "2015"
|
||||||
|
vehicleAge?: number;
|
||||||
|
wheelbaseLength?: string;
|
||||||
|
roofHeight?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface RpartstoreVehicle {
|
||||||
|
catalogSource: string; // "DATAHUB"
|
||||||
|
vin: string;
|
||||||
|
vehicleKey: string;
|
||||||
|
model: string | undefined; // "Kadjar (HFE)" — undefined on some pre-2000 cars
|
||||||
|
vehicleBrand: string; // "RENAULT" | "DACIA"
|
||||||
|
country: string; // "TR"
|
||||||
|
manufacturingDate?: string; // "2015-07-28"
|
||||||
|
imageUrl?: string;
|
||||||
|
dataHubVehicle?: RpartstoreDataHubVehicle;
|
||||||
|
vehicleIdentifiedBy?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SearchVehicleResponsePayload {
|
||||||
|
vehicles: RpartstoreVehicle[];
|
||||||
|
requestId: string;
|
||||||
|
searchedCountry: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Normalised decode result stored in `rpartstore_decodes`. */
|
||||||
|
export interface RpartstoreDecoded {
|
||||||
|
brandName: string; // "Renault" | "Dacia" (canonical casing, matches catalog_vehicles.brand_name)
|
||||||
|
model: string | null; // "Kadjar (HFE)"
|
||||||
|
modelCode: string | null; // "HFE"
|
||||||
|
familyCode: string | null; // "XFE"
|
||||||
|
modelYear: string | null; // "2015"
|
||||||
|
engine: string | null;
|
||||||
|
gearbox: string | null;
|
||||||
|
energyType: string | null;
|
||||||
|
manufacturingDate: string | null;
|
||||||
|
raw: RpartstoreVehicle;
|
||||||
|
}
|
||||||
@@ -122,3 +122,53 @@ export class BillingController {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* User-scoped billing admin: start a fresh subscription for a user whose
|
||||||
|
* previous one is expired/cancelled (the panel's "Yeni abonelik başlat").
|
||||||
|
*/
|
||||||
|
@Controller("internal/admin/users")
|
||||||
|
@Public()
|
||||||
|
@UseGuards(InternalTokenGuard)
|
||||||
|
export class UserBillingController {
|
||||||
|
constructor(private billing: BillingService) {}
|
||||||
|
|
||||||
|
@Post(":id/subscriptions")
|
||||||
|
@HttpCode(HttpStatus.OK)
|
||||||
|
async startSubscription(
|
||||||
|
@Param("id") id: string,
|
||||||
|
@Body()
|
||||||
|
body: {
|
||||||
|
planId?: string;
|
||||||
|
billingPeriod?: string;
|
||||||
|
days?: number;
|
||||||
|
brandIds?: string[];
|
||||||
|
reason?: string;
|
||||||
|
founderId?: string;
|
||||||
|
},
|
||||||
|
) {
|
||||||
|
if (!body.founderId) throw new BadRequestException("founderId required");
|
||||||
|
if (!body.reason || body.reason.trim().length < 5) {
|
||||||
|
throw new BadRequestException("start-subscription requires reason (min 5 chars)");
|
||||||
|
}
|
||||||
|
if (!body.planId) throw new BadRequestException("planId required");
|
||||||
|
if (body.billingPeriod !== "monthly" && body.billingPeriod !== "yearly") {
|
||||||
|
throw new BadRequestException("billingPeriod must be monthly|yearly");
|
||||||
|
}
|
||||||
|
if (body.days !== undefined && (typeof body.days !== "number" || body.days <= 0)) {
|
||||||
|
throw new BadRequestException("days must be a positive number");
|
||||||
|
}
|
||||||
|
if (body.brandIds !== undefined && !Array.isArray(body.brandIds)) {
|
||||||
|
throw new BadRequestException("brandIds must be an array");
|
||||||
|
}
|
||||||
|
return this.billing.startSubscription({
|
||||||
|
userId: id,
|
||||||
|
planId: body.planId,
|
||||||
|
billingPeriod: body.billingPeriod,
|
||||||
|
days: body.days,
|
||||||
|
brandIds: body.brandIds,
|
||||||
|
reason: body.reason,
|
||||||
|
founderId: body.founderId,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
181
apps/api/src/internal-admin/billing.service.spec.ts
Normal file
181
apps/api/src/internal-admin/billing.service.spec.ts
Normal file
@@ -0,0 +1,181 @@
|
|||||||
|
import { BadRequestException, ConflictException, NotFoundException } from "@nestjs/common";
|
||||||
|
import { describe, expect, it, vi } from "vitest";
|
||||||
|
import { BillingService } from "./billing.service";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Drizzle-shaped mock: every `db.select()` pops the next row-set from `selects`
|
||||||
|
* (order = order of queries in the service), `db.insert()` returns
|
||||||
|
* `insertRows` from `.returning()` and records `.values()` payloads.
|
||||||
|
*/
|
||||||
|
function createMockDb(selects: unknown[][], insertRows: unknown[] = []) {
|
||||||
|
const queue = [...selects];
|
||||||
|
const inserted: unknown[] = [];
|
||||||
|
function chain(terminal: unknown, onValues?: (v: unknown) => void) {
|
||||||
|
const c: Record<string, unknown> = {};
|
||||||
|
for (const m of [
|
||||||
|
"select",
|
||||||
|
"from",
|
||||||
|
"where",
|
||||||
|
"limit",
|
||||||
|
"insert",
|
||||||
|
"values",
|
||||||
|
"returning",
|
||||||
|
"update",
|
||||||
|
"set",
|
||||||
|
]) {
|
||||||
|
c[m] = vi.fn().mockReturnValue(c);
|
||||||
|
}
|
||||||
|
c.values = vi.fn().mockImplementation((v: unknown) => {
|
||||||
|
onValues?.(v);
|
||||||
|
return c;
|
||||||
|
});
|
||||||
|
// `await db.select()...where(...)` (no limit) resolves via thenable.
|
||||||
|
// biome-ignore lint/suspicious/noThenProperty: mimics Drizzle's thenable query builder
|
||||||
|
c.then = (res: (v: unknown) => unknown, rej?: (e: unknown) => unknown) =>
|
||||||
|
Promise.resolve(terminal).then(res, rej);
|
||||||
|
c.limit = vi.fn().mockReturnValue(Promise.resolve(terminal));
|
||||||
|
c.returning = vi.fn().mockReturnValue(Promise.resolve(terminal));
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
inserted,
|
||||||
|
select: vi.fn().mockImplementation(() => chain(queue.shift() ?? [])),
|
||||||
|
insert: vi.fn().mockImplementation(() => chain(insertRows, (v) => inserted.push(v))),
|
||||||
|
update: vi.fn().mockImplementation(() => chain([])),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const USER = { id: "user-1" };
|
||||||
|
const FULL = { id: "plan-full", name: "Full Paket", brandCount: 0, isActive: true };
|
||||||
|
const ONE = { id: "plan-1", name: "1 Marka", brandCount: 1, isActive: true };
|
||||||
|
const BRANDS = [{ id: "b1" }, { id: "b2" }, { id: "b3" }];
|
||||||
|
const base = { userId: "user-1", reason: "manuel tanım", founderId: "founder-1" } as const;
|
||||||
|
|
||||||
|
function svc(db: unknown) {
|
||||||
|
return new BillingService(db as any, {} as any);
|
||||||
|
}
|
||||||
|
|
||||||
|
describe("BillingService.startSubscription", () => {
|
||||||
|
it("creates an active Full-plan subscription with every active brand and the given days", async () => {
|
||||||
|
const created = {
|
||||||
|
id: "sub-new",
|
||||||
|
startDate: new Date("2026-09-19T00:00:00Z"),
|
||||||
|
endDate: new Date("2029-09-19T00:00:00Z"),
|
||||||
|
};
|
||||||
|
const db = createMockDb([[USER], [], [FULL], BRANDS], [created]);
|
||||||
|
const res = await svc(db).startSubscription({
|
||||||
|
...base,
|
||||||
|
planId: FULL.id,
|
||||||
|
billingPeriod: "yearly",
|
||||||
|
days: 1095,
|
||||||
|
});
|
||||||
|
expect(res.success).toBe(true);
|
||||||
|
expect(res.subscriptionId).toBe("sub-new");
|
||||||
|
expect(res.brandCount).toBe(3);
|
||||||
|
// 1st insert = subscription row, 2nd = brand rows
|
||||||
|
expect(db.inserted).toHaveLength(2);
|
||||||
|
const subRow = db.inserted[0] as {
|
||||||
|
status: string;
|
||||||
|
billingPeriod: string;
|
||||||
|
startDate: Date;
|
||||||
|
endDate: Date;
|
||||||
|
};
|
||||||
|
expect(subRow.status).toBe("active");
|
||||||
|
expect(subRow.billingPeriod).toBe("yearly");
|
||||||
|
const diffDays = Math.round(
|
||||||
|
(subRow.endDate.getTime() - subRow.startDate.getTime()) / 86_400_000,
|
||||||
|
);
|
||||||
|
expect(diffDays).toBe(1095);
|
||||||
|
expect(db.inserted[1]).toEqual(
|
||||||
|
BRANDS.map((b) => ({ userId: "user-1", subscriptionId: "sub-new", brandId: b.id })),
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("defaults the period from billingPeriod when days is omitted", async () => {
|
||||||
|
const db = createMockDb([[USER], [], [FULL], BRANDS], [{ id: "sub-new" }]);
|
||||||
|
await svc(db).startSubscription({ ...base, planId: FULL.id, billingPeriod: "monthly" });
|
||||||
|
const subRow = db.inserted[0] as { startDate: Date; endDate: Date };
|
||||||
|
const expected = new Date(subRow.startDate);
|
||||||
|
expected.setMonth(expected.getMonth() + 1);
|
||||||
|
expect(subRow.endDate.getTime()).toBe(expected.getTime());
|
||||||
|
});
|
||||||
|
|
||||||
|
it("uses the requested brands for a brand-limited plan", async () => {
|
||||||
|
const db = createMockDb([[USER], [], [ONE], BRANDS], [{ id: "sub-new" }]);
|
||||||
|
const res = await svc(db).startSubscription({
|
||||||
|
...base,
|
||||||
|
planId: ONE.id,
|
||||||
|
billingPeriod: "monthly",
|
||||||
|
brandIds: ["b2"],
|
||||||
|
});
|
||||||
|
expect(res.brandCount).toBe(1);
|
||||||
|
expect(db.inserted[1]).toEqual([
|
||||||
|
{ userId: "user-1", subscriptionId: "sub-new", brandId: "b2" },
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("rejects wrong brand count / unknown brands for a brand-limited plan", async () => {
|
||||||
|
await expect(
|
||||||
|
svc(createMockDb([[USER], [], [ONE], BRANDS])).startSubscription({
|
||||||
|
...base,
|
||||||
|
planId: ONE.id,
|
||||||
|
billingPeriod: "monthly",
|
||||||
|
brandIds: [],
|
||||||
|
}),
|
||||||
|
).rejects.toBeInstanceOf(BadRequestException);
|
||||||
|
await expect(
|
||||||
|
svc(createMockDb([[USER], [], [ONE], BRANDS])).startSubscription({
|
||||||
|
...base,
|
||||||
|
planId: ONE.id,
|
||||||
|
billingPeriod: "monthly",
|
||||||
|
brandIds: ["nope"],
|
||||||
|
}),
|
||||||
|
).rejects.toBeInstanceOf(BadRequestException);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("refuses when the user already has an active or trial subscription", async () => {
|
||||||
|
const db = createMockDb([[USER], [{ id: "sub-live", status: "trial" }]]);
|
||||||
|
await expect(
|
||||||
|
svc(db).startSubscription({ ...base, planId: FULL.id, billingPeriod: "yearly" }),
|
||||||
|
).rejects.toBeInstanceOf(ConflictException);
|
||||||
|
expect(db.insert).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("404s on unknown user / plan and rejects inactive plans", async () => {
|
||||||
|
await expect(
|
||||||
|
svc(createMockDb([[]])).startSubscription({
|
||||||
|
...base,
|
||||||
|
planId: FULL.id,
|
||||||
|
billingPeriod: "yearly",
|
||||||
|
}),
|
||||||
|
).rejects.toBeInstanceOf(NotFoundException);
|
||||||
|
await expect(
|
||||||
|
svc(createMockDb([[USER], [], []])).startSubscription({
|
||||||
|
...base,
|
||||||
|
planId: "missing",
|
||||||
|
billingPeriod: "yearly",
|
||||||
|
}),
|
||||||
|
).rejects.toBeInstanceOf(NotFoundException);
|
||||||
|
await expect(
|
||||||
|
svc(createMockDb([[USER], [], [{ ...FULL, isActive: false }]])).startSubscription({
|
||||||
|
...base,
|
||||||
|
planId: FULL.id,
|
||||||
|
billingPeriod: "yearly",
|
||||||
|
}),
|
||||||
|
).rejects.toBeInstanceOf(ConflictException);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("validates days range and billingPeriod before touching the db", async () => {
|
||||||
|
const db = createMockDb([]);
|
||||||
|
await expect(
|
||||||
|
svc(db).startSubscription({ ...base, planId: FULL.id, billingPeriod: "yearly", days: 0 }),
|
||||||
|
).rejects.toBeInstanceOf(BadRequestException);
|
||||||
|
await expect(
|
||||||
|
svc(db).startSubscription({ ...base, planId: FULL.id, billingPeriod: "yearly", days: 3651 }),
|
||||||
|
).rejects.toBeInstanceOf(BadRequestException);
|
||||||
|
await expect(
|
||||||
|
svc(db).startSubscription({ ...base, planId: FULL.id, billingPeriod: "weekly" as any }),
|
||||||
|
).rejects.toBeInstanceOf(BadRequestException);
|
||||||
|
expect(db.select).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -6,9 +6,9 @@ import {
|
|||||||
Logger,
|
Logger,
|
||||||
NotFoundException,
|
NotFoundException,
|
||||||
} from "@nestjs/common";
|
} from "@nestjs/common";
|
||||||
import { eq } from "drizzle-orm";
|
import { and, eq, inArray } from "drizzle-orm";
|
||||||
import { DATABASE, type Database } from "../database/database.provider";
|
import { DATABASE, type Database } from "../database/database.provider";
|
||||||
import { brands, plans, userBrands, userSubscriptions } from "../database/schema/core";
|
import { brands, plans, userBrands, userSubscriptions, users } from "../database/schema/core";
|
||||||
import { SubscriptionsService } from "../subscriptions/subscriptions.service";
|
import { SubscriptionsService } from "../subscriptions/subscriptions.service";
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
@@ -74,6 +74,133 @@ export class BillingService {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Start a brand-new ACTIVE subscription for a user whose previous one is
|
||||||
|
* expired/cancelled (or who has none). Mirrors what activateSubscription does
|
||||||
|
* for a paid checkout — status/dates/plan-based brand assignment — but does
|
||||||
|
* NOT emit revenue events (PostHog subscription_activated / Meta Purchase) or
|
||||||
|
* consume referral credit: this is a founder grant, no money moved here.
|
||||||
|
* `days` overrides the default period (monthly → +1 ay, yearly → +1 yıl).
|
||||||
|
*/
|
||||||
|
async startSubscription(input: {
|
||||||
|
userId: string;
|
||||||
|
planId: string;
|
||||||
|
billingPeriod: "monthly" | "yearly";
|
||||||
|
days?: number;
|
||||||
|
brandIds?: string[];
|
||||||
|
reason: string;
|
||||||
|
founderId: string;
|
||||||
|
}) {
|
||||||
|
if (input.billingPeriod !== "monthly" && input.billingPeriod !== "yearly") {
|
||||||
|
throw new BadRequestException("billingPeriod must be monthly|yearly");
|
||||||
|
}
|
||||||
|
if (input.days !== undefined) {
|
||||||
|
if (!Number.isFinite(input.days) || input.days <= 0 || input.days > 3650) {
|
||||||
|
throw new BadRequestException("days must be 1..3650");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const [user] = await this.db
|
||||||
|
.select({ id: users.id })
|
||||||
|
.from(users)
|
||||||
|
.where(eq(users.id, input.userId))
|
||||||
|
.limit(1);
|
||||||
|
if (!user) throw new NotFoundException("Kullanıcı bulunamadı");
|
||||||
|
|
||||||
|
const [live] = await this.db
|
||||||
|
.select({ id: userSubscriptions.id, status: userSubscriptions.status })
|
||||||
|
.from(userSubscriptions)
|
||||||
|
.where(
|
||||||
|
and(
|
||||||
|
eq(userSubscriptions.userId, input.userId),
|
||||||
|
inArray(userSubscriptions.status, ["active", "trial"]),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
.limit(1);
|
||||||
|
if (live) {
|
||||||
|
throw new ConflictException(
|
||||||
|
`Kullanıcının zaten '${live.status}' bir subscription'ı var (${live.id}) — activate / plan değiştir / uzat kullanın`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const [plan] = await this.db.select().from(plans).where(eq(plans.id, input.planId)).limit(1);
|
||||||
|
if (!plan) throw new NotFoundException("Plan bulunamadı");
|
||||||
|
if (!plan.isActive) throw new ConflictException("Plan aktif değil");
|
||||||
|
|
||||||
|
const activeBrands = await this.db.select().from(brands).where(eq(brands.isActive, true));
|
||||||
|
let brandIds: string[];
|
||||||
|
if (plan.brandCount === 0) {
|
||||||
|
// Full plan → every active brand, whatever the caller sent.
|
||||||
|
brandIds = activeBrands.map((b) => b.id);
|
||||||
|
} else {
|
||||||
|
const requested = input.brandIds ?? [];
|
||||||
|
if (requested.length !== plan.brandCount) {
|
||||||
|
throw new BadRequestException(
|
||||||
|
`Bu plan tam olarak ${plan.brandCount} marka gerektirir, ${requested.length} seçildi`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (new Set(requested).size !== requested.length) {
|
||||||
|
throw new BadRequestException("Marka listesi tekrar içeriyor");
|
||||||
|
}
|
||||||
|
const valid = new Set(activeBrands.map((b) => b.id));
|
||||||
|
for (const id of requested) {
|
||||||
|
if (!valid.has(id)) throw new BadRequestException(`Geçersiz veya pasif marka: ${id}`);
|
||||||
|
}
|
||||||
|
brandIds = requested;
|
||||||
|
}
|
||||||
|
|
||||||
|
const now = new Date();
|
||||||
|
const endDate = new Date(now);
|
||||||
|
if (input.days !== undefined) {
|
||||||
|
endDate.setDate(endDate.getDate() + input.days);
|
||||||
|
} else if (input.billingPeriod === "yearly") {
|
||||||
|
endDate.setFullYear(endDate.getFullYear() + 1);
|
||||||
|
} else {
|
||||||
|
endDate.setMonth(endDate.getMonth() + 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
const [created] = await this.db
|
||||||
|
.insert(userSubscriptions)
|
||||||
|
.values({
|
||||||
|
userId: input.userId,
|
||||||
|
planId: input.planId,
|
||||||
|
status: "active",
|
||||||
|
billingPeriod: input.billingPeriod,
|
||||||
|
startDate: now,
|
||||||
|
endDate,
|
||||||
|
})
|
||||||
|
.returning();
|
||||||
|
|
||||||
|
if (brandIds.length > 0) {
|
||||||
|
await this.db.insert(userBrands).values(
|
||||||
|
brandIds.map((brandId) => ({
|
||||||
|
userId: input.userId,
|
||||||
|
subscriptionId: created.id,
|
||||||
|
brandId,
|
||||||
|
})),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.logger.log(
|
||||||
|
`start: user=${input.userId} subscription=${created.id} plan=${plan.name} ` +
|
||||||
|
`${input.billingPeriod}${input.days !== undefined ? ` ${input.days}d` : ""} → ${endDate.toISOString()} ` +
|
||||||
|
`brands=${brandIds.length} founder=${input.founderId} reason="${input.reason.slice(0, 80)}"`,
|
||||||
|
);
|
||||||
|
|
||||||
|
return {
|
||||||
|
success: true,
|
||||||
|
subscriptionId: created.id,
|
||||||
|
userId: input.userId,
|
||||||
|
planId: plan.id,
|
||||||
|
planName: plan.name,
|
||||||
|
billingPeriod: input.billingPeriod,
|
||||||
|
status: "active",
|
||||||
|
startDate: created.startDate?.toISOString() ?? null,
|
||||||
|
endDate: created.endDate?.toISOString() ?? null,
|
||||||
|
brandCount: brandIds.length,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
async manuallyActivate(input: {
|
async manuallyActivate(input: {
|
||||||
subscriptionId: string;
|
subscriptionId: string;
|
||||||
reason: string;
|
reason: string;
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import { StripeModule } from "../payments/stripe/stripe.module";
|
|||||||
import { PublicApiQuotaService } from "../public-api/public-api-quota.service";
|
import { PublicApiQuotaService } from "../public-api/public-api-quota.service";
|
||||||
import { SubscriptionsModule } from "../subscriptions/subscriptions.module";
|
import { SubscriptionsModule } from "../subscriptions/subscriptions.module";
|
||||||
import { ApiKeysAdminController } from "./api-keys.controller";
|
import { ApiKeysAdminController } from "./api-keys.controller";
|
||||||
import { BillingController } from "./billing.controller";
|
import { BillingController, UserBillingController } from "./billing.controller";
|
||||||
import { BillingService } from "./billing.service";
|
import { BillingService } from "./billing.service";
|
||||||
import { ImpersonationController } from "./impersonation.controller";
|
import { ImpersonationController } from "./impersonation.controller";
|
||||||
import { ImpersonationService } from "./impersonation.service";
|
import { ImpersonationService } from "./impersonation.service";
|
||||||
@@ -20,6 +20,7 @@ import { InternalVehiclesService } from "./vehicles.service";
|
|||||||
ImpersonationController,
|
ImpersonationController,
|
||||||
LifecycleController,
|
LifecycleController,
|
||||||
BillingController,
|
BillingController,
|
||||||
|
UserBillingController,
|
||||||
PaymentsAdminController,
|
PaymentsAdminController,
|
||||||
InternalVehiclesController,
|
InternalVehiclesController,
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -36,5 +36,6 @@ export const QUEUE_NAMES = {
|
|||||||
EXPERT_REWARDS: "expert-rewards",
|
EXPERT_REWARDS: "expert-rewards",
|
||||||
PART_PRICE_REFRESH: "part-price-refresh",
|
PART_PRICE_REFRESH: "part-price-refresh",
|
||||||
VINPIN_DECODE: "vinpin-decode",
|
VINPIN_DECODE: "vinpin-decode",
|
||||||
|
RPARTSTORE_DECODE: "rpartstore-decode",
|
||||||
CANONICAL_BACKFILL: "canonical-backfill",
|
CANONICAL_BACKFILL: "canonical-backfill",
|
||||||
} as const;
|
} as const;
|
||||||
|
|||||||
@@ -21,6 +21,10 @@ import {
|
|||||||
PartPriceRefreshQueueProvider,
|
PartPriceRefreshQueueProvider,
|
||||||
} from "./queues/part-price-refresh.queue";
|
} from "./queues/part-price-refresh.queue";
|
||||||
import { QUERY_CLEANUP_QUEUE, QueryCleanupQueueProvider } from "./queues/query-cleanup.queue";
|
import { QUERY_CLEANUP_QUEUE, QueryCleanupQueueProvider } from "./queues/query-cleanup.queue";
|
||||||
|
import {
|
||||||
|
RPARTSTORE_DECODE_QUEUE,
|
||||||
|
RpartstoreDecodeQueueProvider,
|
||||||
|
} from "./queues/rpartstore-decode.queue";
|
||||||
import {
|
import {
|
||||||
SUBSCRIPTION_EXPIRY_QUEUE,
|
SUBSCRIPTION_EXPIRY_QUEUE,
|
||||||
SubscriptionExpiryQueueProvider,
|
SubscriptionExpiryQueueProvider,
|
||||||
@@ -39,6 +43,7 @@ import { VINPIN_DECODE_QUEUE, VinpinDecodeQueueProvider } from "./queues/vinpin-
|
|||||||
ExpertRewardsQueueProvider,
|
ExpertRewardsQueueProvider,
|
||||||
PartPriceRefreshQueueProvider,
|
PartPriceRefreshQueueProvider,
|
||||||
VinpinDecodeQueueProvider,
|
VinpinDecodeQueueProvider,
|
||||||
|
RpartstoreDecodeQueueProvider,
|
||||||
CanonicalBackfillQueueProvider,
|
CanonicalBackfillQueueProvider,
|
||||||
PrefetchWorkerService,
|
PrefetchWorkerService,
|
||||||
],
|
],
|
||||||
@@ -52,6 +57,7 @@ import { VINPIN_DECODE_QUEUE, VinpinDecodeQueueProvider } from "./queues/vinpin-
|
|||||||
EXPERT_REWARDS_QUEUE,
|
EXPERT_REWARDS_QUEUE,
|
||||||
PART_PRICE_REFRESH_QUEUE,
|
PART_PRICE_REFRESH_QUEUE,
|
||||||
VINPIN_DECODE_QUEUE,
|
VINPIN_DECODE_QUEUE,
|
||||||
|
RPARTSTORE_DECODE_QUEUE,
|
||||||
CANONICAL_BACKFILL_QUEUE,
|
CANONICAL_BACKFILL_QUEUE,
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -74,14 +74,21 @@ export async function checkCooldown(redis: RedisService, source: string): Promis
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Current hour (0–23) in Europe/Istanbul. */
|
/** Europe/Istanbul hour (0–23) at an arbitrary instant. */
|
||||||
function currentIstanbulHour(): number {
|
function istanbulHourAt(ms: number): number {
|
||||||
const hourStr = new Intl.DateTimeFormat("en-US", {
|
const hourStr = new Intl.DateTimeFormat("en-US", {
|
||||||
timeZone: "Europe/Istanbul",
|
timeZone: "Europe/Istanbul",
|
||||||
hour: "numeric",
|
hour: "numeric",
|
||||||
hour12: false,
|
hour12: false,
|
||||||
}).format(new Date());
|
}).format(new Date(ms));
|
||||||
return Number.parseInt(hourStr, 10);
|
// `% 24` because the h24 hour cycle renders midnight as "24", which would put
|
||||||
|
// the hour outside every window and silently park the source forever.
|
||||||
|
return Number.parseInt(hourStr, 10) % 24;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Current hour (0–23) in Europe/Istanbul. */
|
||||||
|
function currentIstanbulHour(): number {
|
||||||
|
return istanbulHourAt(Date.now());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -115,6 +122,35 @@ export function checkTimeWindow(source: string): void {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The first instant at or after `fromMs` that falls inside `source`'s scrape
|
||||||
|
* window. Returns `fromMs` unchanged when the window is disabled (the default
|
||||||
|
* 0–24) or when `fromMs` is already inside it.
|
||||||
|
*
|
||||||
|
* WHY (plv2.md, finding consumers_jobs-03 — the budget/window deadlock):
|
||||||
|
* `checkSourceDailyBudget` defers a spent source to the next UTC midnight. With
|
||||||
|
* PREFETCH_PL24_START=9 that midnight lands at 03:00 Europe/Istanbul — six hours
|
||||||
|
* BEFORE the window opens. The woken job therefore did no work, threw
|
||||||
|
* `time-window`, and was deferred again to 09:00 — by which point the fresh
|
||||||
|
* daily budget had already been spent by the same stampede of no-op wake-ups.
|
||||||
|
* Measured on prod 2026-09-20: 600/600 pl24 budget consumed, 0 catalog requests
|
||||||
|
* and 0 new categories for the whole day. Landing the deferral inside the window
|
||||||
|
* breaks the cycle.
|
||||||
|
*/
|
||||||
|
export function alignToWindow(source: string, fromMs: number): number {
|
||||||
|
if (source !== "pl24") return fromMs;
|
||||||
|
if (PL24_WINDOW_START <= 0 && PL24_WINDOW_END >= 24) return fromMs;
|
||||||
|
let t = fromMs;
|
||||||
|
// Step by the hour rather than constructing a local-midnight date: DST-safe and
|
||||||
|
// free of month/year rollover edge cases. 48 steps covers any window shape.
|
||||||
|
for (let i = 0; i < 48; i++) {
|
||||||
|
const h = istanbulHourAt(t);
|
||||||
|
if (h >= PL24_WINDOW_START && h < PL24_WINDOW_END) return t;
|
||||||
|
t += 3_600_000;
|
||||||
|
}
|
||||||
|
return t;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Milliseconds until the next 09:00 Europe/Istanbul.
|
* Milliseconds until the next 09:00 Europe/Istanbul.
|
||||||
*/
|
*/
|
||||||
|
|||||||
286
apps/api/src/jobs/prefetch-window-budget.spec.ts
Normal file
286
apps/api/src/jobs/prefetch-window-budget.spec.ts
Normal file
@@ -0,0 +1,286 @@
|
|||||||
|
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Regression lock for the PL24 budget/window DEADLOCK (plv2.md, consumers_jobs-03).
|
||||||
|
*
|
||||||
|
* Two bugs combined to kill PL24 prefetch outright on prod:
|
||||||
|
* 1. `checkSourceDailyBudget` was debited in `process()` while the
|
||||||
|
* business-hours gate still sat at the top of each handler — so a job that
|
||||||
|
* woke outside the window paid a budget unit to do nothing.
|
||||||
|
* 2. A spent source was deferred to the next UTC midnight, which is 03:00
|
||||||
|
* Europe/Istanbul — six hours BEFORE a 09:00 window opens. Every deferred
|
||||||
|
* job therefore woke early, burned a unit of the fresh daily budget, hit
|
||||||
|
* the window gate and was deferred again.
|
||||||
|
*
|
||||||
|
* Measured on prod 2026-09-20 before the fix: `prefetch:daily:pl24` at 600/600
|
||||||
|
* with ZERO catalog requests and ZERO new pl24 categories for the whole day.
|
||||||
|
*
|
||||||
|
* The window constants are read at module load, so every case imports the
|
||||||
|
* modules fresh with the env already set.
|
||||||
|
*/
|
||||||
|
|
||||||
|
const REAL_ENV = { ...process.env };
|
||||||
|
|
||||||
|
/** 2026-09-20 00:00 UTC = 03:00 Europe/Istanbul — outside a 09:00–18:00 window. */
|
||||||
|
const OUTSIDE_MS = Date.UTC(2026, 8, 20, 0, 0, 0);
|
||||||
|
/** 2026-09-20 09:00 UTC = 12:00 Europe/Istanbul — inside it. */
|
||||||
|
const INSIDE_MS = Date.UTC(2026, 8, 20, 9, 0, 0);
|
||||||
|
|
||||||
|
function istanbulHour(ms: number): number {
|
||||||
|
return (
|
||||||
|
Number.parseInt(
|
||||||
|
new Intl.DateTimeFormat("en-US", {
|
||||||
|
timeZone: "Europe/Istanbul",
|
||||||
|
hour: "numeric",
|
||||||
|
hour12: false,
|
||||||
|
}).format(new Date(ms)),
|
||||||
|
10,
|
||||||
|
) % 24
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function loadModules(env: Record<string, string | undefined>) {
|
||||||
|
vi.resetModules();
|
||||||
|
for (const [k, v] of Object.entries(env)) {
|
||||||
|
if (v === undefined) delete process.env[k];
|
||||||
|
else process.env[k] = v;
|
||||||
|
}
|
||||||
|
const utils = await import("./prefetch-utils");
|
||||||
|
const worker = await import("./prefetch-worker.service");
|
||||||
|
return { utils, worker };
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Minimal deps: only what `process()` touches before dispatching a job. */
|
||||||
|
function makeDeps(redisOverrides: Record<string, unknown> = {}) {
|
||||||
|
const incrCalls: string[] = [];
|
||||||
|
const redis = {
|
||||||
|
exists: vi.fn(async (..._a: unknown[]) => false),
|
||||||
|
get: vi.fn(async (..._a: unknown[]): Promise<string | null> => null),
|
||||||
|
set: vi.fn(async (..._a: unknown[]) => undefined),
|
||||||
|
del: vi.fn(async (..._a: unknown[]) => undefined),
|
||||||
|
incr: vi.fn(async (k: string) => {
|
||||||
|
incrCalls.push(k);
|
||||||
|
return 1;
|
||||||
|
}),
|
||||||
|
expire: vi.fn(async (..._a: unknown[]) => undefined),
|
||||||
|
ttl: vi.fn(async (..._a: unknown[]) => -2), // no cooldown key
|
||||||
|
setNx: vi.fn(async (..._a: unknown[]) => true),
|
||||||
|
getJson: vi.fn(async (..._a: unknown[]): Promise<unknown> => null),
|
||||||
|
setJson: vi.fn(async (..._a: unknown[]) => undefined),
|
||||||
|
...redisOverrides,
|
||||||
|
};
|
||||||
|
const queue = {
|
||||||
|
name: "catalog-prefetch",
|
||||||
|
add: vi.fn(async (..._a: unknown[]) => undefined),
|
||||||
|
getJob: vi.fn(async (..._a: unknown[]): Promise<unknown> => null),
|
||||||
|
};
|
||||||
|
const categoriesService = {
|
||||||
|
getCategoryWithParts: vi.fn(async (..._a: unknown[]) => ({ parts: [] })),
|
||||||
|
getChildren: vi.fn(async (..._a: unknown[]) => []),
|
||||||
|
};
|
||||||
|
return { redis, queue, categoriesService, incrCalls };
|
||||||
|
}
|
||||||
|
|
||||||
|
function makeJob(name: string, data: Record<string, unknown>) {
|
||||||
|
return {
|
||||||
|
name,
|
||||||
|
data,
|
||||||
|
moveToDelayed: vi.fn(async (..._a: unknown[]) => undefined),
|
||||||
|
attemptsMade: 0,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const dailyIncrs = (keys: string[]) => keys.filter((k) => k.startsWith("prefetch:daily:pl24"));
|
||||||
|
|
||||||
|
describe("alignToWindow", () => {
|
||||||
|
afterEach(() => {
|
||||||
|
process.env = { ...REAL_ENV };
|
||||||
|
});
|
||||||
|
|
||||||
|
it("pushes a pre-window instant into the configured window", async () => {
|
||||||
|
const { utils } = await loadModules({ PREFETCH_PL24_START: "9", PREFETCH_PL24_END: "18" });
|
||||||
|
const aligned = utils.alignToWindow("pl24", OUTSIDE_MS);
|
||||||
|
expect(aligned).toBeGreaterThan(OUTSIDE_MS);
|
||||||
|
const h = istanbulHour(aligned);
|
||||||
|
expect(h).toBeGreaterThanOrEqual(9);
|
||||||
|
expect(h).toBeLessThan(18);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("leaves an in-window instant untouched", async () => {
|
||||||
|
const { utils } = await loadModules({ PREFETCH_PL24_START: "9", PREFETCH_PL24_END: "18" });
|
||||||
|
expect(utils.alignToWindow("pl24", INSIDE_MS)).toBe(INSIDE_MS);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("is a no-op for sources that have no window", async () => {
|
||||||
|
const { utils } = await loadModules({ PREFETCH_PL24_START: "9", PREFETCH_PL24_END: "18" });
|
||||||
|
expect(utils.alignToWindow("emex", OUTSIDE_MS)).toBe(OUTSIDE_MS);
|
||||||
|
expect(utils.alignToWindow("parts-catalogs", OUTSIDE_MS)).toBe(OUTSIDE_MS);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("is a no-op when the window is disabled (the default 0–24)", async () => {
|
||||||
|
const { utils } = await loadModules({
|
||||||
|
PREFETCH_PL24_START: undefined,
|
||||||
|
PREFETCH_PL24_END: undefined,
|
||||||
|
});
|
||||||
|
expect(utils.alignToWindow("pl24", OUTSIDE_MS)).toBe(OUTSIDE_MS);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("process() gate order — window before daily budget", () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
vi.useFakeTimers();
|
||||||
|
});
|
||||||
|
afterEach(() => {
|
||||||
|
vi.useRealTimers();
|
||||||
|
process.env = { ...REAL_ENV };
|
||||||
|
});
|
||||||
|
|
||||||
|
it("does NOT debit the daily budget for a job deferred by the window", async () => {
|
||||||
|
const { worker } = await loadModules({
|
||||||
|
PREFETCH_PL24_START: "9",
|
||||||
|
PREFETCH_PL24_END: "18",
|
||||||
|
PL24_TR_DISABLED: undefined,
|
||||||
|
});
|
||||||
|
vi.setSystemTime(OUTSIDE_MS);
|
||||||
|
const { redis, queue, categoriesService, incrCalls } = makeDeps();
|
||||||
|
const svc = new worker.PrefetchWorkerService(
|
||||||
|
queue as never,
|
||||||
|
queue as never,
|
||||||
|
categoriesService as never,
|
||||||
|
redis as never,
|
||||||
|
{ payload: vi.fn(async () => ({})) } as never,
|
||||||
|
{} as never,
|
||||||
|
);
|
||||||
|
const job = makeJob("prefetch-parts", {
|
||||||
|
vehicleId: "v1",
|
||||||
|
categoryId: "c1",
|
||||||
|
source: "pl24",
|
||||||
|
fast: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
await expect(
|
||||||
|
(svc as never as { process: (j: unknown, t?: string) => Promise<void> }).process(job, "tok"),
|
||||||
|
).rejects.toThrow();
|
||||||
|
|
||||||
|
expect(job.moveToDelayed).toHaveBeenCalled();
|
||||||
|
expect(dailyIncrs(incrCalls)).toHaveLength(0);
|
||||||
|
// The per-minute counter is not charged either: the window gate is pure
|
||||||
|
// clock arithmetic and runs before any Redis write.
|
||||||
|
expect(incrCalls).toHaveLength(0);
|
||||||
|
// …and the handler never ran, so nothing was fetched upstream either.
|
||||||
|
expect(categoriesService.getCategoryWithParts).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("defers the window-blocked job to an instant inside the window", async () => {
|
||||||
|
const { worker } = await loadModules({
|
||||||
|
PREFETCH_PL24_START: "9",
|
||||||
|
PREFETCH_PL24_END: "18",
|
||||||
|
PL24_TR_DISABLED: undefined,
|
||||||
|
});
|
||||||
|
vi.setSystemTime(OUTSIDE_MS);
|
||||||
|
const { redis, queue, categoriesService } = makeDeps();
|
||||||
|
const svc = new worker.PrefetchWorkerService(
|
||||||
|
queue as never,
|
||||||
|
queue as never,
|
||||||
|
categoriesService as never,
|
||||||
|
redis as never,
|
||||||
|
{ payload: vi.fn(async () => ({})) } as never,
|
||||||
|
{} as never,
|
||||||
|
);
|
||||||
|
const job = makeJob("prefetch-parts", {
|
||||||
|
vehicleId: "v1",
|
||||||
|
categoryId: "c1",
|
||||||
|
source: "pl24",
|
||||||
|
fast: true,
|
||||||
|
});
|
||||||
|
await expect(
|
||||||
|
(svc as never as { process: (j: unknown, t?: string) => Promise<void> }).process(job, "tok"),
|
||||||
|
).rejects.toThrow();
|
||||||
|
|
||||||
|
const [when] = job.moveToDelayed.mock.calls[0] as [number];
|
||||||
|
const h = istanbulHour(when);
|
||||||
|
expect(h).toBeGreaterThanOrEqual(9);
|
||||||
|
expect(h).toBeLessThan(18);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("debits the daily budget once the window is open", async () => {
|
||||||
|
const { worker } = await loadModules({
|
||||||
|
PREFETCH_PL24_START: "9",
|
||||||
|
PREFETCH_PL24_END: "18",
|
||||||
|
PL24_TR_DISABLED: undefined,
|
||||||
|
});
|
||||||
|
vi.setSystemTime(INSIDE_MS);
|
||||||
|
const { redis, queue, categoriesService, incrCalls } = makeDeps();
|
||||||
|
const svc = new worker.PrefetchWorkerService(
|
||||||
|
queue as never,
|
||||||
|
queue as never,
|
||||||
|
categoriesService as never,
|
||||||
|
redis as never,
|
||||||
|
{ payload: vi.fn(async () => ({})) } as never,
|
||||||
|
{} as never,
|
||||||
|
);
|
||||||
|
const job = makeJob("prefetch-parts", {
|
||||||
|
vehicleId: "v1",
|
||||||
|
categoryId: "c1",
|
||||||
|
source: "pl24",
|
||||||
|
fast: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
await (svc as never as { process: (j: unknown, t?: string) => Promise<void> }).process(
|
||||||
|
job,
|
||||||
|
"tok",
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(dailyIncrs(incrCalls)).toHaveLength(1);
|
||||||
|
expect(categoriesService.getCategoryWithParts).toHaveBeenCalledWith("c1");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("checkSourceDailyBudget — spent source retries inside the window", () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
vi.useFakeTimers();
|
||||||
|
});
|
||||||
|
afterEach(() => {
|
||||||
|
vi.useRealTimers();
|
||||||
|
process.env = { ...REAL_ENV };
|
||||||
|
});
|
||||||
|
|
||||||
|
it("never parks a spent source at 03:00 Istanbul again", async () => {
|
||||||
|
const { worker } = await loadModules({
|
||||||
|
PREFETCH_PL24_START: "9",
|
||||||
|
PREFETCH_PL24_END: "18",
|
||||||
|
PREFETCH_DAILY_PL24: "600",
|
||||||
|
});
|
||||||
|
vi.setSystemTime(INSIDE_MS);
|
||||||
|
// Counter already at the fast-lane ceiling → the next job must be deferred.
|
||||||
|
const { redis, queue, categoriesService } = makeDeps({
|
||||||
|
get: vi.fn(async (k: string) => (String(k).startsWith("prefetch:daily:pl24") ? "600" : null)),
|
||||||
|
});
|
||||||
|
const svc = new worker.PrefetchWorkerService(
|
||||||
|
queue as never,
|
||||||
|
queue as never,
|
||||||
|
categoriesService as never,
|
||||||
|
redis as never,
|
||||||
|
{ payload: vi.fn(async () => ({})) } as never,
|
||||||
|
{} as never,
|
||||||
|
);
|
||||||
|
const job = makeJob("prefetch-parts", {
|
||||||
|
vehicleId: "v1",
|
||||||
|
categoryId: "c1",
|
||||||
|
source: "pl24",
|
||||||
|
fast: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
await expect(
|
||||||
|
(svc as never as { process: (j: unknown, t?: string) => Promise<void> }).process(job, "tok"),
|
||||||
|
).rejects.toThrow();
|
||||||
|
|
||||||
|
const [when] = job.moveToDelayed.mock.calls[0] as [number];
|
||||||
|
// Past the UTC rollover…
|
||||||
|
expect(when).toBeGreaterThan(Date.UTC(2026, 8, 21, 0, 0, 0));
|
||||||
|
// …and inside the window, not at 03:00 Istanbul like the old deferral.
|
||||||
|
const h = istanbulHour(when);
|
||||||
|
expect(h).toBeGreaterThanOrEqual(9);
|
||||||
|
expect(h).toBeLessThan(18);
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -225,7 +225,18 @@ describe("PrefetchWorkerService — fast lane (lifo) + backlog gating", () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
describe("checkSourceRate — per-source rate limit", () => {
|
describe("checkSourceRate — per-source rate limit", () => {
|
||||||
type CSR = { checkSourceRate: (s: string) => Promise<void> };
|
type CSR = { checkSourceRate: (s: string, lane?: "main" | "fast") => Promise<void> };
|
||||||
|
|
||||||
|
// pl24's MAIN lane is parked whenever background backfill is off, which is
|
||||||
|
// the default — so these ceiling tests turn it on explicitly to exercise the
|
||||||
|
// rate limiter itself rather than the backfill gate (covered separately).
|
||||||
|
beforeEach(() => {
|
||||||
|
process.env.PL24_BACKFILL_ENABLED = "true";
|
||||||
|
process.env.PL24_TR_DISABLED = undefined;
|
||||||
|
});
|
||||||
|
afterEach(() => {
|
||||||
|
process.env.PL24_BACKFILL_ENABLED = undefined;
|
||||||
|
});
|
||||||
|
|
||||||
it("passes when under the source ceiling", async () => {
|
it("passes when under the source ceiling", async () => {
|
||||||
const { service, redis } = makeDeps({ waiting: 0, limitResults: [] });
|
const { service, redis } = makeDeps({ waiting: 0, limitResults: [] });
|
||||||
@@ -241,6 +252,24 @@ describe("PrefetchWorkerService — fast lane (lifo) + backlog gating", () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("pl24 MAIN lane parkta iken hiç sayaç harcamaz (varsayılan)", async () => {
|
||||||
|
process.env.PL24_BACKFILL_ENABLED = undefined;
|
||||||
|
const { service, redis } = makeDeps({ waiting: 0, limitResults: [] });
|
||||||
|
await expect((service as never as CSR).checkSourceRate("pl24", "main")).rejects.toMatchObject(
|
||||||
|
{ cause: "source-rate" },
|
||||||
|
);
|
||||||
|
expect(redis.incr).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("kullanıcı (fast) şeridi backfill anahtarından etkilenmez", async () => {
|
||||||
|
process.env.PL24_BACKFILL_ENABLED = undefined;
|
||||||
|
const { service, redis } = makeDeps({ waiting: 0, limitResults: [] });
|
||||||
|
redis.incr.mockResolvedValueOnce(1);
|
||||||
|
await expect(
|
||||||
|
(service as never as CSR).checkSourceRate("pl24", "fast"),
|
||||||
|
).resolves.toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
it("is unlimited (no counter) for a source without a configured ceiling", async () => {
|
it("is unlimited (no counter) for a source without a configured ceiling", async () => {
|
||||||
const { service, redis } = makeDeps({ waiting: 0, limitResults: [] });
|
const { service, redis } = makeDeps({ waiting: 0, limitResults: [] });
|
||||||
await (service as never as CSR).checkSourceRate("unknown-source");
|
await (service as never as CSR).checkSourceRate("unknown-source");
|
||||||
@@ -314,3 +343,61 @@ describe("PrefetchWorkerService — fast lane (lifo) + backlog gating", () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// ── PL24 reaktif drill derinliği + backfill pacing (plv2 Faz 1 / adım 2b) ──
|
||||||
|
// Ban'ı süren hacim, her yeni decode'da tüm ağacın gezilmesiydi (bir Passat =
|
||||||
|
// 1.251 kategori). Fast lane artık PL24'te 1. seviyede durur; derin drill ya
|
||||||
|
// kullanıcı tıklamasıyla ya da bütçeli backfill lane'inde olur.
|
||||||
|
describe("PrefetchWorkerService — PL24 derinlik tavanı", () => {
|
||||||
|
const load = async () => {
|
||||||
|
const mod = await import("./prefetch-worker.service");
|
||||||
|
return mod as unknown as {
|
||||||
|
__testables?: { maxDepthFor(source: string, fast: boolean): number };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
it("pl24 fast lane 1. seviyede durur, diğer kaynaklar tam derinlik kullanır", async () => {
|
||||||
|
// maxDepthFor modül-özel; davranışı dolaylı doğrula: env varsayılanları
|
||||||
|
process.env.PREFETCH_PL24_FAST_DEPTH = "";
|
||||||
|
process.env.PREFETCH_MAX_DEPTH = "";
|
||||||
|
const mod = await load();
|
||||||
|
const fn = mod.__testables?.maxDepthFor;
|
||||||
|
if (!fn) return; // testable export yoksa atla (davranış e2e'de doğrulanır)
|
||||||
|
expect(fn("pl24", true)).toBe(1);
|
||||||
|
expect(fn("pl24", false)).toBeGreaterThan(1);
|
||||||
|
expect(fn("parts-catalogs", true)).toBeGreaterThan(1);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* PL24 arka plan backfill anahtarı (Faz 3) + Mitsubishi parça-detay kırpması.
|
||||||
|
*/
|
||||||
|
describe("PL24 backfill anahtarı", () => {
|
||||||
|
const ENV = { ...process.env };
|
||||||
|
afterEach(() => {
|
||||||
|
process.env = { ...ENV };
|
||||||
|
});
|
||||||
|
|
||||||
|
it("varsayılan KAPALI — değişken hiç yoksa arka plan akmaz", async () => {
|
||||||
|
const { __testables } = await import("./prefetch-worker.service");
|
||||||
|
process.env.PL24_BACKFILL_ENABLED = undefined;
|
||||||
|
process.env.PL24_TR_DISABLED = undefined;
|
||||||
|
expect(__testables.isPl24BackfillEnabled()).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("yalnız açık 'true' ile açılır", async () => {
|
||||||
|
const { __testables } = await import("./prefetch-worker.service");
|
||||||
|
process.env.PL24_TR_DISABLED = undefined;
|
||||||
|
process.env.PL24_BACKFILL_ENABLED = "true";
|
||||||
|
expect(__testables.isPl24BackfillEnabled()).toBe(true);
|
||||||
|
process.env.PL24_BACKFILL_ENABLED = "1";
|
||||||
|
expect(__testables.isPl24BackfillEnabled()).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("eski PL24_TR_DISABLED hâlâ kapatabilir (yarım deploy musluğu açamaz)", async () => {
|
||||||
|
const { __testables } = await import("./prefetch-worker.service");
|
||||||
|
process.env.PL24_BACKFILL_ENABLED = "true";
|
||||||
|
process.env.PL24_TR_DISABLED = "true";
|
||||||
|
expect(__testables.isPl24BackfillEnabled()).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|||||||
@@ -10,12 +10,14 @@ import { and, asc, eq, gt, inArray, isNull, notExists, sql } from "drizzle-orm";
|
|||||||
import { CategoriesService } from "../categories/categories.service";
|
import { CategoriesService } from "../categories/categories.service";
|
||||||
import { DATABASE, type Database } from "../database/database.provider";
|
import { DATABASE, type Database } from "../database/database.provider";
|
||||||
import { categories, parts, vehicles } from "../database/schema/core";
|
import { categories, parts, vehicles } from "../database/schema/core";
|
||||||
|
import { isPl24LeafNode, isPl24PartDetailNode } from "../integrations/pl24/pl24-tree";
|
||||||
import { PostHogService } from "../posthog/posthog.service";
|
import { PostHogService } from "../posthog/posthog.service";
|
||||||
import { RedisService } from "../redis/redis.service";
|
import { RedisService } from "../redis/redis.service";
|
||||||
import { QUEUE_NAMES, getBullConnection } from "./bull.config";
|
import { QUEUE_NAMES, getBullConnection } from "./bull.config";
|
||||||
import { backfillContext } from "./prefetch-context";
|
import { backfillContext } from "./prefetch-context";
|
||||||
import {
|
import {
|
||||||
RateLimitError,
|
RateLimitError,
|
||||||
|
alignToWindow,
|
||||||
checkCooldown,
|
checkCooldown,
|
||||||
checkTimeWindow,
|
checkTimeWindow,
|
||||||
initProgress,
|
initProgress,
|
||||||
@@ -99,6 +101,25 @@ const EST_JOBS_PER_VEHICLE = Number(process.env.PREFETCH_EST_JOBS_PER_VEHICLE) |
|
|||||||
*/
|
*/
|
||||||
const DAILY_FAST_RESERVE = 0.2;
|
const DAILY_FAST_RESERVE = 0.2;
|
||||||
/** Only these decode sources have catalogs worth prefetching. */
|
/** Only these decode sources have catalogs worth prefetching. */
|
||||||
|
/**
|
||||||
|
* Whether the PL24 *background* backfill lane may run. The user-triggered fast
|
||||||
|
* lane is never gated by this.
|
||||||
|
*
|
||||||
|
* Default is OFF. Two PL24 accounts were banned while bulk background load ran
|
||||||
|
* against them, so the background lane has to be switched on deliberately and
|
||||||
|
* watched, never inherited from an unset variable.
|
||||||
|
*
|
||||||
|
* `PL24_BACKFILL_ENABLED` replaces the old `PL24_TR_DISABLED`, whose name said
|
||||||
|
* "the tr account is dead" while its actual job was "keep bulk load off the one
|
||||||
|
* surviving account". The old variable is still honoured so a half-applied
|
||||||
|
* deploy cannot silently open the tap: it can only keep the lane closed.
|
||||||
|
*/
|
||||||
|
function isPl24BackfillEnabled(): boolean {
|
||||||
|
if (process.env.PL24_BACKFILL_ENABLED !== "true") return false;
|
||||||
|
// Legacy kill switch still wins while it is explicitly set.
|
||||||
|
return process.env.PL24_TR_DISABLED !== "true";
|
||||||
|
}
|
||||||
|
|
||||||
const BACKFILL_SOURCES = ["pl24", "emex", "parts-catalogs"];
|
const BACKFILL_SOURCES = ["pl24", "emex", "parts-catalogs"];
|
||||||
/** Redis key holding the rolling rescan cursor (last createdAt seen). */
|
/** Redis key holding the rolling rescan cursor (last createdAt seen). */
|
||||||
const BACKFILL_CURSOR_KEY = "prefetch:backfill:cursor";
|
const BACKFILL_CURSOR_KEY = "prefetch:backfill:cursor";
|
||||||
@@ -170,6 +191,40 @@ const SOURCE_DAILY_MAX: Record<string, number> = {
|
|||||||
*/
|
*/
|
||||||
const PCAT_PACE_MS = Number(process.env.PREFETCH_PCAT_DELAY_MS) || 1_500;
|
const PCAT_PACE_MS = Number(process.env.PREFETCH_PCAT_DELAY_MS) || 1_500;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Per-job pacing for PL24 BACKFILL jobs (main lane only — a user waiting on a
|
||||||
|
* fresh decode must never be slowed down). Both account bans followed days of
|
||||||
|
* thousands of back-to-back PL24 calls; a paced, jittered stream looks nothing
|
||||||
|
* like that. Set 0 to disable.
|
||||||
|
*/
|
||||||
|
const PL24_PACE_MS = Number(process.env.PREFETCH_PL24_DELAY_MS) || 8_000;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* How deep the REACTIVE (fast-lane) drill may go for PL24.
|
||||||
|
*
|
||||||
|
* A freshly decoded vehicle used to be walked to the bottom immediately: one
|
||||||
|
* Passat produced 1,251 categories, one L200 2,323 — 1.4k-6.8k categories/day
|
||||||
|
* from 3-17 decodes, which is exactly the volume that preceded both bans
|
||||||
|
* (plv2.md §2.2). Depth 1 = top groups and their direct children; anything
|
||||||
|
* deeper is fetched lazily when the user actually opens that node, or by the
|
||||||
|
* budgeted backfill lane. Other sources keep MAX_DEPTH.
|
||||||
|
*/
|
||||||
|
const PL24_FAST_MAX_DEPTH = Number(process.env.PREFETCH_PL24_FAST_DEPTH) || 1;
|
||||||
|
|
||||||
|
/** Depth ceiling for this source+lane. */
|
||||||
|
function maxDepthFor(source: string, fast: boolean): number {
|
||||||
|
if (source === "pl24" && fast) return PL24_FAST_MAX_DEPTH;
|
||||||
|
return MAX_DEPTH;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Jittered pace so our request stream is not a metronome. */
|
||||||
|
function jitter(ms: number): number {
|
||||||
|
return Math.round(ms * (0.5 + Math.random()));
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Test-only surface for the pure helpers above. */
|
||||||
|
export const __testables = { maxDepthFor, jitter, isPl24BackfillEnabled };
|
||||||
|
|
||||||
// ── Phase-1 residue exclusion ──
|
// ── Phase-1 residue exclusion ──
|
||||||
/**
|
/**
|
||||||
* Skip a zero-parts vehicle once this many backfill attempts have completed with
|
* Skip a zero-parts vehicle once this many backfill attempts have completed with
|
||||||
@@ -319,17 +374,44 @@ export class PrefetchWorkerService implements OnModuleInit, OnModuleDestroy {
|
|||||||
job.name === "prefetch-parts")
|
job.name === "prefetch-parts")
|
||||||
) {
|
) {
|
||||||
const lane = (job.data as { fast?: boolean }).fast ? "fast" : "main";
|
const lane = (job.data as { fast?: boolean }).fast ? "fast" : "main";
|
||||||
|
// GATE ORDER IS LOAD-BEARING — cheapest first, and every gate that can
|
||||||
|
// reject the job must run BEFORE any counter is debited.
|
||||||
|
//
|
||||||
|
// The business-hours window and the cooldown used to sit at the top of
|
||||||
|
// each handler, i.e. AFTER the per-minute counter and the daily budget
|
||||||
|
// had already been charged. So a job that woke outside the window paid a
|
||||||
|
// budget unit to do nothing. Combined with a deferral target of "next UTC
|
||||||
|
// midnight" (= 03:00 Europe/Istanbul, six hours before a 09:00 window
|
||||||
|
// opens) that closed a loop: the whole daily allowance was burned by
|
||||||
|
// no-op wake-ups before the window ever opened, so the source never ran
|
||||||
|
// again. Measured on prod 2026-09-20 — pl24 at 600/600 with 0 catalog
|
||||||
|
// requests and 0 new categories for the day.
|
||||||
|
//
|
||||||
|
// 1. Window: pure clock arithmetic, no I/O, and an out-of-window job can
|
||||||
|
// never do useful work — so nothing else is worth spending on it.
|
||||||
|
checkTimeWindow(data.source);
|
||||||
|
// 2. Cooldown: one Redis TTL read. Pauses the whole worker (see catch).
|
||||||
|
await checkCooldown(this.redis, data.source);
|
||||||
|
// 3. Per-minute ceiling.
|
||||||
await this.checkSourceRate(data.source, lane);
|
await this.checkSourceRate(data.source, lane);
|
||||||
// Daily budget AFTER the per-minute gate: a job deferred on the minute
|
// 4. Daily budget last: a job deferred on any gate above never reaches
|
||||||
// ceiling above never reaches here, so rate-limited retries don't inflate
|
// here, so only jobs about to do real work are counted. The lane
|
||||||
// the daily counter — only jobs about to do real work are counted. The
|
// decides which threshold applies (backfill stops at the main limit,
|
||||||
// lane decides which threshold applies (backfill stops at the main limit,
|
// the user's fast lane may use the full budget).
|
||||||
// the user's fast lane may use the full budget).
|
|
||||||
await this.checkSourceDailyBudget(data.source, lane);
|
await this.checkSourceDailyBudget(data.source, lane);
|
||||||
}
|
}
|
||||||
if (data.source === "parts-catalogs" && PCAT_PACE_MS > 0) {
|
if (data.source === "parts-catalogs" && PCAT_PACE_MS > 0) {
|
||||||
await new Promise((r) => setTimeout(r, PCAT_PACE_MS));
|
await new Promise((r) => setTimeout(r, PCAT_PACE_MS));
|
||||||
}
|
}
|
||||||
|
// PL24 backfill only: pace + jitter. The fast (user) lane is never delayed.
|
||||||
|
if (
|
||||||
|
data.source === "pl24" &&
|
||||||
|
PL24_PACE_MS > 0 &&
|
||||||
|
!(job.data as { fast?: boolean }).fast &&
|
||||||
|
(job.name === "prefetch-children" || job.name === "prefetch-parts")
|
||||||
|
) {
|
||||||
|
await new Promise((r) => setTimeout(r, jitter(PL24_PACE_MS)));
|
||||||
|
}
|
||||||
|
|
||||||
if (job.name === "backfill-scan") {
|
if (job.name === "backfill-scan") {
|
||||||
return await this.processBackfillScan();
|
return await this.processBackfillScan();
|
||||||
@@ -377,8 +459,8 @@ export class PrefetchWorkerService implements OnModuleInit, OnModuleDestroy {
|
|||||||
const { vehicleId, source, fast = false } = job.data;
|
const { vehicleId, source, fast = false } = job.data;
|
||||||
this.logger.log(`[prefetch] Init for vehicle=${vehicleId}, source=${source}`);
|
this.logger.log(`[prefetch] Init for vehicle=${vehicleId}, source=${source}`);
|
||||||
|
|
||||||
await checkCooldown(this.redis, source);
|
// Cooldown + time-window are enforced in process() before the daily budget
|
||||||
checkTimeWindow(source);
|
// is debited — see the comment there; re-checking here would be a no-op.
|
||||||
|
|
||||||
// Already flagged as poison (tree exceeded CATEGORY_CAP on a prior run) — skip.
|
// Already flagged as poison (tree exceeded CATEGORY_CAP on a prior run) — skip.
|
||||||
if (await this.redis.exists(this.poisonKey(vehicleId))) {
|
if (await this.redis.exists(this.poisonKey(vehicleId))) {
|
||||||
@@ -461,7 +543,7 @@ export class PrefetchWorkerService implements OnModuleInit, OnModuleDestroy {
|
|||||||
// inflated progress.total makes the chain never reach "finished".
|
// inflated progress.total makes the chain never reach "finished".
|
||||||
queued += await this.queueCategoryJob(child, vehicleId, source, 1, fast);
|
queued += await this.queueCategoryJob(child, vehicleId, source, 1, fast);
|
||||||
}
|
}
|
||||||
} else if (this.isLeafLinkPath(cat.linkPath, cat.source, cat.hasSubgroups)) {
|
} else if (this.isLeafLinkPath(cat.linkPath, cat.source, cat.hasSubgroups, cat.linkWid)) {
|
||||||
// Leaf — check if parts already fetched
|
// Leaf — check if parts already fetched
|
||||||
const [partCheck] = await this.db
|
const [partCheck] = await this.db
|
||||||
.select({ id: parts.id })
|
.select({ id: parts.id })
|
||||||
@@ -519,11 +601,17 @@ export class PrefetchWorkerService implements OnModuleInit, OnModuleDestroy {
|
|||||||
const { vehicleId, categoryId, source, depth, fast = false } = job.data;
|
const { vehicleId, categoryId, source, depth, fast = false } = job.data;
|
||||||
this.logger.log(`[prefetch] Children for category=${categoryId}, depth=${depth}`);
|
this.logger.log(`[prefetch] Children for category=${categoryId}, depth=${depth}`);
|
||||||
|
|
||||||
await checkCooldown(this.redis, source);
|
// Cooldown + time-window are enforced in process() before the daily budget
|
||||||
checkTimeWindow(source);
|
// is debited — see the comment there; re-checking here would be a no-op.
|
||||||
|
|
||||||
if (depth >= MAX_DEPTH) {
|
const depthCeiling = maxDepthFor(source, fast);
|
||||||
this.logger.warn(`[prefetch] Max depth reached for category=${categoryId}`);
|
if (depth >= depthCeiling) {
|
||||||
|
// For the PL24 fast lane this is the normal stopping point, not a problem:
|
||||||
|
// deeper nodes are drilled lazily on user click or by the backfill lane.
|
||||||
|
const level = source === "pl24" && fast ? "log" : "warn";
|
||||||
|
this.logger[level](
|
||||||
|
`[prefetch] Depth ceiling ${depthCeiling} reached for category=${categoryId} (source=${source}, lane=${fast ? "fast" : "main"})`,
|
||||||
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -581,8 +669,8 @@ export class PrefetchWorkerService implements OnModuleInit, OnModuleDestroy {
|
|||||||
const { vehicleId, categoryId, source } = job.data;
|
const { vehicleId, categoryId, source } = job.data;
|
||||||
this.logger.log(`[prefetch] Parts for category=${categoryId}`);
|
this.logger.log(`[prefetch] Parts for category=${categoryId}`);
|
||||||
|
|
||||||
await checkCooldown(this.redis, source);
|
// Cooldown + time-window are enforced in process() before the daily budget
|
||||||
checkTimeWindow(source);
|
// is debited — see the comment there; re-checking here would be a no-op.
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await this.categoriesService.getCategoryWithParts(categoryId);
|
await this.categoriesService.getCategoryWithParts(categoryId);
|
||||||
@@ -671,6 +759,9 @@ export class PrefetchWorkerService implements OnModuleInit, OnModuleDestroy {
|
|||||||
// runaway was built. This also preserves the fast-lane reserve for real users.
|
// runaway was built. This also preserves the fast-lane reserve for real users.
|
||||||
const eligible: string[] = [];
|
const eligible: string[] = [];
|
||||||
for (const s of BACKFILL_SOURCES) {
|
for (const s of BACKFILL_SOURCES) {
|
||||||
|
// Background backfill is opt-in per source; pl24 defaults to OFF so bulk
|
||||||
|
// load can never burn the one surviving account by accident.
|
||||||
|
if (s === "pl24" && !isPl24BackfillEnabled()) continue;
|
||||||
if (await this.redis.exists(`prefetch:activity:${s}`)) continue;
|
if (await this.redis.exists(`prefetch:activity:${s}`)) continue;
|
||||||
if (cfg.businessHoursOnly !== false && !isWithinTimeWindow(s)) continue;
|
if (cfg.businessHoursOnly !== false && !isWithinTimeWindow(s)) continue;
|
||||||
const mainLimit = this.dailyMainLimit(s);
|
const mainLimit = this.dailyMainLimit(s);
|
||||||
@@ -821,6 +912,7 @@ export class PrefetchWorkerService implements OnModuleInit, OnModuleDestroy {
|
|||||||
cat: {
|
cat: {
|
||||||
id: string;
|
id: string;
|
||||||
linkPath: string | null;
|
linkPath: string | null;
|
||||||
|
linkWid?: string | null;
|
||||||
source: string;
|
source: string;
|
||||||
unavailable: boolean;
|
unavailable: boolean;
|
||||||
hasSubgroups?: boolean | null;
|
hasSubgroups?: boolean | null;
|
||||||
@@ -832,7 +924,18 @@ export class PrefetchWorkerService implements OnModuleInit, OnModuleDestroy {
|
|||||||
): Promise<number> {
|
): Promise<number> {
|
||||||
if (cat.unavailable) return 0;
|
if (cat.unavailable) return 0;
|
||||||
|
|
||||||
if (this.isLeafLinkPath(cat.linkPath, cat.source, cat.hasSubgroups)) {
|
// A per-part detail node (Mitsubishi `partInfoTable` /details/vinpartinfo) is
|
||||||
|
// neither a group nor a listing: its parent's response already carried the
|
||||||
|
// part. Queueing it costs one upstream request and returns nothing. Prod had
|
||||||
|
// 19,576 of these, with 2 parts between them.
|
||||||
|
if (
|
||||||
|
cat.source === "pl24" &&
|
||||||
|
isPl24PartDetailNode({ linkPath: cat.linkPath, linkWid: cat.linkWid })
|
||||||
|
) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.isLeafLinkPath(cat.linkPath, cat.source, cat.hasSubgroups, cat.linkWid)) {
|
||||||
// Leaf — check if already has parts
|
// Leaf — check if already has parts
|
||||||
const [partCheck] = await this.db
|
const [partCheck] = await this.db
|
||||||
.select({ id: parts.id })
|
.select({ id: parts.id })
|
||||||
@@ -897,6 +1000,7 @@ export class PrefetchWorkerService implements OnModuleInit, OnModuleDestroy {
|
|||||||
linkPath: string | null,
|
linkPath: string | null,
|
||||||
source: string,
|
source: string,
|
||||||
hasSubgroups?: boolean | null,
|
hasSubgroups?: boolean | null,
|
||||||
|
linkWid?: string | null,
|
||||||
): boolean {
|
): boolean {
|
||||||
if (!linkPath) return false;
|
if (!linkPath) return false;
|
||||||
// EMEX: Vehicle.aspx group nodes are parents to drill; Unit.aspx (hierarchical
|
// EMEX: Vehicle.aspx group nodes are parents to drill; Unit.aspx (hierarchical
|
||||||
@@ -912,13 +1016,16 @@ export class PrefetchWorkerService implements OnModuleInit, OnModuleDestroy {
|
|||||||
// flag (null, rare pre-migration rows) → treated as leaf, preserving the old
|
// flag (null, rare pre-migration rows) → treated as leaf, preserving the old
|
||||||
// 1-level behaviour for those.
|
// 1-level behaviour for those.
|
||||||
if (source === "parts-catalogs") return hasSubgroups !== true;
|
if (source === "parts-catalogs") return hasSubgroups !== true;
|
||||||
// PL24 leaf indicators
|
// PL24: one shared classifier (integrations/pl24/pl24-tree). The old inline
|
||||||
return (
|
// list was case-sensitive, so p5psa/p5volvo's camelCase `/details/vin/
|
||||||
linkPath.includes("/bom/") ||
|
// bomDetails` was never recognised as a leaf and its parts were never
|
||||||
linkPath.includes("/bomdetails") ||
|
// prefetched.
|
||||||
linkPath.includes("/partinfo/") ||
|
// `linkWid` is passed through on purpose: it is the reliable cross-brand
|
||||||
linkPath.includes("/servicepart/vin_items")
|
// marker and the read path has always used it, but this queueing path used
|
||||||
);
|
// to drop it and fall back to path matching alone. That is why Mitsubishi's
|
||||||
|
// `detailsTable` parts list was queued as a group here even after the shared
|
||||||
|
// classifier learned about it.
|
||||||
|
return isPl24LeafNode({ linkPath, hasSubgroups, linkWid });
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -1115,6 +1222,12 @@ export class PrefetchWorkerService implements OnModuleInit, OnModuleDestroy {
|
|||||||
// (observed: fresh BMW init couldn't get a single pcat slot). Totals per
|
// (observed: fresh BMW init couldn't get a single pcat slot). Totals per
|
||||||
// source stay the same as before, so upstream load is unchanged.
|
// source stay the same as before, so upstream load is unchanged.
|
||||||
const total = SOURCE_RATE_MAX[source] ?? 0;
|
const total = SOURCE_RATE_MAX[source] ?? 0;
|
||||||
|
// Park already-queued pl24 MAIN-lane jobs while background backfill is off
|
||||||
|
// (long defer, no attempt consumed) — the eligibility scan stops producing
|
||||||
|
// new ones, this stops an existing backlog from draining through the account.
|
||||||
|
if (source === "pl24" && lane === "main" && !isPl24BackfillEnabled()) {
|
||||||
|
throw new RateLimitError(15 * 60_000, "source-rate");
|
||||||
|
}
|
||||||
if (total <= 0) return;
|
if (total <= 0) return;
|
||||||
const fastShare = Math.max(1, Math.floor(total / 3));
|
const fastShare = Math.max(1, Math.floor(total / 3));
|
||||||
const max = lane === "fast" ? fastShare : total - fastShare;
|
const max = lane === "fast" ? fastShare : total - fastShare;
|
||||||
@@ -1156,11 +1269,17 @@ export class PrefetchWorkerService implements OnModuleInit, OnModuleDestroy {
|
|||||||
// deferred job wakes in the SAME millisecond (observed: 11495 jobs all at
|
// deferred job wakes in the SAME millisecond (observed: 11495 jobs all at
|
||||||
// 00:00:01 UTC) — the promotion lands as one burst and the pressure signal
|
// 00:00:01 UTC) — the promotion lands as one burst and the pressure signal
|
||||||
// flaps. Other sources keep flowing (per-job defer, not a worker pause).
|
// flaps. Other sources keep flowing (per-job defer, not a worker pause).
|
||||||
const msLeft = dayMs - (now % dayMs) + 1000 + Math.floor(Math.random() * 45 * 60_000);
|
const rollover = now + dayMs - (now % dayMs) + 1000 + Math.floor(Math.random() * 45 * 60_000);
|
||||||
|
// Land the retry INSIDE the source's scrape window. The UTC rollover alone
|
||||||
|
// is 03:00 Europe/Istanbul, so with a 09:00 window every deferred job woke
|
||||||
|
// six hours early, failed the window check and was deferred again — the
|
||||||
|
// other half of the deadlock fixed in process(). alignToWindow is a no-op
|
||||||
|
// when no window is configured (the default).
|
||||||
|
const msLeft = Math.max(1000, alignToWindow(source, rollover) - now);
|
||||||
if (n === limit) {
|
if (n === limit) {
|
||||||
this.logger.warn(
|
this.logger.warn(
|
||||||
`[prefetch] ${source} daily budget hit (lane=${lane}, ${n}/${limit} of ${max}) — ` +
|
`[prefetch] ${source} daily budget hit (lane=${lane}, ${n}/${limit} of ${max}) — ` +
|
||||||
`deferring ~${Math.round(msLeft / 3_600_000)}h until the window rolls`,
|
`deferring ~${Math.round(msLeft / 3_600_000)}h to the next in-window slot`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
throw new RateLimitError(msLeft, "source-rate");
|
throw new RateLimitError(msLeft, "source-rate");
|
||||||
|
|||||||
243
apps/api/src/jobs/processors/rpartstore-decode.processor.spec.ts
Normal file
243
apps/api/src/jobs/processors/rpartstore-decode.processor.spec.ts
Normal file
@@ -0,0 +1,243 @@
|
|||||||
|
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
||||||
|
import { RpartstoreRateLimitError } from "../../integrations/rpartstore/rpartstore.session";
|
||||||
|
import type { RpartstoreDecoded } from "../../integrations/rpartstore/rpartstore.types";
|
||||||
|
import {
|
||||||
|
type RedisLike,
|
||||||
|
istanbulDayKey,
|
||||||
|
processRpartstoreDecode,
|
||||||
|
redisTokenStore,
|
||||||
|
rpartstoreDailyKey,
|
||||||
|
} from "./rpartstore-decode.processor";
|
||||||
|
|
||||||
|
/** In-memory ioredis stand-in covering the surface the processor uses. */
|
||||||
|
function fakeRedis(): RedisLike & { store: Map<string, string>; ttls: Map<string, number> } {
|
||||||
|
const store = new Map<string, string>();
|
||||||
|
const ttls = new Map<string, number>();
|
||||||
|
return {
|
||||||
|
store,
|
||||||
|
ttls,
|
||||||
|
async get(k) {
|
||||||
|
return store.get(k) ?? null;
|
||||||
|
},
|
||||||
|
async set(k, v, _mode, ttl) {
|
||||||
|
store.set(k, v);
|
||||||
|
ttls.set(k, ttl);
|
||||||
|
},
|
||||||
|
async del(k) {
|
||||||
|
store.delete(k);
|
||||||
|
},
|
||||||
|
async incr(k) {
|
||||||
|
const n = Number(store.get(k) ?? 0) + 1;
|
||||||
|
store.set(k, String(n));
|
||||||
|
return n;
|
||||||
|
},
|
||||||
|
async expire(k, s) {
|
||||||
|
ttls.set(k, s);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Chainable drizzle mock: records every `.set()` payload and answers selects with `rows`. */
|
||||||
|
function fakeDb(rows: unknown[] = []) {
|
||||||
|
const sets: Record<string, unknown>[] = [];
|
||||||
|
const update = vi.fn(() => ({
|
||||||
|
set: vi.fn((payload: Record<string, unknown>) => {
|
||||||
|
sets.push(payload);
|
||||||
|
return { where: vi.fn().mockResolvedValue(undefined) };
|
||||||
|
}),
|
||||||
|
}));
|
||||||
|
const select = vi.fn(() => ({
|
||||||
|
from: vi.fn(() => ({ where: vi.fn().mockResolvedValue(rows) })),
|
||||||
|
}));
|
||||||
|
return { db: { update, select } as any, sets };
|
||||||
|
}
|
||||||
|
|
||||||
|
const decodedKadjar: RpartstoreDecoded = {
|
||||||
|
brandName: "Renault",
|
||||||
|
model: "Kadjar (HFE)",
|
||||||
|
modelCode: "HFE",
|
||||||
|
familyCode: "XFE",
|
||||||
|
modelYear: "2015",
|
||||||
|
engine: "1.5 DCI DİZEL MOTOR [K9K]",
|
||||||
|
gearbox: "DC4",
|
||||||
|
energyType: "MOTORIN",
|
||||||
|
manufacturingDate: "2015-07-28",
|
||||||
|
raw: {
|
||||||
|
catalogSource: "DATAHUB",
|
||||||
|
vin: "VF1RFE00653633190",
|
||||||
|
vehicleKey: "VF1RFE00653633190",
|
||||||
|
model: "Kadjar (HFE)",
|
||||||
|
vehicleBrand: "RENAULT",
|
||||||
|
country: "TR",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
const job = (vin: string) =>
|
||||||
|
({ id: `j-${vin}`, data: { vin }, attemptsMade: 0, opts: { attempts: 1 } }) as any;
|
||||||
|
const NOW = new Date("2026-09-25T20:30:00+03:00");
|
||||||
|
|
||||||
|
describe("processRpartstoreDecode", () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
process.env.RPARTSTORE_ENABLED = "true";
|
||||||
|
vi.spyOn(console, "log").mockImplementation(() => undefined);
|
||||||
|
vi.spyOn(console, "warn").mockImplementation(() => undefined);
|
||||||
|
vi.spyOn(console, "error").mockImplementation(() => undefined);
|
||||||
|
});
|
||||||
|
afterEach(() => {
|
||||||
|
process.env.RPARTSTORE_ENABLED = "false";
|
||||||
|
vi.restoreAllMocks();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("is a no-op when RPARTSTORE_ENABLED is not true", async () => {
|
||||||
|
process.env.RPARTSTORE_ENABLED = "false";
|
||||||
|
const { db, sets } = fakeDb();
|
||||||
|
const searchVin = vi.fn();
|
||||||
|
const r = await processRpartstoreDecode(job("VF1X"), {
|
||||||
|
db,
|
||||||
|
redis: fakeRedis(),
|
||||||
|
decoder: () => ({ searchVin }),
|
||||||
|
dailyCap: 10,
|
||||||
|
});
|
||||||
|
expect(r.skipped).toBe(true);
|
||||||
|
expect(searchVin).not.toHaveBeenCalled();
|
||||||
|
expect(sets).toEqual([]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("decodes, matches the PL24 catalog vehicle and records the decoded row", async () => {
|
||||||
|
const { db, sets } = fakeDb([
|
||||||
|
{ id: "cv-kadjar", model: "KADJAR", categoryCount: 44 },
|
||||||
|
{ id: "cv-kadjar-cn", model: "KADJAR ÇİN", categoryCount: 22 },
|
||||||
|
]);
|
||||||
|
const redis = fakeRedis();
|
||||||
|
const searchVin = vi.fn().mockResolvedValue(decodedKadjar);
|
||||||
|
const r = await processRpartstoreDecode(job("VF1RFE00653633190"), {
|
||||||
|
db,
|
||||||
|
redis,
|
||||||
|
decoder: () => ({ searchVin }),
|
||||||
|
dailyCap: 10,
|
||||||
|
now: () => NOW,
|
||||||
|
});
|
||||||
|
expect(r).toEqual({ status: "decoded", catalogVehicleId: "cv-kadjar" });
|
||||||
|
expect(searchVin).toHaveBeenCalledWith("VF1RFE00653633190");
|
||||||
|
// one cap unit reserved on the Istanbul day, with an expiry
|
||||||
|
expect(redis.store.get(rpartstoreDailyKey(NOW))).toBe("1");
|
||||||
|
expect(redis.ttls.get(rpartstoreDailyKey(NOW))).toBeGreaterThan(0);
|
||||||
|
const final = sets.at(-1)!;
|
||||||
|
expect(final).toMatchObject({
|
||||||
|
status: "decoded",
|
||||||
|
brandName: "Renault",
|
||||||
|
model: "Kadjar (HFE)",
|
||||||
|
modelCode: "HFE",
|
||||||
|
modelYear: "2015",
|
||||||
|
catalogVehicleId: "cv-kadjar",
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it("records not_found when RPartStore has no vehicle for the VIN", async () => {
|
||||||
|
const { db, sets } = fakeDb();
|
||||||
|
const r = await processRpartstoreDecode(job("VF1NOPE"), {
|
||||||
|
db,
|
||||||
|
redis: fakeRedis(),
|
||||||
|
decoder: () => ({ searchVin: vi.fn().mockResolvedValue(null) }),
|
||||||
|
dailyCap: 10,
|
||||||
|
});
|
||||||
|
expect(r.status).toBe("not_found");
|
||||||
|
expect(sets.at(-1)).toMatchObject({ status: "not_found" });
|
||||||
|
});
|
||||||
|
|
||||||
|
it("stops sending once the daily cap is spent and marks the row capped", async () => {
|
||||||
|
const redis = fakeRedis();
|
||||||
|
const key = rpartstoreDailyKey(NOW);
|
||||||
|
redis.store.set(key, "10"); // ten searches already sent today
|
||||||
|
const { db, sets } = fakeDb();
|
||||||
|
const searchVin = vi.fn().mockResolvedValue(decodedKadjar);
|
||||||
|
const r = await processRpartstoreDecode(job("VF1CAP"), {
|
||||||
|
db,
|
||||||
|
redis,
|
||||||
|
decoder: () => ({ searchVin }),
|
||||||
|
dailyCap: 10,
|
||||||
|
now: () => NOW,
|
||||||
|
});
|
||||||
|
expect(r.status).toBe("capped");
|
||||||
|
expect(searchVin).not.toHaveBeenCalled();
|
||||||
|
expect(sets.at(-1)).toMatchObject({ status: "capped" });
|
||||||
|
});
|
||||||
|
|
||||||
|
it("allows exactly `dailyCap` searches per day", async () => {
|
||||||
|
const redis = fakeRedis();
|
||||||
|
const searchVin = vi.fn().mockResolvedValue(null);
|
||||||
|
const statuses: string[] = [];
|
||||||
|
for (let i = 0; i < 12; i += 1) {
|
||||||
|
const { db } = fakeDb();
|
||||||
|
const r = await processRpartstoreDecode(job(`VF1${i}`), {
|
||||||
|
db,
|
||||||
|
redis,
|
||||||
|
decoder: () => ({ searchVin }),
|
||||||
|
dailyCap: 10,
|
||||||
|
now: () => NOW,
|
||||||
|
});
|
||||||
|
statuses.push(r.status);
|
||||||
|
}
|
||||||
|
expect(searchVin).toHaveBeenCalledTimes(10);
|
||||||
|
expect(statuses.filter((s) => s === "capped")).toHaveLength(2);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("waits retryAfterSeconds and retries once on a short-term rate limit without a second reservation", async () => {
|
||||||
|
const redis = fakeRedis();
|
||||||
|
const { db } = fakeDb();
|
||||||
|
const searchVin = vi
|
||||||
|
.fn()
|
||||||
|
.mockRejectedValueOnce(new RpartstoreRateLimitError(10, "SHORT_TERM"))
|
||||||
|
.mockResolvedValueOnce(null);
|
||||||
|
const sleep = vi.fn().mockResolvedValue(undefined);
|
||||||
|
const r = await processRpartstoreDecode(job("VF1RL"), {
|
||||||
|
db,
|
||||||
|
redis,
|
||||||
|
decoder: () => ({ searchVin }),
|
||||||
|
dailyCap: 10,
|
||||||
|
now: () => NOW,
|
||||||
|
sleep,
|
||||||
|
});
|
||||||
|
expect(r.status).toBe("not_found");
|
||||||
|
expect(searchVin).toHaveBeenCalledTimes(2);
|
||||||
|
expect(sleep).toHaveBeenCalledWith(10_500);
|
||||||
|
expect(redis.store.get(rpartstoreDailyKey(NOW))).toBe("1");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("marks the row failed and rethrows on an infrastructure error (single attempt)", async () => {
|
||||||
|
const { db, sets } = fakeDb();
|
||||||
|
await expect(
|
||||||
|
processRpartstoreDecode(job("VF1ERR"), {
|
||||||
|
db,
|
||||||
|
redis: fakeRedis(),
|
||||||
|
decoder: () => {
|
||||||
|
throw new Error("RPARTSTORE_USER / RPARTSTORE_PASS are not configured");
|
||||||
|
},
|
||||||
|
dailyCap: 10,
|
||||||
|
}),
|
||||||
|
).rejects.toThrow(/not configured/);
|
||||||
|
expect(sets.at(-1)).toMatchObject({ status: "failed" });
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("istanbulDayKey", () => {
|
||||||
|
it("counts the cap against the Istanbul calendar day, not UTC", () => {
|
||||||
|
// 23:30 UTC on the 25th is already the 26th in Istanbul (UTC+3).
|
||||||
|
expect(istanbulDayKey(new Date("2026-09-25T23:30:00Z"))).toBe("2026-09-26");
|
||||||
|
expect(istanbulDayKey(new Date("2026-09-25T20:59:00Z"))).toBe("2026-09-25");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("redisTokenStore", () => {
|
||||||
|
it("round-trips a token with its ttl and ignores garbage", async () => {
|
||||||
|
const redis = fakeRedis();
|
||||||
|
const store = redisTokenStore(redis);
|
||||||
|
await store.set({ accessToken: "t", expiresAt: 1, subject: "s" }, 120);
|
||||||
|
expect(await store.get()).toEqual({ accessToken: "t", expiresAt: 1, subject: "s" });
|
||||||
|
expect(redis.ttls.get("rpartstore:token")).toBe(120);
|
||||||
|
redis.store.set("rpartstore:token", "{not json");
|
||||||
|
expect(await store.get()).toBeNull();
|
||||||
|
await store.clear();
|
||||||
|
expect(redis.store.has("rpartstore:token")).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
252
apps/api/src/jobs/processors/rpartstore-decode.processor.ts
Normal file
252
apps/api/src/jobs/processors/rpartstore-decode.processor.ts
Normal file
@@ -0,0 +1,252 @@
|
|||||||
|
import { Job } from "bullmq";
|
||||||
|
import { and, eq, sql } from "drizzle-orm";
|
||||||
|
import { PostgresJsDatabase } from "drizzle-orm/postgres-js";
|
||||||
|
import { catalogVehicles, rpartstoreDecodes } from "../../database/schema/core";
|
||||||
|
import type { RpartstoreToken } from "../../integrations/rpartstore/rpartstore.auth";
|
||||||
|
import { RpartstoreClient, type TokenStore } from "../../integrations/rpartstore/rpartstore.client";
|
||||||
|
import {
|
||||||
|
type RpartstoreCatalogCandidate,
|
||||||
|
pickRpartstoreCatalogMatch,
|
||||||
|
} from "../../integrations/rpartstore/rpartstore.matcher";
|
||||||
|
import { RpartstoreRateLimitError } from "../../integrations/rpartstore/rpartstore.session";
|
||||||
|
import type { RpartstoreDecoded } from "../../integrations/rpartstore/rpartstore.types";
|
||||||
|
|
||||||
|
type Database = PostgresJsDatabase<Record<string, unknown>>;
|
||||||
|
|
||||||
|
export interface RpartstoreDecodeJobData {
|
||||||
|
vin: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Minimal ioredis surface the processor needs (also satisfied by RedisService.getClient()). */
|
||||||
|
export interface RedisLike {
|
||||||
|
get(key: string): Promise<string | null>;
|
||||||
|
set(key: string, value: string, mode: "EX", ttlSeconds: number): Promise<unknown>;
|
||||||
|
del(key: string): Promise<unknown>;
|
||||||
|
incr(key: string): Promise<number>;
|
||||||
|
expire(key: string, seconds: number): Promise<unknown>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface RpartstoreDecoder {
|
||||||
|
searchVin(vin: string): Promise<RpartstoreDecoded | null>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface RpartstoreProcessorDeps {
|
||||||
|
db: Database;
|
||||||
|
redis: RedisLike;
|
||||||
|
/** Built lazily so a missing credential only fails the job, not worker boot. */
|
||||||
|
decoder: () => RpartstoreDecoder;
|
||||||
|
/** Hard cap on VIN searches sent to RPartStore per Istanbul calendar day. */
|
||||||
|
dailyCap: number;
|
||||||
|
now?: () => Date;
|
||||||
|
sleep?: (ms: number) => Promise<void>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const RPARTSTORE_TOKEN_KEY = "rpartstore:token";
|
||||||
|
export const RPARTSTORE_DAILY_KEY_PREFIX = "rpartstore:daily:";
|
||||||
|
/** Counter keys live two days so a late-night job never sees a vanished key. */
|
||||||
|
const DAILY_KEY_TTL_SECONDS = 2 * 24 * 60 * 60;
|
||||||
|
|
||||||
|
/** "YYYY-MM-DD" in Europe/Istanbul — the day the cap is counted against. */
|
||||||
|
export function istanbulDayKey(date: Date): string {
|
||||||
|
const parts = new Intl.DateTimeFormat("en-CA", {
|
||||||
|
timeZone: "Europe/Istanbul",
|
||||||
|
year: "numeric",
|
||||||
|
month: "2-digit",
|
||||||
|
day: "2-digit",
|
||||||
|
}).formatToParts(date);
|
||||||
|
const get = (t: string): string => parts.find((p) => p.type === t)?.value ?? "";
|
||||||
|
return `${get("year")}-${get("month")}-${get("day")}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const rpartstoreDailyKey = (date: Date): string =>
|
||||||
|
`${RPARTSTORE_DAILY_KEY_PREFIX}${istanbulDayKey(date)}`;
|
||||||
|
|
||||||
|
/** Redis-backed cache for the 1 h Okta access token (shared by worker restarts). */
|
||||||
|
export function redisTokenStore(redis: RedisLike): TokenStore {
|
||||||
|
return {
|
||||||
|
async get() {
|
||||||
|
const raw = await redis.get(RPARTSTORE_TOKEN_KEY);
|
||||||
|
if (!raw) return null;
|
||||||
|
try {
|
||||||
|
const t = JSON.parse(raw) as RpartstoreToken;
|
||||||
|
return t.accessToken && t.expiresAt ? t : null;
|
||||||
|
} catch {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async set(token, ttlSeconds) {
|
||||||
|
await redis.set(RPARTSTORE_TOKEN_KEY, JSON.stringify(token), "EX", ttlSeconds);
|
||||||
|
},
|
||||||
|
async clear() {
|
||||||
|
await redis.del(RPARTSTORE_TOKEN_KEY);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export function buildRpartstoreClient(redis: RedisLike): RpartstoreClient {
|
||||||
|
const username = process.env.RPARTSTORE_USER;
|
||||||
|
const password = process.env.RPARTSTORE_PASS;
|
||||||
|
if (!username || !password) {
|
||||||
|
throw new Error("RPARTSTORE_USER / RPARTSTORE_PASS are not configured");
|
||||||
|
}
|
||||||
|
return new RpartstoreClient({
|
||||||
|
username,
|
||||||
|
password,
|
||||||
|
tokenStore: redisTokenStore(redis),
|
||||||
|
brokerUrl: process.env.RPARTSTORE_BROKER_URL || undefined,
|
||||||
|
appVersion: process.env.RPARTSTORE_APP_VERSION || undefined,
|
||||||
|
logger: { log: (m) => console.log(m), warn: (m) => console.warn(m) },
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function rpartstoreDailyCapFromEnv(): number {
|
||||||
|
const n = Number(process.env.RPARTSTORE_DAILY_CAP);
|
||||||
|
return Number.isFinite(n) && n >= 0 ? Math.floor(n) : 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* RPartStore decode processor (worker, concurrency 1, ≥6 s between jobs via the
|
||||||
|
* queue limiter — RPartStore allows 2 VIN searches per 10 s).
|
||||||
|
*
|
||||||
|
* Reserves one unit of the daily cap BEFORE sending anything: `INCR` on the
|
||||||
|
* Istanbul-day key; when the reservation lands above the cap the row is marked
|
||||||
|
* `capped` and nothing is sent, so at most `dailyCap` searches reach RPartStore
|
||||||
|
* per day even under concurrent enqueues. A rate-limited search waits
|
||||||
|
* `retryAfterSeconds` and is retried once without a second reservation.
|
||||||
|
*
|
||||||
|
* Outcomes recorded in `rpartstore_decodes`: decoded (with an optional PL24
|
||||||
|
* catalog_vehicle match), not_found (definitive), capped (retry tomorrow),
|
||||||
|
* failed (infra/auth error — user-retriable after 24 h).
|
||||||
|
*/
|
||||||
|
export async function processRpartstoreDecode(
|
||||||
|
job: Job<RpartstoreDecodeJobData>,
|
||||||
|
deps: RpartstoreProcessorDeps,
|
||||||
|
): Promise<{ status: string; catalogVehicleId: string | null; skipped?: boolean }> {
|
||||||
|
const { vin } = job.data;
|
||||||
|
const { db, redis } = deps;
|
||||||
|
const now = deps.now ?? (() => new Date());
|
||||||
|
const sleep = deps.sleep ?? ((ms: number) => new Promise<void>((r) => setTimeout(r, ms)));
|
||||||
|
|
||||||
|
if (process.env.RPARTSTORE_ENABLED !== "true") {
|
||||||
|
console.log(`[rpartstore-decode] disabled (RPARTSTORE_ENABLED!=true) — job ${job.id} no-op`);
|
||||||
|
return { status: "pending", catalogVehicleId: null, skipped: true };
|
||||||
|
}
|
||||||
|
|
||||||
|
await db
|
||||||
|
.update(rpartstoreDecodes)
|
||||||
|
.set({ attempts: sql`${rpartstoreDecodes.attempts} + 1`, updatedAt: now() })
|
||||||
|
.where(eq(rpartstoreDecodes.vin, vin));
|
||||||
|
|
||||||
|
// Daily cap reservation.
|
||||||
|
const dayKey = rpartstoreDailyKey(now());
|
||||||
|
const reserved = await redis.incr(dayKey);
|
||||||
|
if (reserved === 1) await redis.expire(dayKey, DAILY_KEY_TTL_SECONDS);
|
||||||
|
if (reserved > deps.dailyCap) {
|
||||||
|
await db
|
||||||
|
.update(rpartstoreDecodes)
|
||||||
|
.set({ status: "capped", updatedAt: now() })
|
||||||
|
.where(eq(rpartstoreDecodes.vin, vin));
|
||||||
|
console.warn(
|
||||||
|
`[rpartstore-decode] ${vin} → capped (${reserved - 1}/${deps.dailyCap} searches used on ${dayKey})`,
|
||||||
|
);
|
||||||
|
return { status: "capped", catalogVehicleId: null };
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log(
|
||||||
|
`[rpartstore-decode] job ${job.id} decoding ${vin} (${reserved}/${deps.dailyCap} today)`,
|
||||||
|
);
|
||||||
|
|
||||||
|
try {
|
||||||
|
const decoder = deps.decoder();
|
||||||
|
let decoded: RpartstoreDecoded | null;
|
||||||
|
try {
|
||||||
|
decoded = await decoder.searchVin(vin);
|
||||||
|
} catch (err) {
|
||||||
|
if (!(err instanceof RpartstoreRateLimitError)) throw err;
|
||||||
|
const waitMs = Math.min(Math.max(err.retryAfterSeconds, 1), 30) * 1000 + 500;
|
||||||
|
console.warn(
|
||||||
|
`[rpartstore-decode] ${vin} rate-limited (${err.limitType}); retrying in ${waitMs}ms`,
|
||||||
|
);
|
||||||
|
await sleep(waitMs);
|
||||||
|
decoded = await decoder.searchVin(vin);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!decoded) {
|
||||||
|
await db
|
||||||
|
.update(rpartstoreDecodes)
|
||||||
|
.set({ status: "not_found", updatedAt: now() })
|
||||||
|
.where(eq(rpartstoreDecodes.vin, vin));
|
||||||
|
console.log(`[rpartstore-decode] ${vin} → not_found`);
|
||||||
|
return { status: "not_found", catalogVehicleId: null };
|
||||||
|
}
|
||||||
|
|
||||||
|
const catalogVehicleId = await matchCatalogVehicle(db, decoded);
|
||||||
|
|
||||||
|
await db
|
||||||
|
.update(rpartstoreDecodes)
|
||||||
|
.set({
|
||||||
|
status: "decoded",
|
||||||
|
brandName: decoded.brandName,
|
||||||
|
model: decoded.model,
|
||||||
|
modelCode: decoded.modelCode,
|
||||||
|
familyCode: decoded.familyCode,
|
||||||
|
modelYear: decoded.modelYear,
|
||||||
|
engine: decoded.engine,
|
||||||
|
gearbox: decoded.gearbox,
|
||||||
|
energyType: decoded.energyType,
|
||||||
|
manufacturingDate: decoded.manufacturingDate,
|
||||||
|
catalogVehicleId,
|
||||||
|
raw: decoded.raw,
|
||||||
|
decodedAt: now(),
|
||||||
|
updatedAt: now(),
|
||||||
|
})
|
||||||
|
.where(eq(rpartstoreDecodes.vin, vin));
|
||||||
|
|
||||||
|
console.log(
|
||||||
|
`[rpartstore-decode] ${vin} → decoded ${decoded.brandName} "${decoded.model ?? "?"}" ${decoded.modelYear ?? ""} catalog_vehicle=${catalogVehicleId ?? "null"}`,
|
||||||
|
);
|
||||||
|
return { status: "decoded", catalogVehicleId };
|
||||||
|
} catch (error) {
|
||||||
|
const message = error instanceof Error ? error.message : String(error);
|
||||||
|
console.error(`[rpartstore-decode] job ${job.id} failed for ${vin}: ${message}`);
|
||||||
|
const isLastAttempt = job.attemptsMade + 1 >= (job.opts.attempts ?? 1);
|
||||||
|
if (isLastAttempt) {
|
||||||
|
await db
|
||||||
|
.update(rpartstoreDecodes)
|
||||||
|
.set({ status: "failed", updatedAt: now() })
|
||||||
|
.where(eq(rpartstoreDecodes.vin, vin));
|
||||||
|
}
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Match within the decoded brand first, then the sister brand (Renault ⇄ Dacia
|
||||||
|
* share platforms and TR badges differ from the WMI). */
|
||||||
|
async function matchCatalogVehicle(
|
||||||
|
db: Database,
|
||||||
|
decoded: RpartstoreDecoded,
|
||||||
|
): Promise<string | null> {
|
||||||
|
if (!decoded.model) return null;
|
||||||
|
const sister = decoded.brandName.toLowerCase() === "dacia" ? "renault" : "dacia";
|
||||||
|
for (const brand of [decoded.brandName.toLowerCase(), sister]) {
|
||||||
|
const rows = await db
|
||||||
|
.select({
|
||||||
|
id: catalogVehicles.id,
|
||||||
|
model: catalogVehicles.model,
|
||||||
|
categoryCount: sql<number>`(
|
||||||
|
SELECT count(*)::int FROM categories
|
||||||
|
WHERE categories.catalog_vehicle_id = ${catalogVehicles.id}
|
||||||
|
)`,
|
||||||
|
})
|
||||||
|
.from(catalogVehicles)
|
||||||
|
.where(
|
||||||
|
and(
|
||||||
|
sql`lower(${catalogVehicles.brandName}) = ${brand}`,
|
||||||
|
eq(catalogVehicles.source, "pl24"),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
const id = pickRpartstoreCatalogMatch(decoded.model, rows as RpartstoreCatalogCandidate[]);
|
||||||
|
if (id) return id;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
32
apps/api/src/jobs/queues/rpartstore-decode.queue.ts
Normal file
32
apps/api/src/jobs/queues/rpartstore-decode.queue.ts
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
import { Provider } from "@nestjs/common";
|
||||||
|
import { type JobsOptions, Queue } from "bullmq";
|
||||||
|
import { QUEUE_NAMES, getBullConnection, getBullTelemetry } from "../bull.config";
|
||||||
|
|
||||||
|
export const RPARTSTORE_DECODE_QUEUE = "RPARTSTORE_DECODE_QUEUE";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* `attempts: 1` — the processor records a definitive outcome per job
|
||||||
|
* (decoded / not_found / capped / failed) and the daily cap must never be
|
||||||
|
* burned by automatic re-runs. A `failed` or `capped` row is re-enqueued by the
|
||||||
|
* decode path itself after 24 h (see VehiclesService.tryRpartstoreFallback).
|
||||||
|
*/
|
||||||
|
export const RPARTSTORE_DECODE_JOB_OPTIONS: JobsOptions = {
|
||||||
|
attempts: 1,
|
||||||
|
removeOnComplete: { count: 50 },
|
||||||
|
removeOnFail: { count: 100 },
|
||||||
|
};
|
||||||
|
|
||||||
|
/** RPartStore (Renault/Dacia) VIN-decode fallback queue. One shared dealer
|
||||||
|
* account → the worker consumes it with concurrency 1 and a 1-job-per-6 s
|
||||||
|
* limiter (RPartStore allows 2 searches per 10 s). Jobs carry `{ vin }`. */
|
||||||
|
export const RpartstoreDecodeQueueProvider: Provider = {
|
||||||
|
provide: RPARTSTORE_DECODE_QUEUE,
|
||||||
|
useFactory: () => {
|
||||||
|
const telemetry = getBullTelemetry();
|
||||||
|
return new Queue(QUEUE_NAMES.RPARTSTORE_DECODE, {
|
||||||
|
connection: getBullConnection(),
|
||||||
|
...(telemetry ? { telemetry } : {}),
|
||||||
|
defaultJobOptions: RPARTSTORE_DECODE_JOB_OPTIONS,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
};
|
||||||
@@ -162,12 +162,19 @@ export class NovuService {
|
|||||||
/** Dunning notice — fired when a charge fails. amount is in kuruş. */
|
/** Dunning notice — fired when a charge fails. amount is in kuruş. */
|
||||||
async paymentFailed(
|
async paymentFailed(
|
||||||
user: NovuUser,
|
user: NovuUser,
|
||||||
opts: { amountKurus?: number; retryDate?: Date | null },
|
opts: { amountKurus?: number; retryDate?: Date | null; invoiceUrl?: string | null },
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
await this.trigger("payment-failed", user, {
|
await this.trigger("payment-failed", user, {
|
||||||
...(opts.amountKurus !== undefined ? { amount: formatTryAmount(opts.amountKurus) } : {}),
|
...(opts.amountKurus !== undefined ? { amount: formatTryAmount(opts.amountKurus) } : {}),
|
||||||
...(opts.retryDate ? { retryDate: formatTrDate(opts.retryDate) } : {}),
|
...(opts.retryDate ? { retryDate: formatTrDate(opts.retryDate) } : {}),
|
||||||
ctaUrl: buildTrackedUrl("payment-failed", user.email, webUrl("/dashboard/subscription")),
|
// Renewal failures pass Stripe's hosted invoice page — the only surface
|
||||||
|
// where the user can actually pay / enter a new card. The dashboard
|
||||||
|
// fallback (checkout abandons) has no payment UI for an active sub.
|
||||||
|
ctaUrl: buildTrackedUrl(
|
||||||
|
"payment-failed",
|
||||||
|
user.email,
|
||||||
|
opts.invoiceUrl ?? webUrl("/dashboard/subscription"),
|
||||||
|
),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -163,16 +163,26 @@ describe("StripeService recurring webhooks", () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
describe("handleInvoiceFailed", () => {
|
describe("handleInvoiceFailed", () => {
|
||||||
it("mails dunning with Stripe's retry date and leaves the paid-through date alone", async () => {
|
it("persists dunning state, mails with retry date + hosted invoice URL, leaves end_date alone", async () => {
|
||||||
// selects: resolve sub → user
|
// selects: resolve sub → user
|
||||||
const { service, db, posthog, novu } = createMocks([[activeSub], [user]]);
|
const { service, db, updateChains, posthog, novu } = createMocks([[activeSub], [user]]);
|
||||||
|
|
||||||
await service.handleInvoiceFailed(invoiceFixture());
|
await service.handleInvoiceFailed(
|
||||||
|
invoiceFixture({ attempt_count: 1, hosted_invoice_url: "https://invoice.stripe.com/i/x" }),
|
||||||
|
);
|
||||||
|
|
||||||
|
// dunning stamped (so /subscriptions/me + banner can surface it) — but
|
||||||
|
// end_date untouched: access keeps running to the paid-through date.
|
||||||
|
expect(db.update).toHaveBeenCalledTimes(1);
|
||||||
|
const setArg = updateChains[0].set.mock.calls[0][0] as Record<string, unknown>;
|
||||||
|
expect(setArg.dunningSince).toBeInstanceOf(Date);
|
||||||
|
expect(setArg.dunningInvoiceUrl).toBe("https://invoice.stripe.com/i/x");
|
||||||
|
expect(setArg.endDate).toBeUndefined();
|
||||||
|
|
||||||
expect(db.update).not.toHaveBeenCalled(); // access keeps running to end_date
|
|
||||||
expect(novu.paymentFailed).toHaveBeenCalledTimes(1);
|
expect(novu.paymentFailed).toHaveBeenCalledTimes(1);
|
||||||
const opts = novu.paymentFailed.mock.calls[0][1] as { retryDate?: Date };
|
const opts = novu.paymentFailed.mock.calls[0][1] as { retryDate?: Date; invoiceUrl?: string };
|
||||||
expect(opts.retryDate?.getTime()).toBe(RETRY_AT_SEC * 1000);
|
expect(opts.retryDate?.getTime()).toBe(RETRY_AT_SEC * 1000);
|
||||||
|
expect(opts.invoiceUrl).toBe("https://invoice.stripe.com/i/x");
|
||||||
expect(posthog.captureForUser).toHaveBeenCalledWith(
|
expect(posthog.captureForUser).toHaveBeenCalledWith(
|
||||||
"user-1",
|
"user-1",
|
||||||
"payment_failed",
|
"payment_failed",
|
||||||
@@ -180,6 +190,28 @@ describe("StripeService recurring webhooks", () => {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("suppresses the mail on non-milestone attempts but still records the failure", async () => {
|
||||||
|
const { service, db, posthog, novu } = createMocks([[activeSub], [user]]);
|
||||||
|
|
||||||
|
await service.handleInvoiceFailed(invoiceFixture({ attempt_count: 2 }));
|
||||||
|
|
||||||
|
expect(db.update).toHaveBeenCalledTimes(1); // dunning state still stamped
|
||||||
|
expect(posthog.captureForUser).toHaveBeenCalledTimes(1);
|
||||||
|
expect(novu.paymentFailed).not.toHaveBeenCalled(); // attempt 2 ≠ 1/3/final
|
||||||
|
});
|
||||||
|
|
||||||
|
it("sends the final notice when Stripe schedules no further retry", async () => {
|
||||||
|
const { service, novu } = createMocks([[activeSub], [user]]);
|
||||||
|
|
||||||
|
await service.handleInvoiceFailed(
|
||||||
|
invoiceFixture({ attempt_count: 7, next_payment_attempt: null }),
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(novu.paymentFailed).toHaveBeenCalledTimes(1);
|
||||||
|
const opts = novu.paymentFailed.mock.calls[0][1] as { retryDate?: Date | null };
|
||||||
|
expect(opts.retryDate).toBeNull();
|
||||||
|
});
|
||||||
|
|
||||||
it("ignores first-charge failures (checkout flow owns those)", async () => {
|
it("ignores first-charge failures (checkout flow owns those)", async () => {
|
||||||
const { service, posthog, novu } = createMocks([[activeSub]]);
|
const { service, posthog, novu } = createMocks([[activeSub]]);
|
||||||
|
|
||||||
|
|||||||
@@ -634,17 +634,24 @@ export class StripeService {
|
|||||||
|
|
||||||
if (!recovered) {
|
if (!recovered) {
|
||||||
// Normal renewal — extend. A 'cancelled' row that still got billed keeps
|
// Normal renewal — extend. A 'cancelled' row that still got billed keeps
|
||||||
// its status; access is governed by end_date either way.
|
// its status; access is governed by end_date either way. A paid invoice
|
||||||
|
// also ends any dunning episode.
|
||||||
await this.db
|
await this.db
|
||||||
.update(userSubscriptions)
|
.update(userSubscriptions)
|
||||||
.set({ endDate: newEndDate, updatedAt: now })
|
.set({ endDate: newEndDate, dunningSince: null, dunningInvoiceUrl: null, updatedAt: now })
|
||||||
.where(eq(userSubscriptions.id, sub.id));
|
.where(eq(userSubscriptions.id, sub.id));
|
||||||
} else {
|
} else {
|
||||||
// Late dunning recovery: the nightly cron already expired the row and
|
// Late dunning recovery: the nightly cron already expired the row and
|
||||||
// purged its brand grants. Restore access for the freshly paid period.
|
// purged its brand grants. Restore access for the freshly paid period.
|
||||||
await this.db
|
await this.db
|
||||||
.update(userSubscriptions)
|
.update(userSubscriptions)
|
||||||
.set({ status: "active", endDate: newEndDate, updatedAt: now })
|
.set({
|
||||||
|
status: "active",
|
||||||
|
endDate: newEndDate,
|
||||||
|
dunningSince: null,
|
||||||
|
dunningInvoiceUrl: null,
|
||||||
|
updatedAt: now,
|
||||||
|
})
|
||||||
.where(eq(userSubscriptions.id, sub.id));
|
.where(eq(userSubscriptions.id, sub.id));
|
||||||
if (plan?.brandCount === 0) {
|
if (plan?.brandCount === 0) {
|
||||||
await this.db.delete(userBrands).where(eq(userBrands.subscriptionId, sub.id));
|
await this.db.delete(userBrands).where(eq(userBrands.subscriptionId, sub.id));
|
||||||
@@ -745,6 +752,19 @@ export class StripeService {
|
|||||||
const retryDate = invoice.next_payment_attempt
|
const retryDate = invoice.next_payment_attempt
|
||||||
? new Date(invoice.next_payment_attempt * 1000)
|
? new Date(invoice.next_payment_attempt * 1000)
|
||||||
: null;
|
: null;
|
||||||
|
const hostedUrl = invoice.hosted_invoice_url ?? null;
|
||||||
|
|
||||||
|
// Persist the dunning episode so /subscriptions/me (and the dashboard
|
||||||
|
// banner) can surface it — before this, the app had no record that a
|
||||||
|
// subscription was failing and the user saw nothing until hard cutoff.
|
||||||
|
await this.db
|
||||||
|
.update(userSubscriptions)
|
||||||
|
.set({
|
||||||
|
dunningSince: sub.dunningSince ?? new Date(),
|
||||||
|
...(hostedUrl ? { dunningInvoiceUrl: hostedUrl } : {}),
|
||||||
|
updatedAt: new Date(),
|
||||||
|
})
|
||||||
|
.where(eq(userSubscriptions.id, sub.id));
|
||||||
|
|
||||||
this.posthog.captureForUser(sub.userId, "payment_failed", {
|
this.posthog.captureForUser(sub.userId, "payment_failed", {
|
||||||
method: "stripe",
|
method: "stripe",
|
||||||
@@ -752,28 +772,42 @@ export class StripeService {
|
|||||||
reason: "renewal_charge_failed",
|
reason: "renewal_charge_failed",
|
||||||
amount: invoice.amount_due ?? null,
|
amount: invoice.amount_due ?? null,
|
||||||
stripe_invoice_id: invoice.id,
|
stripe_invoice_id: invoice.id,
|
||||||
|
attempt_count: invoice.attempt_count ?? null,
|
||||||
next_retry_at: retryDate ? retryDate.toISOString() : null,
|
next_retry_at: retryDate ? retryDate.toISOString() : null,
|
||||||
});
|
});
|
||||||
|
|
||||||
try {
|
// Mail on milestones only — first failure, mid-cycle nudge, final notice.
|
||||||
const [user] = await this.db
|
// Stripe retries ~4-9 times; one identical mail per attempt trained users
|
||||||
.select({ id: users.id, email: users.email, name: users.name })
|
// to ignore them (measured recovery: 0%).
|
||||||
.from(users)
|
const attempt = invoice.attempt_count ?? 1;
|
||||||
.where(eq(users.id, sub.userId))
|
const isFinal = !invoice.next_payment_attempt;
|
||||||
.limit(1);
|
const shouldMail = attempt <= 1 || attempt === 3 || isFinal;
|
||||||
if (user) {
|
|
||||||
await this.novu.paymentFailed(user, {
|
if (shouldMail) {
|
||||||
amountKurus: invoice.amount_due ?? undefined,
|
try {
|
||||||
retryDate,
|
const [user] = await this.db
|
||||||
});
|
.select({ id: users.id, email: users.email, name: users.name })
|
||||||
|
.from(users)
|
||||||
|
.where(eq(users.id, sub.userId))
|
||||||
|
.limit(1);
|
||||||
|
if (user) {
|
||||||
|
await this.novu.paymentFailed(user, {
|
||||||
|
amountKurus: invoice.amount_due ?? undefined,
|
||||||
|
retryDate,
|
||||||
|
// CTA goes to Stripe's hosted invoice page (pay now / new card /
|
||||||
|
// 3DS) — the dashboard has no self-serve payment surface.
|
||||||
|
invoiceUrl: hostedUrl,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
this.logger.error(`renewal dunning mail failed (user=${sub.userId}): ${String(err)}`);
|
||||||
}
|
}
|
||||||
} catch (err) {
|
|
||||||
this.logger.error(`renewal dunning mail failed (user=${sub.userId}): ${String(err)}`);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
this.logger.warn(
|
this.logger.warn(
|
||||||
`Renewal charge failed: sub ${sub.id} (invoice ${invoice.id}), ` +
|
`Renewal charge failed: sub ${sub.id} (invoice ${invoice.id}, attempt ${attempt}), ` +
|
||||||
`next retry ${retryDate ? retryDate.toISOString() : "none (final)"}`,
|
`next retry ${retryDate ? retryDate.toISOString() : "none (final)"}` +
|
||||||
|
`${shouldMail ? "" : " — mail suppressed (non-milestone attempt)"}`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -790,14 +824,35 @@ export class StripeService {
|
|||||||
.limit(1);
|
.limit(1);
|
||||||
if (!sub) return;
|
if (!sub) return;
|
||||||
|
|
||||||
|
const wasDunning = !!sub.dunningSince;
|
||||||
|
// Flip to 'cancelled' (not just stamp cancelledAt): create() rejects new
|
||||||
|
// checkouts only while a row is 'active', so leaving a dunning-cancelled
|
||||||
|
// sub as 'active' silently BLOCKED the customer from re-subscribing — one
|
||||||
|
// of the root causes of 0% dunning recovery. Access still runs to end_date
|
||||||
|
// via the nightly expiry cron.
|
||||||
await this.db
|
await this.db
|
||||||
.update(userSubscriptions)
|
.update(userSubscriptions)
|
||||||
.set({ cancelledAt: sub.cancelledAt ?? new Date(), updatedAt: new Date() })
|
.set({
|
||||||
|
status: "cancelled",
|
||||||
|
cancelledAt: sub.cancelledAt ?? new Date(),
|
||||||
|
dunningSince: null,
|
||||||
|
dunningInvoiceUrl: null,
|
||||||
|
updatedAt: new Date(),
|
||||||
|
})
|
||||||
.where(eq(userSubscriptions.id, sub.id));
|
.where(eq(userSubscriptions.id, sub.id));
|
||||||
|
|
||||||
this.logger.log(
|
// Churn was previously invisible in analytics (this handler captured
|
||||||
`Stripe subscription ${subscription.id} deleted — our sub ${sub.id} ` +
|
// nothing) — reason distinguishes dunning losses from voluntary cancels.
|
||||||
`(status=${sub.status}) will not renew; access runs out at its end_date`,
|
this.posthog.captureForUser(sub.userId, "subscription_churned", {
|
||||||
|
reason: wasDunning ? "payment_failure" : "cancelled",
|
||||||
|
subscription_id: sub.id,
|
||||||
|
stripe_subscription_id: subscription.id,
|
||||||
|
prior_status: sub.status,
|
||||||
|
});
|
||||||
|
|
||||||
|
this.logger.warn(
|
||||||
|
`Stripe subscription ${subscription.id} deleted (${wasDunning ? "dunning exhausted" : "cancel executed"}) — ` +
|
||||||
|
`our sub ${sub.id} → cancelled; access runs out at its end_date`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,11 @@
|
|||||||
import { BadRequestException, ForbiddenException, NotFoundException } from "@nestjs/common";
|
import { BadRequestException, ForbiddenException, NotFoundException } from "@nestjs/common";
|
||||||
import { beforeEach, describe, expect, it, vi } from "vitest";
|
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
||||||
import { catalogVehicles, queryLogs, vinpinDecodes } from "../database/schema/core";
|
import {
|
||||||
|
catalogVehicles,
|
||||||
|
queryLogs,
|
||||||
|
rpartstoreDecodes,
|
||||||
|
vinpinDecodes,
|
||||||
|
} from "../database/schema/core";
|
||||||
import { VehiclesService } from "./vehicles.service";
|
import { VehiclesService } from "./vehicles.service";
|
||||||
|
|
||||||
vi.mock("@sase/shared", () => ({
|
vi.mock("@sase/shared", () => ({
|
||||||
@@ -93,10 +98,15 @@ function createService(dbOrOverrides: any = {}) {
|
|||||||
add: vi.fn().mockResolvedValue(undefined),
|
add: vi.fn().mockResolvedValue(undefined),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const rpartstoreQueue = {
|
||||||
|
add: vi.fn().mockResolvedValue(undefined),
|
||||||
|
};
|
||||||
|
|
||||||
const service = new VehiclesService(
|
const service = new VehiclesService(
|
||||||
db as any,
|
db as any,
|
||||||
prefetchQueue as any,
|
prefetchQueue as any,
|
||||||
vinpinQueue as any,
|
vinpinQueue as any,
|
||||||
|
rpartstoreQueue as any,
|
||||||
corgiService as any,
|
corgiService as any,
|
||||||
pl24Service as any,
|
pl24Service as any,
|
||||||
vinApiService as any,
|
vinApiService as any,
|
||||||
@@ -115,6 +125,7 @@ function createService(dbOrOverrides: any = {}) {
|
|||||||
partsCatalogsService,
|
partsCatalogsService,
|
||||||
redisService,
|
redisService,
|
||||||
vinpinQueue,
|
vinpinQueue,
|
||||||
|
rpartstoreQueue,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -340,9 +351,7 @@ describe("VehiclesService", () => {
|
|||||||
selectChain.limit = vi
|
selectChain.limit = vi
|
||||||
.fn()
|
.fn()
|
||||||
.mockImplementation(() =>
|
.mockImplementation(() =>
|
||||||
currentTable === vinpinDecodes
|
currentTable === vinpinDecodes ? [{ vin: "NM435600006123456", status: "pending" }] : [],
|
||||||
? [{ vin: "NM435600006123456", status: "pending" }]
|
|
||||||
: [],
|
|
||||||
);
|
);
|
||||||
const insertChain = {
|
const insertChain = {
|
||||||
values: vi.fn().mockReturnThis(),
|
values: vi.fn().mockReturnThis(),
|
||||||
@@ -992,3 +1001,168 @@ describe("VehiclesService", () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe("VehiclesService — RPartStore fallback (Renault/Dacia, after the pcat/PL24/emex race)", () => {
|
||||||
|
const VIN = "VF1RFE00653633190";
|
||||||
|
|
||||||
|
function noCatalogDb() {
|
||||||
|
const selectChain = {
|
||||||
|
from: vi.fn().mockReturnThis(),
|
||||||
|
where: vi.fn().mockReturnThis(),
|
||||||
|
limit: vi.fn().mockReturnValue([]),
|
||||||
|
};
|
||||||
|
const insertChain = {
|
||||||
|
values: vi.fn().mockReturnThis(),
|
||||||
|
returning: vi.fn().mockReturnValue([]),
|
||||||
|
onConflictDoNothing: vi.fn().mockReturnThis(),
|
||||||
|
};
|
||||||
|
return {
|
||||||
|
select: vi.fn().mockReturnValue(selectChain),
|
||||||
|
insert: vi.fn().mockReturnValue(insertChain),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function renaultIdent(svc: ReturnType<typeof createService>) {
|
||||||
|
svc.corgiService.decodeVin.mockReturnValue({
|
||||||
|
isKnown: true,
|
||||||
|
brandName: "Renault",
|
||||||
|
modelYear: 2015,
|
||||||
|
});
|
||||||
|
svc.vinApiService.decodeVin.mockResolvedValue({
|
||||||
|
make: "RENAULT",
|
||||||
|
model: "Kadjar",
|
||||||
|
modelYear: "2015",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
let prevRparts: string | undefined;
|
||||||
|
let prevVinpin: string | undefined;
|
||||||
|
beforeEach(() => {
|
||||||
|
prevRparts = process.env.RPARTSTORE_ENABLED;
|
||||||
|
prevVinpin = process.env.VINPIN_ENABLED;
|
||||||
|
process.env.VINPIN_ENABLED = "false";
|
||||||
|
vi.mocked(isValidVin).mockReturnValue(true);
|
||||||
|
});
|
||||||
|
afterEach(() => {
|
||||||
|
process.env.RPARTSTORE_ENABLED = prevRparts ?? "false";
|
||||||
|
process.env.VINPIN_ENABLED = prevVinpin ?? "false";
|
||||||
|
});
|
||||||
|
|
||||||
|
it("[off] leaves the no-catalog path untouched and never touches the queue", async () => {
|
||||||
|
process.env.RPARTSTORE_ENABLED = "false";
|
||||||
|
const db = noCatalogDb();
|
||||||
|
const svc = createService(db);
|
||||||
|
renaultIdent(svc);
|
||||||
|
|
||||||
|
const result: any = await svc.service.decodeVin(VIN, "u1");
|
||||||
|
expect(result).toMatchObject({ noCatalog: { brandName: "Renault" }, vin: VIN });
|
||||||
|
expect(svc.rpartstoreQueue.add).not.toHaveBeenCalled();
|
||||||
|
expect(db.insert.mock.calls.some((c: unknown[]) => c[0] === rpartstoreDecodes)).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("[on] records a pending row, enqueues a day-scoped job and answers `decoding` for an unseen Renault VIN", async () => {
|
||||||
|
process.env.RPARTSTORE_ENABLED = "true";
|
||||||
|
const db = noCatalogDb();
|
||||||
|
const svc = createService(db);
|
||||||
|
renaultIdent(svc);
|
||||||
|
|
||||||
|
const result: any = await svc.service.decodeVin(VIN, "u1");
|
||||||
|
expect(result).toMatchObject({ decoding: { vin: VIN }, vin: VIN });
|
||||||
|
expect(result.decoding.display).toContain("Renault");
|
||||||
|
expect(svc.rpartstoreQueue.add).toHaveBeenCalledTimes(1);
|
||||||
|
const [name, data, opts] = svc.rpartstoreQueue.add.mock.calls[0];
|
||||||
|
expect(name).toBe("rpartstore-decode");
|
||||||
|
expect(data).toEqual({ vin: VIN });
|
||||||
|
expect(opts.jobId).toMatch(new RegExp(`^rpartstore-${VIN}-\\d{4}-\\d{2}-\\d{2}$`));
|
||||||
|
expect(db.insert.mock.calls.some((c: unknown[]) => c[0] === rpartstoreDecodes)).toBe(true);
|
||||||
|
// Exactly ONE coverage-gap failure row at first sighting.
|
||||||
|
expect(db.insert.mock.calls.filter((c: unknown[]) => c[0] === queryLogs)).toHaveLength(1);
|
||||||
|
// Vinpin (disabled) is never consulted.
|
||||||
|
expect(svc.vinpinQueue.add).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("[on] does not enqueue a non-Renault VIN", async () => {
|
||||||
|
process.env.RPARTSTORE_ENABLED = "true";
|
||||||
|
const db = noCatalogDb();
|
||||||
|
const svc = createService(db);
|
||||||
|
svc.corgiService.decodeVin.mockReturnValue({
|
||||||
|
isKnown: true,
|
||||||
|
brandName: "Fiat",
|
||||||
|
modelYear: 2018,
|
||||||
|
});
|
||||||
|
svc.vinApiService.decodeVin.mockResolvedValue({
|
||||||
|
make: "FIAT",
|
||||||
|
model: "Tipo",
|
||||||
|
modelYear: "2018",
|
||||||
|
});
|
||||||
|
|
||||||
|
const result: any = await svc.service.decodeVin("NM435600006123456", "u1");
|
||||||
|
expect(result).toMatchObject({ noCatalog: { brandName: "Fiat" } });
|
||||||
|
expect(svc.rpartstoreQueue.add).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("[on] falls through to noCatalog without queueing once today's cap is spent", async () => {
|
||||||
|
process.env.RPARTSTORE_ENABLED = "true";
|
||||||
|
process.env.RPARTSTORE_DAILY_CAP = "10";
|
||||||
|
const db = noCatalogDb();
|
||||||
|
const svc = createService(db);
|
||||||
|
renaultIdent(svc);
|
||||||
|
svc.redisService.get.mockImplementation(async (key: string) =>
|
||||||
|
key.startsWith("rpartstore:daily:") ? "10" : null,
|
||||||
|
);
|
||||||
|
|
||||||
|
const result: any = await svc.service.decodeVin(VIN, "u1");
|
||||||
|
expect(result).toMatchObject({ noCatalog: { brandName: "Renault" } });
|
||||||
|
expect(svc.rpartstoreQueue.add).not.toHaveBeenCalled();
|
||||||
|
expect(db.insert.mock.calls.some((c: unknown[]) => c[0] === rpartstoreDecodes)).toBe(false);
|
||||||
|
process.env.RPARTSTORE_DAILY_CAP = "";
|
||||||
|
});
|
||||||
|
|
||||||
|
it("[on] a decoded row with a catalog match answers `catalogVehicle` and logs one success row", async () => {
|
||||||
|
process.env.RPARTSTORE_ENABLED = "true";
|
||||||
|
const rpartsRow = {
|
||||||
|
vin: VIN,
|
||||||
|
status: "decoded",
|
||||||
|
catalogVehicleId: "cv-1",
|
||||||
|
createdAt: new Date(),
|
||||||
|
updatedAt: new Date(),
|
||||||
|
};
|
||||||
|
const cv = { id: "cv-1", brandId: null, brandName: "Renault", model: "KADJAR", year: null };
|
||||||
|
let selectCalls = 0;
|
||||||
|
const selectChain = {
|
||||||
|
from: vi.fn().mockReturnThis(),
|
||||||
|
where: vi.fn().mockReturnThis(),
|
||||||
|
limit: vi.fn().mockImplementation(() => {
|
||||||
|
// Call order inside decodeVin: vehicles lookup → rpartstore row → catalog vehicle.
|
||||||
|
selectCalls += 1;
|
||||||
|
if (selectCalls === 2) return [rpartsRow];
|
||||||
|
if (selectCalls === 3) return [cv];
|
||||||
|
return [];
|
||||||
|
}),
|
||||||
|
};
|
||||||
|
const insertChain = {
|
||||||
|
values: vi.fn().mockReturnThis(),
|
||||||
|
returning: vi.fn().mockReturnValue([]),
|
||||||
|
onConflictDoNothing: vi.fn().mockReturnThis(),
|
||||||
|
};
|
||||||
|
const db = {
|
||||||
|
select: vi.fn().mockReturnValue(selectChain),
|
||||||
|
insert: vi.fn().mockReturnValue(insertChain),
|
||||||
|
};
|
||||||
|
const svc = createService(db);
|
||||||
|
renaultIdent(svc);
|
||||||
|
|
||||||
|
const result: any = await svc.service.decodeVin(VIN, "u1");
|
||||||
|
expect(result).toEqual({
|
||||||
|
catalogVehicle: { id: "cv-1", brandName: "Renault", model: "KADJAR", year: null },
|
||||||
|
vin: VIN,
|
||||||
|
});
|
||||||
|
expect(svc.rpartstoreQueue.add).not.toHaveBeenCalled();
|
||||||
|
const logRows = db.insert.mock.calls.filter((c: unknown[]) => c[0] === queryLogs);
|
||||||
|
expect(logRows).toHaveLength(1);
|
||||||
|
expect(insertChain.values.mock.calls.at(-1)?.[0]).toMatchObject({
|
||||||
|
source: "rpartstore",
|
||||||
|
success: true,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ import {
|
|||||||
parts,
|
parts,
|
||||||
plans,
|
plans,
|
||||||
queryLogs,
|
queryLogs,
|
||||||
|
rpartstoreDecodes,
|
||||||
userBrands,
|
userBrands,
|
||||||
userSubscriptions,
|
userSubscriptions,
|
||||||
userVehicles,
|
userVehicles,
|
||||||
@@ -34,10 +35,13 @@ import { PartsCatalogsService } from "../integrations/parts-catalogs/parts-catal
|
|||||||
import { PcatCar, PcatVinResult } from "../integrations/parts-catalogs/parts-catalogs.types";
|
import { PcatCar, PcatVinResult } from "../integrations/parts-catalogs/parts-catalogs.types";
|
||||||
import { PL24Service } from "../integrations/pl24/pl24.service";
|
import { PL24Service } from "../integrations/pl24/pl24.service";
|
||||||
import { SERVICE_TO_BRAND } from "../integrations/pl24/pl24.types";
|
import { SERVICE_TO_BRAND } from "../integrations/pl24/pl24.types";
|
||||||
|
import { isRpartstoreVin } from "../integrations/rpartstore/rpartstore.routing";
|
||||||
import { VinApiService } from "../integrations/vin-api/vin-api.service";
|
import { VinApiService } from "../integrations/vin-api/vin-api.service";
|
||||||
import { isVinpinBrandAllowed } from "../integrations/vinpin/vinpin.constants";
|
import { isVinpinBrandAllowed } from "../integrations/vinpin/vinpin.constants";
|
||||||
import { PrefetchSource } from "../jobs/prefetch.types";
|
import { PrefetchSource } from "../jobs/prefetch.types";
|
||||||
|
import { istanbulDayKey, rpartstoreDailyKey } from "../jobs/processors/rpartstore-decode.processor";
|
||||||
import { CATALOG_PREFETCH_FAST_QUEUE } from "../jobs/queues/catalog-prefetch.queue";
|
import { CATALOG_PREFETCH_FAST_QUEUE } from "../jobs/queues/catalog-prefetch.queue";
|
||||||
|
import { RPARTSTORE_DECODE_QUEUE } from "../jobs/queues/rpartstore-decode.queue";
|
||||||
import { VINPIN_DECODE_QUEUE } from "../jobs/queues/vinpin-decode.queue";
|
import { VINPIN_DECODE_QUEUE } from "../jobs/queues/vinpin-decode.queue";
|
||||||
import { RedisService } from "../redis/redis.service";
|
import { RedisService } from "../redis/redis.service";
|
||||||
import { vinCandidateStashKey, vinResolveCacheKeys } from "./vin-cache-keys";
|
import { vinCandidateStashKey, vinResolveCacheKeys } from "./vin-cache-keys";
|
||||||
@@ -99,6 +103,7 @@ export class VehiclesService {
|
|||||||
@Inject(DATABASE) private db: Database,
|
@Inject(DATABASE) private db: Database,
|
||||||
@Inject(CATALOG_PREFETCH_FAST_QUEUE) private prefetchQueue: Queue,
|
@Inject(CATALOG_PREFETCH_FAST_QUEUE) private prefetchQueue: Queue,
|
||||||
@Inject(VINPIN_DECODE_QUEUE) private vinpinQueue: Queue,
|
@Inject(VINPIN_DECODE_QUEUE) private vinpinQueue: Queue,
|
||||||
|
@Inject(RPARTSTORE_DECODE_QUEUE) private rpartstoreQueue: Queue,
|
||||||
private corgiService: CorgiService,
|
private corgiService: CorgiService,
|
||||||
private pl24Service: PL24Service,
|
private pl24Service: PL24Service,
|
||||||
private vinApiService: VinApiService,
|
private vinApiService: VinApiService,
|
||||||
@@ -191,6 +196,19 @@ export class VehiclesService {
|
|||||||
// The fallback logs the coverage-gap failure row exactly once, at
|
// The fallback logs the coverage-gap failure row exactly once, at
|
||||||
// first sighting (job enqueue); not_found/failed/stale fall through
|
// first sighting (job enqueue); not_found/failed/stale fall through
|
||||||
// to the failure log below, unchanged.
|
// to the failure log below, unchanged.
|
||||||
|
// RPartStore decode-oracle fallback for Renault/Dacia (flag-gated,
|
||||||
|
// hard daily cap). Ordered AFTER the pcat/PL24/emex race (we only get
|
||||||
|
// here when it returned nothing) and BEFORE Vinpin, which stays wired
|
||||||
|
// as a last resort behind its own flag. Same accounting contract as
|
||||||
|
// the Vinpin fallback below: one failure row at first sighting, polls
|
||||||
|
// log nothing, a resolved decode logs its own success row.
|
||||||
|
if (
|
||||||
|
process.env.RPARTSTORE_ENABLED === "true" &&
|
||||||
|
isRpartstoreVin(vin, ident.browseBrand)
|
||||||
|
) {
|
||||||
|
const rpartsResp = await this.tryRpartstoreFallback(vin, ident, userId, ctx, startTime);
|
||||||
|
if (rpartsResp) return rpartsResp;
|
||||||
|
}
|
||||||
if (process.env.VINPIN_ENABLED === "true" && isVinpinBrandAllowed(ident.browseBrand)) {
|
if (process.env.VINPIN_ENABLED === "true" && isVinpinBrandAllowed(ident.browseBrand)) {
|
||||||
const vinpinResp = await this.tryVinpinFallback(vin, ident, userId, ctx, startTime);
|
const vinpinResp = await this.tryVinpinFallback(vin, ident, userId, ctx, startTime);
|
||||||
if (vinpinResp) return vinpinResp;
|
if (vinpinResp) return vinpinResp;
|
||||||
@@ -791,6 +809,154 @@ export class VehiclesService {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** `failed` / `capped` RPartStore rows become eligible for one more attempt after this long. */
|
||||||
|
private static readonly RPARTSTORE_RETRY_AFTER_MS = 24 * 60 * 60 * 1000;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* RPartStore decode-oracle fallback for a Renault/Dacia VIN the race couldn't
|
||||||
|
* identify (feature-flagged, guarded by the caller on RPARTSTORE_ENABLED +
|
||||||
|
* `isRpartstoreVin`). Mirrors the Vinpin fallback contract:
|
||||||
|
*
|
||||||
|
* - decoded + catalog_vehicle_id → resolve that EXISTING PL24 catalog vehicle
|
||||||
|
* and return `catalogVehicle` (parts come from PL24, not RPartStore).
|
||||||
|
* - pending → `{ decoding }` (frontend polls).
|
||||||
|
* - no row → insert 'pending', enqueue a decode job, return `{ decoding }`.
|
||||||
|
* - capped / failed older than 24 h → re-enqueue (a fresh cap reservation),
|
||||||
|
* return `{ decoding }`; younger → null.
|
||||||
|
* - not_found / decoded-without-match / cap exhausted today → null → caller
|
||||||
|
* falls through to Vinpin (if enabled) and then noCatalog, unchanged.
|
||||||
|
*
|
||||||
|
* The API side never talks to RPartStore; it only checks today's counter so a
|
||||||
|
* VIN is not queued (and left `pending`) when the daily cap is already spent.
|
||||||
|
*/
|
||||||
|
private async tryRpartstoreFallback(
|
||||||
|
vin: string,
|
||||||
|
ident: { browseBrand: string | null; display: string },
|
||||||
|
userId: string,
|
||||||
|
ctx: ResolveContext,
|
||||||
|
startTime: number,
|
||||||
|
// biome-ignore lint/suspicious/noExplicitAny: heterogeneous short-circuit response shapes
|
||||||
|
): Promise<any | null> {
|
||||||
|
try {
|
||||||
|
const [row] = await this.db
|
||||||
|
.select()
|
||||||
|
.from(rpartstoreDecodes)
|
||||||
|
.where(eq(rpartstoreDecodes.vin, vin))
|
||||||
|
.limit(1);
|
||||||
|
|
||||||
|
if (row) {
|
||||||
|
if (row.status === "decoded" && row.catalogVehicleId) {
|
||||||
|
const [cv] = await this.db
|
||||||
|
.select()
|
||||||
|
.from(catalogVehicles)
|
||||||
|
.where(eq(catalogVehicles.id, row.catalogVehicleId))
|
||||||
|
.limit(1);
|
||||||
|
if (cv) {
|
||||||
|
if (cv.brandId) await this.checkBrandAccess(userId, cv.brandId);
|
||||||
|
ctx.timings.rpartstore_resolved = 1;
|
||||||
|
await this.logQuery(
|
||||||
|
userId,
|
||||||
|
vin,
|
||||||
|
cv.brandId,
|
||||||
|
"rpartstore",
|
||||||
|
true,
|
||||||
|
Date.now() - startTime,
|
||||||
|
undefined,
|
||||||
|
ctx.timings,
|
||||||
|
);
|
||||||
|
return {
|
||||||
|
catalogVehicle: {
|
||||||
|
id: cv.id,
|
||||||
|
brandName: cv.brandName,
|
||||||
|
model: cv.model,
|
||||||
|
year: cv.year,
|
||||||
|
},
|
||||||
|
vin,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (row.status === "pending") {
|
||||||
|
ctx.timings.rpartstore_pending = 1;
|
||||||
|
return { decoding: { vin, display: ident.display }, vin };
|
||||||
|
}
|
||||||
|
|
||||||
|
const retryable = row.status === "capped" || row.status === "failed";
|
||||||
|
const ageMs = Date.now() - (row.updatedAt ?? row.createdAt).getTime();
|
||||||
|
if (!retryable || ageMs < VehiclesService.RPARTSTORE_RETRY_AFTER_MS) {
|
||||||
|
// not_found / decoded-without-match / recent capped|failed → existing path.
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
if (await this.isRpartstoreCapSpent()) {
|
||||||
|
ctx.timings.rpartstore_capped = 1;
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
await this.db
|
||||||
|
.update(rpartstoreDecodes)
|
||||||
|
.set({ status: "pending", updatedAt: new Date() })
|
||||||
|
.where(eq(rpartstoreDecodes.vin, vin));
|
||||||
|
await this.enqueueRpartstoreDecode(vin);
|
||||||
|
ctx.timings.rpartstore_requeued = 1;
|
||||||
|
return { decoding: { vin, display: ident.display }, vin };
|
||||||
|
}
|
||||||
|
|
||||||
|
if (await this.isRpartstoreCapSpent()) {
|
||||||
|
ctx.timings.rpartstore_capped = 1;
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
await this.db
|
||||||
|
.insert(rpartstoreDecodes)
|
||||||
|
.values({ vin, status: "pending" })
|
||||||
|
.onConflictDoNothing();
|
||||||
|
await this.enqueueRpartstoreDecode(vin);
|
||||||
|
ctx.timings.rpartstore_enqueued = 1;
|
||||||
|
// The ONE coverage-gap failure row for this VIN (see the Vinpin fallback).
|
||||||
|
await this.logQuery(
|
||||||
|
userId,
|
||||||
|
vin,
|
||||||
|
null,
|
||||||
|
"none",
|
||||||
|
false,
|
||||||
|
Date.now() - startTime,
|
||||||
|
`No catalog — identified as ${ident.display}`,
|
||||||
|
ctx.timings,
|
||||||
|
);
|
||||||
|
return { decoding: { vin, display: ident.display }, vin };
|
||||||
|
} catch (err) {
|
||||||
|
this.logger.warn(`RPartStore fallback failed for ${vin}: ${(err as Error).message}`);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Today's RPartStore search counter (Istanbul day, maintained by the worker)
|
||||||
|
* is already at the cap → don't queue. Fails open on Redis trouble. */
|
||||||
|
private async isRpartstoreCapSpent(): Promise<boolean> {
|
||||||
|
const cap = Number(process.env.RPARTSTORE_DAILY_CAP);
|
||||||
|
const limit = Number.isFinite(cap) && cap >= 0 ? Math.floor(cap) : 10;
|
||||||
|
try {
|
||||||
|
const used = Number((await this.redis.get(rpartstoreDailyKey(new Date()))) ?? 0);
|
||||||
|
return used >= limit;
|
||||||
|
} catch {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async enqueueRpartstoreDecode(vin: string): Promise<void> {
|
||||||
|
// Day-scoped jobId: dedupes concurrent requests for the same VIN today while
|
||||||
|
// letting a capped/failed VIN be re-queued tomorrow (BullMQ ignores a re-add
|
||||||
|
// whose jobId still exists among kept completed/failed jobs).
|
||||||
|
await this.rpartstoreQueue.add(
|
||||||
|
"rpartstore-decode",
|
||||||
|
{ vin },
|
||||||
|
{
|
||||||
|
jobId: `rpartstore-${vin}-${istanbulDayKey(new Date())}`,
|
||||||
|
removeOnComplete: true,
|
||||||
|
removeOnFail: false,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Vinpin ePER decode-oracle fallback for a no-catalog VIN (feature-flagged,
|
* Vinpin ePER decode-oracle fallback for a no-catalog VIN (feature-flagged,
|
||||||
* guarded by the caller on VINPIN_ENABLED + brand allowlist).
|
* guarded by the caller on VINPIN_ENABLED + brand allowlist).
|
||||||
|
|||||||
@@ -15,6 +15,11 @@ import { processExpertRewards } from "./jobs/processors/expert-rewards.processor
|
|||||||
import { processLifecycleEmails } from "./jobs/processors/lifecycle-email.processor";
|
import { processLifecycleEmails } from "./jobs/processors/lifecycle-email.processor";
|
||||||
import { processPartPriceRefresh } from "./jobs/processors/part-price-refresh.processor";
|
import { processPartPriceRefresh } from "./jobs/processors/part-price-refresh.processor";
|
||||||
import { processQueryCleanup } from "./jobs/processors/query-cleanup.processor";
|
import { processQueryCleanup } from "./jobs/processors/query-cleanup.processor";
|
||||||
|
import {
|
||||||
|
buildRpartstoreClient,
|
||||||
|
processRpartstoreDecode,
|
||||||
|
rpartstoreDailyCapFromEnv,
|
||||||
|
} from "./jobs/processors/rpartstore-decode.processor";
|
||||||
import { processSubscriptionExpiry } from "./jobs/processors/subscription-expiry.processor";
|
import { processSubscriptionExpiry } from "./jobs/processors/subscription-expiry.processor";
|
||||||
import { processTranslation } from "./jobs/processors/translation.processor";
|
import { processTranslation } from "./jobs/processors/translation.processor";
|
||||||
import { processVinpinDecode } from "./jobs/processors/vinpin-decode.processor";
|
import { processVinpinDecode } from "./jobs/processors/vinpin-decode.processor";
|
||||||
@@ -244,6 +249,54 @@ vinpinDecodeWorker.on("failed", (job, err) => {
|
|||||||
|
|
||||||
workers.push(vinpinDecodeWorker);
|
workers.push(vinpinDecodeWorker);
|
||||||
|
|
||||||
|
// RPartStore Decode Worker (Renault/Dacia VINs the pcat/PL24/emex race couldn't
|
||||||
|
// identify — runs BEFORE Vinpin). One shared dealer account: concurrency 1 plus
|
||||||
|
// a 1-job-per-6 s limiter (the portal allows 2 VIN searches per 10 s), and the
|
||||||
|
// processor enforces the hard RPARTSTORE_DAILY_CAP. Strict no-op when
|
||||||
|
// RPARTSTORE_ENABLED!=true. Its own ioredis client caches the 1 h Okta token
|
||||||
|
// and the per-day counter (BullMQ's connection is not for app data).
|
||||||
|
const rpartstoreRedis = new Redis({
|
||||||
|
host: process.env.REDIS_HOST || "localhost",
|
||||||
|
port: Number(process.env.REDIS_PORT) || 6379,
|
||||||
|
password: process.env.REDIS_PASSWORD || undefined,
|
||||||
|
maxRetriesPerRequest: null,
|
||||||
|
lazyConnect: true,
|
||||||
|
});
|
||||||
|
let rpartstoreClient: ReturnType<typeof buildRpartstoreClient> | null = null;
|
||||||
|
const rpartstoreDecodeWorker = new Worker(
|
||||||
|
QUEUE_NAMES.RPARTSTORE_DECODE,
|
||||||
|
async (job) => {
|
||||||
|
return processRpartstoreDecode(job, {
|
||||||
|
db,
|
||||||
|
redis: rpartstoreRedis,
|
||||||
|
decoder: () => {
|
||||||
|
rpartstoreClient ??= buildRpartstoreClient(rpartstoreRedis);
|
||||||
|
return rpartstoreClient;
|
||||||
|
},
|
||||||
|
dailyCap: rpartstoreDailyCapFromEnv(),
|
||||||
|
});
|
||||||
|
},
|
||||||
|
{
|
||||||
|
connection,
|
||||||
|
concurrency: 1,
|
||||||
|
limiter: { max: 1, duration: 6_000 },
|
||||||
|
...(telemetry ? { telemetry } : {}),
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
rpartstoreDecodeWorker.on("completed", (job, result) => {
|
||||||
|
console.log(`[worker] rpartstore-decode job ${job.id} completed → ${result?.status}`);
|
||||||
|
});
|
||||||
|
|
||||||
|
rpartstoreDecodeWorker.on("failed", (job, err) => {
|
||||||
|
console.error(`[worker] rpartstore-decode job ${job?.id} failed: ${err.message}`);
|
||||||
|
Sentry.captureException(err, {
|
||||||
|
tags: { queue: QUEUE_NAMES.RPARTSTORE_DECODE, jobId: job?.id },
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
workers.push(rpartstoreDecodeWorker);
|
||||||
|
|
||||||
// Vinpin warm-session daemon: holds the single Vinpin seat warm (browser + login
|
// Vinpin warm-session daemon: holds the single Vinpin seat warm (browser + login
|
||||||
// + Fiat ePER / Renault Rpartstore / Dialogys windows open) during business hours
|
// + Fiat ePER / Renault Rpartstore / Dialogys windows open) during business hours
|
||||||
// (08:00–21:00 Europe/Istanbul), keepalive-nudged every ~75s, so decodes run on
|
// (08:00–21:00 Europe/Istanbul), keepalive-nudged every ~75s, so decodes run on
|
||||||
@@ -355,6 +408,9 @@ async function shutdown(signal: string) {
|
|||||||
await vinpinDaemon.stop();
|
await vinpinDaemon.stop();
|
||||||
console.log("[worker] Vinpin warm daemon stopped");
|
console.log("[worker] Vinpin warm daemon stopped");
|
||||||
|
|
||||||
|
// 2c. Release the RPartStore token/counter Redis client.
|
||||||
|
rpartstoreRedis.disconnect();
|
||||||
|
|
||||||
// 3. Close database connection
|
// 3. Close database connection
|
||||||
await sql.end();
|
await sql.end();
|
||||||
console.log("[worker] Database connection closed");
|
console.log("[worker] Database connection closed");
|
||||||
|
|||||||
95
apps/web/src/components/dunning-banner.tsx
Normal file
95
apps/web/src/components/dunning-banner.tsx
Normal file
@@ -0,0 +1,95 @@
|
|||||||
|
import { api } from "@/lib/api-client";
|
||||||
|
import { capture } from "@/lib/posthog";
|
||||||
|
import { Button } from "@sase/ui";
|
||||||
|
import { useQuery } from "@tanstack/react-query";
|
||||||
|
import { CreditCard } from "lucide-react";
|
||||||
|
import { useEffect, useRef } from "react";
|
||||||
|
|
||||||
|
interface Subscription {
|
||||||
|
status: string;
|
||||||
|
plan?: { name: string; key: string };
|
||||||
|
// Dunning fields — stamped by the invoice.payment_failed webhook, cleared on
|
||||||
|
// recovery. invoiceUrl is Stripe's hosted invoice page (pay / new card / 3DS).
|
||||||
|
dunningSince?: string | null;
|
||||||
|
dunningInvoiceUrl?: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Failed-renewal (dunning) banner. Before this, a past_due subscriber saw NO
|
||||||
|
* in-app signal at all — full access continued until the hard cutoff, then the
|
||||||
|
* subscription silently died (measured dunning recovery: 0%, first churn
|
||||||
|
* 2026-08-10). Renders on every dashboard page while a renewal invoice is
|
||||||
|
* unpaid; not dismissible on purpose — this is about to cost the user their
|
||||||
|
* subscription. CTA opens Stripe's hosted invoice page, the only surface where
|
||||||
|
* they can actually pay or enter a new card.
|
||||||
|
*/
|
||||||
|
export function DunningBanner() {
|
||||||
|
const viewedRef = useRef(false);
|
||||||
|
|
||||||
|
const { data: subData } = useQuery({
|
||||||
|
queryKey: ["subscription", "me"],
|
||||||
|
queryFn: () =>
|
||||||
|
api.get<{ subscription: Subscription | null; eligibleForTrial: boolean }>(
|
||||||
|
"/subscriptions/me",
|
||||||
|
),
|
||||||
|
});
|
||||||
|
|
||||||
|
const sub = subData?.subscription;
|
||||||
|
// status stays 'active' during dunning (access runs to end_date); once the
|
||||||
|
// sub is cancelled/expired the trial/expiry surfaces take over.
|
||||||
|
const visible = !!sub?.dunningSince && sub.status === "active";
|
||||||
|
const invoiceUrl = sub?.dunningInvoiceUrl ?? null;
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!visible || viewedRef.current) return;
|
||||||
|
viewedRef.current = true;
|
||||||
|
capture("dunning_banner_viewed", {
|
||||||
|
plan_name: sub?.plan?.name,
|
||||||
|
has_invoice_url: !!invoiceUrl,
|
||||||
|
});
|
||||||
|
}, [visible, sub?.plan?.name, invoiceUrl]);
|
||||||
|
|
||||||
|
if (!visible) return null;
|
||||||
|
|
||||||
|
const handleCta = () => {
|
||||||
|
capture("dunning_banner_cta_clicked", { has_invoice_url: !!invoiceUrl });
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<section
|
||||||
|
aria-label="Ödeme sorunu"
|
||||||
|
className="flex items-start gap-3 border-b border-destructive/40 bg-destructive/5 px-4 py-3 sm:items-center sm:px-6"
|
||||||
|
>
|
||||||
|
<CreditCard className="mt-0.5 size-5 shrink-0 text-destructive sm:mt-0" />
|
||||||
|
<div className="flex flex-1 flex-col gap-1 sm:flex-row sm:items-center sm:gap-4">
|
||||||
|
<div>
|
||||||
|
<p className="text-sm font-semibold text-foreground">Abonelik ödemen alınamadı</p>
|
||||||
|
<p className="text-xs text-muted-foreground">
|
||||||
|
Bankan yenileme tahsilatını reddetti. Erişimin kesilmemesi için faturayı öde veya farklı
|
||||||
|
bir kartla tamamla — banka onayı (3D Secure) gerekebilir.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
{invoiceUrl ? (
|
||||||
|
<a
|
||||||
|
href={invoiceUrl}
|
||||||
|
target="_blank"
|
||||||
|
rel="noreferrer"
|
||||||
|
className="shrink-0"
|
||||||
|
onClick={handleCta}
|
||||||
|
>
|
||||||
|
<Button
|
||||||
|
size="sm"
|
||||||
|
className="bg-destructive text-destructive-foreground hover:bg-destructive/90"
|
||||||
|
>
|
||||||
|
Faturayı öde
|
||||||
|
</Button>
|
||||||
|
</a>
|
||||||
|
) : (
|
||||||
|
<p className="shrink-0 text-xs text-muted-foreground">
|
||||||
|
Ödeme e-postandaki bağlantıyı kullan veya destek ile iletişime geç.
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
import { LanguageSwitcher } from "@/components/language-switcher";
|
import { LanguageSwitcher } from "@/components/language-switcher";
|
||||||
import { SiteFooter } from "@/components/site-footer";
|
import { SiteFooter } from "@/components/site-footer";
|
||||||
|
import { DunningBanner } from "@/components/dunning-banner";
|
||||||
import { TrialUrgencyBanner } from "@/components/trial-urgency-banner";
|
import { TrialUrgencyBanner } from "@/components/trial-urgency-banner";
|
||||||
import { TrialValueUpsell } from "@/components/trial-value-upsell";
|
import { TrialValueUpsell } from "@/components/trial-value-upsell";
|
||||||
import { useAuth } from "@/hooks/use-auth";
|
import { useAuth } from "@/hooks/use-auth";
|
||||||
@@ -519,6 +520,7 @@ function DashboardLayout() {
|
|||||||
|
|
||||||
{/* Page Content */}
|
{/* Page Content */}
|
||||||
<main id="main-content" className="flex-1 overflow-auto bg-muted/30">
|
<main id="main-content" className="flex-1 overflow-auto bg-muted/30">
|
||||||
|
<DunningBanner />
|
||||||
<TrialUrgencyBanner />
|
<TrialUrgencyBanner />
|
||||||
<TrialValueUpsell />
|
<TrialValueUpsell />
|
||||||
<div className="p-4 sm:p-6">
|
<div className="p-4 sm:p-6">
|
||||||
|
|||||||
@@ -48,6 +48,8 @@ services:
|
|||||||
- PL24_USERNAME_2=${PL24_USERNAME_2:-}
|
- PL24_USERNAME_2=${PL24_USERNAME_2:-}
|
||||||
- PL24_PASSWORD_2=${PL24_PASSWORD_2:-}
|
- PL24_PASSWORD_2=${PL24_PASSWORD_2:-}
|
||||||
- PL24_PROXY_DE=${PL24_PROXY_DE:-}
|
- PL24_PROXY_DE=${PL24_PROXY_DE:-}
|
||||||
|
- PL24_TR_DISABLED=${PL24_TR_DISABLED:-}
|
||||||
|
- PL24_BACKFILL_ENABLED=${PL24_BACKFILL_ENABLED:-}
|
||||||
- EMEX_USERNAME=${EMEX_USERNAME:-}
|
- EMEX_USERNAME=${EMEX_USERNAME:-}
|
||||||
- EMEX_PASSWORD=${EMEX_PASSWORD:-}
|
- EMEX_PASSWORD=${EMEX_PASSWORD:-}
|
||||||
- EMEX_USE_PROXY=${EMEX_USE_PROXY:-false}
|
- EMEX_USE_PROXY=${EMEX_USE_PROXY:-false}
|
||||||
@@ -68,6 +70,14 @@ services:
|
|||||||
# Rpartstore outage → Renault decodes go straight to Dialogys (drops the
|
# Rpartstore outage → Renault decodes go straight to Dialogys (drops the
|
||||||
# per-decode launch-error probe + "Loading application..." stray + budget burn).
|
# per-decode launch-error probe + "Loading application..." stray + budget burn).
|
||||||
- VINPIN_RPARTSTORE_ENABLED=${VINPIN_RPARTSTORE_ENABLED:-true}
|
- VINPIN_RPARTSTORE_ENABLED=${VINPIN_RPARTSTORE_ENABLED:-true}
|
||||||
|
# RPartStore (Renault/Dacia) VIN-decode fallback — after pcat/PL24/emex, before Vinpin.
|
||||||
|
# Hard daily cap on searches sent to rpartstore.renault.com (default 10).
|
||||||
|
- RPARTSTORE_ENABLED=${RPARTSTORE_ENABLED:-false}
|
||||||
|
- RPARTSTORE_USER=${RPARTSTORE_USER:-}
|
||||||
|
- RPARTSTORE_PASS=${RPARTSTORE_PASS:-}
|
||||||
|
- RPARTSTORE_DAILY_CAP=${RPARTSTORE_DAILY_CAP:-10}
|
||||||
|
- RPARTSTORE_BROKER_URL=${RPARTSTORE_BROKER_URL:-wss://1po-bff.renault-edh.com/ws}
|
||||||
|
- RPARTSTORE_APP_VERSION=${RPARTSTORE_APP_VERSION:-1.34.0.6}
|
||||||
- POSTAL_API_URL=${POSTAL_API_URL:-}
|
- POSTAL_API_URL=${POSTAL_API_URL:-}
|
||||||
- POSTAL_API_KEY=${POSTAL_API_KEY:-}
|
- POSTAL_API_KEY=${POSTAL_API_KEY:-}
|
||||||
- POSTAL_FROM_ADDRESS=${POSTAL_FROM_ADDRESS:-noreply@sase.tr}
|
- POSTAL_FROM_ADDRESS=${POSTAL_FROM_ADDRESS:-noreply@sase.tr}
|
||||||
@@ -142,6 +152,13 @@ services:
|
|||||||
- PREFETCH_RATE_MAX=${PREFETCH_RATE_MAX:-}
|
- PREFETCH_RATE_MAX=${PREFETCH_RATE_MAX:-}
|
||||||
- PREFETCH_MAX_DEPTH=${PREFETCH_MAX_DEPTH:-}
|
- PREFETCH_MAX_DEPTH=${PREFETCH_MAX_DEPTH:-}
|
||||||
- PREFETCH_RATE_PL24=${PREFETCH_RATE_PL24:-}
|
- PREFETCH_RATE_PL24=${PREFETCH_RATE_PL24:-}
|
||||||
|
- PREFETCH_DAILY_PL24=${PREFETCH_DAILY_PL24:-}
|
||||||
|
- PREFETCH_PL24_FAST_DEPTH=${PREFETCH_PL24_FAST_DEPTH:-}
|
||||||
|
- PREFETCH_PL24_DELAY_MS=${PREFETCH_PL24_DELAY_MS:-}
|
||||||
|
- PL24_HTTP_DAILY_MAX=${PL24_HTTP_DAILY_MAX:-}
|
||||||
|
- PL24_HTTP_USER_RESERVE=${PL24_HTTP_USER_RESERVE:-}
|
||||||
|
- TELEGRAM_BOT_TOKEN=${TELEGRAM_BOT_TOKEN:-}
|
||||||
|
- TELEGRAM_CHAT_ID=${TELEGRAM_CHAT_ID:-}
|
||||||
- PREFETCH_RATE_EMEX=${PREFETCH_RATE_EMEX:-}
|
- PREFETCH_RATE_EMEX=${PREFETCH_RATE_EMEX:-}
|
||||||
- PREFETCH_RATE_PCAT=${PREFETCH_RATE_PCAT:-}
|
- PREFETCH_RATE_PCAT=${PREFETCH_RATE_PCAT:-}
|
||||||
- PREFETCH_PCAT_DELAY_MS=${PREFETCH_PCAT_DELAY_MS:-}
|
- PREFETCH_PCAT_DELAY_MS=${PREFETCH_PCAT_DELAY_MS:-}
|
||||||
@@ -198,6 +215,8 @@ services:
|
|||||||
- PL24_USERNAME_2=${PL24_USERNAME_2:-}
|
- PL24_USERNAME_2=${PL24_USERNAME_2:-}
|
||||||
- PL24_PASSWORD_2=${PL24_PASSWORD_2:-}
|
- PL24_PASSWORD_2=${PL24_PASSWORD_2:-}
|
||||||
- PL24_PROXY_DE=${PL24_PROXY_DE:-}
|
- PL24_PROXY_DE=${PL24_PROXY_DE:-}
|
||||||
|
- PL24_TR_DISABLED=${PL24_TR_DISABLED:-}
|
||||||
|
- PL24_BACKFILL_ENABLED=${PL24_BACKFILL_ENABLED:-}
|
||||||
- EMEX_USERNAME=${EMEX_USERNAME:-}
|
- EMEX_USERNAME=${EMEX_USERNAME:-}
|
||||||
- EMEX_PASSWORD=${EMEX_PASSWORD:-}
|
- EMEX_PASSWORD=${EMEX_PASSWORD:-}
|
||||||
- EMEX_USE_PROXY=${EMEX_USE_PROXY:-false}
|
- EMEX_USE_PROXY=${EMEX_USE_PROXY:-false}
|
||||||
@@ -216,6 +235,14 @@ services:
|
|||||||
- VINPIN_WARM_DAEMON=${VINPIN_WARM_DAEMON:-false}
|
- VINPIN_WARM_DAEMON=${VINPIN_WARM_DAEMON:-false}
|
||||||
# Skip Rpartstore during a known upstream outage (Renault → straight to Dialogys).
|
# Skip Rpartstore during a known upstream outage (Renault → straight to Dialogys).
|
||||||
- VINPIN_RPARTSTORE_ENABLED=${VINPIN_RPARTSTORE_ENABLED:-true}
|
- VINPIN_RPARTSTORE_ENABLED=${VINPIN_RPARTSTORE_ENABLED:-true}
|
||||||
|
# RPartStore (Renault/Dacia) VIN-decode fallback — after pcat/PL24/emex, before Vinpin.
|
||||||
|
# Hard daily cap on searches sent to rpartstore.renault.com (default 10).
|
||||||
|
- RPARTSTORE_ENABLED=${RPARTSTORE_ENABLED:-false}
|
||||||
|
- RPARTSTORE_USER=${RPARTSTORE_USER:-}
|
||||||
|
- RPARTSTORE_PASS=${RPARTSTORE_PASS:-}
|
||||||
|
- RPARTSTORE_DAILY_CAP=${RPARTSTORE_DAILY_CAP:-10}
|
||||||
|
- RPARTSTORE_BROKER_URL=${RPARTSTORE_BROKER_URL:-wss://1po-bff.renault-edh.com/ws}
|
||||||
|
- RPARTSTORE_APP_VERSION=${RPARTSTORE_APP_VERSION:-1.34.0.6}
|
||||||
# Novu lifecycle e-mail automation — the worker fires trial-ending + win-back
|
# Novu lifecycle e-mail automation — the worker fires trial-ending + win-back
|
||||||
- NOVU_API_URL=${NOVU_API_URL:-https://api.bildirim.semih.ai}
|
- NOVU_API_URL=${NOVU_API_URL:-https://api.bildirim.semih.ai}
|
||||||
- NOVU_API_KEY=${NOVU_API_KEY:-}
|
- NOVU_API_KEY=${NOVU_API_KEY:-}
|
||||||
|
|||||||
@@ -76,6 +76,26 @@ export const envSchema = z.object({
|
|||||||
.transform((v) => v === "true")
|
.transform((v) => v === "true")
|
||||||
.default("false"),
|
.default("false"),
|
||||||
|
|
||||||
|
// RPartStore (rpartstore.renault.com) Renault/Dacia VIN-decode fallback — runs
|
||||||
|
// AFTER the pcat/PL24/emex race, before Vinpin. Off by default; the worker
|
||||||
|
// needs the dealer credentials. RPARTSTORE_DAILY_CAP is a hard ceiling on VIN
|
||||||
|
// searches sent per Istanbul day (the portal itself also rate-limits 2/10 s).
|
||||||
|
RPARTSTORE_ENABLED: z
|
||||||
|
.string()
|
||||||
|
.transform((v) => v === "true")
|
||||||
|
.default("false"),
|
||||||
|
RPARTSTORE_USER: z.string().optional(),
|
||||||
|
RPARTSTORE_PASS: z.string().optional(),
|
||||||
|
RPARTSTORE_DAILY_CAP: z.coerce.number().int().min(0).default(10),
|
||||||
|
RPARTSTORE_BROKER_URL: z.preprocess(
|
||||||
|
(v) => (typeof v === "string" && v.trim() === "" ? undefined : v),
|
||||||
|
z.string().url().default("wss://1po-bff.renault-edh.com/ws"),
|
||||||
|
),
|
||||||
|
RPARTSTORE_APP_VERSION: z.preprocess(
|
||||||
|
(v) => (typeof v === "string" && v.trim() === "" ? undefined : v),
|
||||||
|
z.string().default("1.34.0.6"),
|
||||||
|
),
|
||||||
|
|
||||||
// Parts-Catalogs (Playwright JWT capture + DataImpulse proxy)
|
// Parts-Catalogs (Playwright JWT capture + DataImpulse proxy)
|
||||||
PCAT_USE_PROXY: z.string().default("true"),
|
PCAT_USE_PROXY: z.string().default("true"),
|
||||||
PCAT_PROXY_HOST: z.string().default("gw.dataimpulse.com"),
|
PCAT_PROXY_HOST: z.string().default("gw.dataimpulse.com"),
|
||||||
|
|||||||
Reference in New Issue
Block a user