* Add initial invitation framework for chat channels * Update chat_channel specs * Add DIY concept of accepting invite * Add some js and fix spec * Add full invite accept functionality * Remove console.log from chat
35 lines
1.1 KiB
Ruby
35 lines
1.1 KiB
Ruby
module Api
|
|
module V0
|
|
class UsersController < ApplicationController
|
|
def index
|
|
if !user_signed_in? || less_than_one_day_old?(current_user)
|
|
usernames = ["ben", "jess", "peter", "maestromac", "andy", "liana"]
|
|
@users = User.where(username: usernames)
|
|
return
|
|
end
|
|
if params[:state] == "follow_suggestions"
|
|
@users = Suggester::Users::Recent.new(current_user).suggest
|
|
elsif params[:state] == "sidebar_suggestions"
|
|
given_tag = params[:tag]
|
|
@users = Suggester::Users::Sidebar.new(current_user, given_tag).suggest.sample(3)
|
|
end
|
|
end
|
|
|
|
def show
|
|
if params[:id] == "by_username"
|
|
@user = User.find_by_username(params[:url])
|
|
else
|
|
@user = User.find(params[:id])
|
|
end
|
|
end
|
|
|
|
def less_than_one_day_old?(user)
|
|
range = (Time.now.beginning_of_day - 1.day)..(Time.now)
|
|
user_identity_age = user.github_created_at ||
|
|
user.twitter_created_at || 8.days.ago
|
|
# last one is a fallback in case both are nil
|
|
range.cover? user_identity_age
|
|
end
|
|
end
|
|
end
|
|
end
|