api.rb 2.42 KB
class GamificationPlugin::API < Grape::API

  resource :gamification_plugin do

    get 'badges' do
      environment.gamification_plugin_badges.group('gamification_plugin_badges.name').count
    end

    resource :my do
      get 'badges' do
        authenticate!
        present current_person.badges, :with => Noosfero::API::Entities::Badge
      end

      get 'points' do
        authenticate!
        {points: current_person.points}
      end
      get 'points_by_type' do
        authenticate!
        {points: current_person.points_by_type(params[:type]) }
      end
      get 'points_by_profile' do
        authenticate!
        {points: current_person.points_by_profile(params[:profile]) }
      end
      get 'points_out_of_profiles' do
        authenticate!
        {points: current_person.points_out_of_profiles }
      end

      get 'level' do
        authenticate!
        {:level => current_person.level, :percent => current_person.gamification_plugin_level_percent, :score => current_person.points}
      end
    end

    resource :people do
      get ':id/badges' do
        person = environment.people.visible_for_person(current_person).find_by_id(params[:id])
        return not_found! if person.blank?
        present person.badges
      end

      get ':id/points' do
        person = environment.people.visible_for_person(current_person).find_by_id(params[:id])
        return not_found! if person.blank?
        {:points => person.points}
      end

      get ':id/points_by_type' do
        person = environment.people.visible_for_person(current_person).find_by_id(params[:id])
        return not_found! if person.blank?
        {points: person.points_by_type(params[:type]) }
      end

      get ':id/points_by_profile' do
        person = environment.people.visible_for_person(current_person).find_by_id(params[:id])
        return not_found! if person.blank?
        {points: person.points_by_profile(params[:profile]) }
      end

      get ':id/points_out_of_profiles' do
        person = environment.people.visible_for_person(current_person).find_by_id(params[:id])
        return not_found! if person.blank?
        {points: person.points_out_of_profiles }
      end

      get ':id/level' do
        person = environment.people.visible_for_person(current_person).find_by_id(params[:id])
        return not_found! if person.blank?
        {:level => person.level, :percent => person.gamification_plugin_level_percent}
      end

    end
  end
end