public function test_key_is_set_upon_creation() { $cart = new Cart(); $cart->save(); $this->assertInternalType('string', $cart->key); $this->assertGreaterThan(0, strlen($cart->key)); }
/** * Returns the active cart * @return Bedard\Shop\Models\Cart */ public function getActiveCart() { if (!($cookie = Cookie::get('bedard_shop_cart'))) { return false; } return CartModel::where('key', $cookie['key'])->whereNull('order_id')->with('items.inventory.product.discounts')->with('items.inventory.product.categories.discounts')->with(['items' => function ($items) { $items->inCart(); }])->find($cookie['id']); }
/** * Loads the cart and refreshes the cookie */ private function loadCart($withRelationships = FALSE) { // Look for a cart cookie if (!($this->cookie = Cookie::get('bedard_shop_cart'))) { return FALSE; } // Load the cart with relationships if ($withRelationships) { $this->cart = CartModel::where('key', $this->cookie['key'])->whereNull('order_id')->with('items.inventory.product.discounts')->with('items.inventory.product.categories.discounts')->with(['items' => function ($item) { $item->inCart(); }])->find($this->cookie['id']); if ($this->cart && !is_null($this->cart->coupon_id)) { $this->cart->load('coupon'); } } else { $this->cart = CartModel::where('key', $this->cookie['key'])->whereNull('order_id')->find($this->cookie['id']); } // Refresh the cookie $this->refreshCartCookie(); }
/** * Update items in the cart * * @return void */ public function updateCart($items) { $this->cart->items()->with('inventory')->get()->each(function ($item) use($items) { if (in_array($item->id, array_keys($items))) { if ($quantity = $items[$item->id]) { $item->quantity = $quantity; $item->save(); } else { $item->delete(); } } }); }
/** * Returns the full cart with it's relationships * @return Bedard\Shop\Models\Cart */ public function loadDetailedCart() { if (!($cookie = Cookie::get('bedard_shop_cart'))) { return FALSE; } $cart = CartModel::where('key', $cookie['key'])->whereNull('order_id')->with('items.inventory.product.discounts')->with('items.inventory.product.categories.discounts')->with(['items' => function ($items) { $items->inCart(); }])->find($cookie['id']); if ($cart && !is_null($cart->coupon_id)) { $cart->load('coupon'); } return $cart; }
public function run() { //disable foreign key check for this connection before running seeders DB::statement('SET FOREIGN_KEY_CHECKS=0;'); /** * CATEGORY SEEDS */ $i = 3; foreach (['Boards', 'Shirts', 'Hoodies', 'Stickers', 'Jackets'] as $category) { Category::create(['position' => $i, 'name' => $category, 'slug' => strtolower($category), 'is_visible' => 1, 'is_active' => 1]); $i++; } foreach (['Winter', 'DVDs'] as $category) { Category::create(['position' => $i, 'name' => $category, 'slug' => strtolower($category), 'is_visible' => 0, 'is_active' => 1]); $i++; } Category::create(['position' => $i, 'name' => 'Hats', 'slug' => 'hats', 'is_visible' => 1, 'is_active' => 0]); /** * PRODUCT SEEDS */ $colors = ['red', 'blue', 'green', 'black', 'orange', 'yellow', 'purple', 'white']; $products = ['shirt', 'hat', 'board', 'sticker']; $seeds = []; foreach ($products as $product) { foreach ($colors as $color) { $seeds[] = $color . ' ' . $product; } } shuffle($seeds); Product::truncate(); foreach ($seeds as $seed) { $product = Product::create(['name' => $seed, 'slug' => str_replace(' ', '-', $seed), 'full_price' => rand(10, 20), 'description' => "Some awesome {$seed}... You should totaly buy it.", 'is_active' => rand(0, 10) > 0 ? 1 : 0, 'is_visible' => rand(0, 10) > 0 ? 1 : 0]); if (strpos($seed, 'board') !== FALSE) { $product->categories()->attach(3); } elseif (strpos($seed, 'hat') !== FALSE) { $product->categories()->attach(10); } elseif (strpos($seed, 'shirt') !== FALSE) { $product->categories()->attach(4); } elseif (strpos($seed, 'sticker') !== FALSE) { $product->categories()->attach(6); } $small = Inventory::create(['product_id' => $product->id, 'name' => 'Small', 'quantity' => rand(0, 2), 'is_active' => rand(0, 10) > 0 ? 1 : 0]); $medium = Inventory::create(['product_id' => $product->id, 'name' => 'Medium', 'quantity' => rand(0, 2), 'position' => 1, 'is_active' => rand(0, 10) > 0 ? 1 : 0]); $large = Inventory::create(['product_id' => $product->id, 'name' => 'Large', 'quantity' => rand(0, 2), 'position' => 2, 'is_active' => rand(0, 10) > 0 ? 1 : 0]); } /** * DISCOUNT SEEDS */ // Demo category discount DB::table('bedard_shop_discounts')->insert(['name' => 'Category Discount', 'amount' => rand(10, 25), 'is_percentage' => 1]); DB::table('bedard_shop_discountables')->insert(['discount_id' => 1, 'discountable_id' => rand(3, 6), 'discountable_type' => 'Bedard\\Shop\\Models\\Category']); DB::table('bedard_shop_discounts')->insert(['name' => 'Product Discount', 'amount' => rand(5, 8), 'is_percentage' => 0]); DB::table('bedard_shop_discountables')->insert(['discount_id' => 2, 'discountable_id' => rand(1, 20), 'discountable_type' => 'Bedard\\Shop\\Models\\Product']); /** * PROMO CODE */ Coupon::create(['name' => 'Foo', 'message' => 'Thanks for entering "foo".', 'amount' => rand(10, 20), 'is_percentage' => 1, 'cart_value' => rand(20, 50)]); // Enable foreign keys DB::statement('SET FOREIGN_KEY_CHECKS=1;'); /** * Mock carts */ $fnames = ['John', 'Mary', 'Alex', 'Mark', 'Sally']; $lnames = ['Smith', 'Johnson', 'Jones', 'Doe']; for ($i = 0; $i < 30; $i++) { $cart = Cart::create([]); $inventories = []; for ($j = 0; $j < rand(5, 15); $j++) { $inventories[] = rand(1, 95); } foreach ($inventories as $inventory) { $item = CartItem::firstOrCreate(['cart_id' => $cart->id, 'inventory_id' => $inventory, 'quantity' => rand(1, 2)]); } $first = $fnames[rand(0, 4)]; $last = $lnames[rand(0, 3)]; $customer = Customer::firstOrCreate(['first_name' => $first, 'last_name' => $last, 'email' => strtolower("{$first}.{$last}@example.com")]); $order = Order::create(['created_at' => Carbon::now()->subDays(rand(1, 50))]); $order->customer_id = $customer->id; $order->cart_id = $cart->id; $order->amount = $cart->total; $cart->markAsComplete($order); $order->shipping_address = ['first_name' => $first, 'last_name' => $last, 'address1' => '123 Foo Street', 'city' => 'Beverly Hills', 'state' => 'CA', 'postcode' => '90210', 'country' => 'US']; $order->gateway = 'PayPal_Express'; $order->gateway_code = 'FAKE-PAYPAL-ID'; $order->save(); } }