class UsersController < ApplicationController respond_to :html, :json # GET /users/1.json def show @user = User.find(params[:id]) render json: @user end # GET /users/:id/edit def edit @user = current_user respond_with(@user) end # PUT /users/:id def update @user = current_user if params[:user][:password] == "" && params[:user][:password_confirmation] == "" # not trying to change the password if @user.update_attributes(params[:user]) if params[:remove_image] == "1" @user.image = nil end @user.save sign_in(@user, :bypass => true) respond_to do |format| format.html { redirect_to root_url, notice: "Account updated!" } end else sign_in(@user, :bypass => true) respond_to do |format| format.html { redirect_to edit_user_path(@user), notice: @user.errors.to_a[0] } end end else # trying to change the password correct_pass = @user.valid_password?(params[:current_password]) if correct_pass && @user.update_attributes(params[:user]) if params[:remove_image] == "1" @user.image = nil end @user.save sign_in(@user, :bypass => true) respond_to do |format| format.html { redirect_to root_url, notice: "Account updated!" } end else respond_to do |format| if correct_pass u = User.find(@user.id) sign_in(u, :bypass => true) format.html { redirect_to edit_user_path(@user), notice: @user.errors.to_a[0] } else sign_in(@user, :bypass => true) format.html { redirect_to edit_user_path(@user), notice: "Incorrect current password" } end end end end end # GET /users/:id/details [.json] def details @user = User.find(params[:id]) @details = Hash.new @details['name'] = @user.name @details['created_at'] = @user.created_at.strftime("%m/%d/%Y") @details['image'] = @user.image.url(:ninetysix) @details['numSynapses'] = @user.synapses.count @details['numTopics'] = @user.topics.count @details['numMaps'] = @user.maps.count render json: @details end # PUT /user/updatemetacodes def updatemetacodes @user = current_user @m = params[:metacodes][:value] @user.settings.metacodes=@m.split(',') @user.save respond_to do |format| format.json { render json: @user } end end end