2013-05-14 08:33:31 -04:00
|
|
|
module API
|
2012-06-29 06:46:01 -04:00
|
|
|
# Users API
|
|
|
|
class Users < Grape::API
|
|
|
|
before { authenticate! }
|
|
|
|
|
|
|
|
resource :users do
|
|
|
|
# Get a users list
|
|
|
|
#
|
|
|
|
# Example Request:
|
|
|
|
# GET /users
|
|
|
|
get do
|
2013-03-13 15:37:50 -04:00
|
|
|
@users = User.scoped
|
2013-03-19 12:07:14 -04:00
|
|
|
@users = @users.active if params[:active].present?
|
2013-03-13 15:37:50 -04:00
|
|
|
@users = @users.search(params[:search]) if params[:search].present?
|
2013-04-16 02:26:01 -04:00
|
|
|
@users = paginate @users
|
2012-08-10 18:07:50 -04:00
|
|
|
present @users, with: Entities::User
|
2012-06-29 06:46:01 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Get a single user
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# id (required) - The ID of a user
|
|
|
|
# Example Request:
|
|
|
|
# GET /users/:id
|
|
|
|
get ":id" do
|
|
|
|
@user = User.find(params[:id])
|
2012-08-10 18:07:50 -04:00
|
|
|
present @user, with: Entities::User
|
2012-06-29 06:46:01 -04:00
|
|
|
end
|
2012-10-19 06:23:10 -04:00
|
|
|
|
2012-10-02 05:46:01 -04:00
|
|
|
# Create user. Available only for admin
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# email (required) - Email
|
|
|
|
# password (required) - Password
|
2012-10-19 06:34:18 -04:00
|
|
|
# name - Name
|
2012-10-02 05:46:01 -04:00
|
|
|
# skype - Skype ID
|
2012-10-02 09:34:20 -04:00
|
|
|
# linkedin - Linkedin
|
2012-10-02 05:46:01 -04:00
|
|
|
# twitter - Twitter account
|
2012-10-19 06:34:18 -04:00
|
|
|
# projects_limit - Number of projects user can create
|
2012-12-18 14:24:31 -05:00
|
|
|
# extern_uid - External authentication provider UID
|
|
|
|
# provider - External provider
|
|
|
|
# bio - Bio
|
2013-07-31 06:52:23 -04:00
|
|
|
# admin - User is admin - true or false (default)
|
|
|
|
# can_create_group - User can create groups - true or false
|
2012-10-02 05:46:01 -04:00
|
|
|
# Example Request:
|
|
|
|
# POST /users
|
|
|
|
post do
|
|
|
|
authenticated_as_admin!
|
2013-02-27 11:50:30 -05:00
|
|
|
required_attributes! [:email, :password, :name, :username]
|
2013-07-31 06:52:23 -04:00
|
|
|
attrs = attributes_for_keys [:email, :name, :password, :skype, :linkedin, :twitter, :projects_limit, :username, :extern_uid, :provider, :bio, :can_create_group, :admin]
|
2013-08-15 17:43:46 -04:00
|
|
|
user = User.build_user(attrs, as: :admin)
|
2013-07-31 06:52:23 -04:00
|
|
|
admin = attrs.delete(:admin)
|
|
|
|
user.admin = admin unless admin.nil?
|
2012-10-02 05:46:01 -04:00
|
|
|
if user.save
|
|
|
|
present user, with: Entities::User
|
|
|
|
else
|
|
|
|
not_found!
|
|
|
|
end
|
|
|
|
end
|
2012-12-18 14:24:31 -05:00
|
|
|
|
|
|
|
# Update user. Available only for admin
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# email - Email
|
|
|
|
# name - Name
|
|
|
|
# password - Password
|
|
|
|
# skype - Skype ID
|
|
|
|
# linkedin - Linkedin
|
|
|
|
# twitter - Twitter account
|
2013-03-17 15:46:54 -04:00
|
|
|
# projects_limit - Limit projects each user can create
|
2012-12-18 14:24:31 -05:00
|
|
|
# extern_uid - External authentication provider UID
|
|
|
|
# provider - External provider
|
|
|
|
# bio - Bio
|
2013-07-31 06:52:23 -04:00
|
|
|
# admin - User is admin - true or false (default)
|
|
|
|
# can_create_group - User can create groups - true or false
|
2012-12-18 14:24:31 -05:00
|
|
|
# Example Request:
|
|
|
|
# PUT /users/:id
|
|
|
|
put ":id" do
|
|
|
|
authenticated_as_admin!
|
2013-02-20 06:10:51 -05:00
|
|
|
|
2013-07-31 06:52:23 -04:00
|
|
|
attrs = attributes_for_keys [:email, :name, :password, :skype, :linkedin, :twitter, :projects_limit, :username, :extern_uid, :provider, :bio, :can_create_group, :admin]
|
2013-02-20 06:10:51 -05:00
|
|
|
user = User.find(params[:id])
|
|
|
|
not_found!("User not found") unless user
|
2012-12-18 14:24:31 -05:00
|
|
|
|
2013-07-31 06:52:23 -04:00
|
|
|
admin = attrs.delete(:admin)
|
|
|
|
user.admin = admin unless admin.nil?
|
|
|
|
if user.update_attributes(attrs, as: :admin)
|
2012-12-18 14:24:31 -05:00
|
|
|
present user, with: Entities::User
|
|
|
|
else
|
|
|
|
not_found!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-11-14 15:37:52 -05:00
|
|
|
# Add ssh key to a specified user. Only available to admin users.
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# id (required) - The ID of a user
|
|
|
|
# key (required) - New SSH Key
|
|
|
|
# title (required) - New SSH Key's title
|
|
|
|
# Example Request:
|
|
|
|
# POST /users/:id/keys
|
|
|
|
post ":id/keys" do
|
|
|
|
authenticated_as_admin!
|
|
|
|
user = User.find(params[:id])
|
|
|
|
attrs = attributes_for_keys [:title, :key]
|
|
|
|
key = user.keys.new attrs
|
|
|
|
if key.save
|
|
|
|
present key, with: Entities::SSHKey
|
|
|
|
else
|
|
|
|
not_found!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-12-18 14:24:31 -05:00
|
|
|
# Delete user. Available only for admin
|
|
|
|
#
|
|
|
|
# Example Request:
|
|
|
|
# DELETE /users/:id
|
|
|
|
delete ":id" do
|
|
|
|
authenticated_as_admin!
|
|
|
|
user = User.find_by_id(params[:id])
|
|
|
|
|
|
|
|
if user
|
|
|
|
user.destroy
|
|
|
|
else
|
|
|
|
not_found!
|
|
|
|
end
|
|
|
|
end
|
2012-06-29 06:46:01 -04:00
|
|
|
end
|
|
|
|
|
2012-09-21 07:49:28 -04:00
|
|
|
resource :user do
|
|
|
|
# Get currently authenticated user
|
|
|
|
#
|
|
|
|
# Example Request:
|
|
|
|
# GET /user
|
|
|
|
get do
|
2013-03-18 16:11:28 -04:00
|
|
|
present @current_user, with: Entities::UserLogin
|
2012-09-21 07:49:28 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Get currently authenticated user's keys
|
|
|
|
#
|
|
|
|
# Example Request:
|
|
|
|
# GET /user/keys
|
|
|
|
get "keys" do
|
|
|
|
present current_user.keys, with: Entities::SSHKey
|
|
|
|
end
|
|
|
|
|
|
|
|
# Get single key owned by currently authenticated user
|
|
|
|
#
|
|
|
|
# Example Request:
|
|
|
|
# GET /user/keys/:id
|
|
|
|
get "keys/:id" do
|
|
|
|
key = current_user.keys.find params[:id]
|
|
|
|
present key, with: Entities::SSHKey
|
|
|
|
end
|
|
|
|
|
|
|
|
# Add new ssh key to currently authenticated user
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# key (required) - New SSH Key
|
|
|
|
# title (required) - New SSH Key's title
|
|
|
|
# Example Request:
|
|
|
|
# POST /user/keys
|
|
|
|
post "keys" do
|
2013-02-27 11:50:30 -05:00
|
|
|
required_attributes! [:title, :key]
|
2013-02-20 06:10:51 -05:00
|
|
|
|
2012-09-21 07:49:28 -04:00
|
|
|
attrs = attributes_for_keys [:title, :key]
|
|
|
|
key = current_user.keys.new attrs
|
|
|
|
if key.save
|
|
|
|
present key, with: Entities::SSHKey
|
|
|
|
else
|
|
|
|
not_found!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-20 06:10:51 -05:00
|
|
|
# Delete existing ssh key of currently authenticated user
|
2012-09-21 07:49:28 -04:00
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# id (required) - SSH Key ID
|
|
|
|
# Example Request:
|
|
|
|
# DELETE /user/keys/:id
|
|
|
|
delete "keys/:id" do
|
2013-02-20 06:10:51 -05:00
|
|
|
begin
|
|
|
|
key = current_user.keys.find params[:id]
|
2013-05-06 09:24:58 -04:00
|
|
|
key.destroy
|
2013-02-20 06:10:51 -05:00
|
|
|
rescue
|
|
|
|
end
|
2012-09-21 07:49:28 -04:00
|
|
|
end
|
2012-06-29 06:46:01 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|