Class: Spree::Api::V3::Admin::DashboardController

Inherits:
BaseController show all
Defined in:
app/controllers/spree/api/v3/admin/dashboard_controller.rb

Constant Summary

Constants included from ScopedAuthorization

ScopedAuthorization::READ_ACTIONS

Constants inherited from BaseController

BaseController::RATE_LIMIT_RESPONSE

Constants included from Idempotent

Idempotent::IDEMPOTENCY_HEADER, Idempotent::IDEMPOTENCY_TTL, Idempotent::MAX_KEY_LENGTH, Idempotent::MUTATING_METHODS

Constants included from ErrorHandler

ErrorHandler::ERROR_CODES

Constants included from JwtAuthentication

JwtAuthentication::JWT_AUDIENCE_ADMIN, JwtAuthentication::JWT_AUDIENCE_STORE, JwtAuthentication::JWT_ISSUER, JwtAuthentication::USER_TYPE_ADMIN, JwtAuthentication::USER_TYPE_CUSTOMER

Instance Method Summary collapse

Methods included from Spree::Api::V3::ApiKeyAuthentication

#authenticate_api_key!, #authenticate_secret_key!

Methods included from JwtAuthentication

#authenticate_user, #require_authentication!

Instance Method Details

#analyticsObject

GET /api/v3/admin/dashboard/analytics



9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'app/controllers/spree/api/v3/admin/dashboard_controller.rb', line 9

def analytics
  date_from = (params[:date_from] || 30.days.ago).to_time.beginning_of_day
  date_to = (params[:date_to] || Time.current).to_time.end_of_day
  currency = params[:currency] || current_store.default_currency

  serializer = DashboardAnalyticsSerializer.new(
    store: current_store,
    currency: currency,
    time_range: date_from..date_to,
    params: serializer_params
  )

  render json: serializer.to_h
end