summaryrefslogtreecommitdiff
path: root/app/controllers/nodes_controller.rb
blob: c1468be072bf382b515fc3a8ab6b994fb0d3cc65 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
class NodesController < ApplicationController

  # Private

  layout 'admin'

  before_action :login_required
  before_action :find_node, :only => [
                              :show,
                              :edit,
                              :update,
                              :destroy,
                              :publish,
                              :unlock,
                              :autosave,
                              :revert
                            ]

  def index
    @nodes = Node.root.descendants.includes(:head, :draft)
      .order('id DESC')
      .paginate(:page => params[:page], :per_page => 25)
  end

  def new
    @node = Node.new node_params
    @selected_kind = CccConventions::NODE_KINDS.key?(params[:kind]) ? params[:kind] : "generic"
    if params.has_key?(:parent_id)
      @parent_id = params[:parent_id]
      @parent_name = Node.find(@parent_id).title
    end
  end

  def create
    params[:title] ||= ""

    @node = Node.new
    @node.parent_id = find_parent
    @node.slug = slug_for(params[:title])

    config = CccConventions::NODE_KINDS[params[:kind]]

    if @node.save
      @node.draft.update(:title => params[:title])
      Array(config && config[:tags]).each { |t| @node.draft.tag_list.add(t) }
      @node.draft.save!

      @node.update!(default_template_name: config[:template]) if config && config[:template]

      redirect_to(edit_node_path(@node))
    else
      @selected_kind = CccConventions::NODE_KINDS.key?(params[:kind]) ? params[:kind] : "generic"
      if params[:parent_id].present?
        @parent_id = params[:parent_id]
        @parent_name = Node.find(@parent_id).title
      end
      render :new
    end
  end

  def show
    node = Node.find(params[:id])
    node.wipe_draft!
    @page = node.draft || node.head
  end

  def edit
    freshly_locked = @node.lock_owner != current_user
    @node.lock_for_editing!( current_user )
    @page = @node.autosave || @node.draft || @node.head

    if @node.autosave
      flash.now[:notice] =
        "This page has unsaved changes from a previous session, shown below. " \
        "Save to keep them, or use \"Discard Autosave\" below to go back to the last saved version."
    elsif freshly_locked
      flash.now[:notice] = "Node locked and ready to edit"
    end
  rescue LockedByAnotherUser => e
    flash[:error] = e.message
    redirect_to(request.referer || node_path(@node))
  end

  def update
    @node.update(node_params)
    @node.autosave!( page_params.merge(:tag_list => params[:tag_list]), current_user )
    @node.save_draft!(current_user)

    flash[:notice] = "Draft saved. Publish your changes in the Status section once you're done."
    flash[:status_path] = node_path(@node)

    if @node.draft.translated_locales.size > 1
      stale_locale = @node.draft.translated_locales.find do |locale|
        @node.draft.outdated_translations?(locale: locale)
      end
      if stale_locale
        flash[:stale_locale] = stale_locale
        flash[:stale_locale_path] = edit_node_path(@node, locale: stale_locale)
      end
    end

    if params[:commit] == "Save + Unlock + Exit"
      @node.unlock!
      redirect_to node_path(@node)
    else
      redirect_to edit_node_path(@node)
    end
  rescue LockedByAnotherUser => e
    flash[:error] = e.message
    redirect_to node_path(@node)
  rescue ActiveRecord::RecordInvalid
    @page = @node.autosave || @node.draft || @node.head
    render :action => :edit
  end

  def autosave
    @node.update(node_params)
    @node.autosave!( page_params.merge(:tag_list => params[:tag_list]), current_user )
    head :ok
  rescue LockedByAnotherUser => e
    render plain: e.message, status: :locked
  rescue ActiveRecord::RecordInvalid => e
    render plain: e.message, status: :unprocessable_entity
  rescue StandardError => e
    render plain: "Autosave failed", status: :internal_server_error
  end

  def revert
    @node.lock_for_editing!(current_user)
    @node.revert!(current_user)

    if params[:return_to].present?
      redirect_to safe_return_to(params[:return_to])
    elsif @node.draft
      redirect_to edit_node_path(@node)
    else
      redirect_to node_path(@node)
    end
  rescue LockedByAnotherUser => e
    flash[:error] = e.message
    redirect_to node_path(@node)
  end

  def destroy
    @node.destroy
  end

  def publish
    @node.publish_draft!
    flash[:notice] = "Draft has been published"
    redirect_to node_path(@node)
  end

  def unlock
    if @node.unlock!
      flash[:notice] = "Node unlocked"
    else
      flash[:notice] = "Already unlocked"
    end

    redirect_to node_path(@node)
  end

  def generate_shared_preview
    @node = Node.find(params[:id])
    if @node.draft
      @node.draft.ensure_preview_token!
      flash[:notice] = "Shareable preview link created - see below."
    else
      flash[:notice] = "Create or edit a draft first - shared preview links are only available for pages with an active draft."
    end
    redirect_to node_path(@node)
  end

  def revoke_shared_preview
    @node = Node.find(params[:id])
    @node.draft.revoke_preview_token! if @node.draft
    flash[:notice] = "Shareable preview link revoked."
    redirect_to node_path(@node)
  end

  def parameterize_preview
    render plain: slug_for(params[:title])
  end

  # Filter functions for admin views
  def drafts
    @nodes = index_matching(Node.drafts_and_autosaves)
  end

  def recent
    @nodes = index_matching(Node.recently_changed)
  end

  def mine
    base = Node.joins(:pages)
      .where("pages.user_id = ? or pages.editor_id = ?", current_user, current_user)
      .distinct
    @nodes = index_matching(base)
  end

  def chapters
    @kind_keys = Array(params[:kinds]) & %w[erfa chaostreff]
    @kind_keys = %w[erfa chaostreff] if @kind_keys.empty?
    tags = @kind_keys.flat_map { |key| CccConventions::NODE_KINDS[key][:tags] }
    @nodes = nodes_matching_tags(tags)
  end

  def tags
    tags = params[:tags].to_s.split(',').map(&:strip).reject(&:blank?)
    @nodes = nodes_matching_tags(tags)
  end

  def sitemap
    @sitemap = Node.root.self_and_descendants_ordered_with_level
    @sitemap_descendant_counts = descendant_counts_for(@sitemap)
  end

  private

    def slug_for(title)
      title.to_s.parameterize
    end

    def node_params
      params.fetch(:node, {}).permit(:slug, :parent_id, :staged_slug, :staged_parent_id)
    end

    def page_params
      params.fetch(:page, {}).permit(:title, :abstract, :body, :template_name, :published_at, :user_id)
    end

    def find_node
      @node = Node.find(params[:id])
    end

    def find_parent
      case params[:kind]
      when "generic"
        if params[:parent_id] && Node.find(params[:parent_id])
          params[:parent_id]
        else
          nil
        end
      else
        config = CccConventions::NODE_KINDS[params[:kind]]
        config && config[:parent] ? config[:parent].call.id : nil
      end
    end

    def descendant_counts_for(ordered_with_level)
      counts = Hash.new(0)
      stack = [] # [node, level, index]
      ordered_with_level.each_with_index do |(node, level), index|
        while stack.any? && stack.last[1] >= level
          ancestor_node, _ancestor_level, ancestor_index = stack.pop
          counts[ancestor_node.id] = index - ancestor_index - 1
        end
        stack << [node, level, index]
      end
      total = ordered_with_level.length
      while stack.any?
        ancestor_node, _ancestor_level, ancestor_index = stack.pop
        counts[ancestor_node.id] = total - ancestor_index - 1
      end
      counts
    end

    def nodes_matching_tags(tags)
      matching_pages = Page.tagged_with(tags, any: true).reselect(:id)
      base = Node.where(head_id: matching_pages).or(Node.where(draft_id: matching_pages))
      index_matching(base)
    end

    def index_matching(base_scope)
      scope = base_scope.includes(:head, :draft)
      scope = scope.merge(Node.editor_search(params[:q])) if params[:q].present?
      scope.order("nodes.updated_at desc").paginate(page: params[:page], per_page: 25)
    end
end