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/coupons_controller.rb

104 lines
2.8 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
# API Controller for resources of type Coupon
# Coupons are used in payments
2016-08-03 17:56:36 +02:00
class API::CouponsController < API::ApiController
2022-12-01 15:43:16 +01:00
include ApplicationHelper
before_action :authenticate_user!, except: %i[validate]
before_action :set_coupon, only: %i[show update destroy]
2016-08-03 17:56:36 +02:00
2019-04-04 17:28:29 +02:00
# Number of notifications added to the page when the user clicks on 'load next notifications'
COUPONS_PER_PAGE = 10
2016-08-03 17:56:36 +02:00
def index
@coupons = Coupon.method(params[:filter]).call.page(params[:page]).per(COUPONS_PER_PAGE).order('created_at DESC')
@total = Coupon.method(params[:filter]).call.length
2016-08-03 17:56:36 +02:00
end
def show; end
2016-08-03 17:56:36 +02:00
def create
authorize Coupon
@coupon = Coupon.new(coupon_params)
if @coupon.save
render :show, status: :created, location: @coupon
else
render json: @coupon.errors, status: :unprocessable_entity
end
end
def validate
2016-11-23 16:30:19 +01:00
@coupon = Coupon.find_by(code: params[:code])
if @coupon.nil?
render json: { status: 'rejected' }, status: :not_found
else
2022-12-01 15:43:16 +01:00
user_id = if current_user&.admin?
params[:user_id]
else
current_user&.id
end
status = @coupon.status(user_id, to_centimes(params[:amount]))
if status == 'active'
render :validate, status: :ok, location: @coupon
else
render json: { status: status }, status: :unprocessable_entity
end
end
end
2016-08-03 17:56:36 +02:00
def update
authorize Coupon
if @coupon.update(coupon_editable_params)
2016-08-03 17:56:36 +02:00
render :show, status: :ok, location: @coupon
else
render json: @coupon.errors, status: :unprocessable_entity
end
end
def destroy
authorize Coupon
2016-08-08 12:25:27 +02:00
if @coupon.safe_destroy
head :no_content
else
head :unprocessable_entity
end
2016-08-03 17:56:36 +02:00
end
2016-08-16 18:12:13 +02:00
def send_to
authorize Coupon
2016-11-23 16:30:19 +01:00
@coupon = Coupon.find_by(code: params[:coupon_code])
if @coupon.nil?
render json: { error: "no coupon with code #{params[:coupon_code]}" }, status: :not_found
elsif @coupon.send_to(params[:user_id])
render :show, status: :ok, location: @coupon
else
render json: @coupon.errors, status: :unprocessable_entity
end
2016-08-16 18:12:13 +02:00
end
2016-08-03 17:56:36 +02:00
private
2016-08-03 17:56:36 +02:00
def set_coupon
@coupon = Coupon.find(params[:id])
end
def coupon_params
if @parameters
@parameters
else
@parameters = params
2022-12-01 15:43:16 +01:00
@parameters[:coupon][:amount_off] = to_centimes(@parameters[:coupon][:amount_off]) if @parameters[:coupon][:amount_off]
@parameters = @parameters.require(:coupon).permit(:name, :code, :percent_off, :amount_off, :validity_per_user, :valid_until,
:max_usages, :active)
end
2016-08-03 17:56:36 +02:00
end
def coupon_editable_params
2016-12-13 12:01:34 +01:00
params.require(:coupon).permit(:name, :active, :valid_until)
end
2016-08-03 17:56:36 +02:00
end