Class: PublishedPagesController

Inherits:
ApplicationController show all
Defined in:
app/controllers/published_pages_controller.rb

Constant Summary

Constants inherited from ApplicationController

ApplicationController::LEGACY_NO_THEMES, ApplicationController::LEGACY_NO_UNOFFICIAL_PLUGINS, ApplicationController::NO_PLUGINS, ApplicationController::NO_THEMES, ApplicationController::NO_UNOFFICIAL_PLUGINS, ApplicationController::SAFE_MODE

Constants included from CanonicalURL::ControllerExtensions

CanonicalURL::ControllerExtensions::ALLOWED_CANONICAL_PARAMS

Instance Attribute Summary

Attributes inherited from ApplicationController

#theme_id

Instance Method Summary collapse

Methods inherited from ApplicationController

#application_layout, #can_cache_content?, #clear_notifications, #conditionally_allow_site_embedding, #current_homepage, #discourse_expires_in, #dont_cache_page, #ember_cli_required?, #fetch_user_from_params, #guardian, #handle_permalink, #handle_theme, #handle_unverified_request, #has_escaped_fragment?, #immutable_for, #no_cookies, #perform_refresh_session, #post_ids_including_replies, #preload_json, #rate_limit_second_factor!, #redirect_with_client_support, #render_json_dump, #render_serialized, requires_plugin, #rescue_discourse_actions, #resolve_safe_mode, #secure_session, #serialize_data, #set_current_user_for_logs, #set_layout, #set_mobile_view, #set_mp_snapshot_fields, #show_browser_update?, #store_preloaded, #use_crawler_layout?, #with_resolved_locale

Methods included from VaryHeader

#ensure_vary_header

Methods included from ReadOnlyMixin

#add_readonly_header, #allowed_in_staff_writes_only_mode?, #block_if_readonly_mode, #check_readonly_mode, included, #staff_writes_only_mode?

Methods included from Hijack

#hijack

Methods included from GlobalPath

#cdn_path, #cdn_relative_path, #full_cdn_url, #path, #upload_cdn_path

Methods included from JsonError

#create_errors_json

Methods included from CanonicalURL::ControllerExtensions

#canonical_url, #default_canonical, included

Methods included from CurrentUser

#clear_current_user, #current_user, has_auth_cookie?, #is_api?, #is_user_api?, #log_off_user, #log_on_user, lookup_from_env, #refresh_session

Instance Method Details

#check_slugObject



81
82
83
84
85
86
87
88
89
# File 'app/controllers/published_pages_controller.rb', line 81

def check_slug
  pp = PublishedPage.new(topic: Topic.new, slug: params[:slug].strip)

  if pp.valid?
    render json: { valid_slug: true }
  else
    render json: { valid_slug: false, reason: pp.errors.full_messages.first }
  end
end

#destroyObject



76
77
78
79
# File 'app/controllers/published_pages_controller.rb', line 76

def destroy
  PublishedPage.unpublish!(current_user, fetch_topic)
  render json: success_json
end

#detailsObject



56
57
58
59
60
# File 'app/controllers/published_pages_controller.rb', line 56

def details
  pp = PublishedPage.find_by(topic: fetch_topic)
  raise Discourse::NotFound if pp.blank?
  render_serialized(pp, PublishedPageSerializer)
end

#showObject



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'app/controllers/published_pages_controller.rb', line 9

def show
  params.require(:slug)

  pp = PublishedPage.find_by(slug: params[:slug])
  raise Discourse::NotFound unless pp

  return if 

  if !pp.public
    begin
      guardian.ensure_can_see!(pp.topic)
    rescue Discourse::InvalidAccess => e
      return(
        rescue_discourse_actions(
          :invalid_access,
          403,
          include_ember: false,
          custom_message: e.custom_message,
          group: e.group,
        )
      )
    end
  end

  @topic = pp.topic
  @canonical_url = @topic.url
  @logo = SiteSetting.logo_small || SiteSetting.
  @site_url = Discourse.base_url
  @border_color = "#" + ColorScheme.base_colors["tertiary"]

  TopicViewItem.add(pp.topic.id, request.remote_ip, current_user ? current_user.id : nil)

  @body_classes =
    Set.new(
      [
        "published-page",
        params[:slug],
        "topic-#{@topic.id}",
        @topic.tags.pluck(:name),
      ].flatten.compact,
    )

  @body_classes << @topic.category.slug if @topic.category

  render layout: "publish"
end

#upsertObject



62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'app/controllers/published_pages_controller.rb', line 62

def upsert
  pp_params = params.require(:published_page)

  result, pp =
    PublishedPage.publish!(
      current_user,
      fetch_topic,
      pp_params[:slug].strip,
      pp_params.permit(:public),
    )

  json_result(pp, serializer: PublishedPageSerializer) { result }
end