hackatime/app/controllers/inertia_controller.rb
2026-02-10 00:00:37 +00:00

260 lines
9.4 KiB
Ruby

# frozen_string_literal: true
class InertiaController < ApplicationController
inertia_share layout: -> { inertia_layout_props }
private
def inertia_layout_props
{
nav: inertia_nav_props,
footer: inertia_footer_props,
currently_hacking: currently_hacking_props,
csrf_token: form_authenticity_token,
signout_path: signout_path,
show_stop_impersonating: session[:impersonater_user_id].present?,
stop_impersonating_path: stop_impersonating_path
}
end
def inertia_nav_props
user = current_user
{
flash: inertia_flash_messages,
user_present: user.present?,
user: user ? inertia_user_mention_props(user) : nil,
streak: user ? inertia_streak_props(user) : nil,
admin_level: user&.admin_level == "default" ? nil : user&.admin_level,
login_path: slack_auth_path,
links: inertia_primary_links,
dev_links: inertia_dev_links,
admin_links: inertia_admin_links,
viewer_links: inertia_viewer_links,
superadmin_links: inertia_superadmin_links,
activities: inertia_activities_props
}
end
def inertia_flash_messages
flash.to_hash.map do |type, message|
{
message: message.to_s,
class_name: flash_class_for(type)
}
end
end
def flash_class_for(type)
case type.to_sym
when :notice, :success
"flash-message--success"
else
"flash-message--error"
end
end
def inertia_primary_links
links = []
links << inertia_link("Home", root_path, active: helpers.current_page?(root_path))
links << inertia_link("Leaderboards", leaderboards_path, active: helpers.current_page?(leaderboards_path))
if current_user
links << inertia_link("Projects", my_projects_path, active: helpers.current_page?(my_projects_path))
links << inertia_link("Docs", docs_path, active: helpers.current_page?(docs_path) || request.path.start_with?("/docs"))
links << inertia_link("Extensions", extensions_path, active: helpers.current_page?(extensions_path))
links << inertia_link("Settings", my_settings_path, active: helpers.current_page?(my_settings_path))
links << inertia_link("My OAuth Apps", oauth_applications_path, active: helpers.current_page?(oauth_applications_path) || request.path.start_with?("/oauth/applications"))
links << { label: "Logout", action: "logout" }
else
links << inertia_link("Docs", docs_path, active: helpers.current_page?(docs_path) || request.path.start_with?("/docs"))
links << inertia_link("Extensions", extensions_path, active: helpers.current_page?(extensions_path))
links << inertia_link("What is Hackatime?", "/what-is-hackatime", active: helpers.current_page?("/what-is-hackatime"))
end
links
end
def inertia_dev_links
return [] unless Rails.env.development?
[
inertia_link("Letter Opener", letter_opener_web_path, active: helpers.current_page?(letter_opener_web_path)),
inertia_link("Mailers", "/rails/mailers", active: helpers.current_page?("/rails/mailers"))
]
end
def inertia_admin_links
return [] unless current_user&.admin_level.in?(%w[admin superadmin])
links = []
links << inertia_link("Review Timeline", admin_timeline_path, active: helpers.current_page?(admin_timeline_path))
links << inertia_link("Trust Level Logs", admin_trust_level_audit_logs_path, active: helpers.current_page?(admin_trust_level_audit_logs_path) || request.path.start_with?("/admin/trust_level_audit_logs"))
links << inertia_link("Admin API Keys", admin_admin_api_keys_path, active: helpers.current_page?(admin_admin_api_keys_path) || request.path.start_with?("/admin/admin_api_keys"))
links
end
def inertia_viewer_links
return [] unless current_user&.admin_level == "viewer"
[
inertia_link("Review Timeline", admin_timeline_path, active: helpers.current_page?(admin_timeline_path)),
inertia_link("Trust Level Logs", admin_trust_level_audit_logs_path, active: helpers.current_page?(admin_trust_level_audit_logs_path) || request.path.start_with?("/admin/trust_level_audit_logs")),
inertia_link("Admin API Keys", admin_admin_api_keys_path, active: helpers.current_page?(admin_admin_api_keys_path) || request.path.start_with?("/admin/admin_api_keys"))
]
end
def inertia_superadmin_links
return [] unless current_user&.admin_level == "superadmin"
links = []
links << inertia_link("Admin Management", admin_admin_users_path, active: helpers.current_page?(admin_admin_users_path))
pending_count = DeletionRequest.pending.count
links << inertia_link("Account Deletions", admin_deletion_requests_path, active: helpers.current_page?(admin_deletion_requests_path), badge: pending_count.positive? ? pending_count : nil)
links << inertia_link("GoodBoy", good_job_path, active: helpers.current_page?(good_job_path))
links << inertia_link("All OAuth Apps", admin_oauth_applications_path, active: helpers.current_page?(admin_oauth_applications_path) || request.path.start_with?("/admin/oauth_applications"))
links << inertia_link("Feature Flags", flipper_path, active: helpers.current_page?(flipper_path))
links
end
def inertia_link(label, href, active: false, badge: nil)
{ label: label, href: href, active: active, badge: badge }
end
def inertia_activities_props
return nil unless defined?(@activities) && @activities.present?
@activities.filter_map do |activity|
owner = activity.owner
next unless owner
message = inertia_activity_message(activity)
next if message.blank?
{
id: activity.id,
owner: inertia_user_mention_props(owner),
message: message
}
end
end
def inertia_footer_props
helpers = ApplicationController.helpers
cache = helpers.cache_stats
hours = active_users_graph_data.map.with_index do |entry, index|
{
height: entry[:height],
title: "#{helpers.pluralize(index + 1, 'hour')} ago, #{helpers.pluralize(entry[:users], 'people')} logged time. '#{FlavorText.latin_phrases.sample}.'"
}
end
{
git_version: Rails.application.config.git_version,
commit_link: Rails.application.config.commit_link,
server_start_time_ago: helpers.time_ago_in_words(Rails.application.config.server_start_time),
heartbeat_recent_count: Heartbeat.recent_count,
heartbeat_recent_imported_count: Heartbeat.recent_imported_count,
query_count: QueryCount::Counter.counter,
query_cache_count: QueryCount::Counter.counter_cache,
cache_hits: cache[:hits],
cache_misses: cache[:misses],
requests_per_second: helpers.requests_per_second,
active_users_graph: hours
}
end
def inertia_user_mention_props(user)
title =
if user == current_user
FlavorText.same_user.sample
else
user.github_username.presence || user.slack_username.presence
end
country_name = user.country_code.present? ? user.country_name : nil
{
display_name: user.display_name,
avatar_url: user.avatar_url,
title: title,
country_code: user.country_code,
country_name: country_name,
impersonate_path: impersonate_path_for(user)
}
end
def inertia_streak_props(user)
streak_display = user.streak_days_formatted
return nil if streak_display.blank?
streak_count = streak_display.to_i
{
count: streak_count,
display: streak_display,
title: streak_count > 30 ? "30+ daily streak" : "#{streak_display} day streak",
show_text: true,
icon_size: 24
}
end
def inertia_activity_message(activity)
params = activity.parameters&.with_indifferent_access || {}
project = params[:project].presence
case activity.key
when "user.first_signup"
"just signed in for the first time"
when "user.first_heartbeat"
base = "just started tracking their coding time"
project ? "#{base} on #{project}!" : "#{base}!"
when "user.started_working"
base = "just started working"
project ? "#{base} on #{project}" : base
when "user.coding_session"
base = "just finished coding"
duration = helpers.short_time_simple(params[:duration_seconds].to_i)
if project
"#{base} on #{project} for #{duration}"
else
"#{base} for #{duration}"
end
when "physical_mail.mail_sent"
mission_type = params[:humanized_mission_type].presence || "a mission"
"was just sent a letter for '#{mission_type}'"
when "physical_mail.first_streak_achieved"
"just hit their first 7 day coding streak!"
else
nil
end
end
def impersonate_path_for(user)
return nil unless current_user
return nil unless current_user.admin_level.in?(%w[admin superadmin])
return nil if user == current_user
return nil if user.admin_level == "superadmin"
return impersonate_user_path(user) if user.admin_level != "admin"
return impersonate_user_path(user) if current_user.admin_level == "superadmin"
nil
end
def currently_hacking_props
data = Cache::CurrentlyHackingJob.perform_now
users = (data[:users] || []).map do |u|
proj = data[:active_projects]&.dig(u.id)
{
id: u.id,
display_name: u.display_name,
slack_uid: u.slack_uid,
avatar_url: u.avatar_url,
active_project: proj && { name: proj.project_name, repo_url: proj.repo_url }
}
end
{
count: users.size,
users: users,
interval: 30_000
}
end
end