1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/controllers/api/cart_controller.rb
2023-03-22 10:58:22 +01:00

76 lines
2.3 KiB
Ruby

# frozen_string_literal: true
# API Controller to manage user's cart
class API::CartController < API::APIController
include API::OrderConcern
before_action :current_order, except: %i[create]
before_action :ensure_order, except: %i[create]
def create
authorize :cart, :create?
@order ||= Cart::FindOrCreateService.new(current_user).call(order_token)
render 'api/orders/show'
end
def create_item
authorize @current_order, policy_class: CartPolicy
service = Cart::CreateCartItemService.new(@current_order)
@item = service.create(params)
if @item.save(**{ context: @current_order.order_items })
render 'api/orders/item', status: :created
else
render json: @item.errors.full_messages, status: :unprocessable_entity
end
end
def add_item
authorize @current_order, policy_class: CartPolicy
@order = Cart::AddItemService.new.call(@current_order, orderable, cart_params[:quantity])
render 'api/orders/show'
end
def remove_item
authorize @current_order, policy_class: CartPolicy
@order = Cart::RemoveItemService.new.call(@current_order, orderable)
render 'api/orders/show'
end
def set_quantity
authorize @current_order, policy_class: CartPolicy
@order = Cart::SetQuantityService.new.call(@current_order, orderable, cart_params[:quantity])
render 'api/orders/show'
end
def set_offer
authorize CartContext.new(params[:customer_id], cart_params[:is_offered])
@order = Cart::SetOfferService.new.call(@current_order, orderable, cart_params[:is_offered])
render 'api/orders/show'
end
def refresh_item
authorize @current_order, policy_class: CartPolicy
@order = Cart::RefreshItemService.new.call(@current_order, orderable)
render 'api/orders/show'
end
def validate
authorize @current_order, policy_class: CartPolicy
@order_errors = Cart::CheckCartService.new.call(@current_order)
render json: @order_errors
end
def set_customer
authorize @current_order, policy_class: CartPolicy
customer = User.find(params[:user_id])
@order = Cart::SetCustomerService.new(current_user).call(@current_order, customer)
render 'api/orders/show'
end
private
def orderable
params[:orderable_type].classify.constantize.find(cart_params[:orderable_id])
end
end