1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- package db
- import (
- "fmt"
- "github.com/gshopify/service-wrapper/model"
- "gshopper.com/gshopify/products/cache"
- "gshopper.com/gshopify/products/graphql/generated"
- "time"
- )
- const defaultCurrency = "USD"
- var (
- productKey = func(clause string, args ...any) *cache.SqlKey {
- return cache.NewSQLKey(
- "product",
- time.Minute,
- clause, args...)
- }
- productSelection = func(ln model.LanguageCode, currency generated.CurrencyCode) []string {
- return append([]string{
- "t.id as id",
- "any(handle) as handle", "any(type) as type", "any(scope) as scope", "any(tags) as tags", "any(vendor) as vendor",
- "any(gift) as gift", "any(collections) as collections", "any(images) as images",
- "any(product_variant.inventory_management) as inventory_management",
- "any(product_variant.inventory_policy) as inventory_policy",
- "any(product_variant.options) as options",
- "any(inventory_item.requires_shipping) as requires_shipping",
- "any(inventory_item.tracked) as tracked",
- "any(inventory_level.available) as available",
- "if(tracked, if(available > 0, true, if(inventory_policy == 'continue', true, false)), true) as for_sale",
- fmt.Sprintf("min(product_variant.price['%s']) as price_min", currency),
- fmt.Sprintf("max(product_variant.price['%s']) as price_max", currency),
- fmt.Sprintf("min(product_variant.compare_at_price['%s']) as compare_at_price_min", currency),
- fmt.Sprintf("max(product_variant.compare_at_price['%s']) as compare_at_price_max", currency),
- "any(created_at) as created_at", "any(updated_at) as updated_at", "any(published_at) as published_at", "any(deleted_at) as deleted_at",
- },
- ln.SqlFieldSelection("title", "", "any"),
- ln.SqlFieldSelection("description", "", "any"),
- )
- }
- productCollectionSelection = func(ln model.LanguageCode) []string {
- return append([]string{
- "id", "handle", "scope", "sort_order", "image", "template_suffix",
- "created_at", "updated_at", "published_at", "deleted_at",
- },
- ln.SqlFieldSelection("title", "", ""),
- ln.SqlFieldSelection("description", "", ""),
- )
- }
- productCollectionKey = func(clause string, args ...any) *cache.SqlKey {
- return cache.NewSQLKey(
- "product_collection",
- 3*time.Minute,
- clause,
- args...,
- )
- }
- productOptionSelection = func(ln model.LanguageCode) []string {
- return append([]string{"id", "position", "created_at", "updated_at", "published_at", "deleted_at"},
- ln.SqlFieldSelection("name", "", ""),
- ln.SqlArraySelection("values"),
- )
- }
- productOptionKey = func(clause string, args ...any) *cache.SqlKey {
- return cache.NewSQLKey(
- "product_option",
- time.Minute,
- clause, args...)
- }
- productVariantKey = func(clause string, args ...any) *cache.SqlKey {
- return cache.NewSQLKey(
- "product_variant",
- time.Minute,
- clause, args...)
- }
- )
|