Retrospring/app/controllers/user_controller.rb

80 lines
2.6 KiB
Ruby
Raw Normal View History

2022-11-15 12:41:05 -08:00
# frozen_string_literal: true
2014-11-02 08:57:37 -08:00
class UserController < ApplicationController
before_action :set_user
before_action :hidden_social_graph_redirect, only: %i[followers followings]
2014-11-02 08:57:37 -08:00
def show
@answers = @user.cursored_answers(last_id: params[:last_id])
@answers_last_id = @answers.map(&:id).min
@more_data_available = !@user.cursored_answers(last_id: @answers_last_id, size: 1).count.zero?
if user_signed_in?
2021-12-31 13:19:21 -08:00
notif = Notification.where(target_type: "Relationship", target_id: @user.active_follow_relationships.where(target_id: current_user.id).pluck(:id), recipient_id: current_user.id, new: true).first
unless notif.nil?
notif.new = false
notif.save
end
end
2014-12-08 06:23:04 -08:00
respond_to do |format|
format.html
format.turbo_stream
2014-12-08 06:23:04 -08:00
end
2014-11-02 08:57:37 -08:00
end
2014-12-08 08:03:06 -08:00
def followers
2022-11-15 12:41:05 -08:00
@title = "Followers"
@relationships = @user.cursored_follower_relationships(last_id: params[:last_id])
@relationships_last_id = @relationships.map(&:id).min
@more_data_available = !@user.cursored_follower_relationships(last_id: @relationships_last_id, size: 1).count.zero?
@users = @relationships.map(&:source)
@type = :follower
2020-05-08 19:39:09 -07:00
respond_to do |format|
format.html { render "show_follow" }
format.turbo_stream { render "show_follow" }
2020-05-08 19:39:09 -07:00
end
2014-12-08 08:03:06 -08:00
end
2021-12-31 13:19:21 -08:00
def followings
2022-11-15 12:41:05 -08:00
@title = "Following"
@relationships = @user.cursored_following_relationships(last_id: params[:last_id])
@relationships_last_id = @relationships.map(&:id).min
@more_data_available = !@user.cursored_following_relationships(last_id: @relationships_last_id, size: 1).count.zero?
@users = @relationships.map(&:target)
@type = :friend
2020-05-08 19:39:09 -07:00
respond_to do |format|
format.html { render "show_follow" }
format.turbo_stream { render "show_follow" }
2020-05-08 19:39:09 -07:00
end
2014-12-08 08:03:06 -08:00
end
2014-12-19 13:34:24 -08:00
def questions
2022-11-15 12:41:05 -08:00
@title = "Questions"
@questions = @user.cursored_questions(author_is_anonymous: false, direct: belongs_to_current_user? || moderation_view?, last_id: params[:last_id])
@questions_last_id = @questions.map(&:id).min
@more_data_available = !@user.cursored_questions(author_is_anonymous: false, direct: belongs_to_current_user? || moderation_view?, last_id: @questions_last_id, size: 1).count.zero?
2020-05-08 19:39:09 -07:00
respond_to do |format|
format.html
format.turbo_stream
2020-05-08 19:39:09 -07:00
end
2014-12-19 13:34:24 -08:00
end
private
def set_user
2022-11-15 12:41:05 -08:00
@user = User.where("LOWER(screen_name) = ?", params[:username].downcase).includes(:profile).first!
end
def hidden_social_graph_redirect
2022-11-15 12:41:05 -08:00
return if belongs_to_current_user? || !@user.privacy_hide_social_graph
redirect_to user_path(@user)
end
def belongs_to_current_user? = @user == current_user
2014-11-02 08:57:37 -08:00
end