summaryrefslogtreecommitdiff
path: root/lib/api/avatar.rb
blob: d05481c7a4fa2bb44a1d1bdcb8fb6868d37d4bcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

module API
  class Avatar < Grape::API
    resource :avatar do
      desc "Return avatar url for a user" do
        success Entities::Avatar
      end
      params do
        requires :email, type: String, desc: "Public email address of the user"
        optional :size, type: Integer, desc: "Single pixel dimension for Gravatar images"
      end
      get do
        forbidden!("Unauthorized access") unless can?(current_user, :read_users_list)

        user = User.find_by_public_email(params[:email])
        user ||= User.new(email: params[:email])

        present user, with: Entities::Avatar, size: params[:size]
      end
    end
  end
end