mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 21:10:54 +00:00
40 lines
1.1 KiB
Ruby
Executable file
40 lines
1.1 KiB
Ruby
Executable file
class Api::V1::UsersController < Api::V1::BaseController
|
|
def index
|
|
render json: Api::V1::UsersCollection.as_json
|
|
end
|
|
|
|
def show
|
|
@user = User.find(params[:id])
|
|
@steam = steam_profile @user
|
|
|
|
render json: {
|
|
id: @user.id,
|
|
username: @user.username,
|
|
country: @user.country,
|
|
time_zone: @user.time_zone,
|
|
avatar: @user.profile.avatar.url,
|
|
admin: @user.admin?,
|
|
steam: @user.steamid.nil? ? nil : {
|
|
id: @user.steamid,
|
|
url: @steam.nil? ? nil : @steam.base_url,
|
|
nickname: @steam.nil? ? nil : @steam.nickname
|
|
},
|
|
bans: {
|
|
gather: @user.banned?(Ban::TYPE_GATHER).present?,
|
|
mute: @user.banned?(Ban::TYPE_MUTE).present?,
|
|
site: @user.banned?(Ban::TYPE_SITE).present?
|
|
},
|
|
team: @user.team.present? ? { id: @user.team.id, name: @user.team.name } : nil
|
|
}
|
|
rescue ActiveRecord::RecordNotFound
|
|
raise ActionController::RoutingError.new('User Not Found')
|
|
end
|
|
|
|
private
|
|
|
|
def steam_profile(user)
|
|
SteamCondenser::Community::SteamId.from_steam_id("STEAM_#{user.steamid}")
|
|
rescue SteamCondenser::Error
|
|
nil
|
|
end
|
|
end
|