Module: Sufia::UsersControllerBehavior

Extended by:
ActiveSupport::Concern
Included in:
UsersController
Defined in:
app/controllers/concerns/sufia/users_controller_behavior.rb

Instance Method Summary collapse

Instance Method Details

#editObject

Display form for users to edit their profile information



42
43
44
45
# File 'app/controllers/concerns/sufia/users_controller_behavior.rb', line 42

def edit
  @user = current_user
  @trophies = @user.trophy_ids
end

#followObject

Follow a user



87
88
89
90
91
92
93
# File 'app/controllers/concerns/sufia/users_controller_behavior.rb', line 87

def follow
  unless current_user.following?(@user)
    current_user.follow(@user)
    Sufia.queue.push(UserFollowEventJob.new(current_user.user_key, @user.user_key))
  end
  redirect_to sufia.profile_path(URI.escape(@user.to_s,'@.')), notice: "You are following #{@user.to_s}"
end

#indexObject



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'app/controllers/concerns/sufia/users_controller_behavior.rb', line 13

def index
  sort_val = get_sort
  query = params[:uq].blank? ? nil : "%"+params[:uq].downcase+"%"
  base = User.where(*base_query)
  unless query.blank?
    base = base.where("#{Devise.authentication_keys.first} like lower(?) OR display_name like lower(?)", query, query)
  end
  @users = base.order(sort_val).page(params[:page]).per(10)

  respond_to do |format|
    format.html
    format.json { render json: @users.to_json }
  end
  
end

#showObject

Display user profile



30
31
32
33
34
35
36
37
38
39
# File 'app/controllers/concerns/sufia/users_controller_behavior.rb', line 30

def show
  if @user.respond_to? :profile_events
    @events = @user.profile_events(100) 
  else 
    @events = []
  end
  @trophies = @user.trophy_ids
  @followers = @user.followers
  @following = @user.all_following
end

#toggle_trophyObject



65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'app/controllers/concerns/sufia/users_controller_behavior.rb', line 65

def toggle_trophy    
   id = params[:file_id]
   id = "#{Sufia.config.id_namespace}:#{id}" unless id.include?(":")
   unless current_user.can? :edit, id
     redirect_to root_path, alert: "You do not have permissions to the file"
     return false
   end
   # TODO  make sure current user has access to file
   t = Trophy.where(:generic_file_id => params[:file_id], :user_id => current_user.id).first
   if t.blank? 
     t = Trophy.create(:generic_file_id => params[:file_id], :user_id => current_user.id)
     return false unless t.persisted?
   else
     t.destroy  
     #TODO do this better says Mike
     return false if t.persisted?  
   end
   render :json => t
end

#unfollowObject

Unfollow a user



96
97
98
99
100
101
102
# File 'app/controllers/concerns/sufia/users_controller_behavior.rb', line 96

def unfollow
  if current_user.following?(@user)
    current_user.stop_following(@user)
    Sufia.queue.push(UserUnfollowEventJob.new(current_user.user_key, @user.user_key))
  end
  redirect_to sufia.profile_path(URI.escape(@user.to_s,'@.')), notice: "You are no longer following #{@user.to_s}"
end

#updateObject

Process changes from profile form



48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'app/controllers/concerns/sufia/users_controller_behavior.rb', line 48

def update
  @user.update_attributes(params[:user])
  @user.populate_attributes if params[:update_directory]
  @user.avatar = nil if params[:delete_avatar]
  unless @user.save
    redirect_to sufia.edit_profile_path(URI.escape(@user.to_s,'@.')), alert: @user.errors.full_messages
    return
  end
  delete_trophy = params.keys.reject{|k,v|k.slice(0,'remove_trophy'.length)!='remove_trophy'}
  delete_trophy = delete_trophy.map{|v| v.slice('remove_trophy_'.length..-1)}
  delete_trophy.each do | smash_trophy |
    Trophy.where(user_id: current_user.id, generic_file_id: smash_trophy).each.map(&:delete)
  end
  Sufia.queue.push(UserEditProfileEventJob.new(@user.user_key))
  redirect_to sufia.profile_path(URI.escape(@user.to_s,'@.')), notice: "Your profile has been updated"
end