summaryrefslogtreecommitdiff
path: root/app/controllers/projects/static_site_editor_controller.rb
blob: fed6307514e85ebc48ffd3deab09359b518580ce (plain)
1
2
3
4
5
6
7
8
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
# frozen_string_literal: true

class Projects::StaticSiteEditorController < Projects::ApplicationController
  include ExtractsPath
  include CreatesCommit
  include BlobHelper

  layout 'fullscreen'

  content_security_policy do |policy|
    next if policy.directives.blank?

    frame_src_values = Array.wrap(policy.directives['frame-src']) | ['https://www.youtube.com']
    policy.frame_src(*frame_src_values)
  end

  prepend_before_action :authenticate_user!, only: [:show]
  before_action :assign_ref_and_path, only: [:show]
  before_action :authorize_edit_tree!, only: [:show]

  feature_category :static_site_editor

  def index
    render_404
  end

  def show
    redirect_to ide_edit_path(project, @ref, @path)
  end

  private

  def serialize_necessary_payload_values_to_json(payload)
    # This will convert booleans, Array-like and Hash-like objects to JSON
    payload.transform_values do |value|
      if value.is_a?(String) || value.is_a?(Integer)
        value
      elsif value.nil?
        ''
      else
        value.to_json
      end
    end
  end

  def assign_ref_and_path
    @ref, @path = extract_ref(params.fetch(:id))

    render_404 if @ref.blank? || @path.blank?
  end
end