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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
|
class Node < ApplicationRecord
# Mixins and Plugins
include NestedTree
# Associations
has_many :pages, -> { order("revision ASC") }, :dependent => :destroy
has_many :node_actions, :dependent => :nullify
belongs_to :head, :class_name => "Page", :foreign_key => :head_id, optional: true
belongs_to :draft, :class_name => "Page", :foreign_key => :draft_id, optional: true
# Autosave pages carry no node_id, so has_many :pages does not cover
# them -- this dependent: :destroy is their only cleanup on node destroy.
belongs_to :autosave, :class_name => "Page", :foreign_key => :autosave_id, :dependent => :destroy, optional: true
has_many :permissions, :dependent => :destroy
has_many :events, :dependent => :destroy
belongs_to :lock_owner, :class_name => "User", :foreign_key => :locking_user_id, optional: true
# Callbacks
after_create :initialize_empty_page
before_save :check_for_changed_slug
after_save :update_unique_names_of_children
before_destroy :refuse_destroy_with_children
before_destroy :refuse_destroying_trash_node
# Validations
validates_length_of :slug, :within => 1..255, :unless => -> { parent_id.nil? || slug.blank? }
validates_presence_of :slug, :unless => -> { parent_id.nil? }
validates_uniqueness_of :slug, :scope => :parent_id, :unless => -> { parent_id.nil? }
validates_presence_of :parent_id, :unless => -> { Node.root.nil? }
validate :reserved_slug_stays_reserved
validate :no_head_inside_trash
validates :default_template_name,
:inclusion => { :in => ->(_) { Page.custom_templates } },
:allow_blank => true,
:if => :default_template_name_changed?
# Everything outside the Trash subtree, the Trash node included.
# Relies on unique_name being authoritative for tree position --
# the same trust public routing places in it.
scope :not_in_trash, -> {
where.not(:unique_name => CccConventions::TRASH_SLUG)
.where("unique_name NOT LIKE ?", "#{CccConventions::TRASH_SLUG}/%")
}
# Class methods
# Returns a page for a given node. If no revision is supplied, it returns
# the last / current one. If a specific revision number is supplied, the
# corresponding revision of that page is returned. Get the current / latest
# revision with -1. It raises an Argument error if the revision is not a
# Fixnum
def self.find_page path, revision = -1
unless revision.is_a?(Integer)
raise ArgumentError, "revision must be a Integer"
end
node = Node.find_by_unique_name(path)
if node
case revision
when -1
return node.head
else
return node.pages.find_by_revision( revision )
end
end
nil
end
# The Trash container node. Lazily self-creating and idempotent, so
# every environment acquires it on first touch.
# Never call from validations. the positional predicates below
# exist for that.
def self.trash
root.children.find_by(:slug => CccConventions::TRASH_SLUG) ||
root.children.create!(:slug => CccConventions::TRASH_SLUG).tap do |node|
Globalize.with_locale(I18n.default_locale) do
node.draft.update!(:title => "Trash")
end
end
end
# Instance Methods
# Acquires (or reaffirms) the editing lock without creating a draft or
# an autosave -- both are now deferred until there is real content to
# hold.
def lock_for_editing! current_user
if self.lock_owner.nil? || self.lock_owner == current_user
lock_for! current_user
if self.draft
self.draft.user = current_user if self.draft.user.nil?
self.draft.editor = current_user
self.draft.save!
end
self
else
raise(
LockedByAnotherUser,
"Page is locked by another user who is working on it! " \
"Last modification: #{(self.autosave || self.draft || self.head).updated_at.to_fs(:db)}"
)
end
end
# Creates or updates the autosave buffer from the given attributes.
# Autosave rows are never associated to the node via node_id -- they
# must never appear in self.pages / the revisions list, which is the
# whole reason autosave exists as a separate, unversioned layer.
def autosave! attributes, current_user
assert_locked_by! current_user
unless self.autosave
self.autosave = Page.create!(:editor => current_user)
self.autosave.clone_attributes_from(self.draft || self.head) if self.draft || self.head
self.save!
end
self.autosave.assign_attributes(attributes)
self.autosave.save!
self.autosave
end
# Promotes the current autosave into the draft (creating the draft if
# none exists yet) and destroys the autosave afterward. This is what
# the explicit "Save" action does; it never creates a new revision --
# same as any other in-place draft edit. The new draft is created via
# self.pages.create! rather than by repointing the autosave's own
# node_id, because acts_as_list assigns the revision number at create
# time, scoped to node_id -- a page created with node_id nil and
# reassigned afterward would carry a wrong or missing revision number.
def save_draft! current_user
assert_locked_by! current_user
return unless self.autosave
if self.draft
preserved_published_at = self.draft.published_at
self.draft.clone_attributes_from self.autosave
self.draft.published_at = preserved_published_at
self.draft.user_id = self.autosave.user_id if self.autosave.user_id
self.draft.editor = current_user
self.draft.save!
else
empty_page = self.pages.create!
empty_page.clone_attributes_from self.autosave
empty_page.user = self.autosave.user_id ? self.autosave.user : (self.head ? self.head.user : current_user)
empty_page.editor = current_user
empty_page.published_at = self.head.published_at if self.head
empty_page.save!
self.draft = empty_page
self.save!
end
self.autosave.destroy
self.autosave_id = nil
self.save!
self.draft.reload
end
def resolve_page_reference ref
case ref.to_s
when "head" then head
when "draft" then draft
when "autosave" then autosave
else pages.find_by_revision(ref)
end
end
# Which layer-pairs are meaningful to compare right now, given this
# node's actual state. Head vs autosave only shows up when no draft
# sits between them -- with a draft present, autosave is compared
# against the draft, never past it straight to head.
def available_layer_pairs
pairs = []
pairs << [:head, :draft] if head && draft
pairs << [:draft, :autosave] if draft && autosave
pairs << [:head, :autosave] if head && autosave && !draft
pairs
end
def create_new_draft user
empty_page = self.pages.create!
empty_page.user = (self.head ? self.head.user : user)
empty_page.editor = user
empty_page.save
empty_page.clone_attributes_from self.head
self.draft = empty_page
self.save
self.draft.reload
end
# Discards exactly the topmost non-empty layer -- autosave if present,
# else draft -- and reveals whatever's beneath it. Releases the lock
# only once nothing is left to protect (no draft survives); leaves it
# alone whenever a draft remains, since #edit still has real content
# open.
def revert! current_user
assert_locked_by! current_user
if self.autosave
self.autosave.destroy
self.autosave_id = nil
self.save!
NodeAction.record!(:node => self, :user => current_user, :action => "discard_autosave")
elsif self.draft && self.head
self.draft.destroy
self.draft_id = nil
self.save!
NodeAction.record!(:node => self, :user => current_user, :action => "destroy_draft")
end
self.unlock! unless self.draft
self.reload
end
def staged_slug=(value)
if head.blank?
self.slug = value
else
super
end
end
def publish_draft! current_user = nil
# Return nil if nothing to publish and no staged changes
return nil unless self.draft || staged_slug || staged_parent_id
if in_trash? || trash_node?
raise ActiveRecord::RecordInvalid.new(self), "Cannot publish a node in the Trash"
end
path_before = self.unique_name
ActiveRecord::Base.transaction do
if self.draft
outgoing_head = self.head
self.head = self.draft
self.head.published_at ||= Time.now
self.head.save!
self.draft = nil
NodeAction.record!(:node => self, :page => self.head, :user => current_user,
:action => "publish", :via => "draft",
**NodeAction.head_diff(outgoing_head, self.head))
end
if staged_slug && (staged_slug != slug)
self.slug = staged_slug
self.staged_slug = nil
end
if staged_parent_id && (staged_parent_id != parent_id)
new_parent = Node.find(staged_parent_id)
if new_parent == self || self.descendants.include?(new_parent)
raise ActiveRecord::RecordInvalid.new(self), "Cannot move a node under itself or one of its own descendants"
end
self.staged_parent_id = nil
self.save!
self.move_to_child_of(new_parent)
else
unless self.save
raise ActiveRecord::RecordInvalid.new(self)
end
end
self.reload
self.update_unique_name
self.send(:update_unique_names_of_children)
if self.unique_name != path_before
NodeAction.record!(:node => self, :user => current_user, :action => "move",
:path => { "from" => path_before, "to" => self.unique_name })
end
self.unlock!
self
end
end
def restore_revision! revision, current_user = nil
page = self.pages.find_by_revision(revision)
return nil unless page
ActiveRecord::Base.transaction do
outgoing_head = self.head
self.head = page
self.save!
NodeAction.record!(:node => self, :page => page, :user => current_user,
:action => "publish", :via => "revision",
**NodeAction.head_diff(outgoing_head, page))
self
end
end
# Moves this node and its subtree into the Trash. Demotes every head
# in the subtree first (aggregators and search operate on heads
# regardless of tree position); where a node has no draft, the former
# head becomes its draft so content stays editable and restorable --
# otherwise the former head remains a plain revision. One log entry,
# at the root, carrying the leaving-public-view snapshot.
def trash! current_user = nil
return nil if in_trash?
raise ActiveRecord::RecordInvalid.new(self), "The Trash node itself cannot be trashed" if trash_node?
ActiveRecord::Base.transaction do
path_before = unique_name
was_published = head_id.present?
final_published_at = head&.published_at
demoted = 0
([self] + descendants.to_a).each do |node|
next unless node.head_id
former = node.head
node.head = nil
node.draft_id = former.id if node.draft_id.nil?
node.save!
demoted += 1
end
self.reload
move_to_child_of(Node.trash)
self.reload
update_unique_name
send(:update_unique_names_of_children)
unlock!
metadata = { :path => { "from" => path_before, "to" => unique_name } }
metadata[:was_published] = true if was_published
metadata[:final_published_at] = final_published_at.iso8601 if final_published_at
metadata[:demoted_heads] = demoted if demoted > 0
NodeAction.record!(:node => self, :user => current_user, :action => "trash", **metadata)
self
end
end
# Returns the node to the living tree under a chosen parent. The
# subtree comes back exactly as it sits in the Trash: all drafts,
# nothing published. Republication is a separate, witnessed act
# per node.
def restore_from_trash! new_parent, current_user = nil
return nil unless in_trash?
if new_parent.nil? || new_parent == self || descendants.include?(new_parent) ||
new_parent.trash_node? || new_parent.in_trash?
raise ActiveRecord::RecordInvalid.new(self), "Restore target must be a living node"
end
ActiveRecord::Base.transaction do
path_before = unique_name
move_to_child_of(new_parent)
self.reload
update_unique_name
send(:update_unique_names_of_children)
NodeAction.record!(:node => self, :user => current_user, :action => "restore_from_trash",
:path => { "from" => path_before, "to" => unique_name })
self
end
end
# Final deletion -- only from inside the Trash. Removes the whole
# subtree, deepest first, each node through a real destroy! so every
# per-node cascade runs (the categorical difference from the old
# delete_all nuke). refuse_destroy_with_children on bare destroy is
# untouched
# One log entry at the root, per the subtree rule, written before the
# rows die.
def destroy_from_trash! current_user = nil
raise ActiveRecord::RecordInvalid.new(self), "Nodes are only destroyed from the Trash" unless in_trash?
ActiveRecord::Base.transaction do
doomed = self_and_descendants_ordered_with_level
.sort_by { |_, level| -level }
.map(&:first)
metadata = { :path => unique_name }
metadata[:destroyed_descendants] = doomed.size - 1 if doomed.size > 1
NodeAction.record!(:node => self, :user => current_user, :action => "destroy", **metadata)
doomed.each(&:destroy!)
end
end
# The most recent trash entry. Its path.from is the restore hint.
def last_trash_entry
node_actions.where(:action => "trash").order(:occurred_at => :desc, :id => :desc).first
end
# The node's pre-trash parent, if a living node still answers to
# that path. Nil when the parent was itself trashed (its unique_name
# changed) or deleted; a different node that has since taken over
# the path is a legitimate suggestion.
def suggested_restore_parent
from = last_trash_entry&.metadata&.dig("path", "from")
return nil unless from
parent_path = from.rpartition("/").first
return Node.root if parent_path.empty?
candidate = Node.find_by(:unique_name => parent_path)
candidate unless candidate.nil? || candidate.in_trash? || candidate.trash_node?
end
# returns an array with all parts of a unique_name rather than a string
def unique_path
unique_name.to_s.split("/")
end
# returns array with pages up to root excluding root
def path_to_root
parent.nil? ? [slug] : parent.path_to_root.push(slug)
end
def computed_unique_name
path_to_root[1..-1].join("/") # excluding root
end
def current_unique_name
self.unique_name = computed_unique_name
end
def update_unique_name
current_unique_name
self.save
end
def locked?
!self.lock_owner.nil?
end
def unlock!
if self.lock_owner
self.lock_owner = nil
self.save
self
end
end
def title
head ? head.title : draft.title
end
def update_unique_names?
!children.empty? && !children.first.path_to_root.include?(self.slug)
end
def head?
head_id
end
def update?
unique_path.length == 3 && unique_path[0] == "updates"
end
def editable_page
autosave || draft || head
end
def trash_node?
parent&.root? && slug == CccConventions::TRASH_SLUG
end
# Inside the Trash subtree. False for the Trash node itself.
def in_trash?
current = parent
while current
return true if current.trash_node?
current = current.parent
end
false
end
# Returns immutable node id for all new nodes so that the atom feed entry ids
# stay the same eventhough the slug or positions changes.
# Can be removed after a year or so ;)
def feed_id
new_id_format_date = "2009-11-14".to_time
self.created_at < new_id_format_date ? unique_path : id
end
# Full-text search across all locale translations using PostgreSQL tsvector.
# Uses 'simple' dictionary (no stemming, no stopwords) so queries work
# across German and English content without language detection.
def self.search(term, _ = {})
joins(head: :translations)
.where("page_translations.search_vector @@ plainto_tsquery('simple', ?)", term)
.distinct
end
# This one is for admin-only views, where finding a draft is the point.
# Substring match on whichever of head/draft is present.
def self.editor_search(term)
words = term.to_s.split(/\s+/).reject(&:blank?)
return none if words.empty?
conditions = []
binds = {}
words.each_with_index do |word, i|
key = "term#{i}"
binds[key.to_sym] = "%#{sanitize_sql_like(word)}%"
conditions << "(head_translations.title ILIKE :#{key} OR head_translations.abstract ILIKE :#{key} " \
"OR draft_translations.title ILIKE :#{key} OR draft_translations.abstract ILIKE :#{key})"
end
joins("LEFT JOIN page_translations head_translations ON head_translations.page_id = nodes.head_id")
.joins("LEFT JOIN page_translations draft_translations ON draft_translations.page_id = nodes.draft_id")
.where(conditions.join(" AND "), binds)
.distinct
end
def self.drafts_and_autosaves(current_user_id: nil)
scope = where("draft_id IS NOT NULL OR autosave_id IS NOT NULL").not_in_trash
return scope.order("updated_at DESC") unless current_user_id
scope.order(
Arel.sql(sanitize_sql_array(["CASE WHEN locking_user_id = ? THEN 0 ELSE 1 END, updated_at DESC", current_user_id]))
)
end
# Nodes are never destroyed recursively
# Descendants must be removed or reparented individually first.
# The Trash feature will be the ordinary path to deletion.
def refuse_destroy_with_children
return unless children.exists?
errors.add(:base, "Cannot destroy a node that still has children")
throw :abort
end
def self.recently_changed
includes(:head).where(
"pages.updated_at < ? AND pages.updated_at > ? AND nodes.parent_id IS NOT NULL",
Time.now, Time.now - 14.days
).order("pages.updated_at desc").references(:head)
end
protected
def lock_for! current_user
self.lock_owner = current_user
self.save
end
def assert_locked_by! current_user
return if self.lock_owner == current_user
raise(
LockedByAnotherUser,
"Page is locked by another user who is working on it! " \
"Last modification: #{(self.autosave || self.draft || self.head).updated_at.to_fs(:db)}"
)
end
# Creates an empty page and associates it to the given node. This means
# freshly created node has an empty draft. A user can create nodes as he
# wants to which will not appear on the public page until the author edits
# that draft and publishes it.
def initialize_empty_page
if self.pages.empty?
self.draft = self.pages.create!
self.save
end
end
def check_for_changed_slug
if parent and changed.include? "slug"
self.unique_name = current_unique_name
end
end
# Watch out recursion ahead! update_unique_name itself triggers this
# after_save callback which invokes update_unique_name on its children.
# Hopefully until no childrens occur
#
# Queries parent_id directly rather than the NestedTree#children
# association out of habit from the old awesome_nested_set-avoidance
# workaround - no longer strictly necessary now that children is
# equally safe, but left as-is since it already works correctly.
def update_unique_names_of_children
unless root?
Node.where(:parent_id => self.id).each do |child|
child.reload
child.update_unique_name
child.send(:update_unique_names_of_children)
end
end
end
private
def reserved_slug_stays_reserved
if parent&.root? && !trash_node_already_me?
errors.add(:slug, "is reserved for the Trash") if slug == CccConventions::TRASH_SLUG
errors.add(:staged_slug, "is reserved for the Trash") if staged_slug == CccConventions::TRASH_SLUG
end
if persisted? && slug_was == CccConventions::TRASH_SLUG && Node.find(id).trash_node?
errors.add(:slug, "of the Trash node cannot change") if slug_changed?
errors.add(:parent_id, "of the Trash node cannot change") if parent_id_changed?
errors.add(:staged_slug, "must stay empty on the Trash node") if staged_slug.present?
errors.add(:staged_parent_id, "must stay empty on the Trash node") if staged_parent_id.present?
end
end
def trash_node_already_me?
existing = Node.root&.children&.find_by(:slug => CccConventions::TRASH_SLUG)
existing.nil? || existing.id == id
end
def no_head_inside_trash
return unless head_id.present?
errors.add(:head_id, "cannot exist inside the Trash") if in_trash? || trash_node?
end
def refuse_destroying_trash_node
return unless trash_node?
errors.add(:base, "The Trash node cannot be destroyed")
throw :abort
end
end
|