@azlib/cms 0.3.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -1396,9 +1396,9 @@ var CMSEngine = class {
1396
1396
  async create(input, authorId = null) {
1397
1397
  const filteredInput = await self.hooks.applyFilters("cms.before_create_input", input, { collection: slug });
1398
1398
  const inputData = { ...filteredInput.data || {} };
1399
- if (filteredInput.title !== void 0) inputData.title = filteredInput.title;
1400
- if (filteredInput.slug !== void 0) inputData.slug = filteredInput.slug;
1401
- if (filteredInput.status !== void 0) inputData.status = filteredInput.status;
1399
+ if (filteredInput.title !== void 0 && inputData.title === void 0) inputData.title = filteredInput.title;
1400
+ if (filteredInput.slug !== void 0 && inputData.slug === void 0) inputData.slug = filteredInput.slug;
1401
+ if (filteredInput.status !== void 0 && inputData.status === void 0) inputData.status = filteredInput.status;
1402
1402
  const { data: normalizedData, errors } = validateAndNormalizeData(collConfig.fields, inputData);
1403
1403
  if (Object.keys(errors).length > 0) throw new Error(`[CMSEngine] Validation failed for collection '${slug}': ${JSON.stringify(errors)}`);
1404
1404
  const title = filteredInput.title ?? normalizedData.title ?? "";
@@ -1450,11 +1450,11 @@ var CMSEngine = class {
1450
1450
  ...existing.data,
1451
1451
  ...filteredInput.data || {}
1452
1452
  };
1453
- if (filteredInput.title !== void 0) mergedData.title = filteredInput.title;
1453
+ if (filteredInput.title !== void 0 && filteredInput.data?.title === void 0) mergedData.title = filteredInput.title;
1454
1454
  else if (existing.title !== void 0 && mergedData.title === void 0) mergedData.title = existing.title;
1455
- if (filteredInput.slug !== void 0) mergedData.slug = filteredInput.slug;
1455
+ if (filteredInput.slug !== void 0 && filteredInput.data?.slug === void 0) mergedData.slug = filteredInput.slug;
1456
1456
  else if (existing.slug !== void 0 && mergedData.slug === void 0) mergedData.slug = existing.slug;
1457
- if (filteredInput.status !== void 0) mergedData.status = filteredInput.status;
1457
+ if (filteredInput.status !== void 0 && filteredInput.data?.status === void 0) mergedData.status = filteredInput.status;
1458
1458
  else if (existing.status !== void 0 && mergedData.status === void 0) mergedData.status = existing.status;
1459
1459
  const { data: normalizedData, errors } = validateAndNormalizeData(collConfig.fields, mergedData);
1460
1460
  if (Object.keys(errors).length > 0) throw new Error(`[CMSEngine] Validation failed updating '${slug}': ${JSON.stringify(errors)}`);
@@ -1841,6 +1841,12 @@ var CMSClient = class {
1841
1841
  ...options.headers || {}
1842
1842
  };
1843
1843
  }
1844
+ /**
1845
+ * Access underlying CMSEngine instance when in in-process mode.
1846
+ */
1847
+ getEngine() {
1848
+ return this.engine;
1849
+ }
1844
1850
  collection(slug) {
1845
1851
  const self = this;
1846
1852
  if (this.engine) {
@@ -1924,6 +1930,9 @@ var CMSClient = class {
1924
1930
  return defaultValue;
1925
1931
  }
1926
1932
  } };
1933
+ /**
1934
+ * Perform an HTTP request against the CMS API (available in remote mode).
1935
+ */
1927
1936
  async request(endpoint, init) {
1928
1937
  if (!this.baseUrl) throw new Error(`[CMSClient] baseUrl must be provided when connecting to a remote CMS API.`);
1929
1938
  const url = `${this.baseUrl}${endpoint}`;
@@ -1946,6 +1955,1285 @@ function createCmsClient(options) {
1946
1955
  return new CMSClient(options);
1947
1956
  }
1948
1957
  //#endregion
1949
- export { CMSClient, CMSEngine, CMSRouter, ContentLifecycle, DEFAULT_COLLECTIONS, DEFAULT_ROLE_CAPABILITIES, HooksManager, MediaManager, MemoryStorageAdapter, OptionsManager, RBACManager, RevisionManager, TaxonomyManager, VALID_STATUS_TRANSITIONS, collection, createCMSEngine, createCMSRouter, createCmsClient, defaultHooks, defineConfig, definePlugin, fields, normalizeConfig, resolveUniqueSlug, slugify, validateAndNormalizeData };
1958
+ //#region src/plugins/ecommerce/schemas.ts
1959
+ /**
1960
+ * Creates the collection configuration for Products.
1961
+ */
1962
+ function createProductCollection(options = {}) {
1963
+ const slug = options.productCollectionSlug ?? "products";
1964
+ const catSlug = options.categoriesTaxonomySlug ?? "product_categories";
1965
+ const tagSlug = options.tagsTaxonomySlug ?? "product_tags";
1966
+ const brandSlug = options.brandsTaxonomySlug ?? "product_brands";
1967
+ const defaultCurrency = options.defaultCurrency ?? "USD";
1968
+ return collection({
1969
+ slug,
1970
+ label: "Products",
1971
+ singularLabel: "Product",
1972
+ description: "Catalog products with pricing, inventory, images, and variants",
1973
+ timestamps: true,
1974
+ revisions: true,
1975
+ draftable: true,
1976
+ taxonomies: [
1977
+ catSlug,
1978
+ tagSlug,
1979
+ brandSlug
1980
+ ],
1981
+ defaultSort: {
1982
+ field: "createdAt",
1983
+ direction: "desc"
1984
+ },
1985
+ fields: [
1986
+ fields.text({
1987
+ name: "title",
1988
+ label: "Product Title",
1989
+ required: true
1990
+ }),
1991
+ fields.slug({
1992
+ from: "title",
1993
+ unique: true
1994
+ }),
1995
+ fields.text({
1996
+ name: "sku",
1997
+ label: "SKU",
1998
+ description: "Stock Keeping Unit identifier"
1999
+ }),
2000
+ fields.number({
2001
+ name: "price",
2002
+ label: "Price",
2003
+ required: true,
2004
+ min: 0
2005
+ }),
2006
+ fields.number({
2007
+ name: "compareAtPrice",
2008
+ label: "Compare At Price",
2009
+ description: "Original retail price for showing strike-through discounts",
2010
+ min: 0
2011
+ }),
2012
+ fields.number({
2013
+ name: "costPrice",
2014
+ label: "Cost Price",
2015
+ description: "Wholesale or production cost for margin tracking",
2016
+ min: 0
2017
+ }),
2018
+ fields.text({
2019
+ name: "currency",
2020
+ label: "Currency",
2021
+ defaultValue: defaultCurrency
2022
+ }),
2023
+ fields.number({
2024
+ name: "stock",
2025
+ label: "Inventory Quantity",
2026
+ defaultValue: 0,
2027
+ min: 0
2028
+ }),
2029
+ fields.boolean({
2030
+ name: "trackInventory",
2031
+ label: "Track Inventory",
2032
+ defaultValue: options.inventoryManagement ?? true
2033
+ }),
2034
+ fields.select({
2035
+ name: "status",
2036
+ label: "Status",
2037
+ options: [
2038
+ "draft",
2039
+ "published",
2040
+ "out_of_stock",
2041
+ "archived"
2042
+ ],
2043
+ defaultValue: "draft"
2044
+ }),
2045
+ fields.richText({
2046
+ name: "description",
2047
+ label: "Full Description"
2048
+ }),
2049
+ fields.text({
2050
+ name: "shortDescription",
2051
+ label: "Short Description"
2052
+ }),
2053
+ fields.image({
2054
+ name: "featuredImage",
2055
+ label: "Featured Image"
2056
+ }),
2057
+ fields.json({
2058
+ name: "gallery",
2059
+ label: "Image Gallery",
2060
+ defaultValue: []
2061
+ }),
2062
+ fields.json({
2063
+ name: "variants",
2064
+ label: "Product Variants",
2065
+ defaultValue: []
2066
+ }),
2067
+ fields.json({
2068
+ name: "attributes",
2069
+ label: "Specifications / Attributes",
2070
+ defaultValue: {}
2071
+ }),
2072
+ fields.number({
2073
+ name: "weight",
2074
+ label: "Weight",
2075
+ min: 0
2076
+ })
2077
+ ]
2078
+ });
2079
+ }
2080
+ /**
2081
+ * Creates the collection configuration for Discounts / Coupons.
2082
+ */
2083
+ function createDiscountCollection(options = {}) {
2084
+ return collection({
2085
+ slug: options.discountCollectionSlug ?? "discounts",
2086
+ label: "Discounts",
2087
+ singularLabel: "Discount",
2088
+ description: "Promotional discount codes and coupons",
2089
+ timestamps: true,
2090
+ revisions: true,
2091
+ draftable: false,
2092
+ defaultSort: {
2093
+ field: "createdAt",
2094
+ direction: "desc"
2095
+ },
2096
+ fields: [
2097
+ fields.text({
2098
+ name: "title",
2099
+ label: "Discount Name",
2100
+ required: true
2101
+ }),
2102
+ fields.text({
2103
+ name: "code",
2104
+ label: "Coupon Code",
2105
+ required: true,
2106
+ unique: true
2107
+ }),
2108
+ fields.select({
2109
+ name: "discountType",
2110
+ label: "Discount Type",
2111
+ options: [
2112
+ "percentage",
2113
+ "fixed_amount",
2114
+ "free_shipping"
2115
+ ],
2116
+ defaultValue: "percentage"
2117
+ }),
2118
+ fields.number({
2119
+ name: "value",
2120
+ label: "Discount Value",
2121
+ required: true,
2122
+ min: 0
2123
+ }),
2124
+ fields.number({
2125
+ name: "minOrderAmount",
2126
+ label: "Minimum Order Amount",
2127
+ min: 0
2128
+ }),
2129
+ fields.number({
2130
+ name: "maxDiscountAmount",
2131
+ label: "Maximum Discount Cap",
2132
+ min: 0
2133
+ }),
2134
+ fields.number({
2135
+ name: "maxUses",
2136
+ label: "Maximum Uses",
2137
+ min: 1
2138
+ }),
2139
+ fields.number({
2140
+ name: "usedCount",
2141
+ label: "Times Used",
2142
+ defaultValue: 0,
2143
+ min: 0
2144
+ }),
2145
+ fields.date({
2146
+ name: "startDate",
2147
+ label: "Start Date"
2148
+ }),
2149
+ fields.date({
2150
+ name: "endDate",
2151
+ label: "Expiration Date"
2152
+ }),
2153
+ fields.select({
2154
+ name: "status",
2155
+ label: "Status",
2156
+ options: [
2157
+ "active",
2158
+ "disabled",
2159
+ "expired"
2160
+ ],
2161
+ defaultValue: "active"
2162
+ }),
2163
+ fields.json({
2164
+ name: "appliesToProductIds",
2165
+ label: "Specific Product IDs",
2166
+ defaultValue: []
2167
+ }),
2168
+ fields.json({
2169
+ name: "appliesToCategoryIds",
2170
+ label: "Specific Category Term IDs",
2171
+ defaultValue: []
2172
+ })
2173
+ ]
2174
+ });
2175
+ }
2176
+ /**
2177
+ * Creates the collection configuration for Orders.
2178
+ */
2179
+ function createOrderCollection(options = {}) {
2180
+ const slug = options.orderCollectionSlug ?? "orders";
2181
+ const defaultCurrency = options.defaultCurrency ?? "USD";
2182
+ return collection({
2183
+ slug,
2184
+ label: "Orders",
2185
+ singularLabel: "Order",
2186
+ description: "Customer orders, status lifecycle, and line items",
2187
+ timestamps: true,
2188
+ revisions: true,
2189
+ draftable: false,
2190
+ defaultSort: {
2191
+ field: "createdAt",
2192
+ direction: "desc"
2193
+ },
2194
+ fields: [
2195
+ fields.text({
2196
+ name: "orderNumber",
2197
+ label: "Order Number",
2198
+ required: true,
2199
+ unique: true
2200
+ }),
2201
+ fields.text({
2202
+ name: "customerEmail",
2203
+ label: "Customer Email",
2204
+ required: true
2205
+ }),
2206
+ fields.text({
2207
+ name: "customerName",
2208
+ label: "Customer Name"
2209
+ }),
2210
+ fields.select({
2211
+ name: "status",
2212
+ label: "Status",
2213
+ options: [
2214
+ "pending",
2215
+ "paid",
2216
+ "processing",
2217
+ "shipped",
2218
+ "delivered",
2219
+ "cancelled",
2220
+ "refunded"
2221
+ ],
2222
+ defaultValue: "pending"
2223
+ }),
2224
+ fields.text({
2225
+ name: "currency",
2226
+ label: "Currency",
2227
+ defaultValue: defaultCurrency
2228
+ }),
2229
+ fields.json({
2230
+ name: "items",
2231
+ label: "Line Items",
2232
+ defaultValue: []
2233
+ }),
2234
+ fields.number({
2235
+ name: "subtotal",
2236
+ label: "Subtotal",
2237
+ defaultValue: 0,
2238
+ min: 0
2239
+ }),
2240
+ fields.number({
2241
+ name: "discountTotal",
2242
+ label: "Discount Total",
2243
+ defaultValue: 0,
2244
+ min: 0
2245
+ }),
2246
+ fields.text({
2247
+ name: "discountCode",
2248
+ label: "Discount Code"
2249
+ }),
2250
+ fields.number({
2251
+ name: "shippingTotal",
2252
+ label: "Shipping Total",
2253
+ defaultValue: 0,
2254
+ min: 0
2255
+ }),
2256
+ fields.number({
2257
+ name: "taxTotal",
2258
+ label: "Tax Total",
2259
+ defaultValue: 0,
2260
+ min: 0
2261
+ }),
2262
+ fields.number({
2263
+ name: "total",
2264
+ label: "Grand Total",
2265
+ defaultValue: 0,
2266
+ min: 0
2267
+ }),
2268
+ fields.json({
2269
+ name: "shippingAddress",
2270
+ label: "Shipping Address"
2271
+ }),
2272
+ fields.json({
2273
+ name: "billingAddress",
2274
+ label: "Billing Address"
2275
+ }),
2276
+ fields.text({
2277
+ name: "paymentMethod",
2278
+ label: "Payment Method"
2279
+ }),
2280
+ fields.text({
2281
+ name: "notes",
2282
+ label: "Notes"
2283
+ })
2284
+ ]
2285
+ });
2286
+ }
2287
+ /**
2288
+ * Creates the standard e-commerce taxonomies: product categories, tags, and brands.
2289
+ */
2290
+ function createEcommerceTaxonomies(options = {}) {
2291
+ const productSlug = options.productCollectionSlug ?? "products";
2292
+ const catSlug = options.categoriesTaxonomySlug ?? "product_categories";
2293
+ const tagSlug = options.tagsTaxonomySlug ?? "product_tags";
2294
+ const brandSlug = options.brandsTaxonomySlug ?? "product_brands";
2295
+ return [
2296
+ {
2297
+ slug: catSlug,
2298
+ label: "Product Categories",
2299
+ singularLabel: "Product Category",
2300
+ hierarchical: true,
2301
+ postTypes: [productSlug],
2302
+ description: "Hierarchical categories and catalog collections for organizing products"
2303
+ },
2304
+ {
2305
+ slug: tagSlug,
2306
+ label: "Product Tags",
2307
+ singularLabel: "Product Tag",
2308
+ hierarchical: false,
2309
+ postTypes: [productSlug],
2310
+ description: "Flat keyword tags for filtering products"
2311
+ },
2312
+ {
2313
+ slug: brandSlug,
2314
+ label: "Brands",
2315
+ singularLabel: "Brand",
2316
+ hierarchical: false,
2317
+ postTypes: [productSlug],
2318
+ description: "Product manufacturers or brand labels"
2319
+ }
2320
+ ];
2321
+ }
2322
+ //#endregion
2323
+ //#region src/plugins/ecommerce/service.ts
2324
+ var EcommerceService = class {
2325
+ engine;
2326
+ options;
2327
+ productSlug;
2328
+ discountSlug;
2329
+ orderSlug;
2330
+ categoriesTaxonomy;
2331
+ tagsTaxonomy;
2332
+ brandsTaxonomy;
2333
+ defaultCurrency;
2334
+ inventoryManagement;
2335
+ constructor(engine, options = {}) {
2336
+ this.engine = engine;
2337
+ this.options = options;
2338
+ this.productSlug = options.productCollectionSlug ?? "products";
2339
+ this.discountSlug = options.discountCollectionSlug ?? "discounts";
2340
+ this.orderSlug = options.orderCollectionSlug ?? "orders";
2341
+ this.categoriesTaxonomy = options.categoriesTaxonomySlug ?? "product_categories";
2342
+ this.tagsTaxonomy = options.tagsTaxonomySlug ?? "product_tags";
2343
+ this.brandsTaxonomy = options.brandsTaxonomySlug ?? "product_brands";
2344
+ this.defaultCurrency = options.defaultCurrency ?? "USD";
2345
+ this.inventoryManagement = options.inventoryManagement ?? true;
2346
+ }
2347
+ get productsCollection() {
2348
+ return this.engine.collection(this.productSlug);
2349
+ }
2350
+ get discountsCollection() {
2351
+ return this.engine.collection(this.discountSlug);
2352
+ }
2353
+ get ordersCollection() {
2354
+ return this.engine.collection(this.orderSlug);
2355
+ }
2356
+ /**
2357
+ * Create a new product in the catalog.
2358
+ */
2359
+ async createProduct(input, authorId) {
2360
+ const productData = {
2361
+ price: input.price,
2362
+ compareAtPrice: input.compareAtPrice,
2363
+ costPrice: input.costPrice,
2364
+ sku: input.sku,
2365
+ currency: input.currency ?? this.defaultCurrency,
2366
+ stock: input.stock ?? 0,
2367
+ trackInventory: input.trackInventory ?? this.inventoryManagement,
2368
+ status: input.status ?? "draft",
2369
+ description: input.description,
2370
+ shortDescription: input.shortDescription,
2371
+ featuredImage: input.featuredImage,
2372
+ gallery: input.gallery ?? [],
2373
+ variants: input.variants ?? [],
2374
+ attributes: input.attributes ?? {},
2375
+ weight: input.weight
2376
+ };
2377
+ const product = await this.productsCollection.create({
2378
+ title: input.title,
2379
+ slug: input.slug,
2380
+ status: input.status === "published" ? "published" : "draft",
2381
+ data: productData
2382
+ }, authorId);
2383
+ if (input.categoryIds && input.categoryIds.length > 0) await this.engine.taxonomies.assignTerms(product.id, input.categoryIds);
2384
+ if (input.tagIds && input.tagIds.length > 0) await this.engine.taxonomies.assignTerms(product.id, input.tagIds);
2385
+ if (input.brandIds && input.brandIds.length > 0) await this.engine.taxonomies.assignTerms(product.id, input.brandIds);
2386
+ await this.engine.hooks.doAction("ecommerce.product_created", product);
2387
+ return product;
2388
+ }
2389
+ /**
2390
+ * Update an existing product.
2391
+ */
2392
+ async updateProduct(id, input, authorId) {
2393
+ const existing = await this.getProduct(id);
2394
+ if (!existing) return null;
2395
+ const updatedData = {
2396
+ ...existing.data,
2397
+ ...input.price !== void 0 ? { price: input.price } : {},
2398
+ ...input.compareAtPrice !== void 0 ? { compareAtPrice: input.compareAtPrice } : {},
2399
+ ...input.costPrice !== void 0 ? { costPrice: input.costPrice } : {},
2400
+ ...input.sku !== void 0 ? { sku: input.sku } : {},
2401
+ ...input.currency !== void 0 ? { currency: input.currency } : {},
2402
+ ...input.stock !== void 0 ? { stock: input.stock } : {},
2403
+ ...input.trackInventory !== void 0 ? { trackInventory: input.trackInventory } : {},
2404
+ ...input.status !== void 0 ? { status: input.status } : {},
2405
+ ...input.description !== void 0 ? { description: input.description } : {},
2406
+ ...input.shortDescription !== void 0 ? { shortDescription: input.shortDescription } : {},
2407
+ ...input.featuredImage !== void 0 ? { featuredImage: input.featuredImage } : {},
2408
+ ...input.gallery !== void 0 ? { gallery: input.gallery } : {},
2409
+ ...input.variants !== void 0 ? { variants: input.variants } : {},
2410
+ ...input.attributes !== void 0 ? { attributes: input.attributes } : {},
2411
+ ...input.weight !== void 0 ? { weight: input.weight } : {}
2412
+ };
2413
+ const updated = await this.productsCollection.update(id, {
2414
+ ...input.title ? { title: input.title } : {},
2415
+ ...input.slug ? { slug: input.slug } : {},
2416
+ ...input.status === "published" ? { status: "published" } : input.status ? { status: "draft" } : {},
2417
+ data: updatedData
2418
+ }, authorId);
2419
+ if (updated) {
2420
+ if (input.categoryIds) await this.engine.taxonomies.assignTerms(id, input.categoryIds);
2421
+ if (input.tagIds) await this.engine.taxonomies.assignTerms(id, input.tagIds);
2422
+ if (input.brandIds) await this.engine.taxonomies.assignTerms(id, input.brandIds);
2423
+ await this.engine.hooks.doAction("ecommerce.product_updated", updated);
2424
+ }
2425
+ return updated;
2426
+ }
2427
+ /**
2428
+ * Get a product by ID.
2429
+ */
2430
+ async getProduct(id) {
2431
+ return this.productsCollection.findById(id);
2432
+ }
2433
+ /**
2434
+ * Get a product by its URL slug.
2435
+ */
2436
+ async getProductBySlug(slug) {
2437
+ return this.productsCollection.findBySlug(slug);
2438
+ }
2439
+ /**
2440
+ * Delete a product by ID.
2441
+ */
2442
+ async deleteProduct(id) {
2443
+ const deleted = await this.productsCollection.delete(id);
2444
+ if (deleted) await this.engine.hooks.doAction("ecommerce.product_deleted", id);
2445
+ return deleted;
2446
+ }
2447
+ /**
2448
+ * List and filter catalog products.
2449
+ */
2450
+ async listProducts(query = {}) {
2451
+ let termIds;
2452
+ if (query.categorySlug) {
2453
+ const term = await this.engine.taxonomies.getTermBySlug(this.categoriesTaxonomy, query.categorySlug);
2454
+ if (term) termIds = [term.id];
2455
+ else return {
2456
+ items: [],
2457
+ total: 0,
2458
+ limit: query.limit ?? 20,
2459
+ offset: query.offset ?? 0,
2460
+ hasMore: false
2461
+ };
2462
+ } else if (query.categoryId) termIds = [query.categoryId];
2463
+ if (query.tagSlug) {
2464
+ const term = await this.engine.taxonomies.getTermBySlug(this.tagsTaxonomy, query.tagSlug);
2465
+ if (term) termIds = termIds ? [...termIds, term.id] : [term.id];
2466
+ }
2467
+ if (query.brandSlug) {
2468
+ const term = await this.engine.taxonomies.getTermBySlug(this.brandsTaxonomy, query.brandSlug);
2469
+ if (term) termIds = termIds ? [...termIds, term.id] : [term.id];
2470
+ }
2471
+ const contentStatus = query.status === "draft" ? "draft" : query.status === "published" ? "published" : void 0;
2472
+ const result = await this.productsCollection.find({
2473
+ search: query.search,
2474
+ termIds,
2475
+ status: contentStatus ?? "published",
2476
+ limit: query.limit ?? 20,
2477
+ offset: query.offset ?? 0,
2478
+ orderBy: query.orderBy === "price" || query.orderBy === "stock" ? void 0 : query.orderBy,
2479
+ orderDirection: query.orderDirection ?? "desc"
2480
+ });
2481
+ let items = result.items;
2482
+ if (query.status) {
2483
+ const statuses = Array.isArray(query.status) ? query.status : [query.status];
2484
+ items = items.filter((p) => statuses.includes(p.data.status));
2485
+ }
2486
+ if (query.minPrice !== void 0) items = items.filter((p) => p.data.price >= query.minPrice);
2487
+ if (query.maxPrice !== void 0) items = items.filter((p) => p.data.price <= query.maxPrice);
2488
+ if (query.inStock) items = items.filter((p) => !p.data.trackInventory || p.data.stock > 0);
2489
+ if (query.orderBy === "price") items.sort((a, b) => query.orderDirection === "asc" ? a.data.price - b.data.price : b.data.price - a.data.price);
2490
+ else if (query.orderBy === "stock") items.sort((a, b) => query.orderDirection === "asc" ? a.data.stock - b.data.stock : b.data.stock - a.data.stock);
2491
+ return {
2492
+ items,
2493
+ total: items.length,
2494
+ limit: result.limit,
2495
+ offset: result.offset,
2496
+ hasMore: result.offset + items.length < result.total
2497
+ };
2498
+ }
2499
+ /**
2500
+ * Upload and link a product image to its gallery and featured slot.
2501
+ */
2502
+ async uploadProductImage(productId, file, authorId) {
2503
+ const product = await this.getProduct(productId);
2504
+ if (!product) throw new Error(`[EcommerceService] Product '${productId}' not found.`);
2505
+ const media = await this.engine.media.upload({
2506
+ filename: file.filename,
2507
+ mimeType: file.mimeType,
2508
+ sizeBytes: file.sizeBytes,
2509
+ url: file.url,
2510
+ altText: file.altText ?? product.title,
2511
+ caption: file.caption,
2512
+ width: file.width,
2513
+ height: file.height
2514
+ }, authorId);
2515
+ const gallery = [...product.data.gallery || []];
2516
+ gallery.push({
2517
+ id: media.id,
2518
+ url: media.url,
2519
+ altText: media.altText,
2520
+ caption: media.caption,
2521
+ width: media.width,
2522
+ height: media.height
2523
+ });
2524
+ const isFeatured = file.isFeatured ?? !product.data.featuredImage;
2525
+ const updated = await this.productsCollection.update(productId, { data: {
2526
+ ...product.data,
2527
+ gallery,
2528
+ ...isFeatured ? { featuredImage: media.url } : {}
2529
+ } });
2530
+ await this.engine.hooks.doAction("ecommerce.product_image_added", {
2531
+ product: updated ?? product,
2532
+ media
2533
+ });
2534
+ return {
2535
+ media,
2536
+ product: updated ?? product
2537
+ };
2538
+ }
2539
+ /**
2540
+ * Adjust inventory stock for a product or variant.
2541
+ */
2542
+ async adjustStock(productId, delta, variantId) {
2543
+ const product = await this.getProduct(productId);
2544
+ if (!product) return null;
2545
+ if (!product.data.trackInventory) return product;
2546
+ let newStock = product.data.stock;
2547
+ const variants = [...product.data.variants || []];
2548
+ if (variantId) {
2549
+ const idx = variants.findIndex((v) => v.id === variantId);
2550
+ if (idx !== -1) {
2551
+ const currentVariantStock = variants[idx].stock ?? 0;
2552
+ const updatedVariantStock = Math.max(0, currentVariantStock + delta);
2553
+ variants[idx] = {
2554
+ ...variants[idx],
2555
+ stock: updatedVariantStock
2556
+ };
2557
+ }
2558
+ } else newStock = Math.max(0, product.data.stock + delta);
2559
+ const newStatus = newStock === 0 && product.data.status === "published" ? "out_of_stock" : product.data.status === "out_of_stock" && newStock > 0 ? "published" : product.data.status;
2560
+ const updated = await this.productsCollection.update(productId, { data: {
2561
+ ...product.data,
2562
+ stock: newStock,
2563
+ variants,
2564
+ status: newStatus
2565
+ } });
2566
+ await this.engine.hooks.doAction("ecommerce.stock_changed", {
2567
+ product: updated ?? product,
2568
+ delta,
2569
+ variantId,
2570
+ oldStock: product.data.stock,
2571
+ newStock
2572
+ });
2573
+ return updated;
2574
+ }
2575
+ /**
2576
+ * Create a catalog category in the hierarchical category taxonomy.
2577
+ */
2578
+ async createCategory(input) {
2579
+ return this.engine.taxonomies.createTerm(this.categoriesTaxonomy, input);
2580
+ }
2581
+ /**
2582
+ * Get all catalog categories.
2583
+ */
2584
+ async getCategories(options) {
2585
+ return this.engine.taxonomies.getTerms(this.categoriesTaxonomy, options);
2586
+ }
2587
+ /**
2588
+ * Get full hierarchical catalog category tree.
2589
+ */
2590
+ async getCategoryTree() {
2591
+ return this.engine.taxonomies.getTermTree(this.categoriesTaxonomy);
2592
+ }
2593
+ /**
2594
+ * Assign category IDs to a product.
2595
+ */
2596
+ async assignProductCategory(productId, categoryIds) {
2597
+ const ids = Array.isArray(categoryIds) ? categoryIds : [categoryIds];
2598
+ await this.engine.taxonomies.assignTerms(productId, ids);
2599
+ }
2600
+ /**
2601
+ * Get assigned categories for a product.
2602
+ */
2603
+ async getProductCategories(productId) {
2604
+ return this.engine.taxonomies.getContentTerms(productId, this.categoriesTaxonomy);
2605
+ }
2606
+ /**
2607
+ * Create a promotional coupon / discount code.
2608
+ */
2609
+ async createDiscount(input, authorId) {
2610
+ const normalizedCode = input.code.trim().toUpperCase();
2611
+ const discountData = {
2612
+ code: normalizedCode,
2613
+ discountType: input.discountType,
2614
+ value: input.value,
2615
+ minOrderAmount: input.minOrderAmount,
2616
+ maxDiscountAmount: input.maxDiscountAmount,
2617
+ maxUses: input.maxUses,
2618
+ usedCount: 0,
2619
+ startDate: input.startDate,
2620
+ endDate: input.endDate,
2621
+ status: input.status ?? "active",
2622
+ appliesToProductIds: input.appliesToProductIds ?? [],
2623
+ appliesToCategoryIds: input.appliesToCategoryIds ?? []
2624
+ };
2625
+ const discount = await this.discountsCollection.create({
2626
+ title: input.title,
2627
+ slug: normalizedCode.toLowerCase(),
2628
+ status: "published",
2629
+ data: discountData
2630
+ }, authorId);
2631
+ await this.engine.hooks.doAction("ecommerce.discount_created", discount);
2632
+ return discount;
2633
+ }
2634
+ /**
2635
+ * Find a discount code.
2636
+ */
2637
+ async getDiscountByCode(code) {
2638
+ const normalized = code.trim().toUpperCase();
2639
+ return (await this.discountsCollection.find({ limit: 100 })).items.find((d) => d.data.code?.toUpperCase() === normalized) ?? null;
2640
+ }
2641
+ /**
2642
+ * Validate a discount coupon against cart items and order subtotal.
2643
+ */
2644
+ async validateDiscount(code, cartSubtotal, productIds = []) {
2645
+ const normalized = code.trim().toUpperCase();
2646
+ const discount = await this.getDiscountByCode(normalized);
2647
+ if (!discount) return {
2648
+ valid: false,
2649
+ code: normalized,
2650
+ discountAmount: 0,
2651
+ message: `Discount code '${code}' not found.`
2652
+ };
2653
+ const { data } = discount;
2654
+ if (data.status !== "active") return {
2655
+ valid: false,
2656
+ code: normalized,
2657
+ discountAmount: 0,
2658
+ message: "Discount code is currently inactive."
2659
+ };
2660
+ const now = Date.now();
2661
+ if (data.startDate && new Date(data.startDate).getTime() > now) return {
2662
+ valid: false,
2663
+ code: normalized,
2664
+ discountAmount: 0,
2665
+ message: "Discount code is not yet active."
2666
+ };
2667
+ if (data.endDate && new Date(data.endDate).getTime() < now) return {
2668
+ valid: false,
2669
+ code: normalized,
2670
+ discountAmount: 0,
2671
+ message: "Discount code has expired."
2672
+ };
2673
+ if (data.maxUses !== void 0 && data.usedCount >= data.maxUses) return {
2674
+ valid: false,
2675
+ code: normalized,
2676
+ discountAmount: 0,
2677
+ message: "Discount code usage limit reached."
2678
+ };
2679
+ if (data.minOrderAmount !== void 0 && cartSubtotal < data.minOrderAmount) return {
2680
+ valid: false,
2681
+ code: normalized,
2682
+ discountAmount: 0,
2683
+ message: `Minimum order amount of ${data.minOrderAmount} required for this coupon.`
2684
+ };
2685
+ if (data.appliesToProductIds && data.appliesToProductIds.length > 0 && productIds.length > 0) {
2686
+ if (!productIds.some((id) => data.appliesToProductIds?.includes(id))) return {
2687
+ valid: false,
2688
+ code: normalized,
2689
+ discountAmount: 0,
2690
+ message: "Coupon is not applicable to any products in your cart."
2691
+ };
2692
+ }
2693
+ let discountAmount = 0;
2694
+ if (data.discountType === "percentage") {
2695
+ discountAmount = cartSubtotal * data.value / 100;
2696
+ if (data.maxDiscountAmount) discountAmount = Math.min(discountAmount, data.maxDiscountAmount);
2697
+ } else if (data.discountType === "fixed_amount") discountAmount = Math.min(data.value, cartSubtotal);
2698
+ else if (data.discountType === "free_shipping") discountAmount = 0;
2699
+ discountAmount = await this.engine.hooks.applyFilters("ecommerce.apply_discount", discountAmount, {
2700
+ discount,
2701
+ cartSubtotal
2702
+ });
2703
+ return {
2704
+ valid: true,
2705
+ code: normalized,
2706
+ discountAmount: Math.round(discountAmount * 100) / 100,
2707
+ discountType: data.discountType,
2708
+ discount
2709
+ };
2710
+ }
2711
+ /**
2712
+ * Calculate cart subtotals, apply discounts, shipping, and taxes.
2713
+ */
2714
+ async calculateCart(input) {
2715
+ const lineItems = [];
2716
+ let subtotal = 0;
2717
+ const productIds = [];
2718
+ for (const item of input.items) {
2719
+ const product = await this.getProduct(item.productId);
2720
+ if (!product) throw new Error(`[EcommerceService] Product '${item.productId}' not found.`);
2721
+ productIds.push(product.id);
2722
+ let price = product.data.price;
2723
+ let sku = product.data.sku;
2724
+ let title = product.title ?? "Product";
2725
+ let availableStock = product.data.stock;
2726
+ let image = product.data.featuredImage;
2727
+ if (item.variantId && product.data.variants) {
2728
+ const variant = product.data.variants.find((v) => v.id === item.variantId);
2729
+ if (variant) {
2730
+ price = variant.price ?? price;
2731
+ sku = variant.sku ?? sku;
2732
+ title = `${title} (${variant.title})`;
2733
+ availableStock = variant.stock ?? availableStock;
2734
+ image = variant.image ?? image;
2735
+ }
2736
+ }
2737
+ if (this.inventoryManagement && product.data.trackInventory && availableStock < item.quantity) throw new Error(`[EcommerceService] Insufficient stock for '${title}'. Available: ${availableStock}, Requested: ${item.quantity}.`);
2738
+ const itemSubtotal = Math.round(price * item.quantity * 100) / 100;
2739
+ subtotal += itemSubtotal;
2740
+ lineItems.push({
2741
+ productId: product.id,
2742
+ variantId: item.variantId,
2743
+ title,
2744
+ sku,
2745
+ price,
2746
+ quantity: item.quantity,
2747
+ subtotal: itemSubtotal,
2748
+ image
2749
+ });
2750
+ }
2751
+ subtotal = Math.round(subtotal * 100) / 100;
2752
+ let discountTotal = 0;
2753
+ let discountType;
2754
+ if (input.discountCode) {
2755
+ const validation = await this.validateDiscount(input.discountCode, subtotal, productIds);
2756
+ if (validation.valid) {
2757
+ discountTotal = validation.discountAmount;
2758
+ discountType = validation.discountType;
2759
+ }
2760
+ }
2761
+ let shippingTotal = input.shippingCost ?? this.options.defaultShippingCost ?? 0;
2762
+ if (discountType === "free_shipping") shippingTotal = 0;
2763
+ const taxRate = input.taxRate ?? this.options.defaultTaxRate ?? 0;
2764
+ const taxableAmount = Math.max(0, subtotal - discountTotal);
2765
+ const taxTotal = Math.round(taxableAmount * taxRate * 100) / 100;
2766
+ const total = Math.round((taxableAmount + shippingTotal + taxTotal) * 100) / 100;
2767
+ const result = {
2768
+ items: lineItems,
2769
+ subtotal,
2770
+ discountTotal,
2771
+ discountCode: input.discountCode,
2772
+ shippingTotal,
2773
+ taxTotal,
2774
+ total,
2775
+ currency: this.defaultCurrency
2776
+ };
2777
+ return this.engine.hooks.applyFilters("ecommerce.calculate_totals", result, input);
2778
+ }
2779
+ /**
2780
+ * Place a new order with cart validation, inventory deduction, and coupon counter updates.
2781
+ */
2782
+ async createOrder(input, authorId) {
2783
+ const calc = await this.calculateCart({
2784
+ items: input.items,
2785
+ discountCode: input.discountCode,
2786
+ shippingCost: input.shippingCost,
2787
+ taxRate: input.taxRate
2788
+ });
2789
+ const orderNumber = `ORD-${(/* @__PURE__ */ new Date()).toISOString().slice(0, 10).replace(/-/g, "")}-${Math.random().toString(36).substring(2, 6).toUpperCase()}`;
2790
+ if (this.inventoryManagement) for (const item of input.items) await this.adjustStock(item.productId, -item.quantity, item.variantId);
2791
+ if (input.discountCode) {
2792
+ const discount = await this.getDiscountByCode(input.discountCode);
2793
+ if (discount) await this.discountsCollection.update(discount.id, { data: {
2794
+ ...discount.data,
2795
+ usedCount: (discount.data.usedCount || 0) + 1
2796
+ } });
2797
+ }
2798
+ const orderData = {
2799
+ orderNumber,
2800
+ customerEmail: input.customerEmail,
2801
+ customerName: input.customerName,
2802
+ status: "pending",
2803
+ currency: calc.currency,
2804
+ items: calc.items,
2805
+ subtotal: calc.subtotal,
2806
+ discountTotal: calc.discountTotal,
2807
+ discountCode: calc.discountCode,
2808
+ shippingTotal: calc.shippingTotal,
2809
+ taxTotal: calc.taxTotal,
2810
+ total: calc.total,
2811
+ shippingAddress: input.shippingAddress,
2812
+ billingAddress: input.billingAddress,
2813
+ paymentMethod: input.paymentMethod,
2814
+ notes: input.notes
2815
+ };
2816
+ const order = await this.ordersCollection.create({
2817
+ title: `Order #${orderNumber}`,
2818
+ slug: orderNumber.toLowerCase(),
2819
+ status: "published",
2820
+ data: orderData
2821
+ }, authorId);
2822
+ await this.engine.hooks.doAction("ecommerce.order_created", order);
2823
+ return order;
2824
+ }
2825
+ /**
2826
+ * Get order by ID.
2827
+ */
2828
+ async getOrder(id) {
2829
+ return this.ordersCollection.findById(id);
2830
+ }
2831
+ /**
2832
+ * Get order by order number.
2833
+ */
2834
+ async getOrderByNumber(orderNumber) {
2835
+ return (await this.ordersCollection.find({ limit: 100 })).items.find((o) => o.data.orderNumber?.toUpperCase() === orderNumber.toUpperCase()) ?? null;
2836
+ }
2837
+ /**
2838
+ * Update the status of an order (e.g. pending -> paid -> shipped).
2839
+ */
2840
+ async updateOrderStatus(id, status, note) {
2841
+ const existing = await this.getOrder(id);
2842
+ if (!existing) return null;
2843
+ const oldStatus = existing.data.status;
2844
+ const updated = await this.ordersCollection.update(id, { data: {
2845
+ ...existing.data,
2846
+ status
2847
+ } }, void 0, note);
2848
+ if (updated) await this.engine.hooks.doAction("ecommerce.order_status_changed", {
2849
+ order: updated,
2850
+ oldStatus,
2851
+ newStatus: status,
2852
+ note
2853
+ });
2854
+ return updated;
2855
+ }
2856
+ };
2857
+ //#endregion
2858
+ //#region src/plugins/ecommerce/routes.ts
2859
+ function json(data, status = 200) {
2860
+ return new Response(JSON.stringify(data), {
2861
+ status,
2862
+ headers: {
2863
+ "Content-Type": "application/json",
2864
+ "Access-Control-Allow-Origin": "*"
2865
+ }
2866
+ });
2867
+ }
2868
+ function badRequest(message) {
2869
+ return json({ error: message }, 400);
2870
+ }
2871
+ function notFound(message) {
2872
+ return json({ error: message }, 404);
2873
+ }
2874
+ function registerEcommerceRoutes(ctx, service, options = {}) {
2875
+ const prefix = (options.apiPrefix ?? "/api/ecommerce").replace(/\/+$/, "");
2876
+ ctx.registerRoute("GET", `${prefix}/products`, async (_req, { url }) => {
2877
+ try {
2878
+ const categorySlug = url.searchParams.get("category") ?? void 0;
2879
+ const categoryId = url.searchParams.get("categoryId") ?? void 0;
2880
+ const tagSlug = url.searchParams.get("tag") ?? void 0;
2881
+ const brandSlug = url.searchParams.get("brand") ?? void 0;
2882
+ const search = url.searchParams.get("search") ?? void 0;
2883
+ const statusParam = url.searchParams.get("status");
2884
+ const inStock = url.searchParams.get("inStock") === "true";
2885
+ const minPriceStr = url.searchParams.get("minPrice");
2886
+ const maxPriceStr = url.searchParams.get("maxPrice");
2887
+ const minPrice = minPriceStr ? parseFloat(minPriceStr) : void 0;
2888
+ const maxPrice = maxPriceStr ? parseFloat(maxPriceStr) : void 0;
2889
+ const orderBy = url.searchParams.get("orderBy");
2890
+ const orderDirection = url.searchParams.get("orderDirection") ?? "desc";
2891
+ const limitStr = url.searchParams.get("limit");
2892
+ const offsetStr = url.searchParams.get("offset");
2893
+ const limit = limitStr ? parseInt(limitStr, 10) : 20;
2894
+ const offset = offsetStr ? parseInt(offsetStr, 10) : 0;
2895
+ return json(await service.listProducts({
2896
+ categorySlug,
2897
+ categoryId,
2898
+ tagSlug,
2899
+ brandSlug,
2900
+ search,
2901
+ status: statusParam,
2902
+ inStock,
2903
+ minPrice,
2904
+ maxPrice,
2905
+ orderBy,
2906
+ orderDirection,
2907
+ limit,
2908
+ offset
2909
+ }));
2910
+ } catch (err) {
2911
+ return badRequest(err instanceof Error ? err.message : String(err));
2912
+ }
2913
+ });
2914
+ ctx.registerRoute("GET", `${prefix}/products/:id`, async (_req, { params, url }) => {
2915
+ const id = params.id;
2916
+ const by = url.searchParams.get("by");
2917
+ let product = null;
2918
+ if (by === "slug") product = await service.getProductBySlug(id);
2919
+ else {
2920
+ product = await service.getProduct(id);
2921
+ if (!product) product = await service.getProductBySlug(id);
2922
+ }
2923
+ if (!product) return notFound(`Product '${id}' not found`);
2924
+ return json(product);
2925
+ });
2926
+ ctx.registerRoute("POST", `${prefix}/products`, async (req) => {
2927
+ try {
2928
+ const body = await req.json();
2929
+ if (!body.title) return badRequest("Product 'title' is required.");
2930
+ if (body.price === void 0 || body.price < 0) return badRequest("Valid product 'price' is required.");
2931
+ return json(await service.createProduct(body), 201);
2932
+ } catch (err) {
2933
+ return badRequest(err instanceof Error ? err.message : String(err));
2934
+ }
2935
+ });
2936
+ ctx.registerRoute("PUT", `${prefix}/products/:id`, async (req, { params }) => {
2937
+ try {
2938
+ const body = await req.json();
2939
+ const updated = await service.updateProduct(params.id, body);
2940
+ if (!updated) return notFound(`Product '${params.id}' not found.`);
2941
+ return json(updated);
2942
+ } catch (err) {
2943
+ return badRequest(err instanceof Error ? err.message : String(err));
2944
+ }
2945
+ });
2946
+ ctx.registerRoute("DELETE", `${prefix}/products/:id`, async (_req, { params }) => {
2947
+ if (!await service.deleteProduct(params.id)) return notFound(`Product '${params.id}' not found.`);
2948
+ return json({
2949
+ success: true,
2950
+ id: params.id
2951
+ });
2952
+ });
2953
+ ctx.registerRoute("POST", `${prefix}/products/:id/images`, async (req, { params }) => {
2954
+ try {
2955
+ const body = await req.json();
2956
+ if (!body.filename || !body.mimeType) return badRequest("'filename' and 'mimeType' are required.");
2957
+ return json(await service.uploadProductImage(params.id, {
2958
+ filename: body.filename,
2959
+ mimeType: body.mimeType,
2960
+ sizeBytes: body.sizeBytes ?? 0,
2961
+ url: body.url,
2962
+ altText: body.altText,
2963
+ caption: body.caption,
2964
+ width: body.width,
2965
+ height: body.height,
2966
+ isFeatured: body.isFeatured
2967
+ }), 201);
2968
+ } catch (err) {
2969
+ return badRequest(err instanceof Error ? err.message : String(err));
2970
+ }
2971
+ });
2972
+ ctx.registerRoute("GET", `${prefix}/categories`, async (_req, { url }) => {
2973
+ try {
2974
+ if (url.searchParams.get("tree") === "true") return json(await service.getCategoryTree());
2975
+ const parentId = url.searchParams.get("parentId");
2976
+ return json(await service.getCategories({ parentId: parentId === "null" ? null : parentId ?? void 0 }));
2977
+ } catch (err) {
2978
+ return badRequest(err instanceof Error ? err.message : String(err));
2979
+ }
2980
+ });
2981
+ ctx.registerRoute("POST", `${prefix}/categories`, async (req) => {
2982
+ try {
2983
+ const body = await req.json();
2984
+ if (!body.name) return badRequest("Category 'name' is required.");
2985
+ return json(await service.createCategory(body), 201);
2986
+ } catch (err) {
2987
+ return badRequest(err instanceof Error ? err.message : String(err));
2988
+ }
2989
+ });
2990
+ if (options.enableDiscounts !== false) {
2991
+ ctx.registerRoute("POST", `${prefix}/discounts`, async (req) => {
2992
+ try {
2993
+ const body = await req.json();
2994
+ if (!body.title || !body.code) return badRequest("'title' and 'code' are required.");
2995
+ if (body.value === void 0 || body.value < 0) return badRequest("Valid discount 'value' is required.");
2996
+ return json(await service.createDiscount(body), 201);
2997
+ } catch (err) {
2998
+ return badRequest(err instanceof Error ? err.message : String(err));
2999
+ }
3000
+ });
3001
+ ctx.registerRoute("POST", `${prefix}/discounts/validate`, async (req) => {
3002
+ try {
3003
+ const body = await req.json();
3004
+ if (!body.code) return badRequest("Discount 'code' is required.");
3005
+ const subtotal = Number(body.subtotal ?? 0);
3006
+ const productIds = Array.isArray(body.productIds) ? body.productIds : [];
3007
+ return json(await service.validateDiscount(body.code, subtotal, productIds));
3008
+ } catch (err) {
3009
+ return badRequest(err instanceof Error ? err.message : String(err));
3010
+ }
3011
+ });
3012
+ }
3013
+ ctx.registerRoute("POST", `${prefix}/cart/calculate`, async (req) => {
3014
+ try {
3015
+ const body = await req.json();
3016
+ if (!body.items || !Array.isArray(body.items) || body.items.length === 0) return badRequest("'items' array is required and must not be empty.");
3017
+ return json(await service.calculateCart(body));
3018
+ } catch (err) {
3019
+ return badRequest(err instanceof Error ? err.message : String(err));
3020
+ }
3021
+ });
3022
+ if (options.enableOrders !== false) {
3023
+ ctx.registerRoute("POST", `${prefix}/orders`, async (req) => {
3024
+ try {
3025
+ const body = await req.json();
3026
+ if (!body.customerEmail) return badRequest("'customerEmail' is required.");
3027
+ if (!body.items || !Array.isArray(body.items) || body.items.length === 0) return badRequest("'items' array is required.");
3028
+ return json(await service.createOrder(body), 201);
3029
+ } catch (err) {
3030
+ return badRequest(err instanceof Error ? err.message : String(err));
3031
+ }
3032
+ });
3033
+ ctx.registerRoute("GET", `${prefix}/orders/:id`, async (_req, { params, url }) => {
3034
+ const id = params.id;
3035
+ const by = url.searchParams.get("by");
3036
+ let order = null;
3037
+ if (by === "number") order = await service.getOrderByNumber(id);
3038
+ else {
3039
+ order = await service.getOrder(id);
3040
+ if (!order) order = await service.getOrderByNumber(id);
3041
+ }
3042
+ if (!order) return notFound(`Order '${id}' not found.`);
3043
+ return json(order);
3044
+ });
3045
+ ctx.registerRoute("PATCH", `${prefix}/orders/:id/status`, async (req, { params }) => {
3046
+ try {
3047
+ const body = await req.json();
3048
+ if (!body.status) return badRequest("New 'status' is required.");
3049
+ const updated = await service.updateOrderStatus(params.id, body.status, body.note);
3050
+ if (!updated) return notFound(`Order '${params.id}' not found.`);
3051
+ return json(updated);
3052
+ } catch (err) {
3053
+ return badRequest(err instanceof Error ? err.message : String(err));
3054
+ }
3055
+ });
3056
+ }
3057
+ }
3058
+ //#endregion
3059
+ //#region src/plugins/ecommerce/client.ts
3060
+ var EcommerceClient = class {
3061
+ client;
3062
+ options;
3063
+ service;
3064
+ prefix;
3065
+ constructor(client, options = {}) {
3066
+ this.client = client;
3067
+ this.options = options;
3068
+ this.prefix = (options.apiPrefix ?? "/api/ecommerce").replace(/\/+$/, "");
3069
+ const engine = client.getEngine();
3070
+ if (engine) this.service = new EcommerceService(engine, options);
3071
+ }
3072
+ products = {
3073
+ find: async (query = {}) => {
3074
+ if (this.service) return this.service.listProducts(query);
3075
+ const params = new URLSearchParams();
3076
+ if (query.categorySlug) params.set("category", query.categorySlug);
3077
+ if (query.categoryId) params.set("categoryId", query.categoryId);
3078
+ if (query.tagSlug) params.set("tag", query.tagSlug);
3079
+ if (query.brandSlug) params.set("brand", query.brandSlug);
3080
+ if (query.search) params.set("search", query.search);
3081
+ if (query.inStock) params.set("inStock", "true");
3082
+ if (query.minPrice !== void 0) params.set("minPrice", String(query.minPrice));
3083
+ if (query.maxPrice !== void 0) params.set("maxPrice", String(query.maxPrice));
3084
+ if (query.orderBy) params.set("orderBy", query.orderBy);
3085
+ if (query.orderDirection) params.set("orderDirection", query.orderDirection);
3086
+ if (query.limit !== void 0) params.set("limit", String(query.limit));
3087
+ if (query.offset !== void 0) params.set("offset", String(query.offset));
3088
+ const q = params.toString() ? `?${params.toString()}` : "";
3089
+ return this.client.request(`${this.prefix}/products${q}`);
3090
+ },
3091
+ get: async (idOrSlug, by) => {
3092
+ if (this.service) return by === "slug" ? this.service.getProductBySlug(idOrSlug) : this.service.getProduct(idOrSlug);
3093
+ const query = by ? `?by=${by}` : "";
3094
+ return this.client.request(`${this.prefix}/products/${encodeURIComponent(idOrSlug)}${query}`);
3095
+ },
3096
+ create: async (data) => {
3097
+ if (this.service) return this.service.createProduct(data);
3098
+ return this.client.request(`${this.prefix}/products`, {
3099
+ method: "POST",
3100
+ body: JSON.stringify(data)
3101
+ });
3102
+ },
3103
+ update: async (id, data) => {
3104
+ if (this.service) return this.service.updateProduct(id, data);
3105
+ return this.client.request(`${this.prefix}/products/${encodeURIComponent(id)}`, {
3106
+ method: "PUT",
3107
+ body: JSON.stringify(data)
3108
+ });
3109
+ },
3110
+ delete: async (id) => {
3111
+ if (this.service) return this.service.deleteProduct(id);
3112
+ const res = await this.client.request(`${this.prefix}/products/${encodeURIComponent(id)}`, { method: "DELETE" });
3113
+ return Boolean(res?.success);
3114
+ },
3115
+ uploadImage: async (productId, file) => {
3116
+ if (this.service) return this.service.uploadProductImage(productId, file);
3117
+ return this.client.request(`${this.prefix}/products/${encodeURIComponent(productId)}/images`, {
3118
+ method: "POST",
3119
+ body: JSON.stringify(file)
3120
+ });
3121
+ }
3122
+ };
3123
+ categories = {
3124
+ list: async (options) => {
3125
+ if (this.service) return this.service.getCategories(options);
3126
+ const q = options?.parentId !== void 0 ? `?parentId=${options.parentId}` : "";
3127
+ return this.client.request(`${this.prefix}/categories${q}`);
3128
+ },
3129
+ tree: async () => {
3130
+ if (this.service) return this.service.getCategoryTree();
3131
+ return this.client.request(`${this.prefix}/categories?tree=true`);
3132
+ },
3133
+ create: async (input) => {
3134
+ if (this.service) return this.service.createCategory(input);
3135
+ return this.client.request(`${this.prefix}/categories`, {
3136
+ method: "POST",
3137
+ body: JSON.stringify(input)
3138
+ });
3139
+ }
3140
+ };
3141
+ discounts = {
3142
+ validate: async (code, subtotal, productIds) => {
3143
+ if (this.service) return this.service.validateDiscount(code, subtotal, productIds);
3144
+ return this.client.request(`${this.prefix}/discounts/validate`, {
3145
+ method: "POST",
3146
+ body: JSON.stringify({
3147
+ code,
3148
+ subtotal,
3149
+ productIds
3150
+ })
3151
+ });
3152
+ },
3153
+ create: async (input) => {
3154
+ if (this.service) return this.service.createDiscount(input);
3155
+ return this.client.request(`${this.prefix}/discounts`, {
3156
+ method: "POST",
3157
+ body: JSON.stringify(input)
3158
+ });
3159
+ }
3160
+ };
3161
+ cart = { calculate: async (input) => {
3162
+ if (this.service) return this.service.calculateCart(input);
3163
+ return this.client.request(`${this.prefix}/cart/calculate`, {
3164
+ method: "POST",
3165
+ body: JSON.stringify(input)
3166
+ });
3167
+ } };
3168
+ orders = {
3169
+ create: async (input) => {
3170
+ if (this.service) return this.service.createOrder(input);
3171
+ return this.client.request(`${this.prefix}/orders`, {
3172
+ method: "POST",
3173
+ body: JSON.stringify(input)
3174
+ });
3175
+ },
3176
+ get: async (idOrNumber, by) => {
3177
+ if (this.service) return by === "number" ? this.service.getOrderByNumber(idOrNumber) : this.service.getOrder(idOrNumber);
3178
+ const q = by ? `?by=${by}` : "";
3179
+ return this.client.request(`${this.prefix}/orders/${encodeURIComponent(idOrNumber)}${q}`);
3180
+ },
3181
+ updateStatus: async (id, status, note) => {
3182
+ if (this.service) return this.service.updateOrderStatus(id, status, note);
3183
+ return this.client.request(`${this.prefix}/orders/${encodeURIComponent(id)}/status`, {
3184
+ method: "PATCH",
3185
+ body: JSON.stringify({
3186
+ status,
3187
+ note
3188
+ })
3189
+ });
3190
+ }
3191
+ };
3192
+ };
3193
+ /**
3194
+ * Get or create an EcommerceClient adapter for a CMSClient.
3195
+ */
3196
+ function getEcommerceClient(client, options) {
3197
+ return new EcommerceClient(client, options);
3198
+ }
3199
+ //#endregion
3200
+ //#region src/plugins/ecommerce/index.ts
3201
+ /**
3202
+ * @azlib/cms - Built-in E-commerce Plugin
3203
+ */
3204
+ /**
3205
+ * Built-in E-commerce plugin factory for @azlib/cms.
3206
+ * Equips the CMS engine with product catalogs, hierarchical categories,
3207
+ * image uploading, discount coupons, cart calculation, and order tracking.
3208
+ */
3209
+ const ecommercePlugin = definePlugin((options) => {
3210
+ const opts = options || {};
3211
+ const collections = [createProductCollection(opts)];
3212
+ if (opts.enableDiscounts !== false) collections.push(createDiscountCollection(opts));
3213
+ if (opts.enableOrders !== false) collections.push(createOrderCollection(opts));
3214
+ return {
3215
+ name: "ecommerce",
3216
+ version: "1.0.0",
3217
+ description: "Built-in E-commerce shopping, products, catalogs, discounts, and orders plugin",
3218
+ collections,
3219
+ taxonomies: createEcommerceTaxonomies(opts),
3220
+ setup(ctx) {
3221
+ const service = new EcommerceService(ctx.engine, opts);
3222
+ ctx.engine.__ecommerceService = service;
3223
+ registerEcommerceRoutes(ctx, service, opts);
3224
+ }
3225
+ };
3226
+ });
3227
+ /**
3228
+ * Retrieve the active EcommerceService instance associated with a CMSEngine.
3229
+ */
3230
+ function getEcommerceService(engine, options) {
3231
+ if (engine.__ecommerceService) return engine.__ecommerceService;
3232
+ const service = new EcommerceService(engine, options);
3233
+ engine.__ecommerceService = service;
3234
+ return service;
3235
+ }
3236
+ //#endregion
3237
+ export { CMSClient, CMSEngine, CMSRouter, ContentLifecycle, DEFAULT_COLLECTIONS, DEFAULT_ROLE_CAPABILITIES, EcommerceClient, EcommerceService, HooksManager, MediaManager, MemoryStorageAdapter, OptionsManager, RBACManager, RevisionManager, TaxonomyManager, VALID_STATUS_TRANSITIONS, collection, createCMSEngine, createCMSRouter, createCmsClient, createDiscountCollection, createEcommerceTaxonomies, createOrderCollection, createProductCollection, defaultHooks, defineConfig, definePlugin, ecommercePlugin, fields, getEcommerceClient, getEcommerceService, normalizeConfig, resolveUniqueSlug, slugify, validateAndNormalizeData };
1950
3238
 
1951
3239
  //# sourceMappingURL=index.mjs.map