mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-04 15:24:23 +01:00
44 lines
1.4 KiB
Ruby
44 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# authorized 3rd party softwares can fetch the subscriptions through the OpenAPI
|
|
class OpenAPI::V1::SubscriptionsController < OpenAPI::V1::BaseController
|
|
extend OpenAPI::ApiDoc
|
|
include Rails::Pagination
|
|
expose_doc
|
|
|
|
def index
|
|
@subscriptions = Subscription.order(created_at: :desc)
|
|
.includes(:plan, statistic_profile: :user)
|
|
.references(:statistic_profile, :plan)
|
|
|
|
@subscriptions = @subscriptions.where('created_at >= ?', DateTime.parse(params[:after])) if params[:after].present?
|
|
@subscriptions = @subscriptions.where('created_at <= ?', DateTime.parse(params[:before])) if params[:before].present?
|
|
@subscriptions = @subscriptions.where(plan_id: may_array(params[:plan_id])) if params[:plan_id].present?
|
|
@subscriptions = @subscriptions.where(statistic_profiles: { user_id: may_array(params[:user_id]) }) if params[:user_id].present?
|
|
|
|
@subscriptions = @subscriptions.page(page).per(per_page)
|
|
@pageination_meta = pageination_meta
|
|
paginate @subscriptions, per_page: per_page
|
|
end
|
|
|
|
private
|
|
|
|
def page
|
|
params[:page] || 1
|
|
end
|
|
|
|
def per_page
|
|
params[:per_page] || 20
|
|
end
|
|
|
|
def pageination_meta
|
|
total_count = Subscription.count
|
|
{
|
|
total_count: total_count,
|
|
total_pages: (total_count / per_page.to_f).ceil,
|
|
page: page.to_i,
|
|
page_size: per_page.to_i
|
|
}
|
|
end
|
|
end
|