Newer
Older
dmpopidor / app / services / org / monthly_usage_service.rb
# frozen_string_literal: true

class Org

  class MonthlyUsageService

    class << self

      def call(current_user)
        total = build_from_joined_user(current_user)
        build_from_created_plan(current_user, total)
        build_from_shared_plan(current_user, total)
        build_from_exported_plan(current_user, total)
        total.values
      end

      private

      def build_model(month:, new_plans: 0, new_users: 0, downloads: 0, plans_shared: 0)
        {
          month: month,
          new_plans: new_plans,
          new_users: new_users,
          downloads: downloads,
          plans_shared: plans_shared
        }
      end

      def reducer_body(acc, rec, key_target)
        month = rec.date.strftime("%b-%y")
        count = rec.count

        if acc[month].present?
          acc[month][key_target] = count
        else
          args = { month: month }
          args[key_target] = count
          acc[month] = build_model(args)
        end

        acc
      end

      def build_from_joined_user(current_user, total = {})
        joined_users = Stat::StatJoinedUser.monthly_range(org: current_user.org).order(:date)
        joined_users.reduce(total) do |acc, rec|
          reducer_body(acc, rec, :new_users)
        end
      end

      def build_from_created_plan(current_user, total = {})
        created_plans = Stat::StatCreatedPlan.monthly_range(org: current_user.org).order(:date)
        created_plans.reduce(total) do |acc, rec|
          reducer_body(acc, rec, :new_plans)
        end
      end

      def build_from_shared_plan(current_user, total = {})
        shared_plans = Stat::StatSharedPlan.monthly_range(org: current_user.org).order(:date)
        shared_plans.reduce(total) do |acc, rec|
          reducer_body(acc, rec, :plans_shared)
        end
      end

      def build_from_exported_plan(current_user, total = {})
        exported_plans = Stat::StatExportedPlan.monthly_range(org: current_user.org).order(:date)
        exported_plans.reduce(total) do |acc, rec|
          reducer_body(acc, rec, :downloads)
        end
      end

    end

  end

end