2022-11-15 12:41:05 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-11-02 08:57:37 -08:00
|
|
|
class UserController < ApplicationController
|
2022-11-15 12:36:06 -08:00
|
|
|
before_action :set_user
|
|
|
|
before_action :hidden_social_graph_redirect, only: %i[followers followings]
|
|
|
|
|
2014-11-02 08:57:37 -08:00
|
|
|
def show
|
2020-04-20 14:03:57 -07:00
|
|
|
@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?
|
2015-02-09 21:53:50 -08:00
|
|
|
|
|
|
|
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
|
2015-02-09 21:53:50 -08:00
|
|
|
unless notif.nil?
|
|
|
|
notif.new = false
|
|
|
|
notif.save
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-12-08 06:23:04 -08:00
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
2022-09-07 14:20:03 -07:00
|
|
|
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"
|
2022-06-18 08:29:23 -07:00
|
|
|
@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)
|
2022-09-07 14:21:18 -07:00
|
|
|
@type = :follower
|
2020-05-08 19:39:09 -07:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { render "show_follow" }
|
2022-09-07 14:21:18 -07:00
|
|
|
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"
|
2022-06-18 08:29:23 -07:00
|
|
|
@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)
|
2014-12-08 10:48:12 -08:00
|
|
|
@type = :friend
|
2020-05-08 19:39:09 -07:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { render "show_follow" }
|
2022-09-07 14:21:18 -07:00
|
|
|
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"
|
2022-12-27 14:06:24 -08:00
|
|
|
|
|
|
|
@questions = @user.cursored_questions(author_is_anonymous: false, direct: direct_param, last_id: params[:last_id])
|
2020-04-20 14:03:57 -07:00
|
|
|
@questions_last_id = @questions.map(&:id).min
|
2022-12-27 14:06:24 -08:00
|
|
|
@more_data_available = !@user.cursored_questions(author_is_anonymous: false, direct: direct_param, last_id: @questions_last_id, size: 1).count.zero?
|
2020-05-08 19:39:09 -07:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
2022-09-07 14:20:47 -07:00
|
|
|
format.turbo_stream
|
2020-05-08 19:39:09 -07:00
|
|
|
end
|
2014-12-19 13:34:24 -08:00
|
|
|
end
|
2022-08-18 19:25:33 -07:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2022-11-15 12:36:06 -08:00
|
|
|
def set_user
|
2022-11-15 12:41:05 -08:00
|
|
|
@user = User.where("LOWER(screen_name) = ?", params[:username].downcase).includes(:profile).first!
|
2022-11-15 12:36:06 -08:00
|
|
|
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)
|
2022-11-15 12:36:06 -08:00
|
|
|
end
|
|
|
|
|
2022-12-27 14:06:24 -08:00
|
|
|
def direct_param
|
|
|
|
# return `nil` instead of `false` so we retrieve all questions for the user, direct or not.
|
|
|
|
# `cursored_questions` will then remove the `direct` field from the WHERE query. otherwise the query filters
|
|
|
|
# for `WHERE direct = false` ...
|
|
|
|
return if belongs_to_current_user? || moderation_view?
|
|
|
|
|
|
|
|
# page is not being viewed by the current user, and we're not in the moderation view -> only show public questions
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2022-08-18 19:25:33 -07:00
|
|
|
def belongs_to_current_user? = @user == current_user
|
2014-11-02 08:57:37 -08:00
|
|
|
end
|