2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-04-23 14:42:25 +08:00
|
|
|
class QunitController < ApplicationController
|
2024-06-25 19:32:18 +08:00
|
|
|
skip_before_action *%i[
|
|
|
|
check_xhr
|
|
|
|
preload_json
|
|
|
|
redirect_to_login_if_required
|
|
|
|
redirect_to_profile_if_required
|
|
|
|
]
|
2018-04-23 14:42:25 +08:00
|
|
|
layout false
|
|
|
|
|
2021-04-29 04:12:08 +08:00
|
|
|
def theme
|
|
|
|
raise Discourse::NotFound.new if !can_see_theme_qunit?
|
|
|
|
|
2023-09-11 16:12:37 +08:00
|
|
|
@has_test_bundle = EmberCli.has_tests?
|
|
|
|
|
2021-04-29 04:12:08 +08:00
|
|
|
param_key = nil
|
|
|
|
@suggested_themes = nil
|
|
|
|
if (id = get_param(:id)).present?
|
|
|
|
theme = Theme.find_by(id: id.to_i)
|
|
|
|
param_key = :id
|
|
|
|
elsif (name = get_param(:name)).present?
|
|
|
|
theme = Theme.find_by(name: name)
|
|
|
|
param_key = :name
|
|
|
|
elsif (url = get_param(:url)).present?
|
|
|
|
theme = RemoteTheme.find_by(remote_url: url)&.theme
|
|
|
|
param_key = :url
|
2021-04-12 20:02:58 +08:00
|
|
|
end
|
2021-04-29 04:12:08 +08:00
|
|
|
|
|
|
|
if param_key && theme.blank?
|
2021-09-23 02:00:19 +08:00
|
|
|
return(
|
|
|
|
render plain: "Can't find theme with #{param_key} #{get_param(param_key).inspect}",
|
|
|
|
status: :not_found
|
2023-01-09 20:20:10 +08:00
|
|
|
)
|
2021-04-12 20:02:58 +08:00
|
|
|
end
|
2021-04-29 04:12:08 +08:00
|
|
|
|
|
|
|
if !param_key
|
|
|
|
@suggested_themes =
|
|
|
|
Theme
|
|
|
|
.where(
|
|
|
|
id: ThemeField.where(target_id: Theme.targets[:tests_js]).distinct.pluck(:theme_id),
|
|
|
|
)
|
|
|
|
.order(updated_at: :desc)
|
|
|
|
.pluck(:id, :name)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2021-06-15 14:57:17 +08:00
|
|
|
request.env[:resolved_theme_id] = theme.id
|
2021-04-29 04:12:08 +08:00
|
|
|
request.env[:skip_theme_ids_transformation] = true
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def can_see_theme_qunit?
|
|
|
|
return true if !Rails.env.production?
|
|
|
|
current_user&.admin?
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def get_param(key)
|
|
|
|
params[:"theme_#{key}"] || params[key]
|
2018-04-23 14:42:25 +08:00
|
|
|
end
|
|
|
|
end
|