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
|
module NodeActionsHelper
include ERB::Util
# One glyph per verb, rendered before the sentence in _action_row.
# Unknown verbs get the dashed circle -- the unknown-verb principle
# extended to iconography: the log outlives its vocabulary.
VERB_ICONS = {
"create" => "file-plus",
"publish" => "send",
"move" => "arrows-move",
"trash" => "trash",
"restore_from_trash" => "arrow-back-up",
"destroy" => "trash-x",
"discard_autosave" => "eraser",
"destroy_draft" => "eraser",
"asset_create" => "upload",
"asset_attach" => "paperclip",
"asset_destroy" => "file-x",
"otp_enroll" => "shield-lock",
"otp_disable" => "shield-off",
"otp_reset" => "shield-x",
"user_create" => "user-plus",
"user_deactivate" => "user-off",
"user_reactivate" => "user-check",
"redaktion_grant" => "users-plus",
"redaktion_revoke" => "users-minus",
"admin_grant" => "shield-plus",
"admin_revoke" => "shield-minus",
"event_create" => "calendar-plus",
"event_update" => "calendar-event",
"event_destroy" => "calendar-x"
}.freeze
def verb_icon action
name = if action.action == "publish" && action.metadata["via"] == "revision"
"history"
else
VERB_ICONS.fetch(action.action, "circle-dashed")
end
content_tag(:span, icon(name, library: "tabler", "aria-hidden": true),
:class => "node_action_icon node_action_icon--#{name}",
:title => action.action)
end
# One sentence per entry, rendered from metadata alone, so entries
# stay renderable after the rows they reference are gone. Live
# associations only upgrade plain names to links. Every metadata
# value passes through h() here -- this helper is the escaping
# boundary; the locale sentences are trusted, the data never is.
def action_summary action
renderer = "summarize_#{action.action}"
return send(renderer, action) if respond_to?(renderer, true)
# Unknown-verb fallback: the log outlives the vocabulary. A renamed
# or future verb degrades to an ugly sentence, never to a 500.
t("node_actions.unknown", :actor => actor_ref(action),
:action => h(action.action), :subject => subject_ref(action)).html_safe
end
# Plain strings by design, safe_join in the template escapes them.
# Exception: the asset items carry zoom links and arrive pre-escaped.
def action_details? action
m = action.metadata
return true if m["translation_diff"].present?
return true if m["changes"].present? || m["description_changed"]
return true if m["title"].is_a?(Hash) && m.dig("title", "from") != m.dig("title", "to")
return true if m["external_url"].present?
%w[author tags template_changed assets assets_changed assets_reordered
abstract_changed body_changed external_url].any? { |key| m[key].present? }
end
def default_locale_changes action
m = action.metadata
items = []
if m["title"].is_a?(Hash) && m.dig("title", "from") && m.dig("title", "from") != m.dig("title", "to")
items << t("node_actions.detail_title",
:from => m.dig("title", "from"), :to => m.dig("title", "to"))
end
items << t("node_actions.detail_author",
:from => m.dig("author", "from"), :to => m.dig("author", "to")) if m["author"]
items << t("node_actions.detail_tags",
:from => Array(m.dig("tags", "from")).join(", "),
:to => Array(m.dig("tags", "to")).join(", ")) if m["tags"]
items << t("node_actions.abstract_changed") if m["abstract_changed"]
items << t("node_actions.body_changed") if m["body_changed"]
items << t("node_actions.template_changed") if m["template_changed"]
if m["assets"]
if (names = m.dig("assets", "added"))
items << t("node_actions.detail_assets_added",
:names => linked_asset_names(action, names)).html_safe
end
if (names = m.dig("assets", "removed"))
items << t("node_actions.detail_assets_removed",
:names => linked_asset_names(action, names)).html_safe
end
end
if m["external_url"]
items << t("node_actions.detail_external_url",
:from => m.dig("external_url", "from").presence || t("node_actions.event_none"),
:to => m.dig("external_url", "to").presence || t("node_actions.event_none"))
end
items << t("node_actions.assets_reordered") if m["assets_reordered"]
items << t("node_actions.assets_changed") if m["assets_changed"]
items << t("node_actions.detail_external_url",
:from => m.dig("external_url", "from").presence || t("node_actions.event_none"),
:to => m.dig("external_url", "to").presence || t("node_actions.event_none")) if m["external_url"]
items
end
def event_changes_list action
m = action.metadata
c = m["changes"] || {}
items = []
if c["title"]
items << t("node_actions.detail_title",
:from => c.dig("title", "from"), :to => c.dig("title", "to"))
end
if %w[rrule start_time].any? { |field| c.key?(field) }
items << t("node_actions.detail_event_schedule",
:from => event_schedule_side(m, c, "from"),
:to => event_schedule_side(m, c, "to"))
end
if c["end_time"]
items << t("node_actions.detail_event_end",
:from => event_time_ref(c.dig("end_time", "from")),
:to => event_time_ref(c.dig("end_time", "to")))
end
if c["allday"]
items << t("node_actions.detail_event_allday",
:from => t("admin.common.#{c.dig("allday", "from") ? "yes" : "no"}"),
:to => t("admin.common.#{c.dig("allday", "to") ? "yes" : "no"}"))
end
%w[location url].each do |field|
next unless c[field]
items << t("node_actions.detail_event_#{field}",
:from => c.dig(field, "from").presence || t("node_actions.event_none"),
:to => c.dig(field, "to").presence || t("node_actions.event_none"))
end
if c["tags"]
items << t("node_actions.detail_tags",
:from => Array(c.dig("tags", "from")).join(", "),
:to => Array(c.dig("tags", "to")).join(", "))
end
if c["node_path"]
items << t("node_actions.detail_event_moved",
:from => c.dig("node_path", "from") || t("node_actions.event_none"),
:to => c.dig("node_path", "to") || t("node_actions.event_none"))
end
items << t("node_actions.detail_event_description") if m["description_changed"]
items << t("node_actions.detail_event_coordinates") if c["latitude"] || c["longitude"]
items
end
def event_schedule_side metadata, changes, side
attributes = %w[rrule start_time end_time].each_with_object({}) do |field, acc|
acc[field.to_sym] = changes.key?(field) ? changes.dig(field, side) : metadata[field]
end
event_schedule_text(Event.new(attributes)).presence || t("node_actions.event_none")
end
def event_time_ref iso
return t("node_actions.event_none") if iso.blank?
I18n.l(Time.zone.parse(iso), :format => :ccc)
end
def translation_changes diff
case diff["status"]
when "added" then [t("node_actions.locale_added", :title => diff.dig("title", "to"))]
when "removed" then [t("node_actions.locale_removed", :title => diff.dig("title", "from"))]
else
items = []
items << t("node_actions.detail_title",
:from => diff.dig("title", "from"), :to => diff.dig("title", "to")) if diff["title"]
items << t("node_actions.abstract_changed") if diff["abstract_changed"]
items << t("node_actions.body_changed") if diff["body_changed"]
items
end
end
def revision_lifecycle_badges actions
return "" if actions.blank?
badges = actions.map do |action|
key = case action.action
when "create" then "node_actions.revision_created"
when "publish" then action.metadata["via"] == "revision" ?
"node_actions.revision_restored" :
"node_actions.revision_published"
end
next unless key
badge = h(t(key, :date => action.occurred_at.strftime("%Y-%m-%d"),
:actor => action.actor_name))
if action.inferred_from
badge = safe_join([badge, content_tag(:span, t("node_actions.backfilled"),
:class => "node_action_inferred",
:title => action.inferred_from)], " ")
end
badge
end.compact
return "" if badges.empty?
safe_join(["— ", safe_join(badges, " · ")])
end
private
def revision_ref action, key
label = t(key)
return label unless action.node && action.page
link_to(label, node_revision_path(action.node, action.page))
end
def actor_ref action
action.user ? link_to(h(action.actor_name), admin_log_path(:user_id => action.user_id))
: h(action.actor_name)
end
def subject_ref action
name = action.subject_name.presence || t("admin.common.no_title")
action.node ? link_to(h(name), node_path(action.node)) : h(name)
end
def asset_ref action
asset = action.action_participants.detect { |p| p.subject_type == "Asset" }&.subject
name = action.metadata["asset_name"].presence || action.metadata["path"]
return h(name) unless asset
parts = [link_to(h(name), asset_path(asset))]
unless params[:asset_id].to_s == asset.id.to_s
parts << link_to(t("node_actions.asset_history"),
admin_log_path(:asset_id => asset.id),
:class => "node_action_zoom")
end
safe_join(parts, " ")
end
def linked_asset_names action, names
by_name = action.action_participants.includes(:subject)
.select { |p| p.subject_type == "Asset" }
.filter_map(&:subject).index_by(&:name)
safe_join(names.map { |n|
asset = by_name[n]
next h(n) unless asset
parts = [link_to(h(n), asset_path(asset))]
unless params[:asset_id].to_s == asset.id.to_s
parts << link_to(t("node_actions.asset_history"),
admin_log_path(:asset_id => asset.id),
:class => "node_action_zoom")
end
safe_join(parts, " ")
}, ", ")
end
def user_participant_ref action
participant = action.action_participants.detect { |p| p.subject_type == "User" }&.subject
name = h(action.metadata["target_login"].presence || "unknown")
participant ? link_to(name, edit_user_path(participant)) : name
end
def event_ref action
event = action.action_participants.detect { |p| p.subject_type == "Event" }&.subject
name = h(action.metadata["event_title"].presence || t("node_actions.unknown_event"))
event ? link_to(name, edit_event_path(event)) : name
end
def summarize_publish action
if action.metadata["via"] == "revision"
t("node_actions.publish_rollback",
:actor => actor_ref(action), :subject => subject_ref(action),
:revision => revision_ref(action, "node_actions.revision_earlier")).html_safe
elsif action.metadata.dig("title", "from").nil?
author = action.metadata.dig("author", "to")
key = author ? "node_actions.publish_first_with_author" : "node_actions.publish_first"
t(key, :actor => actor_ref(action), :subject => subject_ref(action),
:author => h(author)).html_safe
else
t("node_actions.publish",
:actor => actor_ref(action), :subject => subject_ref(action),
:revision => revision_ref(action, "node_actions.revision_new")).html_safe
end
end
def summarize_move action
t("node_actions.move", :actor => actor_ref(action), :subject => subject_ref(action),
:from => h(action.metadata.dig("path", "from")),
:to => h(action.metadata.dig("path", "to"))).html_safe
end
def summarize_create action
t("node_actions.create", :actor => actor_ref(action), :subject => subject_ref(action),
:path => h(action.metadata["path"])).html_safe
end
def summarize_discard_autosave action
t("node_actions.discard_autosave",
:actor => actor_ref(action), :subject => subject_ref(action)).html_safe
end
def summarize_destroy_draft action
t("node_actions.destroy_draft",
:actor => actor_ref(action), :subject => subject_ref(action)).html_safe
end
def summarize_trash action
t("node_actions.trash", :actor => actor_ref(action), :subject => subject_ref(action),
:from => h(action.metadata.dig("path", "from"))).html_safe
end
def summarize_restore_from_trash action
t("node_actions.restore_from_trash", :actor => actor_ref(action), :subject => subject_ref(action),
:to => h(action.metadata.dig("path", "to"))).html_safe
end
def summarize_destroy action
t("node_actions.destroy", :actor => actor_ref(action), :subject => subject_ref(action),
:path => h(action.metadata["path"])).html_safe
end
def summarize_asset_create action
t("node_actions.asset_create", :actor => actor_ref(action),
:asset => asset_ref(action)).html_safe
end
def summarize_asset_attach action
m = action.metadata
key = m["headline"] ? "node_actions.asset_attach_headline" : "node_actions.asset_attach"
t(key, :actor => actor_ref(action), :subject => subject_ref(action),
:asset => asset_ref(action)).html_safe
end
def summarize_asset_destroy action
m = action.metadata
parts = [t("node_actions.asset_destroy", :actor => actor_ref(action),
:asset => asset_ref(action))]
parts << t("node_actions.asset_destroy_detached",
:paths => h(Array(m["detached_from"]).join(", "))) if m["detached_from"].present?
parts << t("node_actions.asset_destroy_headlines",
:paths => h(Array(m["headline_removed_from"]).join(", "))) if m["headline_removed_from"].present?
safe_join(parts, " ")
end
def summarize_otp_enroll action
t("node_actions.otp_enroll", :actor => actor_ref(action)).html_safe
end
def summarize_otp_disable action
t("node_actions.otp_disable", :actor => actor_ref(action)).html_safe
end
def summarize_otp_reset action
t("node_actions.otp_reset", :actor => actor_ref(action),
:target => user_participant_ref(action)).html_safe
end
def summarize_user_deactivate action
t("node_actions.user_deactivate", :actor => actor_ref(action),
:target => user_participant_ref(action)).html_safe
end
def summarize_user_reactivate action
t("node_actions.user_reactivate", :actor => actor_ref(action),
:target => user_participant_ref(action)).html_safe
end
def summarize_redaktion_grant action
t("node_actions.redaktion_grant", :actor => actor_ref(action),
:target => user_participant_ref(action)).html_safe
end
def summarize_redaktion_revoke action
t("node_actions.redaktion_revoke", :actor => actor_ref(action),
:target => user_participant_ref(action)).html_safe
end
def summarize_admin_grant action
t("node_actions.admin_grant", :actor => actor_ref(action),
:target => user_participant_ref(action)).html_safe
end
def summarize_admin_revoke action
t("node_actions.admin_revoke", :actor => actor_ref(action),
:target => user_participant_ref(action)).html_safe
end
def summarize_user_create action
t("node_actions.user_create", :actor => actor_ref(action),
:target => user_participant_ref(action)).html_safe
end
def summarize_event_create action
event_sentence(action, "event_create")
end
def summarize_event_update action
event_sentence(action, "event_update")
end
def summarize_event_destroy action
event_sentence(action, "event_destroy")
end
def event_sentence action, key
if action.node
t("node_actions.#{key}_on", :actor => actor_ref(action),
:event => event_ref(action), :subject => subject_ref(action)).html_safe
else
t("node_actions.#{key}", :actor => actor_ref(action),
:event => event_ref(action)).html_safe
end
end
end
|